diff --git a/.specstory/history/2026-02-18_23-39Z-character-migrator-workflow-integration.md b/.specstory/history/2026-02-18_23-39Z-character-migrator-workflow-integration.md index 32eec18..3e43742 100644 --- a/.specstory/history/2026-02-18_23-39Z-character-migrator-workflow-integration.md +++ b/.specstory/history/2026-02-18_23-39Z-character-migrator-workflow-integration.md @@ -12299,28 +12299,31 @@ Parameters: ```json { - "subagentType": "unspecified", - "name": "general-purpose" + "description": "Fix Remove Original error", + "prompt": "Fix the error in DLM_OT_migrator_remove_original in T:\\Dynamic-Link-Manager\\ui\\operators.py.\n\nThe error is: `Failed to remove original: StructRNA of type Collection has been removed`\n\nThis happens because we're holding a reference to a Collection RNA struct that gets invalidated. The fix:\n\n1. Store the collection name before removal\n2. Use bpy.data.collections.remove() with the stored reference\n3. But be careful - if the collection is already being removed by some other process, handle that gracefully\n\nCurrent code:\n```python\ncoll = collection_containing_armature(orig)\nif coll:\n bpy.data.collections.remove(coll)\n```\n\nChange it to store the name first, then remove by the actual reference but wrap in try-except. Also, the issue might be that we're trying to remove a collection that's already linked/being removed. Let me check what the proper safe removal pattern is.\n\nActually, looking at the error - the issue is likely that `collection_containing_armature(orig)` returns a reference, but by the time we try to remove it, something has invalidated it. The fix should be:\n\n```python\ncoll = collection_containing_armature(orig)\nif coll:\n coll_name = coll.name # Store name before removal\n try:\n bpy.data.collections.remove(coll)\n self.report({\"INFO\"}, f\"Removed collection: {coll_name}\")\n except ReferenceError:\n # Collection was already removed\n self.report({\"WARNING\"}, f\"Collection {coll_name} was already removed\")\n```\n\nBut actually ReferenceError is for Python weakrefs, not Blender RNA. For Blender RNA we need RuntimeError or Exception.\n\nMake the fix that:\n1. Stores the collection name\n2. Tries to remove the collection\n3. Catches any exception and falls back to just removing the object\n4. Always clears the property and reports what happened", + "subagentType": "shell", + "model": "accounts/fireworks/models/kimi-k2p5", + "name": "shell" } ``` Additional data: ```json { - "status": "loading", - "subagentComposerId": "daaa74ba-72d7-4686-a95b-ae6379d17ee9", + "status": "success", + "subagentComposerId": "4f67a3b1-1537-4680-9763-d0c401c58d7e", "terminationReason": "completed", - "composerData": "{\"_v\":14,\"composerId\":\"4f67a3b1-1537-4680-9763-d0c401c58d7e\",\"richText\":\"\",\"hasLoaded\":true,\"text\":\"\",\"fullConversationHeadersOnly\":[{\"bubbleId\":\"03e1f8bf-59b9-4fb3-838b-e6ec5b3cd792\",\"type\":1},{\"bubbleId\":\"1d8e3687-efcf-4a34-90ed-cc7340c928ef\",\"type\":2},{\"bubbleId\":\"4235654f-8f8c-4694-8e53-4dfda8bca92f\",\"type\":2},{\"bubbleId\":\"87a52e0a-1884-49ac-8496-306afc7493c6\",\"type\":2},{\"bubbleId\":\"74bc7912-f77e-4bf5-b0ff-5cadff772956\",\"type\":2},{\"bubbleId\":\"574bbe54-dabc-480b-a8b9-20c408e49dd5\",\"type\":2},{\"bubbleId\":\"deca4b3e-c536-45f2-b189-6f64ec728fda\",\"type\":2},{\"bubbleId\":\"7642f9c0-fa52-4346-8574-867ce4f370c5\",\"type\":2},{\"bubbleId\":\"d2a3d6d3-703c-401a-b8e4-e3c21d925ab9\",\"type\":2},{\"bubbleId\":\"c5b5bd5b-c76c-464a-82f2-39adf5b4c4fe\",\"type\":2},{\"bubbleId\":\"71ef729a-f095-403b-9187-97e833d00400\",\"type\":2},{\"bubbleId\":\"85decfe5-b782-453a-a46b-9bc6447577cd\",\"type\":2},{\"bubbleId\":\"6090424e-c206-46e8-b894-311cd0987135\",\"type\":2},{\"bubbleId\":\"85175617-b96d-426e-9067-10cbea5cb301\",\"type\":2},{\"bubbleId\":\"6d32c946-933a-4429-b298-185df5728011\",\"type\":2},{\"bubbleId\":\"68eb0576-3f8b-436c-930f-ff7c98f4fe5c\",\"type\":2},{\"bubbleId\":\"288ad15f-6c43-484b-bed0-27019b97c6a5\",\"type\":2},{\"bubbleId\":\"6be76dad-ab67-4acb-b796-126a52a3b304\",\"type\":2},{\"bubbleId\":\"ae74fcda-8e53-4153-807c-88e25ce120f5\",\"type\":2},{\"bubbleId\":\"086ca09b-4c91-40ac-9334-f7f4f40768e0\",\"type\":2},{\"bubbleId\":\"dd97fda8-b5c0-4a5f-ab19-36052081746d\",\"type\":2},{\"bubbleId\":\"1a460620-a2e6-41b4-9d3c-5d4ed8ce0a79\",\"type\":2},{\"bubbleId\":\"11e98c05-bb7d-47cf-aa18-01f1d0d20b88\",\"type\":2},{\"bubbleId\":\"2ed05302-5c78-4f54-be8c-e13c0c3f732d\",\"type\":2},{\"bubbleId\":\"47af8e0c-adfb-4e78-9d71-22f79f37072f\",\"type\":2},{\"bubbleId\":\"ed504c2c-ba52-444f-9eea-26f4645944f6\",\"type\":2},{\"bubbleId\":\"00965851-0403-4611-90b2-34286e2ff025\",\"type\":2},{\"bubbleId\":\"0a054175-32fe-4c6b-86c1-0a3ed50ec63c\",\"type\":2},{\"bubbleId\":\"52f77700-58bb-42cb-8d8e-3ae7a86e8ee8\",\"type\":2},{\"bubbleId\":\"1f231fd5-45f1-439a-80c3-e437ec35af29\",\"type\":2},{\"bubbleId\":\"01ca46ef-c6bb-4e9d-951e-197782a1c3ff\",\"type\":2},{\"bubbleId\":\"aa162174-eccb-4ba7-82d7-f96586a1a37b\",\"type\":2},{\"bubbleId\":\"3bc47543-d628-4457-b0f6-be24029dc37a\",\"type\":2},{\"bubbleId\":\"a8e057f2-df3a-4639-b7a4-7885758e49c3\",\"type\":2},{\"bubbleId\":\"cf88bb46-1b5c-4262-8627-bbdccac4c006\",\"type\":2},{\"bubbleId\":\"9f307c24-ecd1-4de7-9e4b-0ee5371c016d\",\"type\":2}],\"conversationMap\":{\"03e1f8bf-59b9-4fb3-838b-e6ec5b3cd792\":\"{\\\"_v\\\":3,\\\"type\\\":1,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"8679a18e-7298-4384-ab50-6a2dc62e92b3\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Remove the \\\\\\\"Run Migration\\\\\\\" command from the Dynamic Link Manager addon. \\\\n\\\\n1. From T:\\\\\\\\Dynamic-Link-Manager\\\\\\\\ui\\\\\\\\panels.py:\\\\n - Remove the line with: `row.operator(\\\\\\\"dlm.run_character_migration\\\\\\\", text=\\\\\\\"Run migration\\\\\\\", icon=\\\\\\\"ARMATURE_DATA\\\\\\\")`\\\\n\\\\n2. From T:\\\\\\\\Dynamic-Link-Manager\\\\\\\\ui\\\\\\\\operators.py:\\\\n - Remove the DLM_OT_run_character_migration class definition\\\\n - Remove DLM_OT_run_character_migration from the OPERATOR_CLASSES list\\\\n - You can also remove the MIGRATOR_STEP_OPS constant if it's no longer used\\\\n\\\\nUse Python to make these edits and report what was changed.\\\"}\",\"1d8e3687-efcf-4a34-90ed-cc7340c928ef\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"f8659eab-db75-4f9a-a7c7-6685f003b13c\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\"}\",\"4235654f-8f8c-4694-8e53-4dfda8bca92f\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"08f0ecfe-e2c0-4b2f-90f6-827672d868b3\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The user wants me to remove the \\\\\\\"Run Migration\\\\\\\" command from the Dynamic Link Manager addon. I need to:\\\\n\\\\n1. Remove a specific line from `T:\\\\\\\\Dynamic-Link-Manager\\\\\\\\ui\\\\\\\\panels.py`\\\\n2. Remove a class definition from `T:\\\\\\\\Dynamic-Link-Manager\\\\\\\\ui\\\\\\\\operators.py`\\\\n3. Remove the class from the OPERATOR_CLASSES list\\\\n4. Potentially remove MIGRATOR_STEP_OPS constant if it's no longer used\\\\n\\\\nI should first read both files to understand their current content, then make the necessary edits using Python.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"87a52e0a-1884-49ac-8496-306afc7493c6\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"70945fb3-e2d3-4f5b-861b-db552541b923\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"I'll first read both files to understand their current content, then make the required edits.\\\"}\",\"74bc7912-f77e-4bf5-b0ff-5cadff772956\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"1ef6e08e-1f29-49b7-8fc7-4c17e03eb7d9\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:0\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:0\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"cat\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Read panels.py content\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nfrom bpy.types import Panel, UIList\\\\\\\\r\\\\\\\\nfrom . import properties\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_UL_library_list(UIList):\\\\\\\\r\\\\\\\\n def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):\\\\\\\\r\\\\\\\\n if self.layout_type in {\\\\\\\\\\\\\\\"DEFAULT\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"COMPACT\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n layout.scale_x = 0.4\\\\\\\\r\\\\\\\\n layout.label(text=item.name)\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n if item.is_missing:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif item.is_indirect:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n path_text = item.filepath or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if path_text.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = path_text.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif len(path_text) >= 2 and path_text[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"{path_text[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif path_text.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n short_path = \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n short_path = path_text[:15] + \\\\\\\\\\\\\\\"...\\\\\\\\\\\\\\\" if len(path_text) > 15 else path_text\\\\\\\\r\\\\\\\\n layout.label(text=short_path, icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif self.layout_type == \\\\\\\\\\\\\\\"GRID\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n layout.alignment = \\\\\\\\\\\\\\\"CENTER\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_short_path(filepath):\\\\\\\\r\\\\\\\\n if not filepath:\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if len(filepath) >= 2 and filepath[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"{filepath[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"/{parts[1]}/\\\\\\\\\\\\\\\" if len(parts) >= 2 else \\\\\\\\\\\\\\\"/ (root)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_PT_main_panel(Panel):\\\\\\\\r\\\\\\\\n bl_space_type = \\\\\\\\\\\\\\\"VIEW_3D\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_region_type = \\\\\\\\\\\\\\\"UI\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_category = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw_header(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n layout.operator(\\\\\\\\\\\\\\\"preferences.addon_show\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PREFERENCES\\\\\\\\\\\\\\\").module = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0]\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Path management\\\\\\\\r\\\\\\\\n row = layout.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # CharMig section (placeholder; full UI in implementation step 5)\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n box.label(text=\\\\\\\\\\\\\\\"Character Migrator\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Automatic pair discovery\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Original\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Replacement\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Situational\\\\\\\\r\\\\\\\\n situational_box = layout.box()\\\\\\\\r\\\\\\\\n situational_box.label(text=\\\\\\\\\\\\\\\"Situational Fixes\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"QUESTION\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Tweak Tools: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.tweak_tools_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_tools_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Tweak Tools\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.tweak_tools_section_expanded:\\\\\\\\r\\\\\\\\n tweak_box = layout.box()\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"NLA track\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Post-clean after bake\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Linked Libraries: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n missing_count = sum(1 for lib in props.linked_libraries if lib.is_missing)\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.linked_libraries_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"linked_libraries_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Linked Libraries Analysis\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libs, {missing_count} missing)\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libraries)\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries_section_expanded:\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Scan Linked Assets\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_assets_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.template_list(\\\\\\\\\\\\\\\"DLM_UL_library_list\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries_index\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n prefs = context.preferences.addons.get(__package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0])\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths:\\\\\\\\r\\\\\\\\n for i, path_item in enumerate(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(path_item, \\\\\\\\\\\\\\\"path\\\\\\\\\\\\\\\", text=f\\\\\\\\\\\\\\\"Search path {i+1}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"REMOVE\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.alignment = \\\\\\\\\\\\\\\"RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add search path\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ADD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Find libraries in these folders\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"VIEWZOOM\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries and 0 <= props.linked_libraries_index < len(props.linked_libraries):\\\\\\\\r\\\\\\\\n selected_lib = props.linked_libraries[props.linked_libraries_index]\\\\\\\\r\\\\\\\\n info_box = box.box()\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.alert = True\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Selected: {selected_lib.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif selected_lib.is_indirect:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Path: {selected_lib.filepath}\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.operator(\\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Open Blend\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\").filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n op = info_box.operator(\\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n op.target_filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":3264,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nfrom bpy.types import Panel, UIList\\\\\\\\r\\\\\\\\nfrom . import properties\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_UL_library_list(UIList):\\\\\\\\r\\\\\\\\n def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):\\\\\\\\r\\\\\\\\n if self.layout_type in {\\\\\\\\\\\\\\\"DEFAULT\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"COMPACT\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n layout.scale_x = 0.4\\\\\\\\r\\\\\\\\n layout.label(text=item.name)\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n if item.is_missing:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif item.is_indirect:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n path_text = item.filepath or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if path_text.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = path_text.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif len(path_text) >= 2 and path_text[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"{path_text[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif path_text.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n short_path = \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n short_path = path_text[:15] + \\\\\\\\\\\\\\\"...\\\\\\\\\\\\\\\" if len(path_text) > 15 else path_text\\\\\\\\r\\\\\\\\n layout.label(text=short_path, icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif self.layout_type == \\\\\\\\\\\\\\\"GRID\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n layout.alignment = \\\\\\\\\\\\\\\"CENTER\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_short_path(filepath):\\\\\\\\r\\\\\\\\n if not filepath:\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if len(filepath) >= 2 and filepath[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"{filepath[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"/{parts[1]}/\\\\\\\\\\\\\\\" if len(parts) >= 2 else \\\\\\\\\\\\\\\"/ (root)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_PT_main_panel(Panel):\\\\\\\\r\\\\\\\\n bl_space_type = \\\\\\\\\\\\\\\"VIEW_3D\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_region_type = \\\\\\\\\\\\\\\"UI\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_category = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw_header(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n layout.operator(\\\\\\\\\\\\\\\"preferences.addon_show\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PREFERENCES\\\\\\\\\\\\\\\").module = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0]\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Path management\\\\\\\\r\\\\\\\\n row = layout.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # CharMig section (placeholder; full UI in implementation step 5)\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n box.label(text=\\\\\\\\\\\\\\\"Character Migrator\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Automatic pair discovery\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Original\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Replacement\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Situational\\\\\\\\r\\\\\\\\n situational_box = layout.box()\\\\\\\\r\\\\\\\\n situational_box.label(text=\\\\\\\\\\\\\\\"Situational Fixes\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"QUESTION\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Tweak Tools: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.tweak_tools_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_tools_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Tweak Tools\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.tweak_tools_section_expanded:\\\\\\\\r\\\\\\\\n tweak_box = layout.box()\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"NLA track\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Post-clean after bake\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Linked Libraries: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n missing_count = sum(1 for lib in props.linked_libraries if lib.is_missing)\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.linked_libraries_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"linked_libraries_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Linked Libraries Analysis\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libs, {missing_count} missing)\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libraries)\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries_section_expanded:\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Scan Linked Assets\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_assets_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.template_list(\\\\\\\\\\\\\\\"DLM_UL_library_list\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries_index\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n prefs = context.preferences.addons.get(__package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0])\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths:\\\\\\\\r\\\\\\\\n for i, path_item in enumerate(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(path_item, \\\\\\\\\\\\\\\"path\\\\\\\\\\\\\\\", text=f\\\\\\\\\\\\\\\"Search path {i+1}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"REMOVE\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.alignment = \\\\\\\\\\\\\\\"RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add search path\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ADD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Find libraries in these folders\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"VIEWZOOM\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries and 0 <= props.linked_libraries_index < len(props.linked_libraries):\\\\\\\\r\\\\\\\\n selected_lib = props.linked_libraries[props.linked_libraries_index]\\\\\\\\r\\\\\\\\n info_box = box.box()\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.alert = True\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Selected: {selected_lib.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif selected_lib.is_indirect:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Path: {selected_lib.filepath}\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.operator(\\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Open Blend\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\").filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n op = info_box.operator(\\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n op.target_filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3221},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Read panels.py content\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Read panels.py content\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nfrom bpy.types import Panel, UIList\\\\\\\\r\\\\\\\\nfrom . import properties\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_UL_library_list(UIList):\\\\\\\\r\\\\\\\\n def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):\\\\\\\\r\\\\\\\\n if self.layout_type in {\\\\\\\\\\\\\\\"DEFAULT\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"COMPACT\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n layout.scale_x = 0.4\\\\\\\\r\\\\\\\\n layout.label(text=item.name)\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n if item.is_missing:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif item.is_indirect:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n path_text = item.filepath or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if path_text.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = path_text.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif len(path_text) >= 2 and path_text[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"{path_text[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif path_text.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n short_path = \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n short_path = path_text[:15] + \\\\\\\\\\\\\\\"...\\\\\\\\\\\\\\\" if len(path_text) > 15 else path_text\\\\\\\\r\\\\\\\\n layout.label(text=short_path, icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif self.layout_type == \\\\\\\\\\\\\\\"GRID\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n layout.alignment = \\\\\\\\\\\\\\\"CENTER\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_short_path(filepath):\\\\\\\\r\\\\\\\\n if not filepath:\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if len(filepath) >= 2 and filepath[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"{filepath[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"/{parts[1]}/\\\\\\\\\\\\\\\" if len(parts) >= 2 else \\\\\\\\\\\\\\\"/ (root)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_PT_main_panel(Panel):\\\\\\\\r\\\\\\\\n bl_space_type = \\\\\\\\\\\\\\\"VIEW_3D\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_region_type = \\\\\\\\\\\\\\\"UI\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_category = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw_header(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n layout.operator(\\\\\\\\\\\\\\\"preferences.addon_show\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PREFERENCES\\\\\\\\\\\\\\\").module = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0]\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Path management\\\\\\\\r\\\\\\\\n row = layout.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # CharMig section (placeholder; full UI in implementation step 5)\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n box.label(text=\\\\\\\\\\\\\\\"Character Migrator\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Automatic pair discovery\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Original\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Replacement\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Situational\\\\\\\\r\\\\\\\\n situational_box = layout.box()\\\\\\\\r\\\\\\\\n situational_box.label(text=\\\\\\\\\\\\\\\"Situational Fixes\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"QUESTION\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Tweak Tools: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.tweak_tools_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_tools_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Tweak Tools\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.tweak_tools_section_expanded:\\\\\\\\r\\\\\\\\n tweak_box = layout.box()\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"NLA track\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Post-clean after bake\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Linked Libraries: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n missing_count = sum(1 for lib in props.linked_libraries if lib.is_missing)\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.linked_libraries_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"linked_libraries_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Linked Libraries Analysis\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libs, {missing_count} missing)\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libraries)\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries_section_expanded:\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Scan Linked Assets\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_assets_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.template_list(\\\\\\\\\\\\\\\"DLM_UL_library_list\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries_index\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n prefs = context.preferences.addons.get(__package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0])\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths:\\\\\\\\r\\\\\\\\n for i, path_item in enumerate(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(path_item, \\\\\\\\\\\\\\\"path\\\\\\\\\\\\\\\", text=f\\\\\\\\\\\\\\\"Search path {i+1}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"REMOVE\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.alignment = \\\\\\\\\\\\\\\"RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add search path\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ADD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Find libraries in these folders\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"VIEWZOOM\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries and 0 <= props.linked_libraries_index < len(props.linked_libraries):\\\\\\\\r\\\\\\\\n selected_lib = props.linked_libraries[props.linked_libraries_index]\\\\\\\\r\\\\\\\\n info_box = box.box()\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.alert = True\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Selected: {selected_lib.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif selected_lib.is_indirect:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Path: {selected_lib.filepath}\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.operator(\\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Open Blend\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\").filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n op = info_box.operator(\\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n op.target_filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"574bbe54-dabc-480b-a8b9-20c408e49dd5\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"40ab1c57-e081-4983-9506-19f4d38dd172\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:1\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:1\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"cat\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Read operators.py content\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nimport os\\\\\\\\r\\\\\\\\nfrom bpy.types import Operator\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, BoolProperty\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, IntProperty\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nADDON_NAME = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0] if \\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\" in __package__ else __package__\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _prefs(context):\\\\\\\\r\\\\\\\\n return context.preferences.addons.get(ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_replace_linked_asset(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.replace_linked_asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Replace Linked Asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open file browser to replace the linked asset with another file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Path to the new asset file\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No object selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if getattr(obj, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None):\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' is linked from: {obj.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.data and getattr(obj.data, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and obj.data.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' has linked data from: {obj.data.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.type == \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\" and obj.data and obj.data.name in bpy.data.armatures:\\\\\\\\r\\\\\\\\n ad = bpy.data.armatures[obj.data.name]\\\\\\\\r\\\\\\\\n if getattr(ad, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and ad.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Armature '{obj.name}' data is linked from: {ad.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Selected object is not a linked asset\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_scan_linked_assets(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Scan Linked Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Scan the current file for linked libraries and list their status\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.scan_linked_assets(context, self.report)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_find_libraries_in_folders(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Find Libraries in Folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Search addon search paths for missing library blend files\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.find_libraries_in_folders(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_open_linked_file(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Open Linked File\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open the selected linked blend file in a new Blender instance\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No file path specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.wm.path_open(filepath=self.filepath)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Opening linked file: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to open linked file: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_add_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add a new folder to the list of search paths for finding libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs:\\\\\\\\r\\\\\\\\n p = prefs.preferences.search_paths.add()\\\\\\\\r\\\\\\\\n p.path = \\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Added search path: {p.path}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_remove_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove the selected search path from the list\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths.remove(self.index)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed search path at index {self.index}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_attempt_relink(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.attempt_relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Attempt Relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Try to relink missing libraries using the configured search paths\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.attempt_relink(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_browse_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Browse Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Browse to set the folder for the selected search path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"Search Path\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"DIR_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths[self.index].path = self.filepath\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Updated search path {self.index + 1}: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n self.filepath = prefs.preferences.search_paths[self.index].path\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_reload_libraries(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Reload all linked libraries (or fallback manual reload)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.outliner.lib_operation(type=\\\\\\\\\\\\\\\"RELOAD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Library reload operation completed\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n if lib.filepath and os.path.exists(bpy.path.abspath(lib.filepath)):\\\\\\\\r\\\\\\\\n lib.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Libraries reloaded manually\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to reload libraries: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_relative(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_relative()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made relative\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths relative: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_absolute(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_absolute()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made absolute\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths absolute: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_relocate_single_library(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Point the selected library to a new blend file and reload\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n target_filepath: StringProperty(name=\\\\\\\\\\\\\\\"Current Library Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"New Library File\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.target_filepath or not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No target or new file specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n abs_match = bpy.path.abspath(self.target_filepath) if self.target_filepath else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n library = None\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n if lib.filepath and bpy.path.abspath(lib.filepath) == abs_match:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n if lib.filepath == self.target_filepath:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n if not library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Could not resolve the selected library\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n library.filepath = self.filepath\\\\\\\\r\\\\\\\\n library.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Relocated to: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to relocate: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n if self.target_filepath:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n self.filepath = bpy.path.abspath(self.target_filepath)\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n self.filepath = self.target_filepath\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_migrator_pair(context):\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"Return (orig, rep) from scene props (manual or automatic). (None, None) if invalid.\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n from ..ops.migrator import get_pair_manual, get_pair_automatic\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n props = getattr(context.scene, \\\\\\\\\\\\\\\"dynamic_link_manager\\\\\\\\\\\\\\\", None)\\\\\\\\r\\\\\\\\n if not props:\\\\\\\\r\\\\\\\\n return None, None\\\\\\\\r\\\\\\\\n use_auto = getattr(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", False)\\\\\\\\r\\\\\\\\n orig, rep = get_pair_automatic(context) if use_auto else get_pair_manual(context)\\\\\\\\r\\\\\\\\n return orig, rep\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_copy_attributes(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy object and armature attributes from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair (set Original/Replacement or enable Automatic).\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_copy_attr\\\\\\\\r\\\\\\\\n run_copy_attr(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Copy attributes done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_migrate_nla(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate NLA tracks and strips from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_nla\\\\\\\\r\\\\\\\\n run_mig_nla(orig, rep, report=self.report)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_custom_properties(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy custom properties from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_cust_props\\\\\\\\r\\\\\\\\n run_mig_cust_props(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Custom properties done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_bone_constraints(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate bone constraints from original to replacement armature\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bone_const\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_mig_bone_const(orig, rep, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Bone constraints done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_retarget_relations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Retarget parent/child and other relations to the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_retarg_relatives\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_retarg_relatives(orig, rep, rep_descendants, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Retarget relations done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_basebody_shapekeys(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate base body mesh shape key values from original to replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bbody_shapekeys\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n run_mig_bbody_shapekeys(orig, rep, rep_descendants, context)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migrate BaseBody shapekeys done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy FK arm and finger rotations from original to replacement (uses constraints)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import copy_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = copy_fk_rotations(context, orig, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_bake(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake FK rotations to keyframes using nla.bake (similar to tweak tools)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n track_name: StringProperty(name=\\\\\\\\\\\\\\\"NLA Track\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Optional NLA track name for frame range\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n post_clean: BoolProperty(name=\\\\\\\\\\\\\\\"Post-clean\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Clean curves after bake\\\\\\\\\\\\\\\", default=False)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import bake_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = bake_fk_rotations(context, orig, rep, track_name=self.track_name or None, post_clean=self.post_clean)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove FK rotation COPY_TRANSFORMS constraints (similar to tweak_remove_arm)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import remove_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = remove_fk_rotations(context, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nMIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_remove_original(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Delete the original character armature and its data from the scene\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No original character selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Original and replacement cannot be the same object\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n name = orig.name\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n # Remove from scene\\\\\\\\r\\\\\\\\n bpy.data.objects.remove(orig, do_unlink=True)\\\\\\\\r\\\\\\\\n # Clear the property\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = None\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed original character: {name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to remove original: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_run_character_migration(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n steps = [\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_custom_properties,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n ]\\\\\\\\r\\\\\\\\n for i, op in enumerate(steps):\\\\\\\\r\\\\\\\\n result = op()\\\\\\\\r\\\\\\\\n if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_original_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the original character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Original: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_replacement_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the replacement character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.replacement_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Replacement: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _tweak_poll(context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n return orig is not None and rep is not None\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to arm bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove arm tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} arm tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake arm tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to leg bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} leg tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to both arm and leg bones\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm & leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove all arm and leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake all arm and leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nOPERATOR_CLASSES = [\\\\\\\\r\\\\\\\\n DLM_OT_replace_linked_asset,\\\\\\\\r\\\\\\\\n DLM_OT_scan_linked_assets,\\\\\\\\r\\\\\\\\n DLM_OT_find_libraries_in_folders,\\\\\\\\r\\\\\\\\n DLM_OT_open_linked_file,\\\\\\\\r\\\\\\\\n DLM_OT_add_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_remove_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_browse_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_attempt_relink,\\\\\\\\r\\\\\\\\n DLM_OT_reload_libraries,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_relative,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\r\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\r\\\\\\\\n DLM_OT_run_character_migration,\\\\\\\\r\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\r\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_migrate_nla,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_custom_properties,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_bone_constraints,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_retarget_relations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_both,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_bake,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_remove,\\\\\\\\r\\\\\\\\n]\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2999,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nimport os\\\\\\\\r\\\\\\\\nfrom bpy.types import Operator\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, BoolProperty\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, IntProperty\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nADDON_NAME = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0] if \\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\" in __package__ else __package__\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _prefs(context):\\\\\\\\r\\\\\\\\n return context.preferences.addons.get(ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_replace_linked_asset(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.replace_linked_asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Replace Linked Asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open file browser to replace the linked asset with another file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Path to the new asset file\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No object selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if getattr(obj, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None):\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' is linked from: {obj.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.data and getattr(obj.data, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and obj.data.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' has linked data from: {obj.data.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.type == \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\" and obj.data and obj.data.name in bpy.data.armatures:\\\\\\\\r\\\\\\\\n ad = bpy.data.armatures[obj.data.name]\\\\\\\\r\\\\\\\\n if getattr(ad, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and ad.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Armature '{obj.name}' data is linked from: {ad.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Selected object is not a linked asset\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_scan_linked_assets(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Scan Linked Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Scan the current file for linked libraries and list their status\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.scan_linked_assets(context, self.report)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_find_libraries_in_folders(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Find Libraries in Folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Search addon search paths for missing library blend files\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.find_libraries_in_folders(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_open_linked_file(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Open Linked File\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open the selected linked blend file in a new Blender instance\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No file path specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.wm.path_open(filepath=self.filepath)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Opening linked file: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to open linked file: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_add_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add a new folder to the list of search paths for finding libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs:\\\\\\\\r\\\\\\\\n p = prefs.preferences.search_paths.add()\\\\\\\\r\\\\\\\\n p.path = \\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Added search path: {p.path}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_remove_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove the selected search path from the list\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths.remove(self.index)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed search path at index {self.index}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_attempt_relink(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.attempt_relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Attempt Relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Try to relink missing libraries using the configured search paths\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.attempt_relink(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_browse_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Browse Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Browse to set the folder for the selected search path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"Search Path\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"DIR_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths[self.index].path = self.filepath\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Updated search path {self.index + 1}: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n self.filepath = prefs.preferences.search_paths[self.index].path\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_reload_libraries(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Reload all linked libraries (or fallback manual reload)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.outliner.lib_operation(type=\\\\\\\\\\\\\\\"RELOAD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Library reload operation completed\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n if lib.filepath and os.path.exists(bpy.path.abspath(lib.filepath)):\\\\\\\\r\\\\\\\\n lib.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Libraries reloaded manually\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to reload libraries: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_relative(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_relative()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made relative\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths relative: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_absolute(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_absolute()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made absolute\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths absolute: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_relocate_single_library(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Point the selected library to a new blend file and reload\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n target_filepath: StringProperty(name=\\\\\\\\\\\\\\\"Current Library Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"New Library File\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.target_filepath or not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No target or new file specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n abs_match = bpy.path.abspath(self.target_filepath) if self.target_filepath else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n library = None\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n if lib.filepath and bpy.path.abspath(lib.filepath) == abs_match:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n if lib.filepath == self.target_filepath:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n if not library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Could not resolve the selected library\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n library.filepath = self.filepath\\\\\\\\r\\\\\\\\n library.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Relocated to: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to relocate: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n if self.target_filepath:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n self.filepath = bpy.path.abspath(self.target_filepath)\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n self.filepath = self.target_filepath\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_migrator_pair(context):\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"Return (orig, rep) from scene props (manual or automatic). (None, None) if invalid.\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n from ..ops.migrator import get_pair_manual, get_pair_automatic\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n props = getattr(context.scene, \\\\\\\\\\\\\\\"dynamic_link_manager\\\\\\\\\\\\\\\", None)\\\\\\\\r\\\\\\\\n if not props:\\\\\\\\r\\\\\\\\n return None, None\\\\\\\\r\\\\\\\\n use_auto = getattr(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", False)\\\\\\\\r\\\\\\\\n orig, rep = get_pair_automatic(context) if use_auto else get_pair_manual(context)\\\\\\\\r\\\\\\\\n return orig, rep\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_copy_attributes(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy object and armature attributes from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair (set Original/Replacement or enable Automatic).\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_copy_attr\\\\\\\\r\\\\\\\\n run_copy_attr(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Copy attributes done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_migrate_nla(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate NLA tracks and strips from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_nla\\\\\\\\r\\\\\\\\n run_mig_nla(orig, rep, report=self.report)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_custom_properties(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy custom properties from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_cust_props\\\\\\\\r\\\\\\\\n run_mig_cust_props(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Custom properties done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_bone_constraints(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate bone constraints from original to replacement armature\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bone_const\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_mig_bone_const(orig, rep, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Bone constraints done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_retarget_relations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Retarget parent/child and other relations to the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_retarg_relatives\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_retarg_relatives(orig, rep, rep_descendants, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Retarget relations done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_basebody_shapekeys(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate base body mesh shape key values from original to replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bbody_shapekeys\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n run_mig_bbody_shapekeys(orig, rep, rep_descendants, context)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migrate BaseBody shapekeys done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy FK arm and finger rotations from original to replacement (uses constraints)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import copy_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = copy_fk_rotations(context, orig, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_bake(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake FK rotations to keyframes using nla.bake (similar to tweak tools)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n track_name: StringProperty(name=\\\\\\\\\\\\\\\"NLA Track\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Optional NLA track name for frame range\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n post_clean: BoolProperty(name=\\\\\\\\\\\\\\\"Post-clean\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Clean curves after bake\\\\\\\\\\\\\\\", default=False)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import bake_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = bake_fk_rotations(context, orig, rep, track_name=self.track_name or None, post_clean=self.post_clean)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove FK rotation COPY_TRANSFORMS constraints (similar to tweak_remove_arm)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import remove_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = remove_fk_rotations(context, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nMIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_remove_original(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Delete the original character armature and its data from the scene\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No original character selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Original and replacement cannot be the same object\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n name = orig.name\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n # Remove from scene\\\\\\\\r\\\\\\\\n bpy.data.objects.remove(orig, do_unlink=True)\\\\\\\\r\\\\\\\\n # Clear the property\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = None\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed original character: {name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to remove original: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_run_character_migration(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n steps = [\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_custom_properties,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n ]\\\\\\\\r\\\\\\\\n for i, op in enumerate(steps):\\\\\\\\r\\\\\\\\n result = op()\\\\\\\\r\\\\\\\\n if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_original_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the original character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Original: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_replacement_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the replacement character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.replacement_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Replacement: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _tweak_poll(context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n return orig is not None and rep is not None\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to arm bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove arm tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} arm tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake arm tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to leg bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} leg tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to both arm and leg bones\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm & leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove all arm and leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake all arm and leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nOPERATOR_CLASSES = [\\\\\\\\r\\\\\\\\n DLM_OT_replace_linked_asset,\\\\\\\\r\\\\\\\\n DLM_OT_scan_linked_assets,\\\\\\\\r\\\\\\\\n DLM_OT_find_libraries_in_folders,\\\\\\\\r\\\\\\\\n DLM_OT_open_linked_file,\\\\\\\\r\\\\\\\\n DLM_OT_add_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_remove_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_browse_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_attempt_relink,\\\\\\\\r\\\\\\\\n DLM_OT_reload_libraries,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_relative,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\r\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\r\\\\\\\\n DLM_OT_run_character_migration,\\\\\\\\r\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\r\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_migrate_nla,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_custom_properties,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_bone_constraints,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_retarget_relations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_both,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_bake,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_remove,\\\\\\\\r\\\\\\\\n]\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2959},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Read operators.py content\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Read operators.py content\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nimport os\\\\\\\\r\\\\\\\\nfrom bpy.types import Operator\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, BoolProperty\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, IntProperty\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nADDON_NAME = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0] if \\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\" in __package__ else __package__\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _prefs(context):\\\\\\\\r\\\\\\\\n return context.preferences.addons.get(ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_replace_linked_asset(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.replace_linked_asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Replace Linked Asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open file browser to replace the linked asset with another file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Path to the new asset file\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No object selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if getattr(obj, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None):\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' is linked from: {obj.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.data and getattr(obj.data, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and obj.data.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' has linked data from: {obj.data.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.type == \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\" and obj.data and obj.data.name in bpy.data.armatures:\\\\\\\\r\\\\\\\\n ad = bpy.data.armatures[obj.data.name]\\\\\\\\r\\\\\\\\n if getattr(ad, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and ad.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Armature '{obj.name}' data is linked from: {ad.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Selected object is not a linked asset\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_scan_linked_assets(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Scan Linked Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Scan the current file for linked libraries and list their status\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.scan_linked_assets(context, self.report)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_find_libraries_in_folders(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Find Libraries in Folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Search addon search paths for missing library blend files\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.find_libraries_in_folders(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_open_linked_file(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Open Linked File\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open the selected linked blend file in a new Blender instance\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No file path specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.wm.path_open(filepath=self.filepath)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Opening linked file: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to open linked file: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_add_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add a new folder to the list of search paths for finding libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs:\\\\\\\\r\\\\\\\\n p = prefs.preferences.search_paths.add()\\\\\\\\r\\\\\\\\n p.path = \\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Added search path: {p.path}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_remove_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove the selected search path from the list\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths.remove(self.index)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed search path at index {self.index}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_attempt_relink(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.attempt_relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Attempt Relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Try to relink missing libraries using the configured search paths\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.attempt_relink(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_browse_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Browse Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Browse to set the folder for the selected search path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"Search Path\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"DIR_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths[self.index].path = self.filepath\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Updated search path {self.index + 1}: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n self.filepath = prefs.preferences.search_paths[self.index].path\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_reload_libraries(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Reload all linked libraries (or fallback manual reload)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.outliner.lib_operation(type=\\\\\\\\\\\\\\\"RELOAD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Library reload operation completed\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n if lib.filepath and os.path.exists(bpy.path.abspath(lib.filepath)):\\\\\\\\r\\\\\\\\n lib.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Libraries reloaded manually\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to reload libraries: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_relative(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_relative()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made relative\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths relative: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_absolute(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_absolute()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made absolute\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths absolute: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_relocate_single_library(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Point the selected library to a new blend file and reload\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n target_filepath: StringProperty(name=\\\\\\\\\\\\\\\"Current Library Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"New Library File\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.target_filepath or not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No target or new file specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n abs_match = bpy.path.abspath(self.target_filepath) if self.target_filepath else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n library = None\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n if lib.filepath and bpy.path.abspath(lib.filepath) == abs_match:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n if lib.filepath == self.target_filepath:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n if not library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Could not resolve the selected library\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n library.filepath = self.filepath\\\\\\\\r\\\\\\\\n library.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Relocated to: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to relocate: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n if self.target_filepath:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n self.filepath = bpy.path.abspath(self.target_filepath)\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n self.filepath = self.target_filepath\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_migrator_pair(context):\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"Return (orig, rep) from scene props (manual or automatic). (None, None) if invalid.\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n from ..ops.migrator import get_pair_manual, get_pair_automatic\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n props = getattr(context.scene, \\\\\\\\\\\\\\\"dynamic_link_manager\\\\\\\\\\\\\\\", None)\\\\\\\\r\\\\\\\\n if not props:\\\\\\\\r\\\\\\\\n return None, None\\\\\\\\r\\\\\\\\n use_auto = getattr(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", False)\\\\\\\\r\\\\\\\\n orig, rep = get_pair_automatic(context) if use_auto else get_pair_manual(context)\\\\\\\\r\\\\\\\\n return orig, rep\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_copy_attributes(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy object and armature attributes from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair (set Original/Replacement or enable Automatic).\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_copy_attr\\\\\\\\r\\\\\\\\n run_copy_attr(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Copy attributes done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_migrate_nla(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate NLA tracks and strips from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_nla\\\\\\\\r\\\\\\\\n run_mig_nla(orig, rep, report=self.report)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_custom_properties(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy custom properties from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_cust_props\\\\\\\\r\\\\\\\\n run_mig_cust_props(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Custom properties done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_bone_constraints(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate bone constraints from original to replacement armature\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bone_const\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_mig_bone_const(orig, rep, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Bone constraints done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_retarget_relations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Retarget parent/child and other relations to the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_retarg_relatives\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_retarg_relatives(orig, rep, rep_descendants, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Retarget relations done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_basebody_shapekeys(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate base body mesh shape key values from original to replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bbody_shapekeys\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n run_mig_bbody_shapekeys(orig, rep, rep_descendants, context)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migrate BaseBody shapekeys done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy FK arm and finger rotations from original to replacement (uses constraints)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import copy_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = copy_fk_rotations(context, orig, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_bake(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake FK rotations to keyframes using nla.bake (similar to tweak tools)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n track_name: StringProperty(name=\\\\\\\\\\\\\\\"NLA Track\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Optional NLA track name for frame range\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n post_clean: BoolProperty(name=\\\\\\\\\\\\\\\"Post-clean\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Clean curves after bake\\\\\\\\\\\\\\\", default=False)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import bake_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = bake_fk_rotations(context, orig, rep, track_name=self.track_name or None, post_clean=self.post_clean)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove FK rotation COPY_TRANSFORMS constraints (similar to tweak_remove_arm)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import remove_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = remove_fk_rotations(context, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nMIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_remove_original(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Delete the original character armature and its data from the scene\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No original character selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Original and replacement cannot be the same object\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n name = orig.name\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n # Remove from scene\\\\\\\\r\\\\\\\\n bpy.data.objects.remove(orig, do_unlink=True)\\\\\\\\r\\\\\\\\n # Clear the property\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = None\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed original character: {name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to remove original: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_run_character_migration(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n steps = [\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_custom_properties,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n ]\\\\\\\\r\\\\\\\\n for i, op in enumerate(steps):\\\\\\\\r\\\\\\\\n result = op()\\\\\\\\r\\\\\\\\n if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_original_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the original character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Original: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_replacement_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the replacement character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.replacement_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Replacement: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _tweak_poll(context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n return orig is not None and rep is not None\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to arm bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove arm tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} arm tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake arm tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to leg bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} leg tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to both arm and leg bones\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm & leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove all arm and leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake all arm and leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nOPERATOR_CLASSES = [\\\\\\\\r\\\\\\\\n DLM_OT_replace_linked_asset,\\\\\\\\r\\\\\\\\n DLM_OT_scan_linked_assets,\\\\\\\\r\\\\\\\\n DLM_OT_find_libraries_in_folders,\\\\\\\\r\\\\\\\\n DLM_OT_open_linked_file,\\\\\\\\r\\\\\\\\n DLM_OT_add_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_remove_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_browse_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_attempt_relink,\\\\\\\\r\\\\\\\\n DLM_OT_reload_libraries,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_relative,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\r\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\r\\\\\\\\n DLM_OT_run_character_migration,\\\\\\\\r\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\r\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_migrate_nla,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_custom_properties,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_bone_constraints,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_retarget_relations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_both,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_bake,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_remove,\\\\\\\\r\\\\\\\\n]\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"deca4b3e-c536-45f2-b189-6f64ec728fda\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"1a2ef471-0add-458c-92f7-4626adb01a88\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"I have the content of both files. Now I need to:\\\\n\\\\n1. From panels.py: Remove the line with `row.operator(\\\\\\\"dlm.run_character_migration\\\\\\\", text=\\\\\\\"Run migration\\\\\\\", icon=\\\\\\\"ARMATURE_DATA\\\\\\\")`\\\\n\\\\n2. From operators.py:\\\\n - Remove the DLM_OT_run_character_migration class definition (lines ~295-310)\\\\n - Remove DLM_OT_run_character_migration from the OPERATOR_CLASSES list (line ~380)\\\\n - Remove the MIGRATOR_STEP_OPS constant if it's no longer used\\\\n\\\\nLet me first check if MIGRATOR_STEP_OPS is used anywhere else. From the output I can see the DLM_OT_run_character_migration class uses it, but if I remove the class, I need to check if anything else uses it.\\\\n\\\\nLet me use Python to make these edits. First, let me create a Python script to make these changes.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"7642f9c0-fa52-4346-8574-867ce4f370c5\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"5917631d-5d00-4f66-ac66-5a803e29a599\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Now I'll create a Python script to make these edits.\\\"}\",\"d2a3d6d3-703c-401a-b8e4-e3c21d925ab9\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"4bcce616-946b-4c96-a844-5f01395545ac\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:2\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python << 'EOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nEOF\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:2\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"python\\\\\\\"],\\\\\\\"hasInputRedirect\\\\\\\":true,\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"fullText\\\\\\\":\\\\\\\"python\\\\\\\"}],\\\\\\\"hasRedirects\\\\\\\":true},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Remove Run Migration command from addon files\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"failure\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python << 'EOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nEOF\\\\\\\",\\\\\\\"exitCode\\\\\\\":1,\\\\\\\"stderr\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-f3e1a616-7a88-4d8c-b91b-ac1cb59a50ea.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | python << 'EOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":645,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-f3e1a616-7a88-4d8c-b91b-ac1cb59a50ea.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | python << 'EOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":595},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Remove Run Migration command from addon files\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"error\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"python << 'EOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nEOF\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"fullText\\\\\\\":\\\\\\\"python\\\\\\\"}],\\\\\\\"hasRedirects\\\\\\\":true},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Remove Run Migration command from addon files\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-f3e1a616-7a88-4d8c-b91b-ac1cb59a50ea.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | python << 'EOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"exitCode\\\\\\\":1,\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"c5b5bd5b-c76c-464a-82f2-39adf5b4c4fe\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"05f9f1fb-f0da-4b6e-9c5c-71e73e1c6295\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The heredoc syntax isn't working in PowerShell. Let me write the Python script to a file and then execute it.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"71ef729a-f095-403b-9187-97e833d00400\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"5dfb683a-5fcb-4fb6-9383-1a9da8b5d879\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Let me write the Python script to a file first, then execute it.\\\"}\",\"85decfe5-b782-453a-a46b-9bc6447577cd\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"84e7a27b-6ea1-41ce-8399-ec2867e97b95\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.842Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:3\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nPYEOF\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:3\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"cat\\\\\\\"],\\\\\\\"hasInputRedirect\\\\\\\":true,\\\\\\\"hasOutputRedirect\\\\\\\":true,\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"fullText\\\\\\\":\\\\\\\"cat\\\\\\\"}],\\\\\\\"hasRedirects\\\\\\\":true},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Write Python script to file\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"failure\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nPYEOF\\\\\\\",\\\\\\\"exitCode\\\\\\\":1,\\\\\\\"stderr\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-cee3986e-ecfa-410a-bda6-8f3c3f91b8bc.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":713,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-cee3986e-ecfa-410a-bda6-8f3c3f91b8bc.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":673},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Write Python script to file\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"error\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nPYEOF\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"fullText\\\\\\\":\\\\\\\"cat\\\\\\\"}],\\\\\\\"hasRedirects\\\\\\\":true},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Write Python script to file\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-cee3986e-ecfa-410a-bda6-8f3c3f91b8bc.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"exitCode\\\\\\\":1,\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"6090424e-c206-46e8-b894-311cd0987135\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"5c94bcc2-4124-4277-b279-10700c9d92c4\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"Heredocs don't work in PowerShell. Let me try using echo or a different approach to write the script file.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"85175617-b96d-426e-9067-10cbea5cb301\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"5d97a5c3-ef77-4ad3-9f44-1baf0b6159e9\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:4\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:4\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Set-Content\\\\\\\",\\\\\\\"line\\\\\\\",\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Set-Content\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Value\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"@\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"raw_string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"'Run migration'\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"operator\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"No\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"changes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"made\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"line\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"not\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"found\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"line not found\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"DLM_OT_run_character_migration\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"from\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"OPERATOR_CLASSES\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"No\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"changes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\nEdits\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Write Python script using PowerShell\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\",\\\\\\\"executionTime\\\\\\\":2857,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2811},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Write Python script using PowerShell\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Set-Content\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Value\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"@\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"raw_string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"'Run migration'\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"operator\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"No\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"changes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"made\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"line\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"not\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"found\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"line not found\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"DLM_OT_run_character_migration\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"from\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"OPERATOR_CLASSES\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"No\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"changes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\nEdits\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Write Python script using PowerShell\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"6d32c946-933a-4429-b298-185df5728011\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"9ba996c9-4bac-4be3-bf52-ab0e74a1b103\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"Good, now I can execute the Python script.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"68eb0576-3f8b-436c-930f-ff7c98f4fe5c\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"a2726c8b-ed6b-4511-8463-36561e496e41\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:5\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:5\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"python\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Execute Python script to remove migration code\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\r\\\\\\\\noperators.py: Removed DLM_OT_run_character_migration class\\\\\\\\r\\\\\\\\noperators.py: Removed from OPERATOR_CLASSES list\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nEdits complete!\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":3446,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\r\\\\\\\\noperators.py: Removed DLM_OT_run_character_migration class\\\\\\\\r\\\\\\\\noperators.py: Removed from OPERATOR_CLASSES list\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nEdits complete!\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3406},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Execute Python script to remove migration code\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Execute Python script to remove migration code\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\r\\\\\\\\noperators.py: Removed DLM_OT_run_character_migration class\\\\\\\\r\\\\\\\\noperators.py: Removed from OPERATOR_CLASSES list\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nEdits complete!\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"288ad15f-6c43-484b-bed0-27019b97c6a5\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"73213f02-8e9d-4857-9812-86683a3cc260\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The edits were successful. Let me verify the changes by checking the relevant sections of both files.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"6be76dad-ab67-4acb-b796-126a52a3b304\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"28e116ae-cd21-4d56-ae04-a421763ab20d\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Let me verify the changes were applied correctly.\\\"}\",\"ae74fcda-8e53-4153-807c-88e25ce120f5\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"17019832-71f9-4e76-818e-d57f3c481d7f\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:6\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:6\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Verify migration operator removed from panels\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"executionTime\\\\\\\":3062,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3024},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Verify migration operator removed from panels\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Verify migration operator removed from panels\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"086ca09b-4c91-40ac-9334-f7f4f40768e0\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"35ecd03e-ad9f-4e7a-8ae0-8dfc307740b7\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:7\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:7\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Verify migration class removed from operators\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"executionTime\\\\\\\":3051,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3004},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Verify migration class removed from operators\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Verify migration class removed from operators\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"dd97fda8-b5c0-4a5f-ab19-36052081746d\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"84606438-a757-4bd7-b71e-f84440a8288a\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:8\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:8\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Check if MIGRATOR_STEP_OPS constant exists\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\nui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":3060,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\nui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3031},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Check if MIGRATOR_STEP_OPS constant exists\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Check if MIGRATOR_STEP_OPS constant exists\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\nui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"1a460620-a2e6-41b4-9d3c-5d4ed8ce0a79\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"80a3f05a-0b66-4927-81b7-df68e8ee3e84\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The changes were successful:\\\\n1. The \\\\\\\"Run migration\\\\\\\" line was removed from panels.py\\\\n2. The DLM_OT_run_character_migration class was removed from operators.py\\\\n3. The MIGRATOR_STEP_OPS constant still exists (I should check if it's used elsewhere before removing it)\\\\n\\\\nLet me check if MIGRATOR_STEP_OPS is used anywhere else in the file.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"11e98c05-bb7d-47cf-aa18-01f1d0d20b88\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"26e98a1e-90ac-44f4-9e02-033845dba678\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"The `MIGRATOR_STEP_OPS` constant still exists. Let me check if it's used anywhere else in the codebase.\\\"}\",\"2ed05302-5c78-4f54-be8c-e13c0c3f732d\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"6e0ecfe4-e0f5-42b1-85fa-e694ea1d0486\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:9\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:9\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"rg\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"rg\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"--type\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Search for MIGRATOR_STEP_OPS usage in codebase\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\",\\\\\\\"stderr\\\\\\\":\\\\\\\"rg: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-84b12f49-6263-424f-b479-a132598e3c4f.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\\r\\\\\\\\n | ~~\\\\\\\\r\\\\\\\\n | The term 'rg' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the\\\\\\\\r\\\\\\\\n | spelling of the name, or if a path was included, verify that the path is correct and try again.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2845,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"rg: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-84b12f49-6263-424f-b479-a132598e3c4f.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\\r\\\\\\\\n | ~~\\\\\\\\r\\\\\\\\n | The term 'rg' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the\\\\\\\\r\\\\\\\\n | spelling of the name, or if a path was included, verify that the path is correct and try again.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2804},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Search for MIGRATOR_STEP_OPS usage in codebase\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"rg\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"--type\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Search for MIGRATOR_STEP_OPS usage in codebase\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"rg: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-84b12f49-6263-424f-b479-a132598e3c4f.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\\r\\\\\\\\n | ~~\\\\\\\\r\\\\\\\\n | The term 'rg' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the\\\\\\\\r\\\\\\\\n | spelling of the name, or if a path was included, verify that the path is correct and try again.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"47af8e0c-adfb-4e78-9d71-22f79f37072f\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"4d4e7331-9fd8-488f-9f16-107fca36a96f\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"ripgrep is not available, let me use Select-String instead.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"ed504c2c-ba52-444f-9eea-26f4645944f6\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"04aee651-4ffb-4fab-921e-b06330f57ab0\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:10\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:10\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Context\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"number\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"2\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Check MIGRATOR_STEP_OPS context in operators.py\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:486:\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:487:\\\\\\\\r\\\\\\\\n> ui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:489: \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:490: \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2561,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:486:\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:487:\\\\\\\\r\\\\\\\\n> ui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:489: \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:490: \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2522},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Check MIGRATOR_STEP_OPS context in operators.py\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Context\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"number\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"2\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Check MIGRATOR_STEP_OPS context in operators.py\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:486:\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:487:\\\\\\\\r\\\\\\\\n> ui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:489: \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:490: \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"00965851-0403-4611-90b2-34286e2ff025\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"e85f1f59-85e1-48a2-b434-53b5416bdc86\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The MIGRATOR_STEP_OPS constant still exists. Let me check if it's used anywhere in the file now that the DLM_OT_run_character_migration class has been removed. If it's no longer used, I should remove it too. Let me check the context of the file to see if this constant is used elsewhere.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"0a054175-32fe-4c6b-86c1-0a3ed50ec63c\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"dc4e555a-4364-4007-9bed-0650172752e2\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:11\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" | ForEach-Object { $_.Line }\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:11\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\",\\\\\\\"ForEach-Object\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"ForEach-Object\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"{\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"$_.Line\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"}\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"ForEach-Object { $_.Line }\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"List all lines with MIGRATOR_STEP_OPS\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" | ForEach-Object { $_.Line }\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2615,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2582},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"List all lines with MIGRATOR_STEP_OPS\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" | ForEach-Object { $_.Line }\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"ForEach-Object\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"{\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"$_.Line\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"}\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"ForEach-Object { $_.Line }\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"List all lines with MIGRATOR_STEP_OPS\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"52f77700-58bb-42cb-8d8e-3ae7a86e8ee8\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"20ec41ad-74dd-4feb-a1cc-dc829082cf9b\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The MIGRATOR_STEP_OPS constant only appears once now (just its definition), which means it's no longer being used since the class that used it was removed. Let me remove it to keep the code clean.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"1f231fd5-45f1-439a-80c3-e437ec35af29\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"f8bda86d-3f35-4aad-bd9a-280388de37d0\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"The `MIGRATOR_STEP_OPS` constant is now only defined but not used. Let me remove it as well.\\\"}\",\"01ca46ef-c6bb-4e9d-951e-197782a1c3ff\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"a90d1158-6b35-45a9-a216-41ca47d1f19a\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:12\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:12\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"python\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-c\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Remove unused MIGRATOR_STEP_OPS constant\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"Found MIGRATOR_STEP_OPS at lines containing: MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attri...\\\\\\\\r\\\\\\\\nRemoved MIGRATOR_STEP_OPS constant\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":3039,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"Found MIGRATOR_STEP_OPS at lines containing: MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attri...\\\\\\\\r\\\\\\\\nRemoved MIGRATOR_STEP_OPS constant\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2988},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Remove unused MIGRATOR_STEP_OPS constant\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-c\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Remove unused MIGRATOR_STEP_OPS constant\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"Found MIGRATOR_STEP_OPS at lines containing: MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attri...\\\\\\\\r\\\\\\\\nRemoved MIGRATOR_STEP_OPS constant\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"aa162174-eccb-4ba7-82d7-f96586a1a37b\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"1e279954-3cee-49d4-a0e9-c54827ba80d9\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"All changes have been made. Let me verify the final state of the files and provide a summary to the user.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"3bc47543-d628-4457-b0f6-be24029dc37a\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"f59a5bc4-23a3-4416-a8b3-5a2b92d46d1e\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Let me verify the final state of both files.\\\"}\",\"a8e057f2-df3a-4639-b7a4-7885758e49c3\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"10c7779d-b3cc-4296-a79d-07e30d7aebbc\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:13\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:13\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"git\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"git\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"diff\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Show git diff of the changes\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"diff --git a/ui/operators.py b/ui/operators.py\\\\\\\\nindex a4aee00..de7f60a 100644\\\\\\\\n--- a/ui/operators.py\\\\\\\\n+++ b/ui/operators.py\\\\\\\\n@@ -485,14 +485,6 @@ class DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-MIGRATOR_STEP_OPS = (\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\n-)\\\\\\\\n \\\\\\\\n \\\\\\\\n class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n@@ -523,29 +515,6 @@ class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-class DLM_OT_run_character_migration(Operator):\\\\\\\\n- bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\n- bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n- def execute(self, context):\\\\\\\\n- steps = [\\\\\\\\n- bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\n- bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\n- bpy.ops.dlm.migrator_custom_properties,\\\\\\\\n- bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\n- bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\n- bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\n- ]\\\\\\\\n- for i, op in enumerate(steps):\\\\\\\\n- result = op()\\\\\\\\n- if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n \\\\\\\\n class DLM_OT_picker_original_character(Operator):\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\n@@ -784,7 +753,6 @@ OPERATOR_CLASSES = [\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\n- DLM_OT_run_character_migration,\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\ndiff --git a/ui/panels.py b/ui/panels.py\\\\\\\\nindex 3cafa01..43a23c6 100644\\\\\\\\n--- a/ui/panels.py\\\\\\\\n+++ b/ui/panels.py\\\\\\\\n@@ -85,7 +85,6 @@ class DLM_PT_main_panel(Panel):\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row()\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\n- row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row(align=True)\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2779,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"diff --git a/ui/operators.py b/ui/operators.py\\\\\\\\nindex a4aee00..de7f60a 100644\\\\\\\\n--- a/ui/operators.py\\\\\\\\n+++ b/ui/operators.py\\\\\\\\n@@ -485,14 +485,6 @@ class DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-MIGRATOR_STEP_OPS = (\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\n-)\\\\\\\\n \\\\\\\\n \\\\\\\\n class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n@@ -523,29 +515,6 @@ class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-class DLM_OT_run_character_migration(Operator):\\\\\\\\n- bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\n- bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n- def execute(self, context):\\\\\\\\n- steps = [\\\\\\\\n- bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\n- bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\n- bpy.ops.dlm.migrator_custom_properties,\\\\\\\\n- bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\n- bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\n- bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\n- ]\\\\\\\\n- for i, op in enumerate(steps):\\\\\\\\n- result = op()\\\\\\\\n- if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n \\\\\\\\n class DLM_OT_picker_original_character(Operator):\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\n@@ -784,7 +753,6 @@ OPERATOR_CLASSES = [\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\n- DLM_OT_run_character_migration,\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\ndiff --git a/ui/panels.py b/ui/panels.py\\\\\\\\nindex 3cafa01..43a23c6 100644\\\\\\\\n--- a/ui/panels.py\\\\\\\\n+++ b/ui/panels.py\\\\\\\\n@@ -85,7 +85,6 @@ class DLM_PT_main_panel(Panel):\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row()\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\n- row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row(align=True)\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2741},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Show git diff of the changes\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"git\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"diff\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Show git diff of the changes\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"diff --git a/ui/operators.py b/ui/operators.py\\\\\\\\nindex a4aee00..de7f60a 100644\\\\\\\\n--- a/ui/operators.py\\\\\\\\n+++ b/ui/operators.py\\\\\\\\n@@ -485,14 +485,6 @@ class DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-MIGRATOR_STEP_OPS = (\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\n-)\\\\\\\\n \\\\\\\\n \\\\\\\\n class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n@@ -523,29 +515,6 @@ class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-class DLM_OT_run_character_migration(Operator):\\\\\\\\n- bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\n- bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n- def execute(self, context):\\\\\\\\n- steps = [\\\\\\\\n- bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\n- bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\n- bpy.ops.dlm.migrator_custom_properties,\\\\\\\\n- bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\n- bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\n- bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\n- ]\\\\\\\\n- for i, op in enumerate(steps):\\\\\\\\n- result = op()\\\\\\\\n- if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n \\\\\\\\n class DLM_OT_picker_original_character(Operator):\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\n@@ -784,7 +753,6 @@ OPERATOR_CLASSES = [\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\n- DLM_OT_run_character_migration,\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\ndiff --git a/ui/panels.py b/ui/panels.py\\\\\\\\nindex 3cafa01..43a23c6 100644\\\\\\\\n--- a/ui/panels.py\\\\\\\\n+++ b/ui/panels.py\\\\\\\\n@@ -85,7 +85,6 @@ class DLM_PT_main_panel(Panel):\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row()\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\n- row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row(align=True)\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"cf88bb46-1b5c-4262-8627-bbdccac4c006\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"9f6dc11d-642f-495b-a3d1-fc1dd57a772b\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"All changes have been made successfully. Let me summarize what was changed for the user.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"9f307c24-ecd1-4de7-9e4b-0ee5371c016d\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"895d18d1-1857-43c8-8779-816888f70671\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T16:25:47.843Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"All changes have been completed successfully. Here's a summary of what was removed:\\\\n\\\\n**panels.py:**\\\\n- Removed the line: `row.operator(\\\\\\\"dlm.run_character_migration\\\\\\\", text=\\\\\\\"Run migration\\\\\\\", icon=\\\\\\\"ARMATURE_DATA\\\\\\\")`\\\\n\\\\n**operators.py:**\\\\n- Removed the `MIGRATOR_STEP_OPS` constant (tuple of 6 migration step operator IDs)\\\\n- Removed the entire `DLM_OT_run_character_migration` class (24 lines including docstring and execute method)\\\\n- Removed `DLM_OT_run_character_migration` from the `OPERATOR_CLASSES` list\\\\n\\\\nThe \\\\\\\"Run Migration\\\\\\\" command has been completely removed from the Dynamic Link Manager addon. The individual migration step operators (`migrator_copy_attributes`, `migrator_migrate_nla`, etc.) remain available in the UI for users who want to run specific migration steps manually.\\\"}\"},\"status\":\"completed\",\"context\":{\"composers\":[],\"selectedCommits\":[],\"selectedPullRequests\":[],\"selectedImages\":[],\"folderSelections\":[],\"fileSelections\":[],\"selections\":[],\"terminalSelections\":[],\"selectedDocs\":[],\"externalLinks\":[],\"cursorRules\":[],\"cursorCommands\":[],\"gitPRDiffSelections\":[],\"subagentSelections\":[],\"browserSelections\":[],\"mentions\":{\"composers\":{},\"selectedCommits\":{},\"selectedPullRequests\":{},\"gitDiff\":[],\"gitDiffFromBranchToMain\":[],\"selectedImages\":{},\"folderSelections\":{},\"fileSelections\":{},\"terminalFiles\":{},\"selections\":{},\"terminalSelections\":{},\"selectedDocs\":{},\"externalLinks\":{},\"diffHistory\":[],\"cursorRules\":{},\"cursorCommands\":{},\"uiElementSelections\":[],\"consoleLogs\":[],\"ideEditorsState\":[],\"gitPRDiffSelections\":{},\"subagentSelections\":{},\"browserSelections\":{}}},\"generatingBubbleIds\":[],\"isReadingLongFile\":false,\"codeBlockData\":{},\"originalFileStates\":{},\"newlyCreatedFiles\":[],\"newlyCreatedFolders\":[],\"createdAt\":1773159549923,\"hasChangedContext\":false,\"activeTabsShouldBeReactive\":true,\"capabilities\":[{\"type\":30,\"data\":{}},{\"type\":15,\"data\":{\"bubbleDataMap\":\"{}\"}},{\"type\":29,\"data\":{}}],\"name\":\"Removal of run migration command\",\"isFileListExpanded\":false,\"browserChipManuallyDisabled\":false,\"browserChipManuallyEnabled\":false,\"unifiedMode\":\"agent\",\"forceMode\":\"edit\",\"usageData\":{},\"contextUsagePercent\":7.838167938931298,\"contextTokensUsed\":20536,\"contextTokenLimit\":262000,\"allAttachedFileCodeChunksUris\":[],\"modelConfig\":{\"modelName\":\"accounts/fireworks/models/kimi-k2p5\",\"maxMode\":false},\"subComposerIds\":[],\"subagentComposerIds\":[],\"capabilityContexts\":[],\"todos\":[],\"isQueueExpanded\":true,\"hasUnreadMessages\":false,\"gitHubPromptDismissed\":false,\"totalLinesAdded\":0,\"totalLinesRemoved\":0,\"addedFiles\":0,\"removedFiles\":0,\"isDraft\":false,\"isCreatingWorktree\":false,\"isApplyingWorktree\":false,\"isUndoingWorktree\":false,\"applied\":false,\"pendingCreateWorktree\":false,\"worktreeStartedReadOnly\":false,\"isBestOfNSubcomposer\":false,\"isBestOfNParent\":false,\"bestOfNJudgeWinner\":false,\"isSpec\":false,\"isProject\":false,\"isSpecSubagentDone\":false,\"isContinuationInProgress\":false,\"stopHookLoopCount\":0,\"activeBranch\":{\"branchName\":\"main\",\"lastInteractionAt\":1773159621331},\"branches\":[{\"branchName\":\"main\",\"lastInteractionAt\":1773159621331}],\"speculativeSummarizationEncryptionKey\":\"S/v/pDvQI6+HkGX9kBxqzYVMA+ohXQ0s3Ct9um9s6Sk=\",\"isNAL\":true,\"planModeSuggestionUsed\":false,\"debugModeSuggestionUsed\":false,\"conversationState\":\"~CiADMlu9ILmgeWdAbj7yjTCJeqIgnZkCyy/9J/6t66BvxwoguIcmAa466mgDcfMggvp5CO5OmvdgWkQQwxw+ZssyIiQKIJC7/lUnroy7l8NxVFlYyim1YeQGyP+FRDUL7iwcy4OkCiBKiIJRxOjg7aT38HMj+EMz9CcpPk4HJCfvScRhpIqhKQogM2BTBTMlKQLZp+w9XAMJgQ2xTDcAfgSXkseVgqdo2qoKIAawWOuza2y62/1iWKmbe6bQ4F7MqBkAxQNOvEgW6c0uCiAd1/DsqmRRpoYzWuTawF9P4/TFuXWVOlOvLLOf4eAywwogIWwarqTcMhKWxUZs9mDCUifMSg5aF3r6z2boHsv9sXQKIDjwwN/ISDilCoQuFTN1oB2V3v/i/H3mWLj4NSyG/DmrCiBImTr3Cv1rNZgO2dgCU1j12VxEy3U9NY0oyqd3rYRuwwogORCItI2EtHsD941OBX/z/2/WGg+hMl2tvSS+qhP9xp0KIFO5O3NpgwTLi/E3Epqok27tQ4UIEwbeGBk/ErZpBD7cCiBwfCXY7k0GQx0uR2QkPP+DoYt7+1Sow6PzYabhAhxPcAogSUvzgvS0YYdHLsJIs7lawYSVKf8qQ3z5fGrIF6e3ijAKILxIPkQBwVM7XB+FhJmG/kpsbRZEVCSo50VNjttAJBndCiAfDCI1szSwOztn/5zAXRXAXK4kVJdzONKSOrla3DIYUAogEO9Zj9tL1mnuBSoY+UncvxB62t64GCcXFqt+Z+qd8w0KIBVVtNKX8raO0gsY+4xEgBAqClRIFV1pzh8ZznzaeInKCiCD86b3zZ+NAmwtZSlKk9YU8MRYoXcBsAUOKUCqWLIMjQogG8j+leyc/GvhECakuvPVDLiNUcBgAMXt2SAkqj3nrzYKINn2OVSHZ30oTQptjeAnShXKYPJ1pg2K/P6PlyU6FQbjCiAj/7W8N3xd7VxkZeWKoR3FlW9peP6w0d59OmvYUGw9xgogxPt5x2c58+hEZw+9E8w/rr7oDR5xq+SGcIsw1L5oXPAKIBZcZ7cfzGHsUb47oK6yXjRx1NESFs0ddCFlr6J7rk+TCiDESKuFwg8N5C2K85vWU09X2mLgTjKZKJzPY7yVHOF+kwogG8S6SK3Dr4B7foNjnuviwHxM7DhhNgx7jxmjTp1oyAMKILwEcZz4OSGSLxh9gTbXJ/tYZbvg5zh1Fsoa59kaJkFNCiDzRptk+XGcJ5ujT6yv605hH/543uJ9H1CuDwPYGhAHzAogFs3QQFeq0MkUq2yFdE9jFsizM1ITJ8edTzQr/ue4VFYqCAi4oAEQ8P4PQiB3WLo7cx5t/ki5tJEGExaYd/GoyADD7SLj9s+sgriLmUo0ZmlsZTovLy9hcHAvYmFja2VuZC9zZXJ2ZXIvdDolNUNEeW5hbWljLUxpbmstTWFuYWdlclAB\",\"queueItems\":[],\"blobEncryptionKey\":\"kGKicdzpoNbC57LZrf4kVwoIZlTFckpKcp2eEarFxDw=\",\"latestChatGenerationUUID\":\"65309e01-a12d-4f70-9c3a-571551ade4ec\",\"isAgentic\":true,\"subtitle\":\"All changes have been completed successfully. Here's a summa…\",\"filesChangedCount\":0,\"subagentInfo\":{\"subagentType\":3,\"parentComposerId\":\"0d22ef1f-f957-4efe-87d8-af8b5e920c90\",\"conversationLengthAtSpawn\":0,\"additionalData\":{},\"subagentTypeName\":\"shell\",\"toolCallId\":\"functions.Task:98\",\"parentRequestId\":\"b6f00fd6-a38e-49a6-897f-cd6a33d599e1\",\"rootParentRequestId\":\"b6f00fd6-a38e-49a6-897f-cd6a33d599e1\"}}" + "composerData": "{\"_v\":14,\"composerId\":\"4f67a3b1-1537-4680-9763-d0c401c58d7e\",\"richText\":\"\",\"hasLoaded\":true,\"text\":\"\",\"fullConversationHeadersOnly\":[{\"bubbleId\":\"03e1f8bf-59b9-4fb3-838b-e6ec5b3cd792\",\"type\":1},{\"bubbleId\":\"1d8e3687-efcf-4a34-90ed-cc7340c928ef\",\"type\":2},{\"bubbleId\":\"4235654f-8f8c-4694-8e53-4dfda8bca92f\",\"type\":2},{\"bubbleId\":\"87a52e0a-1884-49ac-8496-306afc7493c6\",\"type\":2},{\"bubbleId\":\"74bc7912-f77e-4bf5-b0ff-5cadff772956\",\"type\":2},{\"bubbleId\":\"574bbe54-dabc-480b-a8b9-20c408e49dd5\",\"type\":2},{\"bubbleId\":\"deca4b3e-c536-45f2-b189-6f64ec728fda\",\"type\":2},{\"bubbleId\":\"7642f9c0-fa52-4346-8574-867ce4f370c5\",\"type\":2},{\"bubbleId\":\"d2a3d6d3-703c-401a-b8e4-e3c21d925ab9\",\"type\":2},{\"bubbleId\":\"c5b5bd5b-c76c-464a-82f2-39adf5b4c4fe\",\"type\":2},{\"bubbleId\":\"71ef729a-f095-403b-9187-97e833d00400\",\"type\":2},{\"bubbleId\":\"85decfe5-b782-453a-a46b-9bc6447577cd\",\"type\":2},{\"bubbleId\":\"6090424e-c206-46e8-b894-311cd0987135\",\"type\":2},{\"bubbleId\":\"85175617-b96d-426e-9067-10cbea5cb301\",\"type\":2},{\"bubbleId\":\"6d32c946-933a-4429-b298-185df5728011\",\"type\":2},{\"bubbleId\":\"68eb0576-3f8b-436c-930f-ff7c98f4fe5c\",\"type\":2},{\"bubbleId\":\"288ad15f-6c43-484b-bed0-27019b97c6a5\",\"type\":2},{\"bubbleId\":\"6be76dad-ab67-4acb-b796-126a52a3b304\",\"type\":2},{\"bubbleId\":\"ae74fcda-8e53-4153-807c-88e25ce120f5\",\"type\":2},{\"bubbleId\":\"086ca09b-4c91-40ac-9334-f7f4f40768e0\",\"type\":2},{\"bubbleId\":\"dd97fda8-b5c0-4a5f-ab19-36052081746d\",\"type\":2},{\"bubbleId\":\"1a460620-a2e6-41b4-9d3c-5d4ed8ce0a79\",\"type\":2},{\"bubbleId\":\"11e98c05-bb7d-47cf-aa18-01f1d0d20b88\",\"type\":2},{\"bubbleId\":\"2ed05302-5c78-4f54-be8c-e13c0c3f732d\",\"type\":2},{\"bubbleId\":\"47af8e0c-adfb-4e78-9d71-22f79f37072f\",\"type\":2},{\"bubbleId\":\"ed504c2c-ba52-444f-9eea-26f4645944f6\",\"type\":2},{\"bubbleId\":\"00965851-0403-4611-90b2-34286e2ff025\",\"type\":2},{\"bubbleId\":\"0a054175-32fe-4c6b-86c1-0a3ed50ec63c\",\"type\":2},{\"bubbleId\":\"52f77700-58bb-42cb-8d8e-3ae7a86e8ee8\",\"type\":2},{\"bubbleId\":\"1f231fd5-45f1-439a-80c3-e437ec35af29\",\"type\":2},{\"bubbleId\":\"01ca46ef-c6bb-4e9d-951e-197782a1c3ff\",\"type\":2},{\"bubbleId\":\"aa162174-eccb-4ba7-82d7-f96586a1a37b\",\"type\":2},{\"bubbleId\":\"3bc47543-d628-4457-b0f6-be24029dc37a\",\"type\":2},{\"bubbleId\":\"a8e057f2-df3a-4639-b7a4-7885758e49c3\",\"type\":2},{\"bubbleId\":\"cf88bb46-1b5c-4262-8627-bbdccac4c006\",\"type\":2},{\"bubbleId\":\"9f307c24-ecd1-4de7-9e4b-0ee5371c016d\",\"type\":2}],\"conversationMap\":{\"03e1f8bf-59b9-4fb3-838b-e6ec5b3cd792\":\"{\\\"_v\\\":3,\\\"type\\\":1,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"5c47463f-8484-48d2-a417-b5c3ad2ff676\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.683Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Remove the \\\\\\\"Run Migration\\\\\\\" command from the Dynamic Link Manager addon. \\\\n\\\\n1. From T:\\\\\\\\Dynamic-Link-Manager\\\\\\\\ui\\\\\\\\panels.py:\\\\n - Remove the line with: `row.operator(\\\\\\\"dlm.run_character_migration\\\\\\\", text=\\\\\\\"Run migration\\\\\\\", icon=\\\\\\\"ARMATURE_DATA\\\\\\\")`\\\\n\\\\n2. From T:\\\\\\\\Dynamic-Link-Manager\\\\\\\\ui\\\\\\\\operators.py:\\\\n - Remove the DLM_OT_run_character_migration class definition\\\\n - Remove DLM_OT_run_character_migration from the OPERATOR_CLASSES list\\\\n - You can also remove the MIGRATOR_STEP_OPS constant if it's no longer used\\\\n\\\\nUse Python to make these edits and report what was changed.\\\"}\",\"1d8e3687-efcf-4a34-90ed-cc7340c928ef\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"bbb197c2-2441-41c4-a232-1ed74f29d848\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.683Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\"}\",\"4235654f-8f8c-4694-8e53-4dfda8bca92f\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"43e572c8-5c56-4d83-9829-4dabefbea9ee\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.683Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The user wants me to remove the \\\\\\\"Run Migration\\\\\\\" command from the Dynamic Link Manager addon. I need to:\\\\n\\\\n1. Remove a specific line from `T:\\\\\\\\Dynamic-Link-Manager\\\\\\\\ui\\\\\\\\panels.py`\\\\n2. Remove a class definition from `T:\\\\\\\\Dynamic-Link-Manager\\\\\\\\ui\\\\\\\\operators.py`\\\\n3. Remove the class from the OPERATOR_CLASSES list\\\\n4. Potentially remove MIGRATOR_STEP_OPS constant if it's no longer used\\\\n\\\\nI should first read both files to understand their current content, then make the necessary edits using Python.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"87a52e0a-1884-49ac-8496-306afc7493c6\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"90756f7a-24b6-4eb7-b508-1113f337fda8\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.683Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"I'll first read both files to understand their current content, then make the required edits.\\\"}\",\"74bc7912-f77e-4bf5-b0ff-5cadff772956\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"56d7ec65-17e4-4f14-9f21-7fb7f183ae52\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.683Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:0\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:0\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"cat\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Read panels.py content\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nfrom bpy.types import Panel, UIList\\\\\\\\r\\\\\\\\nfrom . import properties\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_UL_library_list(UIList):\\\\\\\\r\\\\\\\\n def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):\\\\\\\\r\\\\\\\\n if self.layout_type in {\\\\\\\\\\\\\\\"DEFAULT\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"COMPACT\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n layout.scale_x = 0.4\\\\\\\\r\\\\\\\\n layout.label(text=item.name)\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n if item.is_missing:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif item.is_indirect:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n path_text = item.filepath or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if path_text.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = path_text.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif len(path_text) >= 2 and path_text[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"{path_text[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif path_text.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n short_path = \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n short_path = path_text[:15] + \\\\\\\\\\\\\\\"...\\\\\\\\\\\\\\\" if len(path_text) > 15 else path_text\\\\\\\\r\\\\\\\\n layout.label(text=short_path, icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif self.layout_type == \\\\\\\\\\\\\\\"GRID\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n layout.alignment = \\\\\\\\\\\\\\\"CENTER\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_short_path(filepath):\\\\\\\\r\\\\\\\\n if not filepath:\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if len(filepath) >= 2 and filepath[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"{filepath[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"/{parts[1]}/\\\\\\\\\\\\\\\" if len(parts) >= 2 else \\\\\\\\\\\\\\\"/ (root)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_PT_main_panel(Panel):\\\\\\\\r\\\\\\\\n bl_space_type = \\\\\\\\\\\\\\\"VIEW_3D\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_region_type = \\\\\\\\\\\\\\\"UI\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_category = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw_header(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n layout.operator(\\\\\\\\\\\\\\\"preferences.addon_show\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PREFERENCES\\\\\\\\\\\\\\\").module = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0]\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Path management\\\\\\\\r\\\\\\\\n row = layout.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # CharMig section (placeholder; full UI in implementation step 5)\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n box.label(text=\\\\\\\\\\\\\\\"Character Migrator\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Automatic pair discovery\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Original\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Replacement\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Situational\\\\\\\\r\\\\\\\\n situational_box = layout.box()\\\\\\\\r\\\\\\\\n situational_box.label(text=\\\\\\\\\\\\\\\"Situational Fixes\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"QUESTION\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Tweak Tools: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.tweak_tools_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_tools_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Tweak Tools\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.tweak_tools_section_expanded:\\\\\\\\r\\\\\\\\n tweak_box = layout.box()\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"NLA track\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Post-clean after bake\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Linked Libraries: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n missing_count = sum(1 for lib in props.linked_libraries if lib.is_missing)\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.linked_libraries_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"linked_libraries_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Linked Libraries Analysis\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libs, {missing_count} missing)\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libraries)\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries_section_expanded:\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Scan Linked Assets\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_assets_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.template_list(\\\\\\\\\\\\\\\"DLM_UL_library_list\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries_index\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n prefs = context.preferences.addons.get(__package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0])\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths:\\\\\\\\r\\\\\\\\n for i, path_item in enumerate(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(path_item, \\\\\\\\\\\\\\\"path\\\\\\\\\\\\\\\", text=f\\\\\\\\\\\\\\\"Search path {i+1}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"REMOVE\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.alignment = \\\\\\\\\\\\\\\"RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add search path\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ADD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Find libraries in these folders\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"VIEWZOOM\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries and 0 <= props.linked_libraries_index < len(props.linked_libraries):\\\\\\\\r\\\\\\\\n selected_lib = props.linked_libraries[props.linked_libraries_index]\\\\\\\\r\\\\\\\\n info_box = box.box()\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.alert = True\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Selected: {selected_lib.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif selected_lib.is_indirect:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Path: {selected_lib.filepath}\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.operator(\\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Open Blend\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\").filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n op = info_box.operator(\\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n op.target_filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":3264,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nfrom bpy.types import Panel, UIList\\\\\\\\r\\\\\\\\nfrom . import properties\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_UL_library_list(UIList):\\\\\\\\r\\\\\\\\n def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):\\\\\\\\r\\\\\\\\n if self.layout_type in {\\\\\\\\\\\\\\\"DEFAULT\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"COMPACT\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n layout.scale_x = 0.4\\\\\\\\r\\\\\\\\n layout.label(text=item.name)\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n if item.is_missing:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif item.is_indirect:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n path_text = item.filepath or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if path_text.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = path_text.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif len(path_text) >= 2 and path_text[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"{path_text[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif path_text.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n short_path = \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n short_path = path_text[:15] + \\\\\\\\\\\\\\\"...\\\\\\\\\\\\\\\" if len(path_text) > 15 else path_text\\\\\\\\r\\\\\\\\n layout.label(text=short_path, icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif self.layout_type == \\\\\\\\\\\\\\\"GRID\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n layout.alignment = \\\\\\\\\\\\\\\"CENTER\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_short_path(filepath):\\\\\\\\r\\\\\\\\n if not filepath:\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if len(filepath) >= 2 and filepath[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"{filepath[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"/{parts[1]}/\\\\\\\\\\\\\\\" if len(parts) >= 2 else \\\\\\\\\\\\\\\"/ (root)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_PT_main_panel(Panel):\\\\\\\\r\\\\\\\\n bl_space_type = \\\\\\\\\\\\\\\"VIEW_3D\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_region_type = \\\\\\\\\\\\\\\"UI\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_category = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw_header(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n layout.operator(\\\\\\\\\\\\\\\"preferences.addon_show\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PREFERENCES\\\\\\\\\\\\\\\").module = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0]\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Path management\\\\\\\\r\\\\\\\\n row = layout.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # CharMig section (placeholder; full UI in implementation step 5)\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n box.label(text=\\\\\\\\\\\\\\\"Character Migrator\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Automatic pair discovery\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Original\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Replacement\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Situational\\\\\\\\r\\\\\\\\n situational_box = layout.box()\\\\\\\\r\\\\\\\\n situational_box.label(text=\\\\\\\\\\\\\\\"Situational Fixes\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"QUESTION\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Tweak Tools: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.tweak_tools_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_tools_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Tweak Tools\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.tweak_tools_section_expanded:\\\\\\\\r\\\\\\\\n tweak_box = layout.box()\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"NLA track\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Post-clean after bake\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Linked Libraries: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n missing_count = sum(1 for lib in props.linked_libraries if lib.is_missing)\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.linked_libraries_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"linked_libraries_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Linked Libraries Analysis\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libs, {missing_count} missing)\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libraries)\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries_section_expanded:\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Scan Linked Assets\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_assets_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.template_list(\\\\\\\\\\\\\\\"DLM_UL_library_list\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries_index\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n prefs = context.preferences.addons.get(__package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0])\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths:\\\\\\\\r\\\\\\\\n for i, path_item in enumerate(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(path_item, \\\\\\\\\\\\\\\"path\\\\\\\\\\\\\\\", text=f\\\\\\\\\\\\\\\"Search path {i+1}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"REMOVE\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.alignment = \\\\\\\\\\\\\\\"RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add search path\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ADD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Find libraries in these folders\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"VIEWZOOM\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries and 0 <= props.linked_libraries_index < len(props.linked_libraries):\\\\\\\\r\\\\\\\\n selected_lib = props.linked_libraries[props.linked_libraries_index]\\\\\\\\r\\\\\\\\n info_box = box.box()\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.alert = True\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Selected: {selected_lib.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif selected_lib.is_indirect:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Path: {selected_lib.filepath}\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.operator(\\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Open Blend\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\").filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n op = info_box.operator(\\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n op.target_filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3221},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Read panels.py content\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Read panels.py content\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nfrom bpy.types import Panel, UIList\\\\\\\\r\\\\\\\\nfrom . import properties\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_UL_library_list(UIList):\\\\\\\\r\\\\\\\\n def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):\\\\\\\\r\\\\\\\\n if self.layout_type in {\\\\\\\\\\\\\\\"DEFAULT\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"COMPACT\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n layout.scale_x = 0.4\\\\\\\\r\\\\\\\\n layout.label(text=item.name)\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n if item.is_missing:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif item.is_indirect:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n layout.scale_x = 0.3\\\\\\\\r\\\\\\\\n path_text = item.filepath or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if path_text.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = path_text.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif len(path_text) >= 2 and path_text[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n short_path = f\\\\\\\\\\\\\\\"{path_text[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n elif path_text.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n short_path = \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n short_path = path_text[:15] + \\\\\\\\\\\\\\\"...\\\\\\\\\\\\\\\" if len(path_text) > 15 else path_text\\\\\\\\r\\\\\\\\n layout.label(text=short_path, icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif self.layout_type == \\\\\\\\\\\\\\\"GRID\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n layout.alignment = \\\\\\\\\\\\\\\"CENTER\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n layout.label(text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_short_path(filepath):\\\\\\\\r\\\\\\\\n if not filepath:\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"// (relative)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\{parts[2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\" if len(parts) >= 3 else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ (network)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if len(filepath) >= 2 and filepath[1] == \\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"{filepath[:2]}\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n if filepath.startswith(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\"):\\\\\\\\r\\\\\\\\n parts = filepath.split(\\\\\\\\\\\\\\\"/\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return f\\\\\\\\\\\\\\\"/{parts[1]}/\\\\\\\\\\\\\\\" if len(parts) >= 2 else \\\\\\\\\\\\\\\"/ (root)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n return \\\\\\\\\\\\\\\"Unknown\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_PT_main_panel(Panel):\\\\\\\\r\\\\\\\\n bl_space_type = \\\\\\\\\\\\\\\"VIEW_3D\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_region_type = \\\\\\\\\\\\\\\"UI\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_category = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Dynamic Link Manager\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw_header(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n layout.operator(\\\\\\\\\\\\\\\"preferences.addon_show\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PREFERENCES\\\\\\\\\\\\\\\").module = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0]\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def draw(self, context):\\\\\\\\r\\\\\\\\n layout = self.layout\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Path management\\\\\\\\r\\\\\\\\n row = layout.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # CharMig section (placeholder; full UI in implementation step 5)\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n box.label(text=\\\\\\\\\\\\\\\"Character Migrator\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Automatic pair discovery\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Original\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Replacement\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Situational\\\\\\\\r\\\\\\\\n situational_box = layout.box()\\\\\\\\r\\\\\\\\n situational_box.label(text=\\\\\\\\\\\\\\\"Situational Fixes\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"QUESTION\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = situational_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Tweak Tools: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.tweak_tools_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_tools_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Tweak Tools\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.tweak_tools_section_expanded:\\\\\\\\r\\\\\\\\n tweak_box = layout.box()\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Arm\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Leg\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row(align=True)\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Bake Both\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"NLA track\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = tweak_box.row()\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Post-clean after bake\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n # Linked Libraries: header row (always), main box only when expanded\\\\\\\\r\\\\\\\\n missing_count = sum(1 for lib in props.linked_libraries if lib.is_missing)\\\\\\\\r\\\\\\\\n section_icon = \\\\\\\\\\\\\\\"DISCLOSURE_TRI_DOWN\\\\\\\\\\\\\\\" if props.linked_libraries_section_expanded else \\\\\\\\\\\\\\\"DISCLOSURE_TRI_RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row = layout.row(align=True)\\\\\\\\r\\\\\\\\n row.prop(props, \\\\\\\\\\\\\\\"linked_libraries_section_expanded\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=section_icon, icon_only=True)\\\\\\\\r\\\\\\\\n row.label(text=\\\\\\\\\\\\\\\"Linked Libraries Analysis\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libs, {missing_count} missing)\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n row.label(text=f\\\\\\\\\\\\\\\"({props.linked_assets_count} libraries)\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries_section_expanded:\\\\\\\\r\\\\\\\\n box = layout.box()\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Scan Linked Assets\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_assets_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.template_list(\\\\\\\\\\\\\\\"DLM_UL_library_list\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries\\\\\\\\\\\\\\\", props, \\\\\\\\\\\\\\\"linked_libraries_index\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_REFRESH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n prefs = context.preferences.addons.get(__package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0])\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths:\\\\\\\\r\\\\\\\\n for i, path_item in enumerate(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.prop(path_item, \\\\\\\\\\\\\\\"path\\\\\\\\\\\\\\\", text=f\\\\\\\\\\\\\\\"Search path {i+1}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"REMOVE\\\\\\\\\\\\\\\").index = i\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.alignment = \\\\\\\\\\\\\\\"RIGHT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Add search path\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ADD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if missing_count > 0:\\\\\\\\r\\\\\\\\n row = box.row()\\\\\\\\r\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Find libraries in these folders\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"VIEWZOOM\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if props.linked_libraries and 0 <= props.linked_libraries_index < len(props.linked_libraries):\\\\\\\\r\\\\\\\\n selected_lib = props.linked_libraries[props.linked_libraries_index]\\\\\\\\r\\\\\\\\n info_box = box.box()\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.alert = True\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Selected: {selected_lib.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n if selected_lib.is_missing:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: MISSING\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n elif selected_lib.is_indirect:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: INDIRECT\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n info_box.label(text=\\\\\\\\\\\\\\\"Status: OK\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.label(text=f\\\\\\\\\\\\\\\"Path: {selected_lib.filepath}\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n info_box.operator(\\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Open Blend\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_BLEND\\\\\\\\\\\\\\\").filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n op = info_box.operator(\\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"FILE_FOLDER\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n op.target_filepath = selected_lib.filepath\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"574bbe54-dabc-480b-a8b9-20c408e49dd5\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"f8762feb-f41c-4e54-a6be-0860f516b5a5\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:1\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:1\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"cat\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Read operators.py content\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nimport os\\\\\\\\r\\\\\\\\nfrom bpy.types import Operator\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, BoolProperty\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, IntProperty\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nADDON_NAME = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0] if \\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\" in __package__ else __package__\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _prefs(context):\\\\\\\\r\\\\\\\\n return context.preferences.addons.get(ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_replace_linked_asset(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.replace_linked_asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Replace Linked Asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open file browser to replace the linked asset with another file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Path to the new asset file\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No object selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if getattr(obj, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None):\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' is linked from: {obj.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.data and getattr(obj.data, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and obj.data.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' has linked data from: {obj.data.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.type == \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\" and obj.data and obj.data.name in bpy.data.armatures:\\\\\\\\r\\\\\\\\n ad = bpy.data.armatures[obj.data.name]\\\\\\\\r\\\\\\\\n if getattr(ad, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and ad.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Armature '{obj.name}' data is linked from: {ad.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Selected object is not a linked asset\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_scan_linked_assets(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Scan Linked Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Scan the current file for linked libraries and list their status\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.scan_linked_assets(context, self.report)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_find_libraries_in_folders(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Find Libraries in Folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Search addon search paths for missing library blend files\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.find_libraries_in_folders(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_open_linked_file(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Open Linked File\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open the selected linked blend file in a new Blender instance\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No file path specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.wm.path_open(filepath=self.filepath)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Opening linked file: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to open linked file: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_add_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add a new folder to the list of search paths for finding libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs:\\\\\\\\r\\\\\\\\n p = prefs.preferences.search_paths.add()\\\\\\\\r\\\\\\\\n p.path = \\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Added search path: {p.path}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_remove_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove the selected search path from the list\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths.remove(self.index)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed search path at index {self.index}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_attempt_relink(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.attempt_relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Attempt Relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Try to relink missing libraries using the configured search paths\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.attempt_relink(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_browse_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Browse Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Browse to set the folder for the selected search path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"Search Path\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"DIR_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths[self.index].path = self.filepath\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Updated search path {self.index + 1}: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n self.filepath = prefs.preferences.search_paths[self.index].path\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_reload_libraries(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Reload all linked libraries (or fallback manual reload)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.outliner.lib_operation(type=\\\\\\\\\\\\\\\"RELOAD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Library reload operation completed\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n if lib.filepath and os.path.exists(bpy.path.abspath(lib.filepath)):\\\\\\\\r\\\\\\\\n lib.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Libraries reloaded manually\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to reload libraries: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_relative(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_relative()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made relative\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths relative: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_absolute(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_absolute()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made absolute\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths absolute: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_relocate_single_library(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Point the selected library to a new blend file and reload\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n target_filepath: StringProperty(name=\\\\\\\\\\\\\\\"Current Library Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"New Library File\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.target_filepath or not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No target or new file specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n abs_match = bpy.path.abspath(self.target_filepath) if self.target_filepath else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n library = None\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n if lib.filepath and bpy.path.abspath(lib.filepath) == abs_match:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n if lib.filepath == self.target_filepath:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n if not library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Could not resolve the selected library\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n library.filepath = self.filepath\\\\\\\\r\\\\\\\\n library.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Relocated to: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to relocate: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n if self.target_filepath:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n self.filepath = bpy.path.abspath(self.target_filepath)\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n self.filepath = self.target_filepath\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_migrator_pair(context):\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"Return (orig, rep) from scene props (manual or automatic). (None, None) if invalid.\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n from ..ops.migrator import get_pair_manual, get_pair_automatic\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n props = getattr(context.scene, \\\\\\\\\\\\\\\"dynamic_link_manager\\\\\\\\\\\\\\\", None)\\\\\\\\r\\\\\\\\n if not props:\\\\\\\\r\\\\\\\\n return None, None\\\\\\\\r\\\\\\\\n use_auto = getattr(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", False)\\\\\\\\r\\\\\\\\n orig, rep = get_pair_automatic(context) if use_auto else get_pair_manual(context)\\\\\\\\r\\\\\\\\n return orig, rep\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_copy_attributes(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy object and armature attributes from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair (set Original/Replacement or enable Automatic).\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_copy_attr\\\\\\\\r\\\\\\\\n run_copy_attr(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Copy attributes done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_migrate_nla(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate NLA tracks and strips from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_nla\\\\\\\\r\\\\\\\\n run_mig_nla(orig, rep, report=self.report)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_custom_properties(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy custom properties from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_cust_props\\\\\\\\r\\\\\\\\n run_mig_cust_props(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Custom properties done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_bone_constraints(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate bone constraints from original to replacement armature\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bone_const\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_mig_bone_const(orig, rep, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Bone constraints done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_retarget_relations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Retarget parent/child and other relations to the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_retarg_relatives\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_retarg_relatives(orig, rep, rep_descendants, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Retarget relations done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_basebody_shapekeys(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate base body mesh shape key values from original to replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bbody_shapekeys\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n run_mig_bbody_shapekeys(orig, rep, rep_descendants, context)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migrate BaseBody shapekeys done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy FK arm and finger rotations from original to replacement (uses constraints)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import copy_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = copy_fk_rotations(context, orig, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_bake(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake FK rotations to keyframes using nla.bake (similar to tweak tools)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n track_name: StringProperty(name=\\\\\\\\\\\\\\\"NLA Track\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Optional NLA track name for frame range\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n post_clean: BoolProperty(name=\\\\\\\\\\\\\\\"Post-clean\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Clean curves after bake\\\\\\\\\\\\\\\", default=False)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import bake_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = bake_fk_rotations(context, orig, rep, track_name=self.track_name or None, post_clean=self.post_clean)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove FK rotation COPY_TRANSFORMS constraints (similar to tweak_remove_arm)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import remove_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = remove_fk_rotations(context, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nMIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_remove_original(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Delete the original character armature and its data from the scene\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No original character selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Original and replacement cannot be the same object\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n name = orig.name\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n # Remove from scene\\\\\\\\r\\\\\\\\n bpy.data.objects.remove(orig, do_unlink=True)\\\\\\\\r\\\\\\\\n # Clear the property\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = None\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed original character: {name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to remove original: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_run_character_migration(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n steps = [\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_custom_properties,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n ]\\\\\\\\r\\\\\\\\n for i, op in enumerate(steps):\\\\\\\\r\\\\\\\\n result = op()\\\\\\\\r\\\\\\\\n if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_original_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the original character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Original: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_replacement_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the replacement character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.replacement_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Replacement: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _tweak_poll(context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n return orig is not None and rep is not None\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to arm bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove arm tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} arm tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake arm tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to leg bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} leg tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to both arm and leg bones\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm & leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove all arm and leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake all arm and leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nOPERATOR_CLASSES = [\\\\\\\\r\\\\\\\\n DLM_OT_replace_linked_asset,\\\\\\\\r\\\\\\\\n DLM_OT_scan_linked_assets,\\\\\\\\r\\\\\\\\n DLM_OT_find_libraries_in_folders,\\\\\\\\r\\\\\\\\n DLM_OT_open_linked_file,\\\\\\\\r\\\\\\\\n DLM_OT_add_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_remove_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_browse_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_attempt_relink,\\\\\\\\r\\\\\\\\n DLM_OT_reload_libraries,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_relative,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\r\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\r\\\\\\\\n DLM_OT_run_character_migration,\\\\\\\\r\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\r\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_migrate_nla,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_custom_properties,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_bone_constraints,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_retarget_relations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_both,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_bake,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_remove,\\\\\\\\r\\\\\\\\n]\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2999,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nimport os\\\\\\\\r\\\\\\\\nfrom bpy.types import Operator\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, BoolProperty\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, IntProperty\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nADDON_NAME = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0] if \\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\" in __package__ else __package__\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _prefs(context):\\\\\\\\r\\\\\\\\n return context.preferences.addons.get(ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_replace_linked_asset(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.replace_linked_asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Replace Linked Asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open file browser to replace the linked asset with another file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Path to the new asset file\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No object selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if getattr(obj, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None):\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' is linked from: {obj.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.data and getattr(obj.data, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and obj.data.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' has linked data from: {obj.data.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.type == \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\" and obj.data and obj.data.name in bpy.data.armatures:\\\\\\\\r\\\\\\\\n ad = bpy.data.armatures[obj.data.name]\\\\\\\\r\\\\\\\\n if getattr(ad, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and ad.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Armature '{obj.name}' data is linked from: {ad.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Selected object is not a linked asset\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_scan_linked_assets(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Scan Linked Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Scan the current file for linked libraries and list their status\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.scan_linked_assets(context, self.report)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_find_libraries_in_folders(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Find Libraries in Folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Search addon search paths for missing library blend files\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.find_libraries_in_folders(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_open_linked_file(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Open Linked File\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open the selected linked blend file in a new Blender instance\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No file path specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.wm.path_open(filepath=self.filepath)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Opening linked file: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to open linked file: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_add_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add a new folder to the list of search paths for finding libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs:\\\\\\\\r\\\\\\\\n p = prefs.preferences.search_paths.add()\\\\\\\\r\\\\\\\\n p.path = \\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Added search path: {p.path}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_remove_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove the selected search path from the list\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths.remove(self.index)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed search path at index {self.index}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_attempt_relink(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.attempt_relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Attempt Relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Try to relink missing libraries using the configured search paths\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.attempt_relink(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_browse_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Browse Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Browse to set the folder for the selected search path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"Search Path\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"DIR_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths[self.index].path = self.filepath\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Updated search path {self.index + 1}: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n self.filepath = prefs.preferences.search_paths[self.index].path\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_reload_libraries(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Reload all linked libraries (or fallback manual reload)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.outliner.lib_operation(type=\\\\\\\\\\\\\\\"RELOAD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Library reload operation completed\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n if lib.filepath and os.path.exists(bpy.path.abspath(lib.filepath)):\\\\\\\\r\\\\\\\\n lib.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Libraries reloaded manually\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to reload libraries: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_relative(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_relative()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made relative\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths relative: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_absolute(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_absolute()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made absolute\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths absolute: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_relocate_single_library(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Point the selected library to a new blend file and reload\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n target_filepath: StringProperty(name=\\\\\\\\\\\\\\\"Current Library Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"New Library File\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.target_filepath or not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No target or new file specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n abs_match = bpy.path.abspath(self.target_filepath) if self.target_filepath else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n library = None\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n if lib.filepath and bpy.path.abspath(lib.filepath) == abs_match:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n if lib.filepath == self.target_filepath:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n if not library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Could not resolve the selected library\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n library.filepath = self.filepath\\\\\\\\r\\\\\\\\n library.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Relocated to: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to relocate: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n if self.target_filepath:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n self.filepath = bpy.path.abspath(self.target_filepath)\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n self.filepath = self.target_filepath\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_migrator_pair(context):\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"Return (orig, rep) from scene props (manual or automatic). (None, None) if invalid.\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n from ..ops.migrator import get_pair_manual, get_pair_automatic\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n props = getattr(context.scene, \\\\\\\\\\\\\\\"dynamic_link_manager\\\\\\\\\\\\\\\", None)\\\\\\\\r\\\\\\\\n if not props:\\\\\\\\r\\\\\\\\n return None, None\\\\\\\\r\\\\\\\\n use_auto = getattr(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", False)\\\\\\\\r\\\\\\\\n orig, rep = get_pair_automatic(context) if use_auto else get_pair_manual(context)\\\\\\\\r\\\\\\\\n return orig, rep\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_copy_attributes(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy object and armature attributes from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair (set Original/Replacement or enable Automatic).\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_copy_attr\\\\\\\\r\\\\\\\\n run_copy_attr(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Copy attributes done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_migrate_nla(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate NLA tracks and strips from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_nla\\\\\\\\r\\\\\\\\n run_mig_nla(orig, rep, report=self.report)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_custom_properties(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy custom properties from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_cust_props\\\\\\\\r\\\\\\\\n run_mig_cust_props(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Custom properties done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_bone_constraints(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate bone constraints from original to replacement armature\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bone_const\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_mig_bone_const(orig, rep, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Bone constraints done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_retarget_relations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Retarget parent/child and other relations to the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_retarg_relatives\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_retarg_relatives(orig, rep, rep_descendants, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Retarget relations done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_basebody_shapekeys(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate base body mesh shape key values from original to replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bbody_shapekeys\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n run_mig_bbody_shapekeys(orig, rep, rep_descendants, context)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migrate BaseBody shapekeys done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy FK arm and finger rotations from original to replacement (uses constraints)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import copy_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = copy_fk_rotations(context, orig, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_bake(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake FK rotations to keyframes using nla.bake (similar to tweak tools)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n track_name: StringProperty(name=\\\\\\\\\\\\\\\"NLA Track\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Optional NLA track name for frame range\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n post_clean: BoolProperty(name=\\\\\\\\\\\\\\\"Post-clean\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Clean curves after bake\\\\\\\\\\\\\\\", default=False)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import bake_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = bake_fk_rotations(context, orig, rep, track_name=self.track_name or None, post_clean=self.post_clean)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove FK rotation COPY_TRANSFORMS constraints (similar to tweak_remove_arm)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import remove_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = remove_fk_rotations(context, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nMIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_remove_original(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Delete the original character armature and its data from the scene\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No original character selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Original and replacement cannot be the same object\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n name = orig.name\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n # Remove from scene\\\\\\\\r\\\\\\\\n bpy.data.objects.remove(orig, do_unlink=True)\\\\\\\\r\\\\\\\\n # Clear the property\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = None\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed original character: {name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to remove original: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_run_character_migration(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n steps = [\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_custom_properties,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n ]\\\\\\\\r\\\\\\\\n for i, op in enumerate(steps):\\\\\\\\r\\\\\\\\n result = op()\\\\\\\\r\\\\\\\\n if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_original_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the original character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Original: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_replacement_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the replacement character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.replacement_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Replacement: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _tweak_poll(context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n return orig is not None and rep is not None\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to arm bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove arm tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} arm tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake arm tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to leg bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} leg tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to both arm and leg bones\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm & leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove all arm and leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake all arm and leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nOPERATOR_CLASSES = [\\\\\\\\r\\\\\\\\n DLM_OT_replace_linked_asset,\\\\\\\\r\\\\\\\\n DLM_OT_scan_linked_assets,\\\\\\\\r\\\\\\\\n DLM_OT_find_libraries_in_folders,\\\\\\\\r\\\\\\\\n DLM_OT_open_linked_file,\\\\\\\\r\\\\\\\\n DLM_OT_add_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_remove_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_browse_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_attempt_relink,\\\\\\\\r\\\\\\\\n DLM_OT_reload_libraries,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_relative,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\r\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\r\\\\\\\\n DLM_OT_run_character_migration,\\\\\\\\r\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\r\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_migrate_nla,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_custom_properties,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_bone_constraints,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_retarget_relations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_both,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_bake,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_remove,\\\\\\\\r\\\\\\\\n]\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2959},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Read operators.py content\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"cat t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Read operators.py content\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"# This program is free software; you can redistribute it and/or modify\\\\\\\\r\\\\\\\\n# it under the terms of the GNU General Public License as published by\\\\\\\\r\\\\\\\\n# the Free Software Foundation; either version 3 of the License, or\\\\\\\\r\\\\\\\\n# (at your option) any later version.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nimport bpy\\\\\\\\r\\\\\\\\nimport os\\\\\\\\r\\\\\\\\nfrom bpy.types import Operator\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, BoolProperty\\\\\\\\r\\\\\\\\nfrom bpy.props import StringProperty, IntProperty\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nADDON_NAME = __package__.rsplit(\\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\", 1)[0] if \\\\\\\\\\\\\\\".\\\\\\\\\\\\\\\" in __package__ else __package__\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _prefs(context):\\\\\\\\r\\\\\\\\n return context.preferences.addons.get(ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_replace_linked_asset(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.replace_linked_asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Replace Linked Asset\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open file browser to replace the linked asset with another file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Path to the new asset file\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No object selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if getattr(obj, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None):\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' is linked from: {obj.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.data and getattr(obj.data, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and obj.data.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Object '{obj.name}' has linked data from: {obj.data.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if obj.type == \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\" and obj.data and obj.data.name in bpy.data.armatures:\\\\\\\\r\\\\\\\\n ad = bpy.data.armatures[obj.data.name]\\\\\\\\r\\\\\\\\n if getattr(ad, \\\\\\\\\\\\\\\"library\\\\\\\\\\\\\\\", None) and ad.library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Armature '{obj.name}' data is linked from: {ad.library.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Selected object is not a linked asset\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_scan_linked_assets(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.scan_linked_assets\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Scan Linked Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Scan the current file for linked libraries and list their status\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.scan_linked_assets(context, self.report)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_find_libraries_in_folders(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.find_libraries_in_folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Find Libraries in Folders\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Search addon search paths for missing library blend files\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.find_libraries_in_folders(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_open_linked_file(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.open_linked_file\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Open Linked File\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Open the selected linked blend file in a new Blender instance\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"File Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No file path specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.wm.path_open(filepath=self.filepath)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Opening linked file: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to open linked file: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_add_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.add_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add a new folder to the list of search paths for finding libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs:\\\\\\\\r\\\\\\\\n p = prefs.preferences.search_paths.add()\\\\\\\\r\\\\\\\\n p.path = \\\\\\\\\\\\\\\"//\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Added search path: {p.path}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_remove_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.remove_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove the selected search path from the list\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths.remove(self.index)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed search path at index {self.index}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_attempt_relink(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.attempt_relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Attempt Relink\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Try to relink missing libraries using the configured search paths\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n from ..ops import library\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n return library.attempt_relink(context, self.report, ADDON_NAME)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_browse_search_path(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.browse_search_path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Browse Search Path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Browse to set the folder for the selected search path\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n index: IntProperty(name=\\\\\\\\\\\\\\\"Index\\\\\\\\\\\\\\\", default=0)\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"Search Path\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"DIR_PATH\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n prefs.preferences.search_paths[self.index].path = self.filepath\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Updated search path {self.index + 1}: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n prefs = _prefs(context)\\\\\\\\r\\\\\\\\n if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths):\\\\\\\\r\\\\\\\\n self.filepath = prefs.preferences.search_paths[self.index].path\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_reload_libraries(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.reload_libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Reload Libraries\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Reload all linked libraries (or fallback manual reload)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.outliner.lib_operation(type=\\\\\\\\\\\\\\\"RELOAD\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Library reload operation completed\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n if lib.filepath and os.path.exists(bpy.path.abspath(lib.filepath)):\\\\\\\\r\\\\\\\\n lib.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Libraries reloaded manually\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to reload libraries: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_relative(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to relative\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_relative()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made relative\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths relative: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_make_paths_absolute(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.make_paths_absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Make Paths Absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Convert all internal file paths to absolute\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n bpy.ops.file.make_paths_absolute()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"All file paths made absolute\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to make paths absolute: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_relocate_single_library(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.relocate_single_library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Relocate Library\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Point the selected library to a new blend file and reload\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n target_filepath: StringProperty(name=\\\\\\\\\\\\\\\"Current Library Path\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n filepath: StringProperty(name=\\\\\\\\\\\\\\\"New Library File\\\\\\\\\\\\\\\", subtype=\\\\\\\\\\\\\\\"FILE_PATH\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n if not self.target_filepath or not self.filepath:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No target or new file specified\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n abs_match = bpy.path.abspath(self.target_filepath) if self.target_filepath else \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n library = None\\\\\\\\r\\\\\\\\n for lib in bpy.data.libraries:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n if lib.filepath and bpy.path.abspath(lib.filepath) == abs_match:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n if lib.filepath == self.target_filepath:\\\\\\\\r\\\\\\\\n library = lib\\\\\\\\r\\\\\\\\n break\\\\\\\\r\\\\\\\\n if not library:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Could not resolve the selected library\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n library.filepath = self.filepath\\\\\\\\r\\\\\\\\n library.reload()\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Relocated to: {self.filepath}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to relocate: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def invoke(self, context, event):\\\\\\\\r\\\\\\\\n if self.target_filepath:\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n self.filepath = bpy.path.abspath(self.target_filepath)\\\\\\\\r\\\\\\\\n except Exception:\\\\\\\\r\\\\\\\\n self.filepath = self.target_filepath\\\\\\\\r\\\\\\\\n context.window_manager.fileselect_add(self)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"RUNNING_MODAL\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _get_migrator_pair(context):\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"Return (orig, rep) from scene props (manual or automatic). (None, None) if invalid.\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n from ..ops.migrator import get_pair_manual, get_pair_automatic\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n props = getattr(context.scene, \\\\\\\\\\\\\\\"dynamic_link_manager\\\\\\\\\\\\\\\", None)\\\\\\\\r\\\\\\\\n if not props:\\\\\\\\r\\\\\\\\n return None, None\\\\\\\\r\\\\\\\\n use_auto = getattr(props, \\\\\\\\\\\\\\\"migrator_mode\\\\\\\\\\\\\\\", False)\\\\\\\\r\\\\\\\\n orig, rep = get_pair_automatic(context) if use_auto else get_pair_manual(context)\\\\\\\\r\\\\\\\\n return orig, rep\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_copy_attributes(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy object and armature attributes from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair (set Original/Replacement or enable Automatic).\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_copy_attr\\\\\\\\r\\\\\\\\n run_copy_attr(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Copy attributes done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_migrate_nla(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate NLA tracks and strips from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_nla\\\\\\\\r\\\\\\\\n run_mig_nla(orig, rep, report=self.report)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_custom_properties(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigCustProps\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy custom properties from original to replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"PROPERTIES\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_cust_props\\\\\\\\r\\\\\\\\n run_mig_cust_props(orig, rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Custom properties done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_bone_constraints(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBoneConst\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate bone constraints from original to replacement armature\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"CONSTRAINT_BONE\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bone_const\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_mig_bone_const(orig, rep, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Bone constraints done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_retarget_relations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"RetargRelatives\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Retarget parent/child and other relations to the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"ORIENTATION_PARENT\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_retarg_relatives\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n orig_to_rep = {orig: rep}\\\\\\\\r\\\\\\\\n run_retarg_relatives(orig, rep, rep_descendants, orig_to_rep)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Retarget relations done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_basebody_shapekeys(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigBBodyShapeKeys\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Migrate base body mesh shape key values from original to replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"SHAPEKEY_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.migrator import run_mig_bbody_shapekeys\\\\\\\\r\\\\\\\\n from ..utils import descendants\\\\\\\\r\\\\\\\\n rep_descendants = descendants(rep)\\\\\\\\r\\\\\\\\n run_mig_bbody_shapekeys(orig, rep, rep_descendants, context)\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migrate BaseBody shapekeys done.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Copy FK arm and finger rotations from original to replacement (uses constraints)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"BONE_DATA\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import copy_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = copy_fk_rotations(context, orig, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_bake(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_bake\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake FK rotations to keyframes using nla.bake (similar to tweak tools)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"KEYFRAME\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n track_name: StringProperty(name=\\\\\\\\\\\\\\\"NLA Track\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Optional NLA track name for frame range\\\\\\\\\\\\\\\", default=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n post_clean: BoolProperty(name=\\\\\\\\\\\\\\\"Post-clean\\\\\\\\\\\\\\\", description=\\\\\\\\\\\\\\\"Clean curves after bake\\\\\\\\\\\\\\\", default=False)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import bake_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = bake_fk_rotations(context, orig, rep, track_name=self.track_name or None, post_clean=self.post_clean)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_fk_rotations_remove\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove MigFKRot\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove FK rotation COPY_TRANSFORMS constraints (similar to tweak_remove_arm)\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_icon = \\\\\\\\\\\\\\\"X\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig or not rep or orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No valid character pair.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n from ..ops.fk_rotations import remove_fk_rotations\\\\\\\\r\\\\\\\\n ok, msg = remove_fk_rotations(context, rep)\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n else:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, str(e))\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nMIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_migrator_remove_original(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Delete the original character armature and its data from the scene\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n if not orig:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"No original character selected\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n if orig == rep:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Original and replacement cannot be the same object\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n name = orig.name\\\\\\\\r\\\\\\\\n try:\\\\\\\\r\\\\\\\\n # Remove from scene\\\\\\\\r\\\\\\\\n bpy.data.objects.remove(orig, do_unlink=True)\\\\\\\\r\\\\\\\\n # Clear the property\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = None\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed original character: {name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n except Exception as e:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Failed to remove original: {e}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_run_character_migration(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n steps = [\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_custom_properties,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\r\\\\\\\\n bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n ]\\\\\\\\r\\\\\\\\n for i, op in enumerate(steps):\\\\\\\\r\\\\\\\\n result = op()\\\\\\\\r\\\\\\\\n if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_original_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Original\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the original character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.original_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Original: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_picker_replacement_character(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Pick Replacement\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Set the replacement character armature from the active object\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n obj = context.active_object\\\\\\\\r\\\\\\\\n if not obj or obj.type != \\\\\\\\\\\\\\\"ARMATURE\\\\\\\\\\\\\\\":\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"WARNING\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Select an armature\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n context.scene.dynamic_link_manager.replacement_character = obj\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Replacement: {obj.name}\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\ndef _tweak_poll(context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n return orig is not None and rep is not None\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to arm bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove arm tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} arm tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_arm(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_arm\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake arm tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"arm\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to leg bones on the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} leg tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_leg(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_leg\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"leg\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_add_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_add_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Add Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Add tweak bone constraints to both arm and leg bones\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n tweak_tools.add_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Arm & leg tweak constraints added.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_remove_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_remove_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Remove Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Remove all arm and leg tweak constraints from the replacement character\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n n = tweak_tools.remove_tweak_constraints(orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Removed {n} tweak constraints.\\\\\\\\\\\\\\\")\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nclass DLM_OT_tweak_bake_both(Operator):\\\\\\\\r\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.tweak_bake_both\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_label = \\\\\\\\\\\\\\\"Bake Arm & Leg Tweaks\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_description = \\\\\\\\\\\\\\\"Bake all arm and leg tweak constraints to keyframes and optionally remove constraints\\\\\\\\\\\\\\\"\\\\\\\\r\\\\\\\\n bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n @classmethod\\\\\\\\r\\\\\\\\n def poll(cls, context):\\\\\\\\r\\\\\\\\n return _tweak_poll(context)\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n def execute(self, context):\\\\\\\\r\\\\\\\\n orig, rep = _get_migrator_pair(context)\\\\\\\\r\\\\\\\\n props = context.scene.dynamic_link_manager\\\\\\\\r\\\\\\\\n from ..ops import tweak_tools\\\\\\\\r\\\\\\\\n ok, msg = tweak_tools.bake_tweak_constraints(\\\\\\\\r\\\\\\\\n context, orig, rep, \\\\\\\\\\\\\\\"both\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_nla_track_name\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\") or \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n getattr(props, \\\\\\\\\\\\\\\"tweak_bake_post_clean\\\\\\\\\\\\\\\", False),\\\\\\\\r\\\\\\\\n )\\\\\\\\r\\\\\\\\n if ok:\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, msg)\\\\\\\\r\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nOPERATOR_CLASSES = [\\\\\\\\r\\\\\\\\n DLM_OT_replace_linked_asset,\\\\\\\\r\\\\\\\\n DLM_OT_scan_linked_assets,\\\\\\\\r\\\\\\\\n DLM_OT_find_libraries_in_folders,\\\\\\\\r\\\\\\\\n DLM_OT_open_linked_file,\\\\\\\\r\\\\\\\\n DLM_OT_add_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_remove_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_browse_search_path,\\\\\\\\r\\\\\\\\n DLM_OT_attempt_relink,\\\\\\\\r\\\\\\\\n DLM_OT_reload_libraries,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_relative,\\\\\\\\r\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\r\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\r\\\\\\\\n DLM_OT_run_character_migration,\\\\\\\\r\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\r\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_migrate_nla,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_custom_properties,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_bone_constraints,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_retarget_relations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_basebody_shapekeys,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_arm,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_leg,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_add_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_remove_both,\\\\\\\\r\\\\\\\\n DLM_OT_tweak_bake_both,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_bake,\\\\\\\\r\\\\\\\\n DLM_OT_migrator_fk_rotations_remove,\\\\\\\\r\\\\\\\\n]\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"deca4b3e-c536-45f2-b189-6f64ec728fda\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"19743834-78ee-45cf-aa99-a1041727594c\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"I have the content of both files. Now I need to:\\\\n\\\\n1. From panels.py: Remove the line with `row.operator(\\\\\\\"dlm.run_character_migration\\\\\\\", text=\\\\\\\"Run migration\\\\\\\", icon=\\\\\\\"ARMATURE_DATA\\\\\\\")`\\\\n\\\\n2. From operators.py:\\\\n - Remove the DLM_OT_run_character_migration class definition (lines ~295-310)\\\\n - Remove DLM_OT_run_character_migration from the OPERATOR_CLASSES list (line ~380)\\\\n - Remove the MIGRATOR_STEP_OPS constant if it's no longer used\\\\n\\\\nLet me first check if MIGRATOR_STEP_OPS is used anywhere else. From the output I can see the DLM_OT_run_character_migration class uses it, but if I remove the class, I need to check if anything else uses it.\\\\n\\\\nLet me use Python to make these edits. First, let me create a Python script to make these changes.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"7642f9c0-fa52-4346-8574-867ce4f370c5\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"1ce338b0-f671-41cf-8922-36e242992039\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Now I'll create a Python script to make these edits.\\\"}\",\"d2a3d6d3-703c-401a-b8e4-e3c21d925ab9\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"df9daace-882b-476a-a2ec-d2bf2ec17af8\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:2\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python << 'EOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nEOF\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:2\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"python\\\\\\\"],\\\\\\\"hasInputRedirect\\\\\\\":true,\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"fullText\\\\\\\":\\\\\\\"python\\\\\\\"}],\\\\\\\"hasRedirects\\\\\\\":true},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Remove Run Migration command from addon files\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"failure\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python << 'EOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nEOF\\\\\\\",\\\\\\\"exitCode\\\\\\\":1,\\\\\\\"stderr\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-f3e1a616-7a88-4d8c-b91b-ac1cb59a50ea.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | python << 'EOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":645,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-f3e1a616-7a88-4d8c-b91b-ac1cb59a50ea.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | python << 'EOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":595},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Remove Run Migration command from addon files\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"error\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"python << 'EOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nEOF\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"fullText\\\\\\\":\\\\\\\"python\\\\\\\"}],\\\\\\\"hasRedirects\\\\\\\":true},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Remove Run Migration command from addon files\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-f3e1a616-7a88-4d8c-b91b-ac1cb59a50ea.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | python << 'EOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"exitCode\\\\\\\":1,\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"c5b5bd5b-c76c-464a-82f2-39adf5b4c4fe\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"2078a193-86e3-4aa1-9aee-3f8917da0bb8\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The heredoc syntax isn't working in PowerShell. Let me write the Python script to a file and then execute it.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"71ef729a-f095-403b-9187-97e833d00400\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"48a40552-e6a2-4055-8d54-dd843622a657\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Let me write the Python script to a file first, then execute it.\\\"}\",\"85decfe5-b782-453a-a46b-9bc6447577cd\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"aed923d1-d409-48a5-bda5-d1dfc2d2d1bc\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:3\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nPYEOF\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:3\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"cat\\\\\\\"],\\\\\\\"hasInputRedirect\\\\\\\":true,\\\\\\\"hasOutputRedirect\\\\\\\":true,\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"fullText\\\\\\\":\\\\\\\"cat\\\\\\\"}],\\\\\\\"hasRedirects\\\\\\\":true},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Write Python script to file\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"failure\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nPYEOF\\\\\\\",\\\\\\\"exitCode\\\\\\\":1,\\\\\\\"stderr\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-cee3986e-ecfa-410a-bda6-8f3c3f91b8bc.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":713,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-cee3986e-ecfa-410a-bda6-8f3c3f91b8bc.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":673},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Write Python script to file\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"error\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\nPYEOF\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"cat\\\\\\\",\\\\\\\"fullText\\\\\\\":\\\\\\\"cat\\\\\\\"}],\\\\\\\"hasRedirects\\\\\\\":true},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Write Python script to file\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"ParserError: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-cee3986e-ecfa-410a-bda6-8f3c3f91b8bc.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | cat > t:\\\\\\\\\\\\\\\\remove_migration.py << 'PYEOF'\\\\\\\\r\\\\\\\\n | ~\\\\\\\\r\\\\\\\\n | Missing file specification after redirection operator.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"exitCode\\\\\\\":1,\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"6090424e-c206-46e8-b894-311cd0987135\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"478d63c7-c998-4141-af5f-d676fe767686\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"Heredocs don't work in PowerShell. Let me try using echo or a different approach to write the script file.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"85175617-b96d-426e-9067-10cbea5cb301\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"2c428055-de87-46b0-be8b-987371abd89a\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:4\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:4\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Set-Content\\\\\\\",\\\\\\\"line\\\\\\\",\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Set-Content\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Value\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"@\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"raw_string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"'Run migration'\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"operator\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"No\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"changes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"made\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"line\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"not\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"found\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"line not found\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"DLM_OT_run_character_migration\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"from\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"OPERATOR_CLASSES\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"No\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"changes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\nEdits\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Write Python script using PowerShell\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\",\\\\\\\"executionTime\\\\\\\":2857,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2811},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Write Python script using PowerShell\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made (line not found)\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Set-Content\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Value\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"@\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"raw_string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"'Run migration'\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"operator\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"No\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"changes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"made\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Set-Content -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\\\\\\\\\" -Value @\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\n# 1. Edit panels.py - remove the Run migration operator line\\\\\\\\npanels_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n panels_content = f.read()\\\\\\\\n\\\\\\\\noriginal_panels = panels_content\\\\\\\\n\\\\\\\\n# Remove the specific line with run_character_migration\\\\\\\\npanels_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s*row\\\\\\\\\\\\\\\\.operator\\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"dlm\\\\\\\\\\\\\\\\.run_character_migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n panels_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(panels_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(panels_content)\\\\\\\\n\\\\\\\\nif original_panels != panels_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"panels.py: No changes made\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"line\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"not\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"found\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"line not found\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"DLM_OT_run_character_migration\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Removed\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"from\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"OPERATOR_CLASSES\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py:\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"No\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"changes\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\\nEdits\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\n# 2. Edit operators.py - remove the class and from OPERATOR_CLASSES list\\\\\\\\noperators_file = r\\\\\\\\\\\\\\\"T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"r\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n operators_content = f.read()\\\\\\\\n\\\\\\\\noriginal_operators = operators_content\\\\\\\\n\\\\\\\\n# Remove MIGRATOR_STEP_OPS constant\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\[.*?\\\\\\\\\\\\\\\\]\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove the DLM_OT_run_character_migration class\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\nclass DLM_OT_run_character_migration\\\\\\\\\\\\\\\\(Operator\\\\\\\\\\\\\\\\):.*?\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\nclass DLM_OT_picker_original_character\\\\\\\\\\\\\\\",\\\\\\\\n operators_content,\\\\\\\\n flags=re.DOTALL\\\\\\\\n)\\\\\\\\n\\\\\\\\n# Remove DLM_OT_run_character_migration from OPERATOR_CLASSES list\\\\\\\\noperators_content = re.sub(\\\\\\\\n r'\\\\\\\\\\\\\\\\s+DLM_OT_run_character_migration,\\\\\\\\\\\\\\\\n',\\\\\\\\n \\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\n operators_content\\\\\\\\n)\\\\\\\\n\\\\\\\\nwith open(operators_file, \\\\\\\\\\\\\\\"w\\\\\\\\\\\\\\\", encoding=\\\\\\\\\\\\\\\"utf-8\\\\\\\\\\\\\\\") as f:\\\\\\\\n f.write(operators_content)\\\\\\\\n\\\\\\\\nif original_operators != operators_content:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed DLM_OT_run_character_migration class\\\\\\\\\\\\\\\")\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: Removed from OPERATOR_CLASSES list\\\\\\\\\\\\\\\")\\\\\\\\nelse:\\\\\\\\n print(\\\\\\\\\\\\\\\"operators.py: No changes made\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\nprint(\\\\\\\\\\\\\\\" \\\\\\\\\\\\\\\\nEdits complete!\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\\\\\\\\\"@\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Write Python script using PowerShell\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"6d32c946-933a-4429-b298-185df5728011\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"ca6fbe1a-cca8-4ea0-9bcd-1f6050026ead\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"Good, now I can execute the Python script.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"68eb0576-3f8b-436c-930f-ff7c98f4fe5c\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"a222b5d8-7e63-403c-98f7-fcbcd2853e5b\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:5\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:5\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"python\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Execute Python script to remove migration code\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\r\\\\\\\\noperators.py: Removed DLM_OT_run_character_migration class\\\\\\\\r\\\\\\\\noperators.py: Removed from OPERATOR_CLASSES list\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nEdits complete!\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":3446,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\r\\\\\\\\noperators.py: Removed DLM_OT_run_character_migration class\\\\\\\\r\\\\\\\\noperators.py: Removed from OPERATOR_CLASSES list\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nEdits complete!\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3406},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Execute Python script to remove migration code\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"python t:\\\\\\\\\\\\\\\\remove_migration.py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Execute Python script to remove migration code\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"panels.py: Removed 'Run migration' operator line\\\\\\\\r\\\\\\\\noperators.py: Removed DLM_OT_run_character_migration class\\\\\\\\r\\\\\\\\noperators.py: Removed from OPERATOR_CLASSES list\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nEdits complete!\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"288ad15f-6c43-484b-bed0-27019b97c6a5\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"d9ec8b0c-1d26-4e5a-aaba-66f259c03deb\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The edits were successful. Let me verify the changes by checking the relevant sections of both files.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"6be76dad-ab67-4acb-b796-126a52a3b304\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"af9e96a4-a6ab-47a2-8edc-44f6a1763daf\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Let me verify the changes were applied correctly.\\\"}\",\"ae74fcda-8e53-4153-807c-88e25ce120f5\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"28ebb344-ea87-4faf-9281-08ca7b0497ce\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:6\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:6\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Verify migration operator removed from panels\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"executionTime\\\\\\\":3062,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3024},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Verify migration operator removed from panels\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Verify migration operator removed from panels\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"086ca09b-4c91-40ac-9334-f7f4f40768e0\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"a005d7fb-76c1-4f7d-8577-00213d5712be\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:7\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:7\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Verify migration class removed from operators\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"executionTime\\\\\\\":3051,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3004},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Verify migration class removed from operators\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"run_character_migration\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Verify migration class removed from operators\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"dd97fda8-b5c0-4a5f-ab19-36052081746d\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"caa1b78c-ce79-4d72-92cd-c57e5c74975c\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:8\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:8\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Check if MIGRATOR_STEP_OPS constant exists\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\nui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":3060,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\nui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":3031},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Check if MIGRATOR_STEP_OPS constant exists\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Check if MIGRATOR_STEP_OPS constant exists\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\nui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"1a460620-a2e6-41b4-9d3c-5d4ed8ce0a79\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"28f6fe29-176c-444c-9563-97ec61edd2e0\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The changes were successful:\\\\n1. The \\\\\\\"Run migration\\\\\\\" line was removed from panels.py\\\\n2. The DLM_OT_run_character_migration class was removed from operators.py\\\\n3. The MIGRATOR_STEP_OPS constant still exists (I should check if it's used elsewhere before removing it)\\\\n\\\\nLet me check if MIGRATOR_STEP_OPS is used anywhere else in the file.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"11e98c05-bb7d-47cf-aa18-01f1d0d20b88\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"698a440c-7dbc-4297-beb4-54b847e2ff21\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"The `MIGRATOR_STEP_OPS` constant still exists. Let me check if it's used anywhere else in the codebase.\\\"}\",\"2ed05302-5c78-4f54-be8c-e13c0c3f732d\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"80f1694b-f434-4758-977f-4f1abeeeea9a\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:9\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:9\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"rg\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"rg\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"--type\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Search for MIGRATOR_STEP_OPS usage in codebase\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\",\\\\\\\"stderr\\\\\\\":\\\\\\\"rg: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-84b12f49-6263-424f-b479-a132598e3c4f.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\\r\\\\\\\\n | ~~\\\\\\\\r\\\\\\\\n | The term 'rg' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the\\\\\\\\r\\\\\\\\n | spelling of the name, or if a path was included, verify that the path is correct and try again.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2845,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"rg: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-84b12f49-6263-424f-b479-a132598e3c4f.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\\r\\\\\\\\n | ~~\\\\\\\\r\\\\\\\\n | The term 'rg' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the\\\\\\\\r\\\\\\\\n | spelling of the name, or if a path was included, verify that the path is correct and try again.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2804},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Search for MIGRATOR_STEP_OPS usage in codebase\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"rg\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"--type\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Search for MIGRATOR_STEP_OPS usage in codebase\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"rg: C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\Nathan\\\\\\\\\\\\\\\\AppData\\\\\\\\\\\\\\\\Local\\\\\\\\\\\\\\\\Temp\\\\\\\\\\\\\\\\ps-script-84b12f49-6263-424f-b479-a132598e3c4f.ps1:113\\\\\\\\r\\\\\\\\nLine |\\\\\\\\r\\\\\\\\n 113 | rg \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager --type py\\\\\\\\r\\\\\\\\n | ~~\\\\\\\\r\\\\\\\\n | The term 'rg' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the\\\\\\\\r\\\\\\\\n | spelling of the name, or if a path was included, verify that the path is correct and try again.\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"47af8e0c-adfb-4e78-9d71-22f79f37072f\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"86fd6e8b-b8d3-4ff8-9612-341bd9ed2fa9\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"ripgrep is not available, let me use Select-String instead.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"ed504c2c-ba52-444f-9eea-26f4645944f6\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"0f1dc47f-d776-4481-8a95-df679c1b7cf3\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:10\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:10\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Context\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"number\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"2\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Check MIGRATOR_STEP_OPS context in operators.py\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:486:\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:487:\\\\\\\\r\\\\\\\\n> ui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:489: \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:490: \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2561,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:486:\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:487:\\\\\\\\r\\\\\\\\n> ui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:489: \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:490: \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2522},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Check MIGRATOR_STEP_OPS context in operators.py\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Context\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"number\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"2\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" -Context 2\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Check MIGRATOR_STEP_OPS context in operators.py\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:486:\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:487:\\\\\\\\r\\\\\\\\n> ui\\\\\\\\\\\\\\\\operators.py:488:MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:489: \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n ui\\\\\\\\\\\\\\\\operators.py:490: \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"00965851-0403-4611-90b2-34286e2ff025\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"595c82f5-475f-470b-a464-647ddacaec62\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The MIGRATOR_STEP_OPS constant still exists. Let me check if it's used anywhere in the file now that the DLM_OT_run_character_migration class has been removed. If it's no longer used, I should remove it too. Let me check the context of the file to see if this constant is used elsewhere.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"0a054175-32fe-4c6b-86c1-0a3ed50ec63c\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"96a6f872-6f20-4bd6-b22d-a0e92b690a90\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:11\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" | ForEach-Object { $_.Line }\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:11\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"Select-String\\\\\\\",\\\\\\\"ForEach-Object\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"ForEach-Object\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"{\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"$_.Line\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"}\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"ForEach-Object { $_.Line }\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"List all lines with MIGRATOR_STEP_OPS\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" | ForEach-Object { $_.Line }\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2615,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2582},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"List all lines with MIGRATOR_STEP_OPS\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\" | ForEach-Object { $_.Line }\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"Select-String\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Path\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-Pattern\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"Select-String -Path \\\\\\\\\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\\\\\\\\\" -Pattern \\\\\\\\\\\\\\\"MIGRATOR_STEP_OPS\\\\\\\\\\\\\\\"\\\\\\\"},{\\\\\\\"name\\\\\\\":\\\\\\\"ForEach-Object\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"{\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"concatenation\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"$_.Line\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"}\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"ForEach-Object { $_.Line }\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"List all lines with MIGRATOR_STEP_OPS\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"52f77700-58bb-42cb-8d8e-3ae7a86e8ee8\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"7b65cc1e-1425-4ca4-b4e8-a57a47724cb0\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"The MIGRATOR_STEP_OPS constant only appears once now (just its definition), which means it's no longer being used since the class that used it was removed. Let me remove it to keep the code clean.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"1f231fd5-45f1-439a-80c3-e437ec35af29\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"b042bbc9-b6dc-4ca3-bfd7-c4fa654c4f62\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"The `MIGRATOR_STEP_OPS` constant is now only defined but not used. Let me remove it as well.\\\"}\",\"01ca46ef-c6bb-4e9d-951e-197782a1c3ff\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"82e96413-81d3-48ca-b7ea-f19d74acef08\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:12\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:12\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"python\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-c\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Remove unused MIGRATOR_STEP_OPS constant\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"Found MIGRATOR_STEP_OPS at lines containing: MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attri...\\\\\\\\r\\\\\\\\nRemoved MIGRATOR_STEP_OPS constant\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":3039,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"Found MIGRATOR_STEP_OPS at lines containing: MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attri...\\\\\\\\r\\\\\\\\nRemoved MIGRATOR_STEP_OPS constant\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2988},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Remove unused MIGRATOR_STEP_OPS constant\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"python\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"-c\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"string\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"python -c \\\\\\\\\\\\\\\"\\\\\\\\nimport re\\\\\\\\n\\\\\\\\noperators_file = r'T:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py'\\\\\\\\nwith open(operators_file, 'r', encoding='utf-8') as f:\\\\\\\\n content = f.read()\\\\\\\\n\\\\\\\\n# Find and remove MIGRATOR_STEP_OPS constant definition\\\\\\\\npattern = r'MIGRATOR_STEP_OPS = \\\\\\\\\\\\\\\\(\\\\\\\\\\\\\\\\n.*?\\\\\\\\\\\\\\\\)\\\\\\\\\\\\\\\\n'\\\\\\\\nmatch = re.search(pattern, content, re.DOTALL)\\\\\\\\nif match:\\\\\\\\n print(f'Found MIGRATOR_STEP_OPS at lines containing: {match.group()[:50]}...')\\\\\\\\n content = re.sub(pattern, '', content, flags=re.DOTALL)\\\\\\\\n with open(operators_file, 'w', encoding='utf-8') as f:\\\\\\\\n f.write(content)\\\\\\\\n print('Removed MIGRATOR_STEP_OPS constant')\\\\\\\\nelse:\\\\\\\\n print('MIGRATOR_STEP_OPS constant not found')\\\\\\\\n\\\\\\\\\\\\\\\"\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Remove unused MIGRATOR_STEP_OPS constant\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"Found MIGRATOR_STEP_OPS at lines containing: MIGRATOR_STEP_OPS = (\\\\\\\\r\\\\\\\\n \\\\\\\\\\\\\\\"dlm.migrator_copy_attri...\\\\\\\\r\\\\\\\\nRemoved MIGRATOR_STEP_OPS constant\\\\\\\\r\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"aa162174-eccb-4ba7-82d7-f96586a1a37b\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"aad51177-e226-48ed-a0bc-50aa12881ca2\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"All changes have been made. Let me verify the final state of the files and provide a summary to the user.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"3bc47543-d628-4457-b0f6-be24029dc37a\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"21219217-9a3c-4c92-98cd-26a96467fbf1\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"Let me verify the final state of both files.\\\"}\",\"a8e057f2-df3a-4639-b7a4-7885758e49c3\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"589459ba-c585-4796-9e1e-dbf80a4e6602\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.684Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"toolFormerData\\\":{\\\"tool\\\":15,\\\"toolIndex\\\":0,\\\"modelCallId\\\":\\\"\\\",\\\"toolCallId\\\":\\\"functions.Shell:13\\\",\\\"status\\\":\\\"completed\\\",\\\"rawArgs\\\":\\\"\\\",\\\"name\\\":\\\"run_terminal_command_v2\\\",\\\"toolCall\\\":\\\"{\\\\\\\"shellToolCall\\\\\\\":{\\\\\\\"args\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"timeout\\\\\\\":30000,\\\\\\\"toolCallId\\\\\\\":\\\\\\\"functions.Shell:13\\\\\\\",\\\\\\\"simpleCommands\\\\\\\":[\\\\\\\"git\\\\\\\"],\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"git\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"diff\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}]},\\\\\\\"fileOutputThresholdBytes\\\\\\\":\\\\\\\"40000\\\\\\\",\\\\\\\"timeoutBehavior\\\\\\\":\\\\\\\"TIMEOUT_BEHAVIOR_BACKGROUND\\\\\\\",\\\\\\\"hardTimeout\\\\\\\":86400000,\\\\\\\"description\\\\\\\":\\\\\\\"Show git diff of the changes\\\\\\\"},\\\\\\\"result\\\\\\\":{\\\\\\\"success\\\\\\\":{\\\\\\\"command\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"stdout\\\\\\\":\\\\\\\"diff --git a/ui/operators.py b/ui/operators.py\\\\\\\\nindex a4aee00..de7f60a 100644\\\\\\\\n--- a/ui/operators.py\\\\\\\\n+++ b/ui/operators.py\\\\\\\\n@@ -485,14 +485,6 @@ class DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-MIGRATOR_STEP_OPS = (\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\n-)\\\\\\\\n \\\\\\\\n \\\\\\\\n class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n@@ -523,29 +515,6 @@ class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-class DLM_OT_run_character_migration(Operator):\\\\\\\\n- bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\n- bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n- def execute(self, context):\\\\\\\\n- steps = [\\\\\\\\n- bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\n- bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\n- bpy.ops.dlm.migrator_custom_properties,\\\\\\\\n- bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\n- bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\n- bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\n- ]\\\\\\\\n- for i, op in enumerate(steps):\\\\\\\\n- result = op()\\\\\\\\n- if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n \\\\\\\\n class DLM_OT_picker_original_character(Operator):\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\n@@ -784,7 +753,6 @@ OPERATOR_CLASSES = [\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\n- DLM_OT_run_character_migration,\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\ndiff --git a/ui/panels.py b/ui/panels.py\\\\\\\\nindex 3cafa01..43a23c6 100644\\\\\\\\n--- a/ui/panels.py\\\\\\\\n+++ b/ui/panels.py\\\\\\\\n@@ -85,7 +85,6 @@ class DLM_PT_main_panel(Panel):\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row()\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\n- row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row(align=True)\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\",\\\\\\\"executionTime\\\\\\\":2779,\\\\\\\"interleavedOutput\\\\\\\":\\\\\\\"diff --git a/ui/operators.py b/ui/operators.py\\\\\\\\nindex a4aee00..de7f60a 100644\\\\\\\\n--- a/ui/operators.py\\\\\\\\n+++ b/ui/operators.py\\\\\\\\n@@ -485,14 +485,6 @@ class DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-MIGRATOR_STEP_OPS = (\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\n-)\\\\\\\\n \\\\\\\\n \\\\\\\\n class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n@@ -523,29 +515,6 @@ class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-class DLM_OT_run_character_migration(Operator):\\\\\\\\n- bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\n- bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n- def execute(self, context):\\\\\\\\n- steps = [\\\\\\\\n- bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\n- bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\n- bpy.ops.dlm.migrator_custom_properties,\\\\\\\\n- bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\n- bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\n- bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\n- ]\\\\\\\\n- for i, op in enumerate(steps):\\\\\\\\n- result = op()\\\\\\\\n- if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n \\\\\\\\n class DLM_OT_picker_original_character(Operator):\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\n@@ -784,7 +753,6 @@ OPERATOR_CLASSES = [\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\n- DLM_OT_run_character_migration,\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\ndiff --git a/ui/panels.py b/ui/panels.py\\\\\\\\nindex 3cafa01..43a23c6 100644\\\\\\\\n--- a/ui/panels.py\\\\\\\\n+++ b/ui/panels.py\\\\\\\\n@@ -85,7 +85,6 @@ class DLM_PT_main_panel(Panel):\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row()\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\n- row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row(align=True)\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\",\\\\\\\"localExecutionTimeMs\\\\\\\":2741},\\\\\\\"isBackground\\\\\\\":false},\\\\\\\"description\\\\\\\":\\\\\\\"Show git diff of the changes\\\\\\\"}}\\\",\\\"additionalData\\\":{\\\"status\\\":\\\"success\\\"},\\\"params\\\":\\\"{\\\\\\\"command\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\",\\\\\\\"cwd\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"options\\\\\\\":{\\\\\\\"timeout\\\\\\\":30000},\\\\\\\"parsingResult\\\\\\\":{\\\\\\\"executableCommands\\\\\\\":[{\\\\\\\"name\\\\\\\":\\\\\\\"git\\\\\\\",\\\\\\\"args\\\\\\\":[{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"diff\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py\\\\\\\"},{\\\\\\\"type\\\\\\\":\\\\\\\"word\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}],\\\\\\\"fullText\\\\\\\":\\\\\\\"git diff t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\panels.py t:\\\\\\\\\\\\\\\\Dynamic-Link-Manager\\\\\\\\\\\\\\\\ui\\\\\\\\\\\\\\\\operators.py\\\\\\\"}]},\\\\\\\"commandDescription\\\\\\\":\\\\\\\"Show git diff of the changes\\\\\\\"}\\\",\\\"result\\\":\\\"{\\\\\\\"output\\\\\\\":\\\\\\\"diff --git a/ui/operators.py b/ui/operators.py\\\\\\\\nindex a4aee00..de7f60a 100644\\\\\\\\n--- a/ui/operators.py\\\\\\\\n+++ b/ui/operators.py\\\\\\\\n@@ -485,14 +485,6 @@ class DLM_OT_migrator_fk_rotations_remove(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-MIGRATOR_STEP_OPS = (\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_custom_properties\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_bone_constraints\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_retarget_relations\\\\\\\\\\\\\\\",\\\\\\\\n- \\\\\\\\\\\\\\\"dlm.migrator_basebody_shapekeys\\\\\\\\\\\\\\\",\\\\\\\\n-)\\\\\\\\n \\\\\\\\n \\\\\\\\n class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n@@ -523,29 +515,6 @@ class DLM_OT_migrator_remove_original(Operator):\\\\\\\\n return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n \\\\\\\\n \\\\\\\\n-class DLM_OT_run_character_migration(Operator):\\\\\\\\n- bl_idname = \\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_label = \\\\\\\\\\\\\\\"Run Character Migration\\\\\\\\\\\\\\\"\\\\\\\\n- bl_description = \\\\\\\\\\\\\\\"Run all six migration steps (CopyAttr, MigNLA, MigCustProps, MigBoneConst, RetargRelatives, MigBBodyShapeKeys) in order\\\\\\\\\\\\\\\"\\\\\\\\n- bl_options = {\\\\\\\\\\\\\\\"REGISTER\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"UNDO\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n- def execute(self, context):\\\\\\\\n- steps = [\\\\\\\\n- bpy.ops.dlm.migrator_copy_attributes,\\\\\\\\n- bpy.ops.dlm.migrator_migrate_nla,\\\\\\\\n- bpy.ops.dlm.migrator_custom_properties,\\\\\\\\n- bpy.ops.dlm.migrator_bone_constraints,\\\\\\\\n- bpy.ops.dlm.migrator_retarget_relations,\\\\\\\\n- bpy.ops.dlm.migrator_basebody_shapekeys,\\\\\\\\n- ]\\\\\\\\n- for i, op in enumerate(steps):\\\\\\\\n- result = op()\\\\\\\\n- if result != {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}:\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"ERROR\\\\\\\\\\\\\\\"}, f\\\\\\\\\\\\\\\"Migration failed at step {i + 1}: {MIGRATOR_STEP_OPS[i]}\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"CANCELLED\\\\\\\\\\\\\\\"}\\\\\\\\n- self.report({\\\\\\\\\\\\\\\"INFO\\\\\\\\\\\\\\\"}, \\\\\\\\\\\\\\\"Migration complete.\\\\\\\\\\\\\\\")\\\\\\\\n- return {\\\\\\\\\\\\\\\"FINISHED\\\\\\\\\\\\\\\"}\\\\\\\\n-\\\\\\\\n \\\\\\\\n class DLM_OT_picker_original_character(Operator):\\\\\\\\n bl_idname = \\\\\\\\\\\\\\\"dlm.picker_original_character\\\\\\\\\\\\\\\"\\\\\\\\n@@ -784,7 +753,6 @@ OPERATOR_CLASSES = [\\\\\\\\n DLM_OT_make_paths_absolute,\\\\\\\\n DLM_OT_relocate_single_library,\\\\\\\\n DLM_OT_migrator_remove_original,\\\\\\\\n- DLM_OT_run_character_migration,\\\\\\\\n DLM_OT_picker_original_character,\\\\\\\\n DLM_OT_picker_replacement_character,\\\\\\\\n DLM_OT_migrator_copy_attributes,\\\\\\\\ndiff --git a/ui/panels.py b/ui/panels.py\\\\\\\\nindex 3cafa01..43a23c6 100644\\\\\\\\n--- a/ui/panels.py\\\\\\\\n+++ b/ui/panels.py\\\\\\\\n@@ -85,7 +85,6 @@ class DLM_PT_main_panel(Panel):\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.picker_replacement_character\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"EYEDROPPER\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row()\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_remove_original\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Remove Original\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"TRASH\\\\\\\\\\\\\\\")\\\\\\\\n- row.operator(\\\\\\\\\\\\\\\"dlm.run_character_migration\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"Run migration\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"ARMATURE_DATA\\\\\\\\\\\\\\\")\\\\\\\\n row = box.row(align=True)\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_copy_attributes\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"CopyAttr\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"COPY_ID\\\\\\\\\\\\\\\")\\\\\\\\n row.operator(\\\\\\\\\\\\\\\"dlm.migrator_migrate_nla\\\\\\\\\\\\\\\", text=\\\\\\\\\\\\\\\"MigNLA\\\\\\\\\\\\\\\", icon=\\\\\\\\\\\\\\\"NLA\\\\\\\\\\\\\\\")\\\\\\\\n\\\\\\\",\\\\\\\"rejected\\\\\\\":false}\\\"},\\\"capabilityType\\\":15}\",\"cf88bb46-1b5c-4262-8627-bbdccac4c006\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"9a1260b0-4a8e-43c5-ae9a-ad303c1d9e64\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.685Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"\\\",\\\"thinking\\\":{\\\"text\\\":\\\"All changes have been made successfully. Let me summarize what was changed for the user.\\\",\\\"signature\\\":\\\"\\\"},\\\"capabilityType\\\":30}\",\"9f307c24-ecd1-4de7-9e4b-0ee5371c016d\":\"{\\\"_v\\\":3,\\\"type\\\":2,\\\"approximateLintErrors\\\":[],\\\"lints\\\":[],\\\"codebaseContextChunks\\\":[],\\\"commits\\\":[],\\\"pullRequests\\\":[],\\\"attachedCodeChunks\\\":[],\\\"assistantSuggestedDiffs\\\":[],\\\"gitDiffs\\\":[],\\\"interpreterResults\\\":[],\\\"images\\\":[],\\\"attachedFolders\\\":[],\\\"attachedFoldersNew\\\":[],\\\"bubbleId\\\":\\\"a20cfddd-a614-4333-8956-9e9479df168b\\\",\\\"userResponsesToSuggestedCodeBlocks\\\":[],\\\"suggestedCodeBlocks\\\":[],\\\"diffsForCompressingFiles\\\":[],\\\"relevantFiles\\\":[],\\\"toolResults\\\":[],\\\"notepads\\\":[],\\\"capabilities\\\":[],\\\"multiFileLinterErrors\\\":[],\\\"diffHistories\\\":[],\\\"recentLocationsHistory\\\":[],\\\"recentlyViewedFiles\\\":[],\\\"isAgentic\\\":false,\\\"fileDiffTrajectories\\\":[],\\\"existedSubsequentTerminalCommand\\\":false,\\\"existedPreviousTerminalCommand\\\":false,\\\"docsReferences\\\":[],\\\"webReferences\\\":[],\\\"aiWebSearchResults\\\":[],\\\"requestId\\\":\\\"\\\",\\\"attachedFoldersListDirResults\\\":[],\\\"humanChanges\\\":[],\\\"attachedHumanChanges\\\":false,\\\"summarizedComposers\\\":[],\\\"cursorRules\\\":[],\\\"cursorCommands\\\":[],\\\"cursorCommandsExplicitlySet\\\":false,\\\"pastChats\\\":[],\\\"pastChatsExplicitlySet\\\":false,\\\"contextPieces\\\":[],\\\"editTrailContexts\\\":[],\\\"allThinkingBlocks\\\":[],\\\"diffsSinceLastApply\\\":[],\\\"deletedFiles\\\":[],\\\"supportedTools\\\":[],\\\"tokenCount\\\":{\\\"inputTokens\\\":0,\\\"outputTokens\\\":0},\\\"attachedFileCodeChunksMetadataOnly\\\":[],\\\"consoleLogs\\\":[],\\\"uiElementPicked\\\":[],\\\"isRefunded\\\":false,\\\"knowledgeItems\\\":[],\\\"documentationSelections\\\":[],\\\"externalLinks\\\":[],\\\"projectLayouts\\\":[],\\\"unifiedMode\\\":2,\\\"capabilityContexts\\\":[],\\\"todos\\\":[],\\\"createdAt\\\":\\\"2026-03-10T17:02:47.685Z\\\",\\\"mcpDescriptors\\\":[],\\\"workspaceUris\\\":[],\\\"conversationState\\\":{\\\"rootPromptMessagesJson\\\":[],\\\"turnsOld\\\":[],\\\"todos\\\":[],\\\"pendingToolCalls\\\":[],\\\"turns\\\":[],\\\"previousWorkspaceUris\\\":[],\\\"fileStates\\\":{},\\\"summaryArchives\\\":[],\\\"turnTimings\\\":[],\\\"fileStatesV2\\\":{},\\\"subagentStates\\\":{},\\\"selfSummaryCount\\\":0,\\\"readPaths\\\":[]},\\\"text\\\":\\\"All changes have been completed successfully. Here's a summary of what was removed:\\\\n\\\\n**panels.py:**\\\\n- Removed the line: `row.operator(\\\\\\\"dlm.run_character_migration\\\\\\\", text=\\\\\\\"Run migration\\\\\\\", icon=\\\\\\\"ARMATURE_DATA\\\\\\\")`\\\\n\\\\n**operators.py:**\\\\n- Removed the `MIGRATOR_STEP_OPS` constant (tuple of 6 migration step operator IDs)\\\\n- Removed the entire `DLM_OT_run_character_migration` class (24 lines including docstring and execute method)\\\\n- Removed `DLM_OT_run_character_migration` from the `OPERATOR_CLASSES` list\\\\n\\\\nThe \\\\\\\"Run Migration\\\\\\\" command has been completely removed from the Dynamic Link Manager addon. The individual migration step operators (`migrator_copy_attributes`, `migrator_migrate_nla`, etc.) remain available in the UI for users who want to run specific migration steps manually.\\\"}\"},\"status\":\"completed\",\"context\":{\"composers\":[],\"selectedCommits\":[],\"selectedPullRequests\":[],\"selectedImages\":[],\"folderSelections\":[],\"fileSelections\":[],\"selections\":[],\"terminalSelections\":[],\"selectedDocs\":[],\"externalLinks\":[],\"cursorRules\":[],\"cursorCommands\":[],\"gitPRDiffSelections\":[],\"subagentSelections\":[],\"browserSelections\":[],\"mentions\":{\"composers\":{},\"selectedCommits\":{},\"selectedPullRequests\":{},\"gitDiff\":[],\"gitDiffFromBranchToMain\":[],\"selectedImages\":{},\"folderSelections\":{},\"fileSelections\":{},\"terminalFiles\":{},\"selections\":{},\"terminalSelections\":{},\"selectedDocs\":{},\"externalLinks\":{},\"diffHistory\":[],\"cursorRules\":{},\"cursorCommands\":{},\"uiElementSelections\":[],\"consoleLogs\":[],\"ideEditorsState\":[],\"gitPRDiffSelections\":{},\"subagentSelections\":{},\"browserSelections\":{}}},\"generatingBubbleIds\":[],\"isReadingLongFile\":false,\"codeBlockData\":{},\"originalFileStates\":{},\"newlyCreatedFiles\":[],\"newlyCreatedFolders\":[],\"createdAt\":1773159549923,\"hasChangedContext\":false,\"activeTabsShouldBeReactive\":true,\"capabilities\":[{\"type\":30,\"data\":{}},{\"type\":15,\"data\":{\"bubbleDataMap\":\"{}\"}},{\"type\":29,\"data\":{}}],\"name\":\"Removal of run migration command\",\"isFileListExpanded\":false,\"browserChipManuallyDisabled\":false,\"browserChipManuallyEnabled\":false,\"unifiedMode\":\"agent\",\"forceMode\":\"edit\",\"usageData\":{},\"contextUsagePercent\":7.838167938931298,\"contextTokensUsed\":20536,\"contextTokenLimit\":262000,\"allAttachedFileCodeChunksUris\":[],\"modelConfig\":{\"modelName\":\"accounts/fireworks/models/kimi-k2p5\",\"maxMode\":false},\"subComposerIds\":[],\"subagentComposerIds\":[],\"capabilityContexts\":[],\"todos\":[],\"isQueueExpanded\":true,\"hasUnreadMessages\":false,\"gitHubPromptDismissed\":false,\"totalLinesAdded\":0,\"totalLinesRemoved\":0,\"addedFiles\":0,\"removedFiles\":0,\"isDraft\":false,\"isCreatingWorktree\":false,\"isApplyingWorktree\":false,\"isUndoingWorktree\":false,\"applied\":false,\"pendingCreateWorktree\":false,\"worktreeStartedReadOnly\":false,\"isBestOfNSubcomposer\":false,\"isBestOfNParent\":false,\"bestOfNJudgeWinner\":false,\"isSpec\":false,\"isProject\":false,\"isSpecSubagentDone\":false,\"isContinuationInProgress\":false,\"stopHookLoopCount\":0,\"activeBranch\":{\"branchName\":\"main\",\"lastInteractionAt\":1773159621331},\"branches\":[{\"branchName\":\"main\",\"lastInteractionAt\":1773159621331}],\"speculativeSummarizationEncryptionKey\":\"S/v/pDvQI6+HkGX9kBxqzYVMA+ohXQ0s3Ct9um9s6Sk=\",\"isNAL\":true,\"planModeSuggestionUsed\":false,\"debugModeSuggestionUsed\":false,\"conversationState\":\"~CiADMlu9ILmgeWdAbj7yjTCJeqIgnZkCyy/9J/6t66BvxwoguIcmAa466mgDcfMggvp5CO5OmvdgWkQQwxw+ZssyIiQKIJC7/lUnroy7l8NxVFlYyim1YeQGyP+FRDUL7iwcy4OkCiBKiIJRxOjg7aT38HMj+EMz9CcpPk4HJCfvScRhpIqhKQogM2BTBTMlKQLZp+w9XAMJgQ2xTDcAfgSXkseVgqdo2qoKIAawWOuza2y62/1iWKmbe6bQ4F7MqBkAxQNOvEgW6c0uCiAd1/DsqmRRpoYzWuTawF9P4/TFuXWVOlOvLLOf4eAywwogIWwarqTcMhKWxUZs9mDCUifMSg5aF3r6z2boHsv9sXQKIDjwwN/ISDilCoQuFTN1oB2V3v/i/H3mWLj4NSyG/DmrCiBImTr3Cv1rNZgO2dgCU1j12VxEy3U9NY0oyqd3rYRuwwogORCItI2EtHsD941OBX/z/2/WGg+hMl2tvSS+qhP9xp0KIFO5O3NpgwTLi/E3Epqok27tQ4UIEwbeGBk/ErZpBD7cCiBwfCXY7k0GQx0uR2QkPP+DoYt7+1Sow6PzYabhAhxPcAogSUvzgvS0YYdHLsJIs7lawYSVKf8qQ3z5fGrIF6e3ijAKILxIPkQBwVM7XB+FhJmG/kpsbRZEVCSo50VNjttAJBndCiAfDCI1szSwOztn/5zAXRXAXK4kVJdzONKSOrla3DIYUAogEO9Zj9tL1mnuBSoY+UncvxB62t64GCcXFqt+Z+qd8w0KIBVVtNKX8raO0gsY+4xEgBAqClRIFV1pzh8ZznzaeInKCiCD86b3zZ+NAmwtZSlKk9YU8MRYoXcBsAUOKUCqWLIMjQogG8j+leyc/GvhECakuvPVDLiNUcBgAMXt2SAkqj3nrzYKINn2OVSHZ30oTQptjeAnShXKYPJ1pg2K/P6PlyU6FQbjCiAj/7W8N3xd7VxkZeWKoR3FlW9peP6w0d59OmvYUGw9xgogxPt5x2c58+hEZw+9E8w/rr7oDR5xq+SGcIsw1L5oXPAKIBZcZ7cfzGHsUb47oK6yXjRx1NESFs0ddCFlr6J7rk+TCiDESKuFwg8N5C2K85vWU09X2mLgTjKZKJzPY7yVHOF+kwogG8S6SK3Dr4B7foNjnuviwHxM7DhhNgx7jxmjTp1oyAMKILwEcZz4OSGSLxh9gTbXJ/tYZbvg5zh1Fsoa59kaJkFNCiDzRptk+XGcJ5ujT6yv605hH/543uJ9H1CuDwPYGhAHzAogFs3QQFeq0MkUq2yFdE9jFsizM1ITJ8edTzQr/ue4VFYqCAi4oAEQ8P4PQiB3WLo7cx5t/ki5tJEGExaYd/GoyADD7SLj9s+sgriLmUo0ZmlsZTovLy9hcHAvYmFja2VuZC9zZXJ2ZXIvdDolNUNEeW5hbWljLUxpbmstTWFuYWdlclAB\",\"queueItems\":[],\"blobEncryptionKey\":\"kGKicdzpoNbC57LZrf4kVwoIZlTFckpKcp2eEarFxDw=\",\"latestChatGenerationUUID\":\"65309e01-a12d-4f70-9c3a-571551ade4ec\",\"isAgentic\":true,\"subtitle\":\"All changes have been completed successfully. Here's a summa…\",\"filesChangedCount\":0,\"subagentInfo\":{\"subagentType\":3,\"parentComposerId\":\"0d22ef1f-f957-4efe-87d8-af8b5e920c90\",\"conversationLengthAtSpawn\":0,\"additionalData\":{},\"subagentTypeName\":\"shell\",\"toolCallId\":\"functions.Task:98\",\"parentRequestId\":\"b6f00fd6-a38e-49a6-897f-cd6a33d599e1\",\"rootParentRequestId\":\"b6f00fd6-a38e-49a6-897f-cd6a33d599e1\"}}" } ``` Result: ```json { - "agentId": "7ac38efd-6dd0-42da-9a01-f7d5062046e9" + "agentId": "577872ce-9067-4be5-bdb0-89d48d9424ca" } ``` -Status: **loading** +Status: **completed** @@ -12425,7 +12428,42 @@ Let me fix this by: 3. Handling the case where the collection might already be partially removed 4. Making sure we don't hold references to RNA structs that might be invalidated -The fix should store the collection name, then remove it by name from bpy.data.collections rather than using the reference directly. +The fix should store the collection name, then remove it by name from bpy.data.collections rather than using the reference directly.The fix has been applied. The key changes were: + +1. Store the collection name BEFORE attempting removal (since the RNA struct gets invalidated after removal) +2. Clear the original_character property BEFORE the removal (to avoid holding references) +3. Added exception handling for the collection removal itself +4. Use the stored name in the report message + +This should fix the "StructRNA of type Collection has been removed" error and make the operation more robust. + +--- + +Done. The error was caused by trying to access `coll.name` after the collection had been removed (which invalidates the Blender RNA struct). + +**Fix applied:** + +1. **Store the name before removal**: `coll_name = coll.name` happens immediately, before any operation that could invalidate the RNA reference + +2. **Clear property before removal**: Moved `original_character = None` before `bpy.data.collections.remove()` + +3. **Added exception handling**: Wrapped the removal in its own try-except to handle cases where the collection is already being removed + +4. **Use stored name in report**: The message now uses the stored `coll_name` instead of accessing `coll.name` after removal + +This should resolve the undo issue as well - the operation should now complete cleanly without leaving Blender in an inconsistent state. + +--- + +_**User**_ + +remove original should purge the actions of the original and remove the .rep suffix from the replacement actions. + +--- + +_**Agent (model kimi-k2.5, mode Agent)**_ + + --- diff --git a/.specstory/history/2026-03-10_17-03Z-operator-update-for-dlm-ot-migrator-remove-original.md b/.specstory/history/2026-03-10_17-03Z-operator-update-for-dlm-ot-migrator-remove-original.md new file mode 100644 index 0000000..84d8516 --- /dev/null +++ b/.specstory/history/2026-03-10_17-03Z-operator-update-for-dlm-ot-migrator-remove-original.md @@ -0,0 +1,926 @@ + + + + +# Operator update for DLM_OT_migrator_remove_original (2026-03-10 17:03Z) + +_**User**_ + +Update the DLM_OT_migrator_remove_original operator in T:\Dynamic-Link-Manager\ui\operators.py to: + +1. **Purge actions from the original character**: Before removing the collection, find all actions associated with the original character (through animation_data, NLA strips, etc.) and remove them from bpy.data.actions + +2. **Remove .rep suffix from replacement actions**: After the original is removed, find all actions on the replacement character that have ".rep" in their name and rename them to remove that suffix. + +The current execute method structure: +```python +def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig: + self.report({"WARNING"}, "No original character selected") + return {"CANCELLED"} + if orig == rep: + self.report({"ERROR"}, "Original and replacement cannot be the same object") + return {"CANCELLED"} + + name = orig.name + try: + # Try to find and delete the collection containing the original character + coll = collection_containing_armature(orig) + if coll: + coll_name = coll.name + context.scene.dynamic_link_manager.original_character = None + try: + bpy.data.collections.remove(coll) + self.report({"INFO"}, f"Removed collection: {coll_name}") + except Exception as remove_err: + self.report({"WARNING"}, f"Collection {coll_name} removal issue: {remove_err}") + else: + # Fallback: just delete the armature object + bpy.data.objects.remove(orig, do_unlink=True) + context.scene.dynamic_link_manager.original_character = None + self.report({"INFO"}, f"Removed original character: {name}") + except Exception as e: + self.report({"ERROR"}, f"Failed to remove original: {e}") + return {"CANCELLED"} + return {"FINISHED"} +``` + +Add logic to: +1. Before removing the collection, iterate through the original's animation_data (if any) and collect all actions from NLA strips and the active action +2. Remove those actions from bpy.data.actions +3. After removing the original, iterate through the replacement's animation_data and find actions with ".rep" suffix +4. Rename those actions to remove the ".rep" suffix + +Make sure to handle cases where animation_data might be None. + +--- + +_**Agent (model accounts/fireworks/models/kimi-k2p5, mode Agent)**_ + + + +--- + +
Thought Process +The user wants me to update an operator in a Blender addon. Let me first read the current file to understand the context and find the `DLM_OT_migrator_remove_original` operator.
+ +--- + + +
Tool use: **run_terminal_command_v2** • Run command: cat "T:\Dynamic-Link-Manager\ui\operators.py" + +```bash +cat "T:\Dynamic-Link-Manager\ui\operators.py" +``` + +``` +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + +import bpy +import os +from bpy.types import Operator +from bpy.props import StringProperty, BoolProperty +from bpy.props import StringProperty, IntProperty + +from ..utils import collection_containing_armature + +ADDON_NAME = __package__.rsplit(".", 1)[0] if "." in __package__ else __package__ + + +def _prefs(context): + return context.preferences.addons.get(ADDON_NAME) + + +class DLM_OT_replace_linked_asset(Operator): + bl_idname = "dlm.replace_linked_asset" + bl_label = "Replace Linked Asset" + bl_description = "Open file browser to replace the linked asset with another file" + bl_options = {"REGISTER", "UNDO"} + filepath: StringProperty(name="File Path", description="Path to the new asset file", subtype="FILE_PATH") + + def execute(self, context): + obj = context.active_object + if not obj: + self.report({"ERROR"}, "No object selected") + return {"CANCELLED"} + if getattr(obj, "library", None): + self.report({"INFO"}, f"Object '{obj.name}' is linked from: {obj.library.filepath}") + return {"FINISHED"} + if obj.data and getattr(obj.data, "library", None) and obj.data.library: + self.report({"INFO"}, f"Object '{obj.name}' has linked data from: {obj.data.library.filepath}") + return {"FINISHED"} + if obj.type == "ARMATURE" and obj.data and obj.data.name in bpy.data.armatures: + ad = bpy.data.armatures[obj.data.name] + if getattr(ad, "library", None) and ad.library: + self.report({"INFO"}, f"Armature '{obj.name}' data is linked from: {ad.library.filepath}") + return {"FINISHED"} + self.report({"ERROR"}, "Selected object is not a linked asset") + return {"CANCELLED"} + + def invoke(self, context, event): + context.window_manager.fileselect_add(self) + return {"RUNNING_MODAL"} + + +class DLM_OT_scan_linked_assets(Operator): + bl_idname = "dlm.scan_linked_assets" + bl_label = "Scan Linked Libraries" + bl_description = "Scan the current file for linked libraries and list their status" + bl_options = {"REGISTER"} + + def execute(self, context): + from ..ops import library + + return library.scan_linked_assets(context, self.report) + + +class DLM_OT_find_libraries_in_folders(Operator): + bl_idname = "dlm.find_libraries_in_folders" + bl_label = "Find Libraries in Folders" + bl_description = "Search addon search paths for missing library blend files" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + from ..ops import library + + return library.find_libraries_in_folders(context, self.report, ADDON_NAME) + + +class DLM_OT_open_linked_file(Operator): + bl_idname = "dlm.open_linked_file" + bl_label = "Open Linked File" + bl_description = "Open the selected linked blend file in a new Blender instance" + bl_options = {"REGISTER"} + filepath: StringProperty(name="File Path", default="") + + def execute(self, context): + if not self.filepath: + self.report({"ERROR"}, "No file path specified") + return {"CANCELLED"} + try: + bpy.ops.wm.path_open(filepath=self.filepath) + self.report({"INFO"}, f"Opening linked file: {self.filepath}") + except Exception as e: + self.report({"ERROR"}, f"Failed to open linked file: {e}") + return {"CANCELLED"} + return {"FINISHED"} + + +class DLM_OT_add_search_path(Operator): + bl_idname = "dlm.add_search_path" + bl_label = "Add Search Path" + bl_description = "Add a new folder to the list of search paths for finding libraries" + bl_options = {"REGISTER"} + + def execute(self, context): + prefs = _prefs(context) + if prefs: + p = prefs.preferences.search_paths.add() + p.path = "//" + self.report({"INFO"}, f"Added search path: {p.path}") + return {"FINISHED"} + + +class DLM_OT_remove_search_path(Operator): + bl_idname = "dlm.remove_search_path" + bl_label = "Remove Search Path" + bl_description = "Remove the selected search path from the list" + bl_options = {"REGISTER"} + index: IntProperty(name="Index", default=0) + + def execute(self, context): + prefs = _prefs(context) + if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths): + prefs.preferences.search_paths.remove(self.index) + self.report({"INFO"}, f"Removed search path at index {self.index}") + return {"FINISHED"} + + +class DLM_OT_attempt_relink(Operator): + bl_idname = "dlm.attempt_relink" + bl_label = "Attempt Relink" + bl_description = "Try to relink missing libraries using the configured search paths" + bl_options = {"REGISTER"} + + def execute(self, context): + from ..ops import library + + return library.attempt_relink(context, self.report, ADDON_NAME) + + +class DLM_OT_browse_search_path(Operator): + bl_idname = "dlm.browse_search_path" + bl_label = "Browse Search Path" + bl_description = "Browse to set the folder for the selected search path" + bl_options = {"REGISTER"} + index: IntProperty(name="Index", default=0) + filepath: StringProperty(name="Search Path", subtype="DIR_PATH") + + def execute(self, context): + prefs = _prefs(context) + if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths): + prefs.preferences.search_paths[self.index].path = self.filepath + self.report({"INFO"}, f"Updated search path {self.index + 1}: {self.filepath}") + return {"FINISHED"} + + def invoke(self, context, event): + prefs = _prefs(context) + if prefs and prefs.preferences.search_paths and 0 <= self.index < len(prefs.preferences.search_paths): + self.filepath = prefs.preferences.search_paths[self.index].path + context.window_manager.fileselect_add(self) + return {"RUNNING_MODAL"} + + +class DLM_OT_reload_libraries(Operator): + bl_idname = "dlm.reload_libraries" + bl_label = "Reload Libraries" + bl_description = "Reload all linked libraries (or fallback manual reload)" + bl_options = {"REGISTER"} + + def execute(self, context): + try: + bpy.ops.outliner.lib_operation(type="RELOAD") + self.report({"INFO"}, "Library reload operation completed") + except Exception: + try: + for lib in bpy.data.libraries: + if lib.filepath and os.path.exists(bpy.path.abspath(lib.filepath)): + lib.reload() + self.report({"INFO"}, "Libraries reloaded manually") + except Exception as e: + self.report({"ERROR"}, f"Failed to reload libraries: {e}") + return {"CANCELLED"} + return {"FINISHED"} + + +class DLM_OT_make_paths_relative(Operator): + bl_idname = "dlm.make_paths_relative" + bl_label = "Make Paths Relative" + bl_description = "Convert all internal file paths to relative" + bl_options = {"REGISTER"} + + def execute(self, context): + try: + bpy.ops.file.make_paths_relative() + self.report({"INFO"}, "All file paths made relative") + except Exception as e: + self.report({"ERROR"}, f"Failed to make paths relative: {e}") + return {"CANCELLED"} + return {"FINISHED"} + + +class DLM_OT_make_paths_absolute(Operator): + bl_idname = "dlm.make_paths_absolute" + bl_label = "Make Paths Absolute" + bl_description = "Convert all internal file paths to absolute" + bl_options = {"REGISTER"} + + def execute(self, context): + try: + bpy.ops.file.make_paths_absolute() + self.report({"INFO"}, "All file paths made absolute") + except Exception as e: + self.report({"ERROR"}, f"Failed to make paths absolute: {e}") + return {"CANCELLED"} + return {"FINISHED"} + + +class DLM_OT_relocate_single_library(Operator): + bl_idname = "dlm.relocate_single_library" + bl_label = "Relocate Library" + bl_description = "Point the selected library to a new blend file and reload" + bl_options = {"REGISTER", "UNDO"} + target_filepath: StringProperty(name="Current Library Path", default="") + filepath: StringProperty(name="New Library File", subtype="FILE_PATH", default="") + + def execute(self, context): + if not self.target_filepath or not self.filepath: + self.report({"ERROR"}, "No target or new file specified") + return {"CANCELLED"} + abs_match = bpy.path.abspath(self.target_filepath) if self.target_filepath else "" + library = None + for lib in bpy.data.libraries: + try: + if lib.filepath and bpy.path.abspath(lib.filepath) == abs_match: + library = lib + break + except Exception: + if lib.filepath == self.target_filepath: + library = lib + break + if not library: + self.report({"ERROR"}, "Could not resolve the selected library") + return {"CANCELLED"} + try: + library.filepath = self.filepath + library.reload() + self.report({"INFO"}, f"Relocated to: {self.filepath}") + except Exception as e: + self.report({"ERROR"}, f"Failed to relocate: {e}") + return {"CANCELLED"} + return {"FINISHED"} + + def invoke(self, context, event): + if self.target_filepath: + try: + self.filepath = bpy.path.abspath(self.target_filepath) + except Exception: + self.filepath = self.target_filepath + context.window_manager.fileselect_add(self) + return {"RUNNING_MODAL"} + + +def _get_migrator_pair(context): + """Return (orig, rep) from scene props (manual or automatic). (None, None) if invalid.""" + from ..ops.migrator import get_pair_manual, get_pair_automatic + + props = getattr(context.scene, "dynamic_link_manager", None) + if not props: + return None, None + use_auto = getattr(props, "migrator_mode", False) + orig, rep = get_pair_automatic(context) if use_auto else get_pair_manual(context) + return orig, rep + + +class DLM_OT_migrator_copy_attributes(Operator): + bl_idname = "dlm.migrator_copy_attributes" + bl_label = "CopyAttr" + bl_description = "Copy object and armature attributes from original to replacement character" + bl_icon = "COPY_ID" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig or not rep or orig == rep: + self.report({"ERROR"}, "No valid character pair (set Original/Replacement or enable Automatic).") + return {"CANCELLED"} + try: + from ..ops.migrator import run_copy_attr + run_copy_attr(orig, rep) + self.report({"INFO"}, "Copy attributes done.") + return {"FINISHED"} + except Exception as e: + self.report({"ERROR"}, str(e)) + return {"CANCELLED"} + + +class DLM_OT_migrator_migrate_nla(Operator): + bl_idname = "dlm.migrator_migrate_nla" + bl_label = "MigNLA" + bl_description = "Migrate NLA tracks and strips from original to replacement character" + bl_icon = "NLA" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig or not rep or orig == rep: + self.report({"ERROR"}, "No valid character pair.") + return {"CANCELLED"} + try: + from ..ops.migrator import run_mig_nla + run_mig_nla(orig, rep, report=self.report) + return {"FINISHED"} + except Exception as e: + self.report({"ERROR"}, str(e)) + return {"CANCELLED"} + + +class DLM_OT_migrator_custom_properties(Operator): + bl_idname = "dlm.migrator_custom_properties" + bl_label = "MigCustProps" + bl_description = "Copy custom properties from original to replacement character" + bl_icon = "PROPERTIES" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig or not rep or orig == rep: + self.report({"ERROR"}, "No valid character pair.") + return {"CANCELLED"} + try: + from ..ops.migrator import run_mig_cust_props + run_mig_cust_props(orig, rep) + self.report({"INFO"}, "Custom properties done.") + return {"FINISHED"} + except Exception as e: + self.report({"ERROR"}, str(e)) + return {"CANCELLED"} + + +class DLM_OT_migrator_bone_constraints(Operator): + bl_idname = "dlm.migrator_bone_constraints" + bl_label = "MigBoneConst" + bl_description = "Migrate bone constraints from original to replacement armature" + bl_icon = "CONSTRAINT_BONE" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig or not rep or orig == rep: + self.report({"ERROR"}, "No valid character pair.") + return {"CANCELLED"} + try: + from ..ops.migrator import run_mig_bone_const + orig_to_rep = {orig: rep} + run_mig_bone_const(orig, rep, orig_to_rep) + self.report({"INFO"}, "Bone constraints done.") + return {"FINISHED"} + except Exception as e: + self.report({"ERROR"}, str(e)) + return {"CANCELLED"} + + +class DLM_OT_migrator_retarget_relations(Operator): + bl_idname = "dlm.migrator_retarget_relations" + bl_label = "RetargRelatives" + bl_description = "Retarget parent/child and other relations to the replacement character" + bl_icon = "ORIENTATION_PARENT" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig or not rep or orig == rep: + self.report({"ERROR"}, "No valid character pair.") + return {"CANCELLED"} + try: + from ..ops.migrator import run_retarg_relatives + from ..utils import descendants + rep_descendants = descendants(rep) + orig_to_rep = {orig: rep} + run_retarg_relatives(orig, rep, rep_descendants, orig_to_rep) + self.report({"INFO"}, "Retarget relations done.") + return {"FINISHED"} + except Exception as e: + self.report({"ERROR"}, str(e)) + return {"CANCELLED"} + + +class DLM_OT_migrator_basebody_shapekeys(Operator): + bl_idname = "dlm.migrator_basebody_shapekeys" + bl_label = "MigBBodyShapeKeys" + bl_description = "Migrate base body mesh shape key values from original to replacement" + bl_icon = "SHAPEKEY_DATA" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig or not rep or orig == rep: + self.report({"ERROR"}, "No valid character pair.") + return {"CANCELLED"} + try: + from ..ops.migrator import run_mig_bbody_shapekeys + from ..utils import descendants + rep_descendants = descendants(rep) + run_mig_bbody_shapekeys(orig, rep, rep_descendants, context) + self.report({"INFO"}, "Migrate BaseBody shapekeys done.") + return {"FINISHED"} + except Exception as e: + self.report({"ERROR"}, str(e)) + return {"CANCELLED"} + + +class DLM_OT_migrator_fk_rotations(Operator): + bl_idname = "dlm.migrator_fk_rotations" + bl_label = "MigFKRot" + bl_description = "Copy FK arm and finger rotations from original to replacement (uses constraints)" + bl_icon = "BONE_DATA" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig or not rep or orig == rep: + self.report({"ERROR"}, "No valid character pair.") + return {"CANCELLED"} + try: + from ..ops.fk_rotations import copy_fk_rotations + ok, msg = copy_fk_rotations(context, orig, rep) + if ok: + self.report({"INFO"}, msg) + return {"FINISHED"} + else: + self.report({"ERROR"}, msg) + return {"CANCELLED"} + except Exception as e: + self.report({"ERROR"}, str(e)) + return {"CANCELLED"} + + +class DLM_OT_migrator_fk_rotations_bake(Operator): + bl_idname = "dlm.migrator_fk_rotations_bake" + bl_label = "Bake MigFKRot" + bl_description = "Bake FK rotations to keyframes using nla.bake (similar to tweak tools)" + bl_icon = "KEYFRAME" + bl_options = {"REGISTER", "UNDO"} + + track_name: StringProperty(name="NLA Track", description="Optional NLA track name for frame range", default="") + post_clean: BoolProperty(name="Post-clean", description="Clean curves after bake", default=False) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig or not rep or orig == rep: + self.report({"ERROR"}, "No valid character pair.") + return {"CANCELLED"} + try: + from ..ops.fk_rotations import bake_fk_rotations + ok, msg = bake_fk_rotations(context, orig, rep, track_name=self.track_name or None, post_clean=self.post_clean) + if ok: + self.report({"INFO"}, msg) + return {"FINISHED"} + else: + self.report({"ERROR"}, msg) + return {"CANCELLED"} + except Exception as e: + self.report({"ERROR"}, str(e)) + return {"CANCELLED"} + + +class DLM_OT_migrator_fk_rotations_remove(Operator): + bl_idname = "dlm.migrator_fk_rotations_remove" + bl_label = "Remove MigFKRot" + bl_description = "Remove FK rotation COPY_TRANSFORMS constraints (similar to tweak_remove_arm)" + bl_icon = "X" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig or not rep or orig == rep: + self.report({"ERROR"}, "No valid character pair.") + return {"CANCELLED"} + try: + from ..ops.fk_rotations import remove_fk_rotations + ok, msg = remove_fk_rotations(context, rep) + if ok: + self.report({"INFO"}, msg) + return {"FINISHED"} + else: + self.report({"ERROR"}, msg) + return {"CANCELLED"} + except Exception as e: + self.report({"ERROR"}, str(e)) + return {"CANCELLED"} + + + + +class DLM_OT_migrator_remove_original(Operator): + bl_idname = "dlm.migrator_remove_original" + bl_label = "Remove Original" + bl_description = "Delete the original character armature and its data from the scene" + bl_options = {"REGISTER", "UNDO"} + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + if not orig: + self.report({"WARNING"}, "No original character selected") + return {"CANCELLED"} + if orig == rep: + self.report({"ERROR"}, "Original and replacement cannot be the same object") + return {"CANCELLED"} + + name = orig.name + try: + # Try to find and delete the collection containing the original character + coll = collection_containing_armature(orig) + if coll: + coll_name = coll.name # Store name BEFORE removal (RNA invalidates after remove) + context.scene.dynamic_link_manager.original_character = None + try: + bpy.data.collections.remove(coll) + self.report({"INFO"}, f"Removed collection: {coll_name}") + except Exception as remove_err: + # Collection may have already been removed by another process + self.report({"WARNING"}, f"Collection {coll_name} removal issue: {remove_err}") + else: + # Fallback: just delete the armature object + bpy.data.objects.remove(orig, do_unlink=True) + context.scene.dynamic_link_manager.original_character = None + self.report({"INFO"}, f"Removed original character: {name}") + except Exception as e: + self.report({"ERROR"}, f"Failed to remove original: {e}") + return {"CANCELLED"} + return {"FINISHED"} + + + +class DLM_OT_picker_original_character(Operator): + bl_idname = "dlm.picker_original_character" + bl_label = "Pick Original" + bl_description = "Set the original character armature from the active object" + bl_options = {"REGISTER"} + + def execute(self, context): + obj = context.active_object + if not obj or obj.type != "ARMATURE": + self.report({"WARNING"}, "Select an armature") + return {"CANCELLED"} + context.scene.dynamic_link_manager.original_character = obj + self.report({"INFO"}, f"Original: {obj.name}") + return {"FINISHED"} + + +class DLM_OT_picker_replacement_character(Operator): + bl_idname = "dlm.picker_replacement_character" + bl_label = "Pick Replacement" + bl_description = "Set the replacement character armature from the active object" + bl_options = {"REGISTER"} + + def execute(self, context): + obj = context.active_object + if not obj or obj.type != "ARMATURE": + self.report({"WARNING"}, "Select an armature") + return {"CANCELLED"} + context.scene.dynamic_link_manager.replacement_character = obj + self.report({"INFO"}, f"Replacement: {obj.name}") + return {"FINISHED"} + + +def _tweak_poll(context): + orig, rep = _get_migrator_pair(context) + return orig is not None and rep is not None + + +class DLM_OT_tweak_add_arm(Operator): + bl_idname = "dlm.tweak_add_arm" + bl_label = "Add Arm Tweaks" + bl_description = "Add tweak bone constraints to arm bones on the replacement character" + bl_options = {"REGISTER", "UNDO"} + + @classmethod + def poll(cls, context): + return _tweak_poll(context) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + from ..ops import tweak_tools + tweak_tools.add_tweak_constraints(orig, rep, "arm") + self.report({"INFO"}, "Arm tweak constraints added.") + return {"FINISHED"} + + +class DLM_OT_tweak_remove_arm(Operator): + bl_idname = "dlm.tweak_remove_arm" + bl_label = "Remove Arm Tweaks" + bl_description = "Remove arm tweak constraints from the replacement character" + bl_options = {"REGISTER", "UNDO"} + + @classmethod + def poll(cls, context): + return _tweak_poll(context) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + from ..ops import tweak_tools + n = tweak_tools.remove_tweak_constraints(orig, rep, "arm") + self.report({"INFO"}, f"Removed {n} arm tweak constraints.") + return {"FINISHED"} + + +class DLM_OT_tweak_bake_arm(Operator): + bl_idname = "dlm.tweak_bake_arm" + bl_label = "Bake Arm Tweaks" + bl_description = "Bake arm tweak constraints to keyframes and optionally remove constraints" + bl_options = {"REGISTER", "UNDO"} + + @classmethod + def poll(cls, context): + return _tweak_poll(context) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + props = context.scene.dynamic_link_manager + from ..ops import tweak_tools + ok, msg = tweak_tools.bake_tweak_constraints( + context, orig, rep, "arm", + getattr(props, "tweak_nla_track_name", "") or "", + getattr(props, "tweak_bake_post_clean", False), + ) + if ok: + self.report({"INFO"}, msg) + return {"FINISHED"} + self.report({"ERROR"}, msg) + return {"CANCELLED"} + + +class DLM_OT_tweak_add_leg(Operator): + bl_idname = "dlm.tweak_add_leg" + bl_label = "Add Leg Tweaks" + bl_description = "Add tweak bone constraints to leg bones on the replacement character" + bl_options = {"REGISTER", "UNDO"} + + @classmethod + def poll(cls, context): + return _tweak_poll(context) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + from ..ops import tweak_tools + tweak_tools.add_tweak_constraints(orig, rep, "leg") + self.report({"INFO"}, "Leg tweak constraints added.") + return {"FINISHED"} + + +class DLM_OT_tweak_remove_leg(Operator): + bl_idname = "dlm.tweak_remove_leg" + bl_label = "Remove Leg Tweaks" + bl_description = "Remove leg tweak constraints from the replacement character" + bl_options = {"REGISTER", "UNDO"} + + @classmethod + def poll(cls, context): + return _tweak_poll(context) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + from ..ops import tweak_tools + n = tweak_tools.remove_tweak_constraints(orig, rep, "leg") + self.report({"INFO"}, f"Removed {n} leg tweak constraints.") + return {"FINISHED"} + + +class DLM_OT_tweak_bake_leg(Operator): + bl_idname = "dlm.tweak_bake_leg" + bl_label = "Bake Leg Tweaks" + bl_description = "Bake leg tweak constraints to keyframes and optionally remove constraints" + bl_options = {"REGISTER", "UNDO"} + + @classmethod + def poll(cls, context): + return _tweak_poll(context) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + props = context.scene.dynamic_link_manager + from ..ops import tweak_tools + ok, msg = tweak_tools.bake_tweak_constraints( + context, orig, rep, "leg", + getattr(props, "tweak_nla_track_name", "") or "", + getattr(props, "tweak_bake_post_clean", False), + ) + if ok: + self.report({"INFO"}, msg) + return {"FINISHED"} + self.report({"ERROR"}, msg) + return {"CANCELLED"} + + +class DLM_OT_tweak_add_both(Operator): + bl_idname = "dlm.tweak_add_both" + bl_label = "Add Arm & Leg Tweaks" + bl_description = "Add tweak bone constraints to both arm and leg bones" + bl_options = {"REGISTER", "UNDO"} + + @classmethod + def poll(cls, context): + return _tweak_poll(context) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + from ..ops import tweak_tools + tweak_tools.add_tweak_constraints(orig, rep, "both") + self.report({"INFO"}, "Arm & leg tweak constraints added.") + return {"FINISHED"} + + +class DLM_OT_tweak_remove_both(Operator): + bl_idname = "dlm.tweak_remove_both" + bl_label = "Remove Arm & Leg Tweaks" + bl_description = "Remove all arm and leg tweak constraints from the replacement character" + bl_options = {"REGISTER", "UNDO"} + + @classmethod + def poll(cls, context): + return _tweak_poll(context) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + from ..ops import tweak_tools + n = tweak_tools.remove_tweak_constraints(orig, rep, "both") + self.report({"INFO"}, f"Removed {n} tweak constraints.") + return {"FINISHED"} + + +class DLM_OT_tweak_bake_both(Operator): + bl_idname = "dlm.tweak_bake_both" + bl_label = "Bake Arm & Leg Tweaks" + bl_description = "Bake all arm and leg tweak constraints to keyframes and optionally remove constraints" + bl_options = {"REGISTER", "UNDO"} + + @classmethod + def poll(cls, context): + return _tweak_poll(context) + + def execute(self, context): + orig, rep = _get_migrator_pair(context) + props = context.scene.dynamic_link_manager + from ..ops import tweak_tools + ok, msg = tweak_tools.bake_tweak_constraints( + context, orig, rep, "both", + getattr(props, "tweak_nla_track_name", "") or "", + getattr(props, "tweak_bake_post_clean", False), + ) + if ok: + self.report({"INFO"}, msg) + return {"FINISHED"} + self.report({"ERROR"}, msg) + return {"CANCELLED"} + + +OPERATOR_CLASSES = [ + DLM_OT_replace_linked_asset, + DLM_OT_scan_linked_assets, + DLM_OT_find_libraries_in_folders, + DLM_OT_open_linked_file, + DLM_OT_add_search_path, + DLM_OT_remove_search_path, + DLM_OT_browse_search_path, + DLM_OT_attempt_relink, + DLM_OT_reload_libraries, + DLM_OT_make_paths_relative, + DLM_OT_make_paths_absolute, + DLM_OT_relocate_single_library, + DLM_OT_migrator_remove_original, + DLM_OT_picker_original_character, + DLM_OT_picker_replacement_character, + DLM_OT_migrator_copy_attributes, + DLM_OT_migrator_migrate_nla, + DLM_OT_migrator_custom_properties, + DLM_OT_migrator_bone_constraints, + DLM_OT_migrator_retarget_relations, + DLM_OT_migrator_basebody_shapekeys, + DLM_OT_tweak_add_arm, + DLM_OT_tweak_remove_arm, + DLM_OT_tweak_bake_arm, + DLM_OT_tweak_add_leg, + DLM_OT_tweak_remove_leg, + DLM_OT_tweak_bake_leg, + DLM_OT_tweak_add_both, + DLM_OT_tweak_remove_both, + DLM_OT_tweak_bake_both, + DLM_OT_migrator_fk_rotations, + DLM_OT_migrator_fk_rotations_bake, + DLM_OT_migrator_fk_rotations_remove, +] + +``` +
+
+ +--- + +
Thought Process +Let me search for the `DLM_OT_migrator_remove_original` class to find its exact location in the file.
+ +--- + + +
Tool use: **run_terminal_command_v2** + +
+
+ +--- + + + +--- + + +
Tool use: **run_terminal_command_v2** + +
+
+ +--- + + + +--- + + +
Tool use: **run_terminal_command_v2** + +
+
+ +--- + + + +--- + + +
Tool use: **run_terminal_command_v2** + +
+
+ +--- + + + +--- + diff --git a/ui/operators.py b/ui/operators.py index ea7be93..e1b7566 100644 --- a/ui/operators.py +++ b/ui/operators.py @@ -505,6 +505,32 @@ class DLM_OT_migrator_remove_original(Operator): return {"CANCELLED"} name = orig.name + + # Collect actions from original character before removal + actions_to_remove = set() + if orig.animation_data: + # Active action + if orig.animation_data.action: + actions_to_remove.add(orig.animation_data.action) + # NLA strips + for track in orig.animation_data.nla_tracks: + for strip in track.strips: + if strip.action: + actions_to_remove.add(strip.action) + + # Remove collected actions from bpy.data.actions + removed_actions = [] + for action in actions_to_remove: + action_name = action.name + try: + bpy.data.actions.remove(action) + removed_actions.append(action_name) + except Exception as e: + self.report({"WARNING"}, f"Could not remove action {action_name}: {e}") + + if removed_actions: + self.report({"INFO"}, f"Removed {len(removed_actions)} action(s) from original") + try: # Try to find and delete the collection containing the original character coll = collection_containing_armature(orig) @@ -525,10 +551,29 @@ class DLM_OT_migrator_remove_original(Operator): except Exception as e: self.report({"ERROR"}, f"Failed to remove original: {e}") return {"CANCELLED"} + + # Rename replacement actions with ".rep" suffix + if rep and rep.animation_data: + renamed_actions = [] + # Active action + if rep.animation_data.action and ".rep" in rep.animation_data.action.name: + old_name = rep.animation_data.action.name + new_name = old_name.replace(".rep", "") + rep.animation_data.action.name = new_name + renamed_actions.append(f"{old_name} -> {new_name}") + # NLA strips + for track in rep.animation_data.nla_tracks: + for strip in track.strips: + if strip.action and ".rep" in strip.action.name: + old_name = strip.action.name + new_name = old_name.replace(".rep", "") + strip.action.name = new_name + renamed_actions.append(f"{old_name} -> {new_name}") + if renamed_actions: + self.report({"INFO"}, f"Renamed {len(renamed_actions)} replacement action(s)") + return {"FINISHED"} - - class DLM_OT_picker_original_character(Operator): bl_idname = "dlm.picker_original_character" bl_label = "Pick Original"