MirzkisD1Ex0 2 months ago
parent
commit
4a21041eec

+ 0 - 0
Materials/OSC/收发模块/oscconfig.json → Materials/OSC/收发模块/Configs/oscconfig.json


+ 5 - 7
Materials/OSC/收发模块/UniOSCConfiger.cs → Materials/OSC/收发模块/UniOSC/UniOSCConfiger.cs

@@ -1,26 +1,24 @@
 using System.Collections;
 using System.Collections.Generic;
+using ToneTuneToolkit.Data;
 using UnityEngine;
 
 namespace ToneTuneToolkit.OSC
 {
   public class UniOSCConfiger : MonoBehaviour
   {
-    private string configPath = $"{Application.streamingAssetsPath}/configs/oscconfig.json";
+    private string configPath = $"{Application.streamingAssetsPath}/Configs/oscconfig.json";
 
     // ==================================================
 
-    private void Start()
-    {
-      Init();
-    }
+    private void Start() => Init();
 
     // ==================================================
 
     private void Init()
     {
-      UniOSCManager.Instance.UpdateInIPAddress(JsonHelper.GetJson(configPath, "local_ip"), JsonHelper.GetJson(configPath, "local_port"));
-      UniOSCManager.Instance.UpdateOutIPAddress(JsonHelper.GetJson(configPath, "target_ip"), JsonHelper.GetJson(configPath, "target_port"));
+      UniOSCManager.Instance.UpdateInIPAddress(JsonManager.GetJson(configPath, "local_ip"), JsonManager.GetJson(configPath, "local_port"));
+      UniOSCManager.Instance.UpdateOutIPAddress(JsonManager.GetJson(configPath, "target_ip"), JsonManager.GetJson(configPath, "target_port"));
       return;
     }
   }

+ 1 - 1
Materials/OSC/收发模块/UniOSCManager.cs → Materials/OSC/收发模块/UniOSC/UniOSCManager.cs

@@ -115,7 +115,7 @@ namespace ToneTuneToolkit.OSC
       uniOSCEvent.IPAddress = uniOSCConnection.oscOutIPAddress;
       uniOSCConnection.SendOSCMessage(null, uniOSCEvent);
 
-      DEBUG_UIManager.Instance.UpdateOSCText(oscMessage.Address);
+      // DEBUG_UIManager.Instance.UpdateOSCText(oscMessage.Address);
       Debug.Log($"[UniOSC Manager] Send <color=white>{oscMessage.Address}</color> to <color=white>{uniOSCConnection.oscOutIPAddress}:{uniOSCConnection.oscOutPort}</color>...[<color=green>OK</color>]");
       return;
     }

+ 0 - 0
Materials/OSC/收发模块/UniOSCResponder.cs → Materials/OSC/收发模块/UniOSC/UniOSCResponder.cs


+ 18 - 24
Materials/ScrollView/20241125_左右滑动限位圆点/ScrollViewHandler.cs

@@ -1,16 +1,16 @@
 using System.Collections;
 using System.Collections.Generic;
-using System.Threading.Tasks;
 using DG.Tweening;
 using UnityEngine;
+using UnityEngine.EventSystems;
 using UnityEngine.UI;
 
-public class ScrollViewHandler : MonoBehaviour
+public class ScrollViewHandler : MonoBehaviour, IBeginDragHandler, IEndDragHandler
 {
   private ScrollRect sr;
 
   [SerializeField] private int srContentCount;
-  [SerializeField] private float unitPosition;
+  private float unitPosition;
 
   private const float ANIMTIME = .5f;
 
@@ -20,17 +20,17 @@ public class ScrollViewHandler : MonoBehaviour
 
   private void Start() => Init();
 
-  private void Update()
-  {
-    if (Input.GetKeyDown(KeyCode.Q))
-    {
-      sr.DOHorizontalNormalizedPos(unitPosition, ANIMTIME);
-    }
-    if (Input.GetKeyDown(KeyCode.W))
-    {
-      sr.DOHorizontalNormalizedPos(unitPosition, ANIMTIME);
-    }
-  }
+  // private void Update()
+  // {
+  //   if (Input.GetKeyDown(KeyCode.Q))
+  //   {
+  //     sr.DOHorizontalNormalizedPos(unitPosition, ANIMTIME);
+  //   }
+  //   if (Input.GetKeyDown(KeyCode.W))
+  //   {
+  //     sr.DOHorizontalNormalizedPos(unitPosition, ANIMTIME);
+  //   }
+  // }
 
   // ==================================================
 
@@ -39,7 +39,6 @@ public class ScrollViewHandler : MonoBehaviour
     sr = GetComponent<ScrollRect>();
     srContentCount = transform.GetChild(0).GetChild(0).childCount;
     unitPosition = 1f / (srContentCount - 1);
-    return;
   }
 
   // ==================================================
@@ -49,13 +48,11 @@ public class ScrollViewHandler : MonoBehaviour
   private Vector2 currPos; // 鼠标当前位置
   private Vector2 offset; // 两次位置的偏移值
 
-  public void BeginDrag()
-  {
-    lastPos = Input.mousePosition;
-    return;
-  }
+  public void OnBeginDrag(PointerEventData eventData) => BeginDrag();
+  public void OnEndDrag(PointerEventData eventData) => EndDrag();
 
-  public void EndDrag()
+  private void BeginDrag() => lastPos = Input.mousePosition;
+  private void EndDrag()
   {
     currPos = Input.mousePosition;
     offset = currPos - lastPos;
@@ -86,7 +83,6 @@ public class ScrollViewHandler : MonoBehaviour
     //     Debug.Log("向下");
     //   }
     // }
-    return;
   }
 
   #endregion
@@ -113,7 +109,6 @@ public class ScrollViewHandler : MonoBehaviour
     currentIndex = index;
     sr.DOHorizontalNormalizedPos(unitPosition * index, ANIMTIME);
     ControllDot(index);
-    return;
   }
 
   #endregion
@@ -135,7 +130,6 @@ public class ScrollViewHandler : MonoBehaviour
       dots[i].transform.DOScale(Vector3.one, 0.5f);
       dots[i].GetComponent<Image>().DOColor(Color.gray, ANIMTIME);
     }
-    return;
   }
 
   #endregion

BIN
Materials/UI/GroundGlass.unitypackage


BIN
Materials/Windows打印/Printer.unitypackage


+ 26 - 21251
ToneTuneToolkit/Logs/AssetImportWorker0-prev.log

@@ -15,7 +15,7 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 -logFile
 Logs/AssetImportWorker0.log
 -srvPort
-11070
+8014
 Successfully changed project path to: D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 [UnityMemory] Configuration Parameters - Can be set up in boot.config
@@ -49,12 +49,12 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
     "memorysetup-temp-allocator-size-cloud-worker=32768"
     "memorysetup-temp-allocator-size-gi-baking-worker=262144"
     "memorysetup-temp-allocator-size-gfx=262144"
-Player connection [28420] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 166594963 [EditorId] 166594963 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+Player connection [40124] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 2145490194 [EditorId] 2145490194 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
 
-Player connection [28420] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 166594963 [EditorId] 166594963 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+Player connection [40124] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 2145490194 [EditorId] 2145490194 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
 
 [Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers.
-Refreshing native plugins compatible for Editor in 10.31 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 13.46 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
 Initialize engine version: 2022.3.30f1 (70558241b701)
 [Subsystems] Discovering subsystems at path C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Resources/UnitySubsystems
@@ -70,7 +70,7 @@ Initialize mono
 Mono path[0] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Managed'
 Mono path[1] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
 Mono config path = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56576
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56048
 Begin MonoManager ReloadAssembly
 Registering precompiled unity dll's ...
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
@@ -79,8 +79,8 @@ Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer/UnityEditor.VisionOS.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll
-Registered in 0.016096 seconds.
-- Loaded All Assemblies, in  0.394 seconds
+Registered in 0.019367 seconds.
+- Loaded All Assemblies, in  0.408 seconds
 Native extension for UWP target not found
 Native extension for WindowsStandalone target not found
 Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
@@ -90,39 +90,39 @@ Native extension for VisionOS target not found
 [usbmuxd] Send listen message
 Native extension for iOS target not found
 Native extension for Android target not found
-Android Extension - Scanning For ADB Devices 1671 ms
+Android Extension - Scanning For ADB Devices 2078 ms
 Native extension for WebGL target not found
 Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  2.012 seconds
-Domain Reload Profiling: 2405ms
-	BeginReloadAssembly (122ms)
+- Finished resetting the current domain, in  2.422 seconds
+Domain Reload Profiling: 2828ms
+	BeginReloadAssembly (124ms)
 		ExecutionOrderSort (0ms)
 		DisableScriptedObjects (0ms)
 		BackupInstance (0ms)
 		ReleaseScriptingObjects (0ms)
 		CreateAndSetChildDomain (1ms)
-	RebuildCommonClasses (32ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (66ms)
-	LoadAllAssembliesAndSetupDomain (163ms)
-		LoadAssemblies (120ms)
+	RebuildCommonClasses (33ms)
+	RebuildNativeTypeToScriptingClass (10ms)
+	initialDomainReloadingComplete (73ms)
+	LoadAllAssembliesAndSetupDomain (166ms)
+		LoadAssemblies (123ms)
 		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (159ms)
-			TypeCache.Refresh (158ms)
-				TypeCache.ScanAssembly (144ms)
+		AnalyzeDomain (162ms)
+			TypeCache.Refresh (160ms)
+				TypeCache.ScanAssembly (145ms)
 			ScanForSourceGeneratedMonoScriptInfo (0ms)
 			ResolveRequiredComponents (1ms)
-	FinalizeReload (2013ms)
+	FinalizeReload (2422ms)
 		ReleaseScriptCaches (0ms)
 		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (1957ms)
+		SetupLoadedEditorAssemblies (2363ms)
 			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (1809ms)
+			InitializePlatformSupportModulesInManaged (2210ms)
 			SetLoadedEditorAssemblies (3ms)
 			RefreshPlugins (0ms)
 			BeforeProcessingInitializeOnLoad (2ms)
-			ProcessInitializeOnLoadAttributes (102ms)
-			ProcessInitializeOnLoadMethodAttributes (40ms)
+			ProcessInitializeOnLoadAttributes (101ms)
+			ProcessInitializeOnLoadMethodAttributes (46ms)
 			AfterProcessingInitializeOnLoad (0ms)
 			EditorAssembliesLoaded (0ms)
 		ExecutionOrderSort2 (0ms)
@@ -130,8 +130,8 @@ Domain Reload Profiling: 2405ms
 ========================================================================
 Worker process is ready to serve import requests
 Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.633 seconds
-Refreshing native plugins compatible for Editor in 2.35 ms, found 3 plugins.
+- Loaded All Assemblies, in  0.605 seconds
+Refreshing native plugins compatible for Editor in 2.59 ms, found 3 plugins.
 Native extension for UWP target not found
 Native extension for WindowsStandalone target not found
 Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
@@ -139,21228 +139,3 @@ Native extension for VisionOS target not found
 Native extension for iOS target not found
 Native extension for Android target not found
 Native extension for WebGL target not found
-Package Manager log level set to [2]
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.605 seconds
-Domain Reload Profiling: 1237ms
-	BeginReloadAssembly (141ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (23ms)
-	RebuildCommonClasses (31ms)
-	RebuildNativeTypeToScriptingClass (8ms)
-	initialDomainReloadingComplete (28ms)
-	LoadAllAssembliesAndSetupDomain (422ms)
-		LoadAssemblies (313ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (195ms)
-			TypeCache.Refresh (161ms)
-				TypeCache.ScanAssembly (142ms)
-			ScanForSourceGeneratedMonoScriptInfo (27ms)
-			ResolveRequiredComponents (5ms)
-	FinalizeReload (606ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (454ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (45ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (64ms)
-			ProcessInitializeOnLoadAttributes (311ms)
-			ProcessInitializeOnLoadMethodAttributes (22ms)
-			AfterProcessingInitializeOnLoad (9ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (8ms)
-Launched and connected shader compiler UnityShaderCompiler.exe after 0.20 seconds
-Refreshing native plugins compatible for Editor in 2.42 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3245 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 39 unused Assets / (59.1 KB). Loaded Objects now: 3709.
-Memory consumption went from 128.5 MB to 128.5 MB.
-Total: 3.517200 ms (FindLiveObjects: 0.332900 ms CreateObjectMapping: 0.117400 ms MarkObjects: 2.940900 ms  DeleteObjects: 0.124900 ms)
-
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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: 1642596.392634 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/IO/FileCapturer.cs
-  artifactKey: Guid(6ca284afa024f8c44ae9d590409460be) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/IO/FileCapturer.cs using Guid(6ca284afa024f8c44ae9d590409460be) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '18932065c5e16fcc341b62600dd024ca') in 0.004026 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: 54.865214 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005196 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000271 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006289 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000285 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005378 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000349 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019203 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000366 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.029234 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000361 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.289598 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000560 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.033206 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000390 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027466 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000384 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025581 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000556 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023708 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000410 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024927 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025200 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.029087 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000428 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.026239 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000701 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.028835 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024694 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000455 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.028028 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000472 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.000737 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000252 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020087 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024615 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000447 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025094 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000354 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027725 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.033956 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000560 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019639 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000587 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023128 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020027 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000571 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020369 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021013 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000528 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021063 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021479 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000498 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.054600 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000599 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.028691 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000864 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.054587 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025378 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000754 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022204 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000457 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024049 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000454 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.038796 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000833 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.031868 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000505 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021093 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019678 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000403 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016577 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016668 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000482 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016916 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000490 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018255 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019926 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000670 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024692 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000708 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021703 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016810 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000836 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016843 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000786 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019445 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000526 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019191 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000504 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019521 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000482 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022913 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000486 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023406 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000907 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020452 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000735 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019410 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016727 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018027 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000433 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017640 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000410 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017460 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016478 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000411 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017053 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000448 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016361 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000512 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014404 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000457 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016193 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000408 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.032792 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000442 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018659 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000534 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017524 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015255 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000472 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017376 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015610 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000447 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017059 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018714 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000386 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015621 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014257 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000368 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014573 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000867 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017704 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000913 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.002197 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000363 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013893 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018773 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000364 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014587 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000454 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016318 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000386 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016223 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014379 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013571 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016828 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018715 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000485 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019645 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018764 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000566 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021226 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000572 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.051144 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000602 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022043 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019322 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000705 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021836 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000672 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023253 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000533 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022413 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000544 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023573 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000501 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018087 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000542 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017560 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000400 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.049181 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000999 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.033702 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000728 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.031545 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000507 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.038641 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000688 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025991 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000450 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024628 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000992 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.028814 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000759 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025202 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000530 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020252 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000583 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.034364 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000694 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.037414 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001071 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022632 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.030072 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000791 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.029721 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000635 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.031774 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000609 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027701 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000633 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.030429 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000882 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.026441 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000645 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027335 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000723 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021884 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020763 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000546 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021691 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000565 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.026886 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000691 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022413 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000800 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.026444 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000681 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.029806 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000558 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025570 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000588 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.028114 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000637 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024539 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000508 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027697 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000671 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025540 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000637 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022529 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000639 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025971 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000506 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.028310 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000587 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.029589 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000522 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020284 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000512 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020503 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021253 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000597 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.034093 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000722 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025075 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001068 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023082 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000761 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.029404 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000623 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021716 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000833 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025388 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000628 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025701 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019102 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021069 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000540 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.030550 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000494 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.026799 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000628 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.029278 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000636 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021648 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.031519 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000644 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.028217 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000736 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023057 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000586 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022420 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000487 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021653 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000566 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023359 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000874 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021526 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021093 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000428 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017166 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020135 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000471 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021944 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000492 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021510 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018712 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000389 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018697 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021774 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020970 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000488 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021981 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019850 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000499 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018864 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019032 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000430 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021680 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000902 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014840 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000376 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016496 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015436 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000409 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016520 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000390 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016515 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017792 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000600 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020912 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000514 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015887 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000567 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016581 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000548 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016865 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015586 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000361 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017430 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013896 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016680 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015045 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000436 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014261 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000723 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015916 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000360 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.044665 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000534 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016715 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000781 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018188 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000402 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017768 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000504 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021091 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.006465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017708 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000540 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016664 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000524 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016560 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000449 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025281 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001025 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015382 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000408 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017690 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000479 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018022 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000419 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020837 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000498 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017739 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022897 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000696 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015330 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000455 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021923 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000604 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018854 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000503 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017903 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019765 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000512 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018985 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001213 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015375 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000489 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016097 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000399 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018419 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000503 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016991 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017019 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000417 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.038693 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000381 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014643 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000541 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014591 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000362 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014438 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000419 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015868 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000611 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015809 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016465 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000357 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017918 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016224 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000600 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018192 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000410 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020420 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000541 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019467 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000693 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.028941 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000563 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020993 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000483 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019708 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000513 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018849 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000505 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020203 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023034 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020205 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000596 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025188 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000510 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021136 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000560 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017410 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000504 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018492 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000431 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020741 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000627 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021203 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000556 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023772 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000493 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021069 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000546 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022276 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000894 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025420 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000575 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022413 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000657 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022082 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000547 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017423 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000480 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016367 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000413 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018014 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015088 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014573 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000381 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016075 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000399 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016037 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.035999 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000492 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019280 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022093 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000940 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016322 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015283 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013589 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000515 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014644 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001035 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014578 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000403 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016682 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016806 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000609 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016869 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000369 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.041603 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000431 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017791 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000496 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020666 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014779 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015392 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000543 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016162 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017567 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000552 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019059 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000444 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019553 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000455 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019125 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000627 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017324 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015919 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000429 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020840 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000623 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017670 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014979 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015332 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018025 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000700 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014833 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000420 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015571 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000431 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014634 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000405 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016958 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000422 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019984 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000429 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021656 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000508 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.037163 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000364 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018509 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000484 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019851 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018116 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000403 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020391 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000485 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019203 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000496 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023108 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000606 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024613 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000548 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.026845 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000488 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020614 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023639 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000457 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020077 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020172 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000435 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021133 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000598 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022652 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000509 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018900 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000505 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027062 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000706 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.042613 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000614 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023418 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023854 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000521 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023813 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000671 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023750 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021263 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000925 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027387 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000491 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020719 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000648 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017400 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000419 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019467 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019037 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000532 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018154 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000661 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020263 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000651 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020137 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000511 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023128 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000674 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021957 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016431 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000625 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016712 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015595 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000397 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014515 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000389 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015057 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000571 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016851 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000478 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016645 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017237 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000385 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016238 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000986 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015669 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016252 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018763 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014984 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000408 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015325 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016893 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014848 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000422 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015901 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000422 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015496 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000725 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014516 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000409 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017292 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000561 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021856 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000571 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.041431 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000477 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.030589 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016748 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019097 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000469 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018212 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000390 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017422 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017242 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000411 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014991 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000578 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019156 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000560 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016068 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000548 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015351 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000426 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016636 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000557 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016103 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015776 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016167 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000521 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015854 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000554 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015888 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000411 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018932 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017093 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000364 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017141 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000411 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016848 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016469 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000642 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014403 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000678 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013873 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000354 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015686 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017374 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000502 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019285 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000555 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020179 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000536 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019219 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016536 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000392 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016373 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000393 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014884 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000584 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015173 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000480 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018237 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016001 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000364 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018304 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000366 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018850 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015843 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000419 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016315 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020222 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019395 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000523 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019042 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018649 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015291 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000491 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015741 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000665 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015201 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017072 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021582 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000480 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015250 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000426 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016506 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000365 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015754 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015708 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014666 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019131 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016499 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000429 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021134 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000368 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016250 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018816 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018837 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000477 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017867 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017720 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000456 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019732 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019272 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018633 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000356 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019141 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000413 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018823 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000511 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017814 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000406 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017926 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000448 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024518 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000666 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025772 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001347 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.029351 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000904 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027144 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000798 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.034985 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000495 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.032102 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000699 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027254 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000670 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024985 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000988 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022423 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000402 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.026413 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000682 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.028254 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000598 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.032120 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000690 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020179 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000792 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018362 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000718 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020240 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000528 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016052 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000681 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017001 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016294 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019246 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018938 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000372 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022208 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016853 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000457 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020625 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016026 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017197 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000408 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018248 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000406 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022210 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001105 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025570 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000664 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019581 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000683 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020199 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000944 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022800 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000585 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021126 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024658 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000606 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022674 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000699 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019339 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000631 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018093 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000733 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018640 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000673 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021131 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000895 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017345 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000922 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016250 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019559 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000486 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020329 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000619 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021916 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001294 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022377 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000506 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019085 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000437 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020879 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017692 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000402 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016392 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016400 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000641 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019503 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001075 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019160 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000523 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014414 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000531 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017199 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021417 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000674 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016858 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018474 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000580 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018666 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000500 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016050 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000413 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016923 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000401 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016884 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000359 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015995 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019677 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000409 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014967 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000683 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014470 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016423 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000408 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016319 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016488 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000416 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019942 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.002714 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024653 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000503 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024352 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001183 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019613 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000479 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019359 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000633 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018595 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000566 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017727 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015413 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000725 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014195 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000365 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018227 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016982 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000573 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018522 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000504 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019772 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000393 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019563 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000363 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018993 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000389 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017747 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000430 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017092 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000584 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017430 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000399 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017020 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000468 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017683 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000573 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015404 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001049 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014966 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000451 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017915 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000391 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015927 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016556 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016114 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000525 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016045 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000572 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014013 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016886 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000444 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017915 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019036 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016659 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000390 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018265 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017304 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000494 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017691 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021017 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000494 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020370 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000394 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019676 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000392 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018865 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019171 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000397 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019398 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000384 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019728 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000534 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021755 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019713 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000633 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016969 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016401 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000393 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015340 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000938 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013327 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000503 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017329 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000468 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018899 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000442 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017252 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000461 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017766 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000586 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019393 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018319 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000392 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017917 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000456 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014783 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000363 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014287 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000767 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013322 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000393 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015888 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015717 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000428 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016858 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000393 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013710 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000907 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015650 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000392 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017727 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017659 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000365 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017029 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017348 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000386 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019063 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017596 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000404 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017887 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019422 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000386 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018242 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000397 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015245 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001031 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014282 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000393 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015091 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000364 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017707 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000430 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017712 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020406 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000476 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016941 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016802 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000478 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016056 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014168 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000520 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022699 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001079 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.027036 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000722 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020609 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000511 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016870 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000485 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016336 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000409 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015644 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000364 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018791 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000466 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016258 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000553 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016662 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000659 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016138 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000394 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017775 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000403 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017897 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000462 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016465 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000468 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016148 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017383 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018721 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000488 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016705 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000447 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013974 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000618 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017624 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018140 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000509 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019903 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000489 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024255 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000930 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023670 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000848 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023489 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000438 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020349 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000456 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018686 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000571 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017275 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015703 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000384 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016822 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014361 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000629 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014974 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014850 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015762 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000394 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017759 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019894 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015852 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013616 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000563 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017419 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000450 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016027 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000541 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015971 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000448 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015444 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000455 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018624 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000383 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022216 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000676 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019879 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017058 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016024 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000405 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014683 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000669 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014456 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000399 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018172 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000461 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015890 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000369 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018753 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000369 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018345 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000593 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000469 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015580 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014875 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000680 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015611 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000482 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015923 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014786 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000494 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015825 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014165 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000482 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.033830 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000483 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021987 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016883 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016982 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000386 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015840 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017412 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000461 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017467 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000433 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017119 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019658 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019428 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000370 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016422 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000451 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015154 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015089 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000390 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016685 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000478 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015919 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015201 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000529 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014657 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000505 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016306 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015510 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020906 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000384 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018405 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017335 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000507 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016818 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000455 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016584 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000540 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017647 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000513 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018943 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000494 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019323 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000591 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020300 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000581 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020299 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000509 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019406 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000614 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018958 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000471 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018427 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000492 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019454 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000503 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020595 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000413 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016201 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000508 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016847 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000704 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018209 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000431 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017273 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000491 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017157 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000909 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023267 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000678 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021881 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000670 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018629 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000444 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017013 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000444 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015129 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016179 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000552 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015375 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000489 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016188 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015814 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015939 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000422 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017585 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000429 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015877 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000648 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018269 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000629 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022329 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000553 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019321 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000572 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019495 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000457 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021966 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000750 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020423 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000499 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019921 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000504 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017432 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020223 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000582 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.038841 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000541 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020201 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001149 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.023061 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000592 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018604 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020115 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000675 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017213 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000541 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019400 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019450 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000429 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019108 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000433 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020913 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000915 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001154 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022303 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000569 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021251 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000510 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010212 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000652 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006081 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006602 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000475 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010682 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001816 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007020 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000610 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008713 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000441 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005886 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000562 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008666 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000574 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006175 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006063 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005470 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000692 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006120 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000570 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005486 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000556 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005427 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000703 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005627 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009688 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005621 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000394 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005649 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005523 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000431 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006167 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006072 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000426 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005340 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000386 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005076 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000392 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020486 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000524 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005132 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022164 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000543 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010972 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000450 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005522 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000618 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005328 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000404 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006237 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006858 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005885 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000561 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006290 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000499 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008995 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000742 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010461 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007944 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006693 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005510 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000379 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005954 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006040 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000402 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005613 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000436 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006307 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000703 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007756 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000609 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006286 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000538 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006488 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000454 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006462 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005312 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000391 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006444 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000394 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005258 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005807 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000593 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006273 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005092 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005279 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006477 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000466 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005259 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005505 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006363 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000488 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007003 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000514 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005966 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007751 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000777 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007808 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000385 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007005 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005751 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005952 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000593 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.016046 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000391 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007935 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000529 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005975 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000486 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005720 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005599 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000783 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005146 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000450 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005623 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000457 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004864 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000500 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005259 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000560 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005388 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006180 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000631 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005569 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000585 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005582 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008377 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000648 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006509 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000415 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005838 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006041 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005730 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000555 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006447 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000506 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009572 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000416 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006157 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005383 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000528 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005343 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004996 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000574 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004911 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005705 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006089 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006211 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000580 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008168 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000404 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005684 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000480 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007614 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000400 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005069 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004797 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004599 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000531 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005345 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000415 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007214 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000570 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006199 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005722 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000494 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006163 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000504 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006033 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005151 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004748 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015901 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000416 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007981 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000492 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005513 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005257 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005421 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000451 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005559 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005239 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000462 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005143 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000330 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006083 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000379 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005041 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000493 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005311 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000537 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004777 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000491 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005772 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000422 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005256 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004554 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004860 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000390 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005458 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000462 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004729 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006252 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000449 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005744 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000461 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005026 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000532 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005234 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000685 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004593 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000498 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005349 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000408 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005718 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000529 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005411 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000946 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005671 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000629 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007794 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000798 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008401 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000479 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006906 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000549 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005201 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000354 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005052 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005673 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000609 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004880 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000349 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005530 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000431 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005519 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006206 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000666 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005742 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005276 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000356 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005199 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000416 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004845 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000384 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005004 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000355 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005363 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000451 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005135 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000489 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006861 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000626 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.018460 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015137 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005098 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000397 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006234 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000771 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005092 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005101 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000344 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007410 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006021 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000695 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007010 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006815 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000623 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005639 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000521 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005579 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000983 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007624 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000594 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008060 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000385 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008646 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000564 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006253 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000662 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009337 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005474 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000437 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005096 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006295 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000506 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004902 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005310 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000484 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005711 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000813 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006592 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000907 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005804 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000674 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005463 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005846 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005438 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000489 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005776 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000536 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006291 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000647 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005441 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000641 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006429 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000696 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005750 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000765 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006875 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000837 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005406 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000476 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006212 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005441 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000686 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006158 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000471 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005268 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000389 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021132 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000516 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011181 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005544 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000493 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005315 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000875 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006163 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000680 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005268 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000506 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006010 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000576 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006504 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000480 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006033 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000817 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007332 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000449 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006032 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000627 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006285 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000541 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005360 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006044 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000486 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005982 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000631 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006279 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000590 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005859 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000406 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005897 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000664 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005847 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000496 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005235 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006414 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000602 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006944 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000918 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007190 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000569 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006980 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001039 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006633 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000690 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007284 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000550 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007876 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005682 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000628 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005754 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000525 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006782 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000624 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006293 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000601 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010842 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000821 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005602 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000503 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005977 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005893 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000686 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007427 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000938 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005803 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000479 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005724 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019898 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000406 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013671 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000527 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006039 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000811 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006729 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000943 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006086 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000554 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000803 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006086 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005806 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000444 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005613 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000620 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005554 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000403 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005473 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000410 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004962 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005239 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000402 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005903 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005331 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000342 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005105 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005167 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000372 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005309 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005871 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000773 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005765 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000437 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004824 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000323 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005374 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000475 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005475 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000482 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005096 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000342 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005992 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000528 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005737 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001122 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005949 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006927 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000835 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006134 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000537 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005294 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006884 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000417 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005314 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000428 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005272 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000685 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005269 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000476 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005404 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000599 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004955 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005562 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005170 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000372 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005579 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000472 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005795 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000605 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005639 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000438 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005244 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.026187 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000588 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015052 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007655 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001116 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006551 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000608 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006137 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000907 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009474 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000625 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005598 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000417 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006759 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000557 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007419 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000838 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009190 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000619 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007399 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005437 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000522 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006647 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000511 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005621 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000499 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005503 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000638 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006028 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000584 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004920 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000539 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005424 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000520 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005307 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006371 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005452 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000457 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005824 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000529 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005256 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004743 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000309 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006067 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000435 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005166 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005116 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000339 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009065 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000508 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005324 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000383 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006488 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000692 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005073 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000359 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005792 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000336 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005452 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000466 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005627 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000448 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004914 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000348 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004872 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000322 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007567 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000486 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005185 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024661 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000604 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011228 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000538 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005430 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000358 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005867 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000867 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008232 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005525 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000620 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005827 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000431 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004988 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000353 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005321 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000428 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008006 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000566 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005911 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000433 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004903 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000322 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006051 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000406 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004883 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000334 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005401 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006244 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000535 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005346 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000456 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000347 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005350 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000789 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005121 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000342 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004858 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000354 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004949 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000296 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010435 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007119 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000485 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006906 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000406 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005155 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005497 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000471 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006030 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000379 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005197 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004948 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000330 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006659 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000493 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005341 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004754 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000379 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005315 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000782 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005693 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005032 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000409 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005643 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000994 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004701 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000350 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005202 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000357 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005246 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000352 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006608 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000379 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005449 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000405 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021844 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.012004 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000441 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004945 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000410 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005203 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007334 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001130 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007450 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000626 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007649 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000501 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006441 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000528 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005489 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000401 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006867 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000471 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005446 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005649 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000488 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005934 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000462 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005184 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005433 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000449 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006030 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000506 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006753 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000520 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005533 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008692 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000389 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005108 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005501 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001089 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005073 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005516 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005294 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000847 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006909 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000540 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005557 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000447 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005556 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000661 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005906 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000400 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005320 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000399 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004775 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001045 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004896 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000369 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005247 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000368 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005853 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000554 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007117 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000499 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005742 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006125 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000761 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008493 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006331 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000597 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007616 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000754 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007500 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000660 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.024573 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000519 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010799 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000477 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007673 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000785 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006889 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000526 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005427 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006918 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000472 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006211 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000754 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005778 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000579 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006909 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000659 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005925 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000447 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006903 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000801 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006913 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000471 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005797 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000405 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006237 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000419 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005089 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005093 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000431 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007469 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000740 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005520 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000397 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006044 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000417 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006078 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005647 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005703 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006408 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005464 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005448 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000435 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006887 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000562 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005612 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000394 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006401 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000406 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005408 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004711 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000454 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005273 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008089 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000860 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005908 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000523 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006007 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000575 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007136 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000524 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005857 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006761 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000674 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005228 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000358 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005638 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000484 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019188 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000391 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010585 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005357 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000390 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006043 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000954 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005720 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007487 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007149 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000461 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005470 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000568 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005206 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000359 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007352 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000455 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006055 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000441 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005547 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000411 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005894 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.003610 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005383 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006634 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000674 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005604 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000781 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005155 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000493 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006562 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000651 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006684 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000411 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005424 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000564 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006725 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000456 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005719 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005883 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000527 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005676 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005515 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000692 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005348 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000456 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006053 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000513 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005139 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005430 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000642 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006750 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004957 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000359 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005537 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000444 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006414 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005439 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000410 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005678 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000515 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006594 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000566 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005854 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005924 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000727 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006244 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000529 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005957 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000764 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.035070 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001522 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017146 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000910 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008867 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001357 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007016 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000977 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007650 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000603 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009460 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000997 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007415 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000817 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008819 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001035 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007040 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001161 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007659 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000641 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006463 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000924 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007052 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000843 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006211 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000736 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005705 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000618 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007032 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000570 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006461 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000826 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006085 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001179 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006237 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000551 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007447 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000624 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008119 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000655 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006757 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000758 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009036 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000449 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005429 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000454 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005838 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000618 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006275 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000532 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006366 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000717 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005275 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007686 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004842 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000404 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010311 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000734 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007578 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000959 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020809 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000501 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011366 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000534 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006137 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000660 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009617 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000665 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019420 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.007051 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.002833 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000653 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009640 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000701 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007150 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000762 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010071 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000682 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006240 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000612 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009134 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000547 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007546 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000739 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007410 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001326 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006108 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000884 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005712 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000444 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007531 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000713 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007512 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000493 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005223 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000510 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005221 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000471 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007724 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000572 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006053 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001136 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005417 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000513 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006799 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000735 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006299 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000594 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005148 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001294 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004854 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005260 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000397 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005751 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000499 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006454 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005982 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000400 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005267 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000708 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005918 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000457 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005864 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000654 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021103 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000415 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011233 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006243 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000534 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005710 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000794 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006993 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000789 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005732 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000920 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007459 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007088 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000925 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007487 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000919 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006744 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005811 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007020 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006571 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000683 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005001 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000419 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006300 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005335 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000458 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005612 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000490 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006158 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000401 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005358 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000420 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005554 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000433 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006297 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000408 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007631 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005318 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001161 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005258 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000437 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006170 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000478 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006773 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000834 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005478 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009918 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001190 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005950 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000547 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005413 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006275 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001075 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007817 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000471 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006096 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007117 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000415 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005554 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005300 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000471 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005964 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005548 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000454 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.022684 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000483 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011556 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000601 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006232 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000467 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006925 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000809 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005838 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005221 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000475 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006653 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005534 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000497 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005396 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000384 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007555 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005688 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000399 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005159 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007102 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005032 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000391 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005453 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006990 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000357 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005493 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005007 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007138 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000450 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006054 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005599 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006475 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000409 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005427 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000430 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005142 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006894 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000538 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005441 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000366 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006883 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000429 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006167 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005358 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000390 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006134 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000435 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006184 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005755 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005316 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000402 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005828 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000546 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004689 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000475 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005934 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000670 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007745 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006316 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000595 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006058 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001678 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006177 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006471 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.017983 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010828 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000518 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005502 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000485 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006540 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001469 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005872 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000378 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010203 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006109 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005243 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000391 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005065 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007741 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005944 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000389 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005900 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000698 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005327 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005386 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005682 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000486 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006704 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000400 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005738 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000370 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005295 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000435 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008739 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000366 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005675 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000436 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007495 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005340 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005095 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000403 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006317 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000447 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005132 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000399 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005736 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007067 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000494 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006018 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000462 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004721 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000478 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006379 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000657 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005224 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000469 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005455 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000559 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007216 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005273 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000450 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004932 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000478 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005759 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000716 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004682 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000539 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005783 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006532 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000820 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007690 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000522 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020247 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000597 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011066 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006325 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005900 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006523 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000565 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006031 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005948 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000451 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006437 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000391 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005429 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005552 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006419 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000441 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006961 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000549 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006494 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000844 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005117 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000509 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005517 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000472 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005772 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001022 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005107 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000454 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005952 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006456 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000734 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005180 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000505 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006245 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000413 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007141 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006477 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005976 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000476 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009409 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005480 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000416 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006186 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000795 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005581 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006364 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000496 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008515 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000435 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005994 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000447 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011996 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000472 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006216 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000438 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005365 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000389 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008160 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000416 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005357 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005582 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001428 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006481 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000448 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025307 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000853 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011906 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000679 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005767 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007528 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000765 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006995 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005170 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006492 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005657 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000417 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005360 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000416 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006458 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000430 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005769 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000397 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005051 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000461 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007356 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000504 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005172 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005374 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000397 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006569 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000362 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004862 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000411 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005295 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000450 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009147 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000449 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005497 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005308 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005952 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007142 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000490 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007840 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000781 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006027 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005616 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007012 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000468 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005464 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005867 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000488 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007400 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000417 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005380 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000433 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004978 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007365 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000546 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005558 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006464 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000401 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007171 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006655 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007543 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000970 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006888 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020606 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008557 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000949 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005659 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000508 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005883 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000528 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007947 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005366 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005314 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006923 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000406 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006181 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000508 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005987 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006359 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005006 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010934 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000477 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005717 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005710 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007957 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005135 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004839 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000518 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008019 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000607 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005719 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000411 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005709 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000473 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006207 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000413 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004930 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000436 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005639 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006965 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000430 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005979 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005719 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006238 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006683 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005791 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000525 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005805 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000435 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005426 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000482 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005554 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006886 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006297 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000631 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007207 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000842 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006311 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000415 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006551 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000489 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008107 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000521 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005654 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000487 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.019053 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000477 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009953 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000508 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005365 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000400 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005213 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000491 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006903 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000449 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006153 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005735 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000468 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006129 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000446 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007417 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000462 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005559 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000742 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005983 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000482 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005752 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000928 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006526 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000999 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006017 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000807 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005578 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000654 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007471 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000578 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005720 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000461 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005647 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000562 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005778 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000649 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005380 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000348 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005101 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000346 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006726 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000414 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004983 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000336 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006153 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000581 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006166 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000530 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005295 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006890 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000586 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007021 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006056 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000894 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008769 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000703 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008444 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000648 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007487 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001354 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.001875 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000448 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005248 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000594 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004995 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000420 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007089 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000618 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006035 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000722 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006241 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001595 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007931 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000864 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025547 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000461 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.014974 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000548 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005688 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001242 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005821 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000495 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005557 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000507 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009250 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000547 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005262 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000393 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005663 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007344 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000529 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005966 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000554 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005934 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001236 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008134 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000635 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006476 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000834 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008744 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000603 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006371 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000648 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006086 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000899 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005934 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000868 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005158 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006691 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000543 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006767 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000572 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005459 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000361 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005752 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004959 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005190 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006769 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000495 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005611 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000438 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005730 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000454 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006474 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000472 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005507 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000416 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005248 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000436 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007501 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000597 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006161 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000430 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005618 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000482 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006255 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007895 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000876 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008143 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000687 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006449 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000814 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021340 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000509 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.013593 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000647 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006885 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000518 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008361 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000979 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007002 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000815 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007408 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000483 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005950 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000486 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005534 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000428 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006684 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000389 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005569 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000462 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006487 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000401 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006811 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000734 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004984 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005111 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000455 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006613 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000483 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005459 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005574 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006330 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005841 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000403 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005232 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000400 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005918 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005239 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006801 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000736 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011335 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000510 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005926 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000421 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006119 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000520 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005527 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000447 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005441 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000404 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006313 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000497 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004868 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000362 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004987 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000405 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006541 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000784 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005097 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000461 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005199 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000689 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007311 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000518 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005670 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000499 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008418 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000900 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005444 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000683 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005384 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.025523 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001202 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011026 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.002378 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008379 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000977 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008272 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000853 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007090 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000705 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007715 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000642 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005184 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000683 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007700 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000776 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005402 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000558 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005705 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001240 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005634 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006065 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000539 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006506 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000802 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006348 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000724 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005000 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000506 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007554 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000487 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005897 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000794 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005743 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001272 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008458 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000678 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009458 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001717 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007638 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000510 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005789 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000497 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007675 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000691 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007533 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000756 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008984 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000626 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005875 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000625 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005886 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000614 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008124 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000749 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006130 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000934 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007950 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000744 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006682 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000909 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005301 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001536 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000828 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006135 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001005 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.021403 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000603 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.011599 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000624 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000794 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007626 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000881 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006069 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000764 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008064 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000604 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005319 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000493 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005926 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000697 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006089 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000495 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005893 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000451 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009588 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000901 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005642 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005255 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008551 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000682 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005517 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005161 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005679 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006974 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000613 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006453 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001809 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010423 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005123 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008339 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000650 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005416 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000629 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008311 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005492 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000429 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005578 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000522 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005811 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000465 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005452 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000673 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006080 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000757 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008962 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000569 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005842 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001002 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007852 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000534 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005735 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000536 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005199 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006275 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000492 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005285 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020111 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000409 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.010349 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000636 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005477 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000499 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005277 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000364 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007121 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000817 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005020 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000435 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005703 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000441 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007629 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005312 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000348 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005122 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000466 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007391 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000478 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005884 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005957 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000571 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005900 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000504 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005159 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000630 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004756 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006534 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000439 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005684 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005591 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000432 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006919 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000533 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005605 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004928 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007739 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000490 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005126 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000408 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005330 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000410 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006450 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000424 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005462 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006770 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000451 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006332 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000525 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005184 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000410 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004889 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000346 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007012 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000427 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005173 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000376 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005526 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000410 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006635 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000399 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005316 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000626 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004655 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000345 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006641 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000525 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005902 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000474 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004695 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000351 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006476 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000648 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005758 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000433 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.020389 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000470 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.015076 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000440 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005176 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000328 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005377 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006023 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000419 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004847 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000342 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.004873 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000350 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006738 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000407 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005631 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000403 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005101 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000350 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006552 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000509 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005447 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005308 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000372 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006945 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000464 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005980 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000445 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005213 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000385 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006832 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000468 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005124 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005091 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000400 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007612 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000417 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006049 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.002377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006214 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000951 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005716 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000964 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009552 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001379 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.008417 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000728 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.009647 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001012 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006862 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001476 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006338 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006265 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000523 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005856 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000670 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.005961 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001039 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.007462 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000862 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:11:36.4889195Z'
-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.006325 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000555 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.006589 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000490 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.008006 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000743 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.006413 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000946 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.005697 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000699 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.005507 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000734 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.021996 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000660 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.012693 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000399 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.011324 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000515 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.006333 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000668 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.005614 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000714 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.007424 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000673 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.005935 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000558 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.006293 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000826 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.005933 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000686 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.008696 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001189 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.006045 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000754 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.005776 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000830 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.007291 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000452 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.006639 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000733 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.005250 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000425 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.006496 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000491 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.006028 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000696 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.006809 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.001688 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.007851 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000487 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.008718 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000787 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/editor/updatecopyrights.cs in SourceAssetDB has modification time of '2025-03-27T07:25:18.1302076Z' while content on disk has modification time of '2025-08-04T07:12:17.5504949Z'
-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.448796 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '5c74f563355aa771a41c52d861bd6bd5') in 0.000655 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 0
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.445 seconds
-Refreshing native plugins compatible for Editor in 2.29 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.696 seconds
-Domain Reload Profiling: 1140ms
-	BeginReloadAssembly (149ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (36ms)
-	RebuildCommonClasses (28ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (26ms)
-	LoadAllAssembliesAndSetupDomain (231ms)
-		LoadAssemblies (286ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (22ms)
-			TypeCache.Refresh (9ms)
-				TypeCache.ScanAssembly (1ms)
-			ScanForSourceGeneratedMonoScriptInfo (6ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (697ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (352ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (42ms)
-			SetLoadedEditorAssemblies (4ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (51ms)
-			ProcessInitializeOnLoadAttributes (232ms)
-			ProcessInitializeOnLoadMethodAttributes (17ms)
-			AfterProcessingInitializeOnLoad (6ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (6ms)
-Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3235 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.2 KB). Loaded Objects now: 3712.
-Memory consumption went from 127.8 MB to 127.8 MB.
-Total: 2.623500 ms (FindLiveObjects: 0.262900 ms CreateObjectMapping: 0.104900 ms MarkObjects: 2.201700 ms  DeleteObjects: 0.052500 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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: 29.644573 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs
-  artifactKey: Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor/UpdateCopyrights.cs using Guid(b4c3a47fedad0d847b3f81dd21b42f66) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '20000a97a5a2031a422e2585eef0ee7a') in 0.001959 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 0
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.655 seconds
-Refreshing native plugins compatible for Editor in 3.13 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  1.171 seconds
-Domain Reload Profiling: 1825ms
-	BeginReloadAssembly (185ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (7ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (45ms)
-	RebuildCommonClasses (46ms)
-	RebuildNativeTypeToScriptingClass (15ms)
-	initialDomainReloadingComplete (47ms)
-	LoadAllAssembliesAndSetupDomain (359ms)
-		LoadAssemblies (427ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (34ms)
-			TypeCache.Refresh (14ms)
-				TypeCache.ScanAssembly (0ms)
-			ScanForSourceGeneratedMonoScriptInfo (10ms)
-			ResolveRequiredComponents (8ms)
-	FinalizeReload (1172ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (616ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (65ms)
-			SetLoadedEditorAssemblies (6ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (69ms)
-			ProcessInitializeOnLoadAttributes (411ms)
-			ProcessInitializeOnLoadMethodAttributes (43ms)
-			AfterProcessingInitializeOnLoad (23ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (15ms)
-Refreshing native plugins compatible for Editor in 2.11 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3235 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.1 KB). Loaded Objects now: 3715.
-Memory consumption went from 127.8 MB to 127.8 MB.
-Total: 2.710800 ms (FindLiveObjects: 0.242400 ms CreateObjectMapping: 0.090400 ms MarkObjects: 2.328100 ms  DeleteObjects: 0.049100 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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: 10.955883 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/PathChecker.cs
-  artifactKey: Guid(95e01ee2b7b7f3247935f1114da37471) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/PathChecker.cs using Guid(95e01ee2b7b7f3247935f1114da37471) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'd58505f389e94b6fb53f8baca3adc93a') in 0.001984 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: 1.237148 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/SingletonMaster.cs
-  artifactKey: Guid(a683dd2cdddc0c84a879f2dafa20bbee) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/SingletonMaster.cs using Guid(a683dd2cdddc0c84a879f2dafa20bbee) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '368b101088355fd0076e340fd50dfb43') in 0.000540 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.454177 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/EventListener.cs
-  artifactKey: Guid(fced868608d1cc84fb2edff54427ffff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/EventListener.cs using Guid(fced868608d1cc84fb2edff54427ffff) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '12733e78c584cfb7c4e2f1ca194b1145') in 0.000400 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: 2.349316 seconds.
-  path: Assets/ToneTuneToolkit/README.md
-  artifactKey: Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/README.md using Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '216208e9a06273f3491d4ad9605e307f') in 0.008043 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: 12.268405 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/IO/FileCapturer.cs
-  artifactKey: Guid(6ca284afa024f8c44ae9d590409460be) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/IO/FileCapturer.cs using Guid(6ca284afa024f8c44ae9d590409460be) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '9c55ab1772c6041f713355eda3cad7b4') in 0.000427 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: 22.936875 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000481 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.001909 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000309 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.001999 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000284 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.017653 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.020973 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000363 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.019425 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000361 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.017764 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000362 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.017825 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000376 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.019716 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000405 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.019895 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000385 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.020685 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000394 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.017487 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000389 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.017286 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.016854 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000412 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.017792 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000589 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.016471 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000393 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.017515 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.019724 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000394 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.017131 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000453 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.019027 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000423 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.019354 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.012276 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009967 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011049 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009775 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000586 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.012223 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000385 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010209 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000391 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009684 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000381 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010493 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000383 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010257 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010894 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000394 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010306 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010534 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000398 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010892 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000419 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011023 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011390 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000385 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010074 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000378 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010182 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000381 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.013437 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000545 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011328 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011135 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000379 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010066 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010266 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009799 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000365 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011063 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010126 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000563 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010294 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010066 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010904 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010217 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000434 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009808 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000369 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010680 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010524 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011600 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000359 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010175 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000620 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009573 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000378 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011392 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000515 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010618 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000514 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010306 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009895 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000378 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010290 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000379 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009462 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000363 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011735 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000383 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010283 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000534 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009965 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000448 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010185 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000397 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010342 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000373 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.012020 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010972 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011272 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011628 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000391 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010606 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011385 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000404 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009587 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000364 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010341 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009591 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011343 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010460 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000443 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011580 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010625 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000460 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.000752 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000243 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.012173 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000454 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009388 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000361 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011544 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000376 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.013466 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000382 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009659 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000362 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009827 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000381 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010323 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010466 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000386 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009987 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000388 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010426 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000459 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009368 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009828 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000463 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009261 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000507 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009760 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000370 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010025 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000418 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009508 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000366 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009806 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000385 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009312 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000416 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010226 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000404 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010850 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000406 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011039 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000390 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009065 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000356 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010189 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009073 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000367 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009691 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000379 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009016 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000358 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009691 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000378 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009118 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010771 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000575 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009680 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000371 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010809 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000403 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009128 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000676 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009459 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000367 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011885 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000383 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009467 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000366 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011189 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000372 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009808 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000374 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009574 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000370 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010301 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000381 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009836 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000375 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.008970 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000524 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009652 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009403 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000396 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009704 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000376 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009206 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000367 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010680 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000377 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009114 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000356 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.010669 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000426 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009611 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000523 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.008823 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000387 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009498 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000523 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009323 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000381 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.008820 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000519 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009383 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000380 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009365 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000509 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.008778 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000352 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009489 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000543 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.011237 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000466 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009891 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000392 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.012215 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000386 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-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.009692 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs
-  artifactKey: Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Common/ToolkitManager.cs using Guid(e78023526f1cc764195f82106af59ffb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '00000000000000000000000000000000') in 0.000395 seconds
-Import Error Code:(4)
-Message: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-  ERROR: Build asset version error: assets/tonetunetoolkit/scripts/common/toolkitmanager.cs in SourceAssetDB has modification time of '2025-08-04T07:11:36.4984619Z' while content on disk has modification time of '2025-08-04T07:13:34.7820226Z'
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 0
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.733 seconds
-Refreshing native plugins compatible for Editor in 2.50 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  1.225 seconds
-Domain Reload Profiling: 1957ms
-	BeginReloadAssembly (251ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (10ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (115ms)
-	RebuildCommonClasses (29ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (32ms)
-	LoadAllAssembliesAndSetupDomain (410ms)
-		LoadAssemblies (469ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (26ms)
-			TypeCache.Refresh (11ms)
-				TypeCache.ScanAssembly (1ms)
-			ScanForSourceGeneratedMonoScriptInfo (7ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (1225ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (356ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (41ms)
-			SetLoadedEditorAssemblies (4ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (53ms)
-			ProcessInitializeOnLoadAttributes (230ms)
-			ProcessInitializeOnLoadMethodAttributes (21ms)
-			AfterProcessingInitializeOnLoad (7ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 2.80 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3235 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.1 KB). Loaded Objects now: 3719.
-Memory consumption went from 127.9 MB to 127.9 MB.
-Total: 3.967900 ms (FindLiveObjects: 0.349200 ms CreateObjectMapping: 0.240000 ms MarkObjects: 3.315500 ms  DeleteObjects: 0.061600 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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: 2695.792098 seconds.
-  path: Assets/ToneTuneToolkit/README.md
-  artifactKey: Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/README.md using Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'bafce1bf58441246c5f56526c6af8382') in 0.013357 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 1
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.542 seconds
-Refreshing native plugins compatible for Editor in 6.54 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.780 seconds
-Domain Reload Profiling: 1321ms
-	BeginReloadAssembly (182ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (8ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (46ms)
-	RebuildCommonClasses (32ms)
-	RebuildNativeTypeToScriptingClass (12ms)
-	initialDomainReloadingComplete (30ms)
-	LoadAllAssembliesAndSetupDomain (284ms)
-		LoadAssemblies (352ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (28ms)
-			TypeCache.Refresh (10ms)
-				TypeCache.ScanAssembly (1ms)
-			ScanForSourceGeneratedMonoScriptInfo (9ms)
-			ResolveRequiredComponents (8ms)
-	FinalizeReload (781ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (383ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (45ms)
-			SetLoadedEditorAssemblies (4ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (53ms)
-			ProcessInitializeOnLoadAttributes (247ms)
-			ProcessInitializeOnLoadMethodAttributes (22ms)
-			AfterProcessingInitializeOnLoad (12ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 2.12 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3235 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.2 KB). Loaded Objects now: 3722.
-Memory consumption went from 127.9 MB to 127.9 MB.
-Total: 3.371800 ms (FindLiveObjects: 0.251200 ms CreateObjectMapping: 0.195800 ms MarkObjects: 2.870500 ms  DeleteObjects: 0.053500 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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: 1208.378355 seconds.
-  path: Assets/ToneTuneToolkit/README.md
-  artifactKey: Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/README.md using Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '5fd41669becf8d9b965f5f83ad9e75be') in 0.010356 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 1

+ 0 - 141
ToneTuneToolkit/Logs/AssetImportWorker0.log

@@ -1,141 +0,0 @@
-Using pre-set license
-Built from '2022.3/staging' branch; Version is '2022.3.30f1 (70558241b701) revision 7361922'; Using compiler version '192829333'; Build Type 'Release'
-OS: 'Windows 10  (10.0.19045) 64bit Professional' Language: 'zh' Physical Memory: 15773 MB
-BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
-
-COMMAND LINE ARGUMENTS:
-C:\Workflow\Software\Unity\Editor\2022.3.30f1\Editor\Unity.exe
--adb2
--batchMode
--noUpm
--name
-AssetImportWorker0
--projectPath
-D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
--logFile
-Logs/AssetImportWorker0.log
--srvPort
-8014
-Successfully changed project path to: D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
-D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
-[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 [40124] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 2145490194 [EditorId] 2145490194 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
-
-Player connection [40124] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 2145490194 [EditorId] 2145490194 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
-
-[Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers.
-Refreshing native plugins compatible for Editor in 13.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Initialize engine version: 2022.3.30f1 (70558241b701)
-[Subsystems] Discovering subsystems at path C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Resources/UnitySubsystems
-[Subsystems] Discovering subsystems at path D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit/Assets
-GfxDevice: creating device client; threaded=0; jobified=0
-Direct3D:
-    Version:  Direct3D 11.0 [level 11.1]
-    Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2520)
-    Vendor:   NVIDIA
-    VRAM:     5996 MB
-    Driver:   32.0.15.6607
-Initialize mono
-Mono path[0] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Managed'
-Mono path[1] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
-Mono config path = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56048
-Begin MonoManager ReloadAssembly
-Registering precompiled unity dll's ...
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer/UnityEditor.VisionOS.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll
-Registered in 0.019367 seconds.
-- Loaded All Assemblies, in  0.408 seconds
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-[usbmuxd] Start listen thread
-[usbmuxd] Listen thread started
-[usbmuxd] Send listen message
-Native extension for iOS target not found
-Native extension for Android target not found
-Android Extension - Scanning For ADB Devices 2078 ms
-Native extension for WebGL target not found
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  2.422 seconds
-Domain Reload Profiling: 2828ms
-	BeginReloadAssembly (124ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (0ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (1ms)
-	RebuildCommonClasses (33ms)
-	RebuildNativeTypeToScriptingClass (10ms)
-	initialDomainReloadingComplete (73ms)
-	LoadAllAssembliesAndSetupDomain (166ms)
-		LoadAssemblies (123ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (162ms)
-			TypeCache.Refresh (160ms)
-				TypeCache.ScanAssembly (145ms)
-			ScanForSourceGeneratedMonoScriptInfo (0ms)
-			ResolveRequiredComponents (1ms)
-	FinalizeReload (2422ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (2363ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (2210ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (2ms)
-			ProcessInitializeOnLoadAttributes (101ms)
-			ProcessInitializeOnLoadMethodAttributes (46ms)
-			AfterProcessingInitializeOnLoad (0ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (0ms)
-========================================================================
-Worker process is ready to serve import requests
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.605 seconds
-Refreshing native plugins compatible for Editor in 2.59 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found

+ 26 - 378
ToneTuneToolkit/Logs/AssetImportWorker1-prev.log

@@ -15,7 +15,7 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 -logFile
 Logs/AssetImportWorker1.log
 -srvPort
-11070
+8014
 Successfully changed project path to: D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 [UnityMemory] Configuration Parameters - Can be set up in boot.config
@@ -49,12 +49,12 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
     "memorysetup-temp-allocator-size-cloud-worker=32768"
     "memorysetup-temp-allocator-size-gi-baking-worker=262144"
     "memorysetup-temp-allocator-size-gfx=262144"
-Player connection [15132] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 1365265549 [EditorId] 1365265549 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+Player connection [33192] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 3723103265 [EditorId] 3723103265 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
 
-Player connection [15132] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 1365265549 [EditorId] 1365265549 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+Player connection [33192] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 3723103265 [EditorId] 3723103265 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
 
 [Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers.
-Refreshing native plugins compatible for Editor in 9.61 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 11.57 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
 Initialize engine version: 2022.3.30f1 (70558241b701)
 [Subsystems] Discovering subsystems at path C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Resources/UnitySubsystems
@@ -70,7 +70,7 @@ Initialize mono
 Mono path[0] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Managed'
 Mono path[1] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
 Mono config path = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56440
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56508
 Begin MonoManager ReloadAssembly
 Registering precompiled unity dll's ...
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
@@ -79,8 +79,8 @@ Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer/UnityEditor.VisionOS.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll
-Registered in 0.016609 seconds.
-- Loaded All Assemblies, in  0.386 seconds
+Registered in 0.017232 seconds.
+- Loaded All Assemblies, in  0.402 seconds
 Native extension for UWP target not found
 Native extension for WindowsStandalone target not found
 Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
@@ -90,39 +90,39 @@ Native extension for VisionOS target not found
 [usbmuxd] Send listen message
 Native extension for iOS target not found
 Native extension for Android target not found
-Android Extension - Scanning For ADB Devices 1678 ms
+Android Extension - Scanning For ADB Devices 2094 ms
 Native extension for WebGL target not found
 Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  2.017 seconds
-Domain Reload Profiling: 2402ms
-	BeginReloadAssembly (111ms)
+- Finished resetting the current domain, in  2.433 seconds
+Domain Reload Profiling: 2834ms
+	BeginReloadAssembly (119ms)
 		ExecutionOrderSort (0ms)
 		DisableScriptedObjects (0ms)
 		BackupInstance (0ms)
 		ReleaseScriptingObjects (0ms)
 		CreateAndSetChildDomain (1ms)
-	RebuildCommonClasses (32ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (68ms)
-	LoadAllAssembliesAndSetupDomain (164ms)
-		LoadAssemblies (111ms)
+	RebuildCommonClasses (34ms)
+	RebuildNativeTypeToScriptingClass (10ms)
+	initialDomainReloadingComplete (73ms)
+	LoadAllAssembliesAndSetupDomain (165ms)
+		LoadAssemblies (117ms)
 		RebuildTransferFunctionScriptingTraits (0ms)
 		AnalyzeDomain (161ms)
-			TypeCache.Refresh (159ms)
+			TypeCache.Refresh (160ms)
 				TypeCache.ScanAssembly (144ms)
-			ScanForSourceGeneratedMonoScriptInfo (0ms)
-			ResolveRequiredComponents (0ms)
-	FinalizeReload (2018ms)
+			ScanForSourceGeneratedMonoScriptInfo (1ms)
+			ResolveRequiredComponents (1ms)
+	FinalizeReload (2433ms)
 		ReleaseScriptCaches (0ms)
 		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (1959ms)
+		SetupLoadedEditorAssemblies (2375ms)
 			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (1811ms)
+			InitializePlatformSupportModulesInManaged (2222ms)
 			SetLoadedEditorAssemblies (3ms)
 			RefreshPlugins (0ms)
 			BeforeProcessingInitializeOnLoad (2ms)
-			ProcessInitializeOnLoadAttributes (103ms)
-			ProcessInitializeOnLoadMethodAttributes (40ms)
+			ProcessInitializeOnLoadAttributes (104ms)
+			ProcessInitializeOnLoadMethodAttributes (43ms)
 			AfterProcessingInitializeOnLoad (0ms)
 			EditorAssembliesLoaded (0ms)
 		ExecutionOrderSort2 (0ms)
@@ -130,8 +130,8 @@ Domain Reload Profiling: 2402ms
 ========================================================================
 Worker process is ready to serve import requests
 Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.625 seconds
-Refreshing native plugins compatible for Editor in 2.92 ms, found 3 plugins.
+- Loaded All Assemblies, in  0.610 seconds
+Refreshing native plugins compatible for Editor in 2.36 ms, found 3 plugins.
 Native extension for UWP target not found
 Native extension for WindowsStandalone target not found
 Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
@@ -139,355 +139,3 @@ Native extension for VisionOS target not found
 Native extension for iOS target not found
 Native extension for Android target not found
 Native extension for WebGL target not found
-Package Manager log level set to [2]
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.595 seconds
-Domain Reload Profiling: 1219ms
-	BeginReloadAssembly (146ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (4ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (21ms)
-	RebuildCommonClasses (30ms)
-	RebuildNativeTypeToScriptingClass (8ms)
-	initialDomainReloadingComplete (25ms)
-	LoadAllAssembliesAndSetupDomain (414ms)
-		LoadAssemblies (321ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (185ms)
-			TypeCache.Refresh (163ms)
-				TypeCache.ScanAssembly (136ms)
-			ScanForSourceGeneratedMonoScriptInfo (15ms)
-			ResolveRequiredComponents (5ms)
-	FinalizeReload (595ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (448ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (43ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (64ms)
-			ProcessInitializeOnLoadAttributes (308ms)
-			ProcessInitializeOnLoadMethodAttributes (22ms)
-			AfterProcessingInitializeOnLoad (9ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (8ms)
-Launched and connected shader compiler UnityShaderCompiler.exe after 0.25 seconds
-Refreshing native plugins compatible for Editor in 2.16 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3245 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 39 unused Assets / (59.2 KB). Loaded Objects now: 3709.
-Memory consumption went from 128.5 MB to 128.5 MB.
-Total: 4.674200 ms (FindLiveObjects: 0.358300 ms CreateObjectMapping: 0.276300 ms MarkObjects: 3.867300 ms  DeleteObjects: 0.170700 ms)
-
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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
-- Loaded All Assemblies, in  0.456 seconds
-Refreshing native plugins compatible for Editor in 2.20 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.690 seconds
-Domain Reload Profiling: 1145ms
-	BeginReloadAssembly (161ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (6ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (35ms)
-	RebuildCommonClasses (29ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (25ms)
-	LoadAllAssembliesAndSetupDomain (231ms)
-		LoadAssemblies (297ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (21ms)
-			TypeCache.Refresh (8ms)
-				TypeCache.ScanAssembly (1ms)
-			ScanForSourceGeneratedMonoScriptInfo (6ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (691ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (353ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (41ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (50ms)
-			ProcessInitializeOnLoadAttributes (234ms)
-			ProcessInitializeOnLoadMethodAttributes (17ms)
-			AfterProcessingInitializeOnLoad (6ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (6ms)
-Refreshing native plugins compatible for Editor in 2.12 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3236 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.2 KB). Loaded Objects now: 3712.
-Memory consumption went from 126.6 MB to 126.6 MB.
-Total: 2.589200 ms (FindLiveObjects: 0.231500 ms CreateObjectMapping: 0.093000 ms MarkObjects: 2.213000 ms  DeleteObjects: 0.050800 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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
-- Loaded All Assemblies, in  0.663 seconds
-Refreshing native plugins compatible for Editor in 2.59 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  1.239 seconds
-Domain Reload Profiling: 1901ms
-	BeginReloadAssembly (177ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (6ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (45ms)
-	RebuildCommonClasses (45ms)
-	RebuildNativeTypeToScriptingClass (17ms)
-	initialDomainReloadingComplete (49ms)
-	LoadAllAssembliesAndSetupDomain (372ms)
-		LoadAssemblies (437ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (31ms)
-			TypeCache.Refresh (13ms)
-				TypeCache.ScanAssembly (0ms)
-			ScanForSourceGeneratedMonoScriptInfo (8ms)
-			ResolveRequiredComponents (9ms)
-	FinalizeReload (1240ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (686ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (56ms)
-			SetLoadedEditorAssemblies (5ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (78ms)
-			ProcessInitializeOnLoadAttributes (447ms)
-			ProcessInitializeOnLoadMethodAttributes (80ms)
-			AfterProcessingInitializeOnLoad (20ms)
-			EditorAssembliesLoaded (1ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (15ms)
-Refreshing native plugins compatible for Editor in 2.62 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3236 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.1 KB). Loaded Objects now: 3715.
-Memory consumption went from 126.6 MB to 126.6 MB.
-Total: 3.126800 ms (FindLiveObjects: 0.253900 ms CreateObjectMapping: 0.186900 ms MarkObjects: 2.625800 ms  DeleteObjects: 0.059200 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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
-- Loaded All Assemblies, in  0.740 seconds
-Refreshing native plugins compatible for Editor in 2.64 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  1.225 seconds
-Domain Reload Profiling: 1964ms
-	BeginReloadAssembly (280ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (10ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (139ms)
-	RebuildCommonClasses (31ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (32ms)
-	LoadAllAssembliesAndSetupDomain (385ms)
-		LoadAssemblies (446ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (26ms)
-			TypeCache.Refresh (11ms)
-				TypeCache.ScanAssembly (1ms)
-			ScanForSourceGeneratedMonoScriptInfo (7ms)
-			ResolveRequiredComponents (7ms)
-	FinalizeReload (1226ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (355ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (41ms)
-			SetLoadedEditorAssemblies (4ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (53ms)
-			ProcessInitializeOnLoadAttributes (229ms)
-			ProcessInitializeOnLoadMethodAttributes (21ms)
-			AfterProcessingInitializeOnLoad (7ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 2.83 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3236 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.2 KB). Loaded Objects now: 3718.
-Memory consumption went from 126.6 MB to 126.6 MB.
-Total: 3.885600 ms (FindLiveObjects: 0.339100 ms CreateObjectMapping: 0.246600 ms MarkObjects: 3.227300 ms  DeleteObjects: 0.071200 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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: 1644700.732013 seconds.
-  path: Assets/ToneTuneToolkit/README.md
-  artifactKey: Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/README.md using Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '9cde2d4c4efb232c9427999503ee0755') in 0.022530 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 1
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.536 seconds
-Refreshing native plugins compatible for Editor in 2.47 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.770 seconds
-Domain Reload Profiling: 1304ms
-	BeginReloadAssembly (178ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (7ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (47ms)
-	RebuildCommonClasses (29ms)
-	RebuildNativeTypeToScriptingClass (11ms)
-	initialDomainReloadingComplete (29ms)
-	LoadAllAssembliesAndSetupDomain (286ms)
-		LoadAssemblies (353ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (24ms)
-			TypeCache.Refresh (10ms)
-				TypeCache.ScanAssembly (1ms)
-			ScanForSourceGeneratedMonoScriptInfo (7ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (770ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (378ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (45ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (53ms)
-			ProcessInitializeOnLoadAttributes (246ms)
-			ProcessInitializeOnLoadMethodAttributes (24ms)
-			AfterProcessingInitializeOnLoad (6ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (9ms)
-Refreshing native plugins compatible for Editor in 2.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3235 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.2 KB). Loaded Objects now: 3722.
-Memory consumption went from 126.4 MB to 126.3 MB.
-Total: 3.273300 ms (FindLiveObjects: 0.256600 ms CreateObjectMapping: 0.185100 ms MarkObjects: 2.768000 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-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  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 -> 

+ 0 - 141
ToneTuneToolkit/Logs/AssetImportWorker1.log

@@ -1,141 +0,0 @@
-Using pre-set license
-Built from '2022.3/staging' branch; Version is '2022.3.30f1 (70558241b701) revision 7361922'; Using compiler version '192829333'; Build Type 'Release'
-OS: 'Windows 10  (10.0.19045) 64bit Professional' Language: 'zh' Physical Memory: 15773 MB
-BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
-
-COMMAND LINE ARGUMENTS:
-C:\Workflow\Software\Unity\Editor\2022.3.30f1\Editor\Unity.exe
--adb2
--batchMode
--noUpm
--name
-AssetImportWorker1
--projectPath
-D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
--logFile
-Logs/AssetImportWorker1.log
--srvPort
-8014
-Successfully changed project path to: D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
-D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
-[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 [33192] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 3723103265 [EditorId] 3723103265 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
-
-Player connection [33192] Host "[IP] 172.21.176.1 [Port] 0 [Flags] 2 [Guid] 3723103265 [EditorId] 3723103265 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
-
-[Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers.
-Refreshing native plugins compatible for Editor in 11.57 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Initialize engine version: 2022.3.30f1 (70558241b701)
-[Subsystems] Discovering subsystems at path C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Resources/UnitySubsystems
-[Subsystems] Discovering subsystems at path D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit/Assets
-GfxDevice: creating device client; threaded=0; jobified=0
-Direct3D:
-    Version:  Direct3D 11.0 [level 11.1]
-    Renderer: NVIDIA GeForce RTX 3060 Laptop GPU (ID=0x2520)
-    Vendor:   NVIDIA
-    VRAM:     5996 MB
-    Driver:   32.0.15.6607
-Initialize mono
-Mono path[0] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Managed'
-Mono path[1] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
-Mono config path = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56508
-Begin MonoManager ReloadAssembly
-Registering precompiled unity dll's ...
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer/UnityEditor.VisionOS.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
-Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll
-Registered in 0.017232 seconds.
-- Loaded All Assemblies, in  0.402 seconds
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-[usbmuxd] Start listen thread
-[usbmuxd] Listen thread started
-[usbmuxd] Send listen message
-Native extension for iOS target not found
-Native extension for Android target not found
-Android Extension - Scanning For ADB Devices 2094 ms
-Native extension for WebGL target not found
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  2.433 seconds
-Domain Reload Profiling: 2834ms
-	BeginReloadAssembly (119ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (0ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (1ms)
-	RebuildCommonClasses (34ms)
-	RebuildNativeTypeToScriptingClass (10ms)
-	initialDomainReloadingComplete (73ms)
-	LoadAllAssembliesAndSetupDomain (165ms)
-		LoadAssemblies (117ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (161ms)
-			TypeCache.Refresh (160ms)
-				TypeCache.ScanAssembly (144ms)
-			ScanForSourceGeneratedMonoScriptInfo (1ms)
-			ResolveRequiredComponents (1ms)
-	FinalizeReload (2433ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (2375ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (2222ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (2ms)
-			ProcessInitializeOnLoadAttributes (104ms)
-			ProcessInitializeOnLoadMethodAttributes (43ms)
-			AfterProcessingInitializeOnLoad (0ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (0ms)
-========================================================================
-Worker process is ready to serve import requests
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.610 seconds
-Refreshing native plugins compatible for Editor in 2.36 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found

+ 0 - 3
ToneTuneToolkit/Logs/shadercompiler-UnityShaderCompiler.exe0.log

@@ -1,7 +1,4 @@
 Base path: 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data', plugins path 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines'
 Cmd: initializeCompiler
 
-Cmd: preprocess
- insize=5058 file=Assets/ToneTuneToolkit/Shaders/FrostedGlass.shader surfaceOnly=0 buildPlatform=19 validAPIs=295472 pKW=SHADER_API_DESKTOP dKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL ok=1 outsize=1044
-
 Cmd: shutdown

+ 0 - 7
ToneTuneToolkit/Logs/shadercompiler-UnityShaderCompiler.exe1.log

@@ -1,7 +0,0 @@
-Base path: 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data', plugins path 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler
-
-Cmd: compileSnippet
-  insize=2428 file=Assets/ToneTuneToolkit/Shaders/FrostedGlass.shader pass=<Unnamed Pass 1> ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=36 ok=1 outsize=1794
-
-Cmd: shutdown

+ 0 - 7
ToneTuneToolkit/Logs/shadercompiler-UnityShaderCompiler.exe2.log

@@ -1,7 +0,0 @@
-Base path: 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data', plugins path 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler
-
-Cmd: compileSnippet
-  insize=2428 file=Assets/ToneTuneToolkit/Shaders/FrostedGlass.shader pass=<Unnamed Pass 1> ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=36 ok=1 outsize=886
-
-Cmd: shutdown

+ 0 - 7
ToneTuneToolkit/Logs/shadercompiler-UnityShaderCompiler.exe3.log

@@ -1,7 +0,0 @@
-Base path: 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data', plugins path 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler
-
-Cmd: compileSnippet
-  insize=2422 file=Assets/ToneTuneToolkit/Shaders/FrostedGlass.shader pass=<Unnamed Pass 3> ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=114 ok=1 outsize=1794
-
-Cmd: shutdown

+ 0 - 7
ToneTuneToolkit/Logs/shadercompiler-UnityShaderCompiler.exe4.log

@@ -1,7 +0,0 @@
-Base path: 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data', plugins path 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler
-
-Cmd: compileSnippet
-  insize=2422 file=Assets/ToneTuneToolkit/Shaders/FrostedGlass.shader pass=<Unnamed Pass 3> ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR uKW= dKW=UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=114 ok=1 outsize=886
-
-Cmd: shutdown

+ 9 - 9
ToneTuneToolkit/UserSettings/Layouts/default-2022.dwlt

@@ -19,7 +19,7 @@ MonoBehaviour:
     width: 2752
     height: 1068.8
   m_ShowMode: 4
-  m_Title: Hierarchy
+  m_Title: Inspector
   m_RootView: {fileID: 4}
   m_MinSize: {x: 875, y: 300}
   m_MaxSize: {x: 10000, y: 10000}
@@ -150,7 +150,7 @@ MonoBehaviour:
   m_MinSize: {x: 400, y: 100}
   m_MaxSize: {x: 32384, y: 16192}
   vertical: 0
-  controlID: 39
+  controlID: 137
 --- !u!114 &7
 MonoBehaviour:
   m_ObjectHideFlags: 52
@@ -443,9 +443,9 @@ MonoBehaviour:
     m_IsLocked: 0
   m_FolderTreeState:
     scrollPos: {x: 0, y: 0}
-    m_SelectedIDs: de5b0000
-    m_LastClickedID: 23518
-    m_ExpandedIDs: 00000000445b0000485b00004c5b0000d05b0000
+    m_SelectedIDs: 445b0000
+    m_LastClickedID: 23364
+    m_ExpandedIDs: 00000000245b0000265b0000285b00002a5b0000305b0000425b0000
     m_RenameOverlay:
       m_UserAcceptedRename: 0
       m_Name: 
@@ -473,7 +473,7 @@ MonoBehaviour:
     scrollPos: {x: 0, y: 0}
     m_SelectedIDs: 
     m_LastClickedID: 0
-    m_ExpandedIDs: 00000000445b0000465b0000485b00004a5b00004c5b0000
+    m_ExpandedIDs: 00000000245b0000265b0000285b00002a5b0000
     m_RenameOverlay:
       m_UserAcceptedRename: 0
       m_Name: 
@@ -500,7 +500,7 @@ MonoBehaviour:
   m_ListAreaState:
     m_SelectedInstanceIDs: 
     m_LastClickedInstanceID: 0
-    m_HadKeyboardFocusLastEvent: 1
+    m_HadKeyboardFocusLastEvent: 0
     m_ExpandedInstanceIDs: c6230000825300006a520000
     m_RenameOverlay:
       m_UserAcceptedRename: 0
@@ -1044,7 +1044,7 @@ MonoBehaviour:
         m_Value: 1
       m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
       m_Pivot: {x: 0, y: 0, z: 0}
-      m_Size: {x: 0.5, y: 0.5}
+      m_Size: {x: 1, y: 1}
     zGrid:
       m_Fade:
         m_Target: 0
@@ -1127,7 +1127,7 @@ MonoBehaviour:
       scrollPos: {x: 0, y: 0}
       m_SelectedIDs: 
       m_LastClickedID: 0
-      m_ExpandedIDs: 7ef9ffff2cfbffff
+      m_ExpandedIDs: 2cfbffff
       m_RenameOverlay:
         m_UserAcceptedRename: 0
         m_Name: