diff --git a/DOC/bugs.json b/DOC/bugs.json index ae0131871..6d759c3b6 100644 --- a/DOC/bugs.json +++ b/DOC/bugs.json @@ -1,5 +1,5 @@ { - "nextId": 272, + "nextId": 273, "bugs": [ { "id": 2, @@ -2694,6 +2694,17 @@ "longTerm": false, "createdAt": 1779891352529, "updatedAt": 1779891352529 + }, + { + "id": 272, + "title": "早苗升级的英文问题", + "description": "", + "status": "open", + "priority": "medium", + "module": "", + "longTerm": false, + "createdAt": 1779954580654, + "updatedAt": 1779954580654 } ] } \ No newline at end of file diff --git a/Unity/Assets/Resources/Prefab/UI/Common/Chat/NetErrorAreaPanel.prefab b/Unity/Assets/Resources/Prefab/UI/Common/Chat/NetErrorAreaPanel.prefab index 19b494dd8..b894c9358 100644 --- a/Unity/Assets/Resources/Prefab/UI/Common/Chat/NetErrorAreaPanel.prefab +++ b/Unity/Assets/Resources/Prefab/UI/Common/Chat/NetErrorAreaPanel.prefab @@ -382,7 +382,6 @@ GameObject: - component: {fileID: 4208484589109369530} - component: {fileID: 3795164220530813026} - component: {fileID: 845308667534849763} - - component: {fileID: 642137905484125701} m_Layer: 5 m_Name: ErrorRecord m_TagString: Untagged @@ -520,25 +519,6 @@ MonoBehaviour: m_EditorClassIdentifier: m_HorizontalFit: 0 m_VerticalFit: 2 ---- !u!114 &642137905484125701 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5084579344674831282} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 6b27f832d22e4a8d916272b644937774, type: 3} - m_Name: - m_EditorClassIdentifier: - Ban: 0 - NoExport: 0 - FontBan: 0 - Preset: 0 - ID: 20076 - FontID: 0 - TextCfg: [] --- !u!1 &5277186255209122562 GameObject: m_ObjectHideFlags: 0 diff --git a/Unity/Assets/Scripts/TH1_Logic/Net/NetworkPlayerTipManager.cs b/Unity/Assets/Scripts/TH1_Logic/Net/NetworkPlayerTipManager.cs index 8c719c114..a4bb72d7f 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Net/NetworkPlayerTipManager.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Net/NetworkPlayerTipManager.cs @@ -16,34 +16,58 @@ namespace TH1_Logic.Net public class NetworkPlayerTipManager { public static NetworkPlayerTipManager Instance { get; } = new NetworkPlayerTipManager(); + private const int MaxRecentPayloadCount = 100; public event Action OnTipRequested; private readonly Dictionary _nextTipTimes = new Dictionary(); + private readonly Queue _recentPayloads = + new Queue(); private NetworkPlayerTipDataAssets _dataAssets; public bool Request(NetworkPlayerTipType tipType) + { + return Request(tipType, null); + } + + public bool Request(NetworkPlayerTipType tipType, string detailMessage, bool ignoreCooldown = false) { if (tipType == NetworkPlayerTipType.None) return false; var info = GetTipInfo(tipType); var cooldownSeconds = GetCooldownSeconds(info); var now = Time.unscaledTime; - if (_nextTipTimes.TryGetValue(tipType, out var nextTipTime) && now < nextTipTime) return false; + if (!ignoreCooldown && _nextTipTimes.TryGetValue(tipType, out var nextTipTime) && now < nextTipTime) return false; _nextTipTimes[tipType] = now + cooldownSeconds; - OnTipRequested?.Invoke(new NetworkPlayerTipPayload + var message = ResolveText(info?.Message, tipType.ToString()); + if (!string.IsNullOrWhiteSpace(detailMessage) + && !string.Equals(message, detailMessage, StringComparison.Ordinal)) + { + message = string.IsNullOrEmpty(message) + ? detailMessage + : $"{message}\n{detailMessage}"; + } + + var payload = new NetworkPlayerTipPayload { TipType = tipType, TipInfo = info, Title = ResolveText(info?.Title, tipType.ToString()), - Message = ResolveText(info?.Message, tipType.ToString()) - }); + Message = message + }; + AddRecentPayload(payload); + OnTipRequested?.Invoke(payload); return true; } + public List GetRecentPayloads() + { + return new List(_recentPayloads); + } + public bool TryGetTipInfo(NetworkPlayerTipType tipType, out NetworkPlayerTipInfo info) { info = GetTipInfo(tipType); @@ -73,6 +97,14 @@ namespace TH1_Logic.Net _nextTipTimes.Clear(); } + private void AddRecentPayload(NetworkPlayerTipPayload payload) + { + while (_recentPayloads.Count >= MaxRecentPayloadCount) + _recentPayloads.Dequeue(); + + _recentPayloads.Enqueue(payload); + } + private NetworkPlayerTipInfo GetTipInfo(NetworkPlayerTipType tipType) { var dataAssets = GetDataAssets(); diff --git a/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetSender.cs b/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetSender.cs index a8f5b681e..f6d495368 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetSender.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Steam/GameNetSender.cs @@ -273,8 +273,9 @@ namespace TH1_Logic.Steam public void MarkLobbyDataSyncRequired() { + if (!_needLobbyDataFromHost) + _lastRequestLobbyDataTime = -RequestLobbyDataCooldown; _needLobbyDataFromHost = true; - _lastRequestLobbyDataTime = -RequestLobbyDataCooldown; } public void MarkLobbyDataSyncedFromHost() diff --git a/Unity/Assets/Scripts/TH1_Logic/Steam/SimpleP2P.cs b/Unity/Assets/Scripts/TH1_Logic/Steam/SimpleP2P.cs index 9193e7bbc..3d62828f7 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Steam/SimpleP2P.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Steam/SimpleP2P.cs @@ -188,7 +188,7 @@ namespace TH1_Logic.Steam var reason = $"Failed to connect to {steamID}"; MarkConnectionFailure(reason); OnConnectionErrorEvent?.Invoke(reason); - NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PConnectionFailed); + NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PConnectionFailed, reason, true); return false; } @@ -296,7 +296,7 @@ namespace TH1_Logic.Steam var reason = $"Connection to {steamID} timed out"; MarkConnectionFailure(reason); LogSystem.LogError(reason); - NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PConnectionTimeout); + NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PConnectionTimeout, reason, true); _connectionTimeouts.Remove(steamID); if (_connections.TryGetValue(steamID, out var conn)) @@ -436,8 +436,9 @@ namespace TH1_Logic.Steam case ESteamNetworkingConnectionState.k_ESteamNetworkingConnectionState_ProblemDetectedLocally: LogSystem.LogWarning($"Connection problem detected locally: {remote}"); LogSystem.LogWarning($"Problem details: {info.m_info.m_szEndDebug}"); - MarkConnectionFailure($"Connection problem detected locally: {remote}, {info.m_info.m_szEndDebug}"); - NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PConnectionFailed); + var problemReason = $"Connection problem detected locally: {remote}, {info.m_info.m_szEndDebug}"; + MarkConnectionFailure(problemReason); + NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PConnectionFailed, problemReason, true); HandleDisconnection(remote, info.m_hConn); break; @@ -445,12 +446,13 @@ namespace TH1_Logic.Steam // 检查具体的失败原因 var endReason = info.m_info.m_eEndReason; LogSystem.LogError($"Connection failed - Reason: {endReason}"); - MarkConnectionFailure($"Connection failed: {remote}, reason: {endReason}"); + var failureReason = $"Connection failed: {remote}, reason: {endReason}"; + MarkConnectionFailure(failureReason); var isTimeout = endReason == (int)ESteamNetConnectionEnd.k_ESteamNetConnectionEnd_Misc_Timeout || endReason == (int)ESteamNetConnectionEnd.k_ESteamNetConnectionEnd_Remote_Timeout; NetworkPlayerTipManager.Instance.Request(isTimeout ? NetworkPlayerTipType.P2PConnectionTimeout - : NetworkPlayerTipType.P2PConnectionFailed); + : NetworkPlayerTipType.P2PConnectionFailed, failureReason, true); // 提供更详细的错误信息 switch (endReason) diff --git a/Unity/Assets/Scripts/TH1_Logic/Steam/SteamLobbyManager.cs b/Unity/Assets/Scripts/TH1_Logic/Steam/SteamLobbyManager.cs index dfab6d562..c3ac0f713 100644 --- a/Unity/Assets/Scripts/TH1_Logic/Steam/SteamLobbyManager.cs +++ b/Unity/Assets/Scripts/TH1_Logic/Steam/SteamLobbyManager.cs @@ -1726,14 +1726,14 @@ namespace TH1_Logic.Steam private void OnP2PConnectionError(string error) { LogSystem.LogError($"P2P connection error: {error}"); - NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PConnectionFailed); + NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PConnectionFailed, error); } private void OnP2PMessageSendFailed(CSteamID steamID, string reason) { var error = $"P2P message send failed: target={steamID}, reason={reason}"; LogSystem.LogError(error); - NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PMessageSendFailed); + NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.P2PMessageSendFailed, error); if (_suppressP2PSendFailureLobbyErrors <= 0) OnLobbyErrorEvent?.Invoke(error); } diff --git a/Unity/Assets/Scripts/TH1_UI/View/Common/UINetErrorAreaMono.cs b/Unity/Assets/Scripts/TH1_UI/View/Common/UINetErrorAreaMono.cs index 3b9323080..85772fd86 100644 --- a/Unity/Assets/Scripts/TH1_UI/View/Common/UINetErrorAreaMono.cs +++ b/Unity/Assets/Scripts/TH1_UI/View/Common/UINetErrorAreaMono.cs @@ -44,6 +44,10 @@ namespace TH1_UI.View.Common } SetLogAreaVisible(false); + foreach (var payload in NetworkPlayerTipManager.Instance.GetRecentPayloads()) + AddLog(payload, false); + RebuildLogLayout(); + NetworkPlayerTipManager.Instance.OnTipRequested += OnNetworkPlayerTipRequested; } @@ -62,7 +66,7 @@ namespace TH1_UI.View.Common private void OnNetworkPlayerTipRequested(NetworkPlayerTipPayload payload) { - AddLog(payload); + AddLog(payload, true); } private void ToggleLogArea() @@ -77,7 +81,7 @@ namespace TH1_UI.View.Common LogArea.SetActive(visible); } - private void AddLog(NetworkPlayerTipPayload payload) + private void AddLog(NetworkPlayerTipPayload payload, bool rebuildLayout) { if (Content == null || LogItemPrefab == null) { @@ -101,6 +105,15 @@ namespace TH1_UI.View.Common _logItems.Enqueue(go); + if (rebuildLayout) + RebuildLogLayout(); + } + + private void RebuildLogLayout() + { + if (Content != null) + LayoutRebuilder.ForceRebuildLayoutImmediate(Content); + if (ScrollRect != null) { Canvas.ForceUpdateCanvases(); @@ -131,6 +144,7 @@ namespace TH1_UI.View.Common if (go != null) Destroy(go); } + RebuildLogLayout(); } } } diff --git a/Unity/Assets/Scripts/TH1_UI/View/Outside/UIOutsideMultiplayView.cs b/Unity/Assets/Scripts/TH1_UI/View/Outside/UIOutsideMultiplayView.cs index e56347932..af9ac1004 100644 --- a/Unity/Assets/Scripts/TH1_UI/View/Outside/UIOutsideMultiplayView.cs +++ b/Unity/Assets/Scripts/TH1_UI/View/Outside/UIOutsideMultiplayView.cs @@ -321,6 +321,8 @@ namespace TH1_UI.View.Outside OnRefreshLobbyClicked(); //Step #4 绑定房间数据更新的委托,在网络数据变化的时候,刷新房间数据 + _lobby.OnMembersChangedEvent -= RefreshAll; + _lobby.OnLobbyLeftEvent -= RefreshAll; _lobby.OnMembersChangedEvent += RefreshAll; _lobby.OnLobbyLeftEvent += RefreshAll; @@ -735,13 +737,13 @@ namespace TH1_UI.View.Outside bool canEdit = _lobby.IsLobbyOwner(); if (AddRoomSeatButton != null) { - AddRoomSeatButton.gameObject.SetActive(true); + AddRoomSeatButton.gameObject.SetActive(canEdit); AddRoomSeatButton.interactable = canEdit && _roomSeatCount < maxSeatCount; } if (ReduceRoomSeatButton != null) { - ReduceRoomSeatButton.gameObject.SetActive(true); + ReduceRoomSeatButton.gameObject.SetActive(canEdit); ReduceRoomSeatButton.interactable = canEdit && _roomSeatCount > minSeatCount; } } @@ -1091,7 +1093,6 @@ namespace TH1_UI.View.Outside // 只有房主才能修改房间设置 bool isOwner = _lobby.IsLobbyOwner(); - Debug.Log($"[SetRoomInfoSetting] IsLobbyOwner={isOwner}, SelfID={_lobby.SelfID}, OwnerID={_lobby.GetLobbyOwnerId()}"); SetRoomNameEditMode(false); // 绑定回调(先绑再 Init,保证 OnGameModeOptionClicked 触发时回调已就位) @@ -1435,6 +1436,7 @@ namespace TH1_UI.View.Outside if (!string.IsNullOrEmpty(reason)) Debug.LogWarning($"[UIOutsideMultiplay] Cannot create room: {reason}"); + NetworkPlayerTipManager.Instance.Request(NetworkPlayerTipType.LobbyCreateFailed, reason, true); CreateRoomPanelMono?.Hide(); CreateRoomPanel?.SetActive(false); diff --git a/Unity/graphify-out/GRAPH_REPORT.md b/Unity/graphify-out/GRAPH_REPORT.md index f16976a1f..cc0f52bb1 100644 --- a/Unity/graphify-out/GRAPH_REPORT.md +++ b/Unity/graphify-out/GRAPH_REPORT.md @@ -1,12 +1,12 @@ # Graph Report - C:\TH1\TH1\Unity (2026-05-28) ## Corpus Check -- 9153 files · ~78,188,377 words +- 9153 files · ~78,185,410 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 574367 nodes · 1378016 edges · 1721 communities detected -- Extraction: 68% EXTRACTED · 32% INFERRED · 0% AMBIGUOUS · INFERRED: 446263 edges (avg confidence: 0.8) +- 574370 nodes · 1378033 edges · 1852 communities detected +- Extraction: 68% EXTRACTED · 32% INFERRED · 0% AMBIGUOUS · INFERRED: 446269 edges (avg confidence: 0.8) - Token cost: 0 input · 0 output ## Community Hubs (Navigation) @@ -1731,6 +1731,137 @@ - [[_COMMUNITY_Community 1718|Community 1718]] - [[_COMMUNITY_Community 1719|Community 1719]] - [[_COMMUNITY_Community 1720|Community 1720]] +- [[_COMMUNITY_Community 1721|Community 1721]] +- [[_COMMUNITY_Community 1722|Community 1722]] +- [[_COMMUNITY_Community 1723|Community 1723]] +- [[_COMMUNITY_Community 1724|Community 1724]] +- [[_COMMUNITY_Community 1725|Community 1725]] +- [[_COMMUNITY_Community 1726|Community 1726]] +- [[_COMMUNITY_Community 1727|Community 1727]] +- [[_COMMUNITY_Community 1728|Community 1728]] +- [[_COMMUNITY_Community 1729|Community 1729]] +- [[_COMMUNITY_Community 1730|Community 1730]] +- [[_COMMUNITY_Community 1731|Community 1731]] +- [[_COMMUNITY_Community 1732|Community 1732]] +- [[_COMMUNITY_Community 1733|Community 1733]] +- [[_COMMUNITY_Community 1734|Community 1734]] +- [[_COMMUNITY_Community 1735|Community 1735]] +- [[_COMMUNITY_Community 1736|Community 1736]] +- [[_COMMUNITY_Community 1737|Community 1737]] +- [[_COMMUNITY_Community 1738|Community 1738]] +- [[_COMMUNITY_Community 1739|Community 1739]] +- [[_COMMUNITY_Community 1740|Community 1740]] +- [[_COMMUNITY_Community 1741|Community 1741]] +- [[_COMMUNITY_Community 1742|Community 1742]] +- [[_COMMUNITY_Community 1743|Community 1743]] +- [[_COMMUNITY_Community 1744|Community 1744]] +- [[_COMMUNITY_Community 1745|Community 1745]] +- [[_COMMUNITY_Community 1746|Community 1746]] +- [[_COMMUNITY_Community 1747|Community 1747]] +- [[_COMMUNITY_Community 1748|Community 1748]] +- [[_COMMUNITY_Community 1749|Community 1749]] +- [[_COMMUNITY_Community 1750|Community 1750]] +- [[_COMMUNITY_Community 1751|Community 1751]] +- [[_COMMUNITY_Community 1752|Community 1752]] +- [[_COMMUNITY_Community 1753|Community 1753]] +- [[_COMMUNITY_Community 1754|Community 1754]] +- [[_COMMUNITY_Community 1755|Community 1755]] +- [[_COMMUNITY_Community 1756|Community 1756]] +- [[_COMMUNITY_Community 1757|Community 1757]] +- [[_COMMUNITY_Community 1758|Community 1758]] +- [[_COMMUNITY_Community 1759|Community 1759]] +- [[_COMMUNITY_Community 1760|Community 1760]] +- [[_COMMUNITY_Community 1761|Community 1761]] +- [[_COMMUNITY_Community 1762|Community 1762]] +- [[_COMMUNITY_Community 1763|Community 1763]] +- [[_COMMUNITY_Community 1764|Community 1764]] +- [[_COMMUNITY_Community 1765|Community 1765]] +- [[_COMMUNITY_Community 1766|Community 1766]] +- [[_COMMUNITY_Community 1767|Community 1767]] +- [[_COMMUNITY_Community 1768|Community 1768]] +- [[_COMMUNITY_Community 1769|Community 1769]] +- [[_COMMUNITY_Community 1770|Community 1770]] +- [[_COMMUNITY_Community 1771|Community 1771]] +- [[_COMMUNITY_Community 1772|Community 1772]] +- [[_COMMUNITY_Community 1773|Community 1773]] +- [[_COMMUNITY_Community 1774|Community 1774]] +- [[_COMMUNITY_Community 1775|Community 1775]] +- [[_COMMUNITY_Community 1776|Community 1776]] +- [[_COMMUNITY_Community 1777|Community 1777]] +- [[_COMMUNITY_Community 1778|Community 1778]] +- [[_COMMUNITY_Community 1779|Community 1779]] +- [[_COMMUNITY_Community 1780|Community 1780]] +- [[_COMMUNITY_Community 1781|Community 1781]] +- [[_COMMUNITY_Community 1782|Community 1782]] +- [[_COMMUNITY_Community 1783|Community 1783]] +- [[_COMMUNITY_Community 1784|Community 1784]] +- [[_COMMUNITY_Community 1785|Community 1785]] +- [[_COMMUNITY_Community 1786|Community 1786]] +- [[_COMMUNITY_Community 1787|Community 1787]] +- [[_COMMUNITY_Community 1788|Community 1788]] +- [[_COMMUNITY_Community 1789|Community 1789]] +- [[_COMMUNITY_Community 1790|Community 1790]] +- [[_COMMUNITY_Community 1791|Community 1791]] +- [[_COMMUNITY_Community 1792|Community 1792]] +- [[_COMMUNITY_Community 1793|Community 1793]] +- [[_COMMUNITY_Community 1794|Community 1794]] +- [[_COMMUNITY_Community 1795|Community 1795]] +- [[_COMMUNITY_Community 1796|Community 1796]] +- [[_COMMUNITY_Community 1797|Community 1797]] +- [[_COMMUNITY_Community 1798|Community 1798]] +- [[_COMMUNITY_Community 1799|Community 1799]] +- [[_COMMUNITY_Community 1800|Community 1800]] +- [[_COMMUNITY_Community 1801|Community 1801]] +- [[_COMMUNITY_Community 1802|Community 1802]] +- [[_COMMUNITY_Community 1803|Community 1803]] +- [[_COMMUNITY_Community 1804|Community 1804]] +- [[_COMMUNITY_Community 1805|Community 1805]] +- [[_COMMUNITY_Community 1806|Community 1806]] +- [[_COMMUNITY_Community 1807|Community 1807]] +- [[_COMMUNITY_Community 1808|Community 1808]] +- [[_COMMUNITY_Community 1809|Community 1809]] +- [[_COMMUNITY_Community 1810|Community 1810]] +- [[_COMMUNITY_Community 1811|Community 1811]] +- [[_COMMUNITY_Community 1812|Community 1812]] +- [[_COMMUNITY_Community 1813|Community 1813]] +- [[_COMMUNITY_Community 1814|Community 1814]] +- [[_COMMUNITY_Community 1815|Community 1815]] +- [[_COMMUNITY_Community 1816|Community 1816]] +- [[_COMMUNITY_Community 1817|Community 1817]] +- [[_COMMUNITY_Community 1818|Community 1818]] +- [[_COMMUNITY_Community 1819|Community 1819]] +- [[_COMMUNITY_Community 1820|Community 1820]] +- [[_COMMUNITY_Community 1821|Community 1821]] +- [[_COMMUNITY_Community 1822|Community 1822]] +- [[_COMMUNITY_Community 1823|Community 1823]] +- [[_COMMUNITY_Community 1824|Community 1824]] +- [[_COMMUNITY_Community 1825|Community 1825]] +- [[_COMMUNITY_Community 1826|Community 1826]] +- [[_COMMUNITY_Community 1827|Community 1827]] +- [[_COMMUNITY_Community 1828|Community 1828]] +- [[_COMMUNITY_Community 1829|Community 1829]] +- [[_COMMUNITY_Community 1830|Community 1830]] +- [[_COMMUNITY_Community 1831|Community 1831]] +- [[_COMMUNITY_Community 1832|Community 1832]] +- [[_COMMUNITY_Community 1833|Community 1833]] +- [[_COMMUNITY_Community 1834|Community 1834]] +- [[_COMMUNITY_Community 1835|Community 1835]] +- [[_COMMUNITY_Community 1836|Community 1836]] +- [[_COMMUNITY_Community 1837|Community 1837]] +- [[_COMMUNITY_Community 1838|Community 1838]] +- [[_COMMUNITY_Community 1839|Community 1839]] +- [[_COMMUNITY_Community 1840|Community 1840]] +- [[_COMMUNITY_Community 1841|Community 1841]] +- [[_COMMUNITY_Community 1842|Community 1842]] +- [[_COMMUNITY_Community 1843|Community 1843]] +- [[_COMMUNITY_Community 1844|Community 1844]] +- [[_COMMUNITY_Community 1845|Community 1845]] +- [[_COMMUNITY_Community 1846|Community 1846]] +- [[_COMMUNITY_Community 1847|Community 1847]] +- [[_COMMUNITY_Community 1848|Community 1848]] +- [[_COMMUNITY_Community 1849|Community 1849]] +- [[_COMMUNITY_Community 1850|Community 1850]] +- [[_COMMUNITY_Community 1851|Community 1851]] ## God Nodes (most connected - your core abstractions) 1. `NullCheck` - 86147 edges @@ -1747,14 +1878,14 @@ ## Surprising Connections (you probably didn't know these) - `detail()` --calls--> `operator()` [INFERRED] C:\TH1\TH1\Unity\Assets\Packages\Microsoft.ML.OnnxRuntime.1.16.3\runtimes\ios\native\onnxruntime.xcframework\ios-arm64_x86_64-simulator\onnxruntime.framework\Headers\onnxruntime_cxx_api.h → C:\TH1\TH1\Unity\sdk\public\steam\steamclientpublic.h -- `GetConnectionInfo()` --calls--> `ToString()` [INFERRED] - C:\TH1\TH1\Unity\Assets\Plugins\ParadoxNotion\NodeCanvas\Modules\BehaviourTrees\Nodes\Composites\Selector.cs → C:\TH1\TH1\Unity\sdk\public\steam\matchmakingtypes.h - `UnitySourceGeneratedAssemblyMonoScriptTypes_v1__ctor_mE65AE524188091311A3CFBD98187D9F5EC00D8E3()` --calls--> `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` [INFERRED] C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\Animancer.cpp → C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\mscorlib__11.cpp - `AnimancerComponent_Animancer_IAnimancerComponent_get_enabled_m2A911745E358866032AD7088894C276CCA65E102()` --calls--> `Behaviour_get_enabled_mAAC9F15E9EBF552217A5AE2681589CC0BFA300C1()` [INFERRED] C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\Animancer.cpp → C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\UnityEngine.CoreModule__4.cpp - `AnimancerComponent_Animancer_IAnimancerComponent_get_gameObject_m8C2AD2B15045B58DE37F540CA3BA6B42F0E02660()` --calls--> `Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B()` [INFERRED] C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\Animancer.cpp → C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\UnityEngine.CoreModule__4.cpp +- `ControllerState_GetParameterHash_m78B2BB5405D6B1CC86D4A539CC5F0AB3B17977FB()` --calls--> `NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF()` [INFERRED] + C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\Animancer.cpp → C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\mscorlib__6.cpp ## Hyperedges (group relationships) - **Online Lobby Steam Integration Flow** — onlinelobby_feature, onlinelobby_steamlobbymanager, onlinelobby_lobbylistinfo, onlinelobby_lobbyrowmono, onlinelobby_view_modifications [EXTRACTED 0.95] @@ -1765,191 +1896,191 @@ ### Community 0 - "Community 0" Cohesion: 0.0 -Nodes (15350): AboutablePage, Styles, Unity.VisualScripting, Absolute, Absolute, Unity.VisualScripting, AbsoluteNode, UnityEditor.ShaderGraph (+15342 more) +Nodes (59064): AnimancerEvent_get_CurrentState_mE8E313D5B0D8BE0D33BAF3F90CCACC40D7187757_inline(), AnimancerLayer_get_CommandCount_m59A5957C7DB7E574CAC3EF8DEA1200585276772A_inline(), AnimancerNode_get_FadeSpeed_mA8510DDC870DBE7539463970CE9A3B4D2796A1B6_inline(), AnimancerNode_get_Root_m93B6EB9E73B0E65C10C6CD74021B39CE8401A49C_inline(), AnimancerNode_get_TargetWeight_mCE67B7E71E8E02FC26230BCD7A99D7679EFD62F6_inline(), AnimancerNode_get_Weight_m1996F1556C5703F8C1B4C202D9F2D33069127463_inline(), AnimancerNode_set_FadeSpeed_m773BA27E0B100B0E19044313E255B8B2D56CCAC4_inline(), AnimancerPlayable_get_DeltaTime_m909491C849C1F2DE2206DE195BA7334771827F07_inline() (+59056 more) ### Community 1 - "Community 1" Cohesion: 0.0 -Nodes (34725): List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline() (+34717 more) +Nodes (14046): AboutablePage, Styles, Unity.VisualScripting, Absolute, Absolute, Unity.VisualScripting, AbsoluteNode, UnityEditor.ShaderGraph (+14038 more) ### Community 2 - "Community 2" Cohesion: 0.0 -Nodes (33201): CartesianMixerState_AppendParameter_mDDFF2159409DBEFC5FE37EB8F583311504B54737(), DirectionalMixerState_AppendParameter_m6922ADE519D29B2FC01546CAF311FA3D90156615(), MixerState_AppendDetails_m9B33313721825F29CEDB015BB122BD1FEAACDFA6(), MixerState_GetDisplayKey_m93A0E9A6667935267884AB742BCA6C93145320EB(), AnimancerComponent_Evaluate_m7289639CC159F72E7D58D8BD1AF940DA454B4D32(), AnimancerEvent_AppendDetails_mB7D8BE4013CD2C1B574A0465F1261079E61B9AEE(), AnimancerEvent_ToString_mFD1D4B2A068B1EDAEF011F9D14AACD7125E34936(), AnimancerLayer_AppendDetails_m89AFE7861D09BA8C62B8952ECE05F8CDCB5D07A7() (+33193 more) +Nodes (0): ### Community 3 - "Community 3" Cohesion: 0.0 -Nodes (27235): AnimancerNode_ToString_mD81CEE0BC93088FC2103378D52759577AECC9477(), AnimancerState_set_Clip_m0AFB0390035762603AAF4D1CAB53468FC4C4CA41(), AnimancerState_set_MainObject_mC61B56FA56F57323D78779106852BBB65D182D15(), AnimancerUtilities_GatherFromAsset_m59973A7B45FFE4B677331302724735CB71697BB7(), AnimancerUtilities_GatherFromTracks_mA4A0A89FC99BAB7065098C0733BA2CA7AD7A6B74(), FastComparer_System_Collections_Generic_IEqualityComparerU3CSystem_ObjectU3E_Equals_m101FDA6E8200AED199146EEF290EBC7C79B054E1(), PlayableAssetState_GetBindingDetails_mECA07195B2CD2F48C9D4C522BD3B42577B49FA1C(), eri_ggl_m5931B0255FC97EE2CCA687A055090E6BA581360F() (+27227 more) +Nodes (25106): List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m149885BBF7571DAD97FAAC5C429E9B7EC787184B_gshared_inline() (+25098 more) ### Community 4 - "Community 4" Cohesion: 0.0 -Nodes (0): +Nodes (18667): UnitFullType_Equals_m97DCFA03FBBAF98473B6EB44CA8AE9FC5A52EFDC(), UnitFullType_Equals_m97DCFA03FBBAF98473B6EB44CA8AE9FC5A52EFDC_AdjustorThunk(), ViVector3_Equals_m690B15824C397692CE5EED0FA194016C4C020356(), ViVector3_Equals_m690B15824C397692CE5EED0FA194016C4C020356_AdjustorThunk(), CSteamID_Equals_m77EE4FA4CBC76E814C384F9E8969E8229DB5F65F(), CSteamID_Equals_m77EE4FA4CBC76E814C384F9E8969E8229DB5F65F_AdjustorThunk(), HSteamNetConnection_Equals_m8016C914E2A79078B4A2DCAC8F021B1680A181B2(), HSteamNetConnection_Equals_m8016C914E2A79078B4A2DCAC8F021B1680A181B2_AdjustorThunk() (+18659 more) ### Community 5 - "Community 5" Cohesion: 0.0 -Nodes (16451): AnimancerTransition_1_get_Events_m78D8BAE802A98F774D15AFE46B1F8E0D22549E9A(), ClipTransitionSequence_Apply_m2AF26F06F0ACB9ECE44BE0FC2B260730D7EDC1D3(), ClipTransitionSequence_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m40A64AE5A73B97D2FC12FCDD21C468F3204EFA6F(), Curve_CalculateWeight_mDCDA17A2450343FF7052CD41E87E1A2089CBA223(), SoloAnimation__ctor_mA06DA0C075953851A6D80AE03F7AC5BC70149C74(), SpriteRendererTextureSwap__ctor_m3F8F87B6DB3791FA12F76170588E7AE5074FE2FC(), SpriteRendererTextureSwap_LateUpdate_mB5DF77294B0FFE40AC543758333CD70AA523A8EE(), U3CU3Ec__DisplayClass6_0__ctor_mBC940A2061A29524A187F4EBFCD1CC744605A4BD() (+16443 more) +Nodes (15148): ClipTransitionSequence_Apply_m2AF26F06F0ACB9ECE44BE0FC2B260730D7EDC1D3(), SoloAnimation__ctor_mA06DA0C075953851A6D80AE03F7AC5BC70149C74(), SpriteRendererTextureSwap__ctor_m3F8F87B6DB3791FA12F76170588E7AE5074FE2FC(), SpriteRendererTextureSwap_LateUpdate_mB5DF77294B0FFE40AC543758333CD70AA523A8EE(), TimeSynchronizationGroup_SyncTime_mDD6AB5F17199E8C821F525E58F932152224977BE(), AnimancerComponent_Evaluate_m21265FCAA55F94111F3C37FA640C4A8414573FE9(), AnimancerComponent_Play_m13E46EC8F8E46D8FB61BF2163DD226A54575E187(), AnimancerComponent_Play_m4AFD8BD03E6A7CF553EBAAF04FA1E45775B66952() (+15140 more) ### Community 6 - "Community 6" Cohesion: 0.0 -Nodes (15214): EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5(), EventCallbackFunctor_1__ctor_m00854C6A1E80046F8E5A5E886EBB2F69BA4021FC(), EventCallbackFunctor_2__ctor_m40086C42F436B3AA46BC5EAD13A3D0F7EF785C3A(), EventCallbackFunctor_2_set_userArgs_m21115C107F9E13481A55D79F72A96A884B87B8C4_inline(), EventCallbackRegistry_RegisterCallback_TisRuntimeObject_mB4EF7159D7E9A0E1435729B4B488CEF2DA58ACDB_gshared(), EventCallbackRegistry_RegisterCallback_TisRuntimeObject_TisIl2CppFullySharedGenericAny_mDF96DD9D6417379E9D1B2FD2AE40A1E0FFC5EA8E_gshared(), EventCallbackRegistry_RegisterCallback_TisRuntimeObject_TisRuntimeObject_m2D9855863C5CB36B83A07D8006643A522C3E3919_gshared(), EventCallbackRegistry_UnregisterCallback_TisRuntimeObject_m19464A9219CFA09D521E6F6981885276025BC97A_gshared() (+15206 more) +Nodes (13913): Action_1__ctor_m352C88C0080092E4462B504026030C6C4786DFDE(), Disposable_AcquireContent_mFAB7242FAD69588B23C93B0CB1F37E538F52451A(), Disposable__ctor_m4DE0705D6774DC8FC787B1C3A76F5C1C9833DEDE(), U3CU3Ec_U3CAcquireContentU3Eb__3_0_m54647822F4DD88B78E2C634C3045FE491CB1071D(), CallbackEventHandler_AddEventCategories_TisRuntimeObject_mF1C7F004E29C3F37D968D7A935D4E57428219DAD_gshared(), VisualElement_get_eventCallbackCategories_m5504E18E41DEAEF1EC1A3B032A7989EAA8ABBF0B_inline(), Image_SetProperty_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m246071DD2162CC6DC2D5B7996EC9AE3FEBA0CF8B_gshared(), InlineStyleAccess_SetStyleValue_TisIl2CppFullySharedGenericStruct_mB12FCD17BDDD7CA9BD0334F17B6AD52381693DD2_gshared() (+13905 more) ### Community 7 - "Community 7" Cohesion: 0.0 -Nodes (14634): ViMathDefine_Log_mEBAFAF982A5880E8591D71883111765EF8DB613C(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m07B1968ADD8E11FDD8FC35F78D0AD1E19DFF2BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m45FC770F3613E37DBED5982944504D45B0D8DBFB_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m76FF7CAA649CEFFF377F3CDD59D6BB2DA1083BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m9E9CF620A0C9BF97705EDB41F6EBBD12013726BC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mC4F1F19A11E9A6769A2B8FED9DA7BDE71E38AF7F_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mCAF4912F692C728426BC1DD0FAA3ACF50C0C18FC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mD68D9CE32DF5A44E06ED6912EF841CCF685A3B64_gshared() (+14626 more) +Nodes (12867): gg_dqq_m7A83FC6B512D35DB51E1292D7E8DE95B893BE93B(), gg_hew_m6F974BF37A2076B0B848BAC99A0FE7738F949A18(), ViStringBuilder_Add_m9F8EE325EBBEE46E6C75B12A9EAD8A7624AC4CBC(), CallbackDispatcher_Shutdown_m588A998D2A39DF9F0D5BD157F294096B76FC7A26(), ReferenceEqualityComparer_GetHashCode_mA7F13434B33F3039C39E013E2BEB65F96D54A76D(), StringBuilderExtensions_TrailingSpaces_mFC44110A28D49CCAC8D0CFE95A8EC8964A4326BD(), StringBuilderExtensions_TrimEnd_mD9B13E90184785AE8CDED59A34BFE6061D2C2387(), ExecutionContext_RunInternal_TisIl2CppFullySharedGenericAny_m0654CA6A62C1B204AD3CB00D5E05D892FD23466D_gshared() (+12859 more) ### Community 8 - "Community 8" Cohesion: 0.0 -Nodes (14348): Array_InternalArray__get_Item_TisEmptyData_t3ADF94D95DAB6657C31C89FBD83359BCC8B247EC_mCD14ECE62AA234121B72E8BDF58B1037042B37F4_gshared(), Array_InternalArray__get_Item_TisEntry_t58E99ABABD435BCC040760EDD6D161FA4AFAD578_m9B2218635C29106FAEF9B860B768929FB7D87CC4_gshared(), Array_InternalArray__get_Item_TisEntry_t7CE9E7B40ACCEAB7712065D95D28EEF626D8DABC_mCB04A6276861E21A4E629C375032881A578C62D5_gshared(), Array_InternalArray__get_Item_TisEntry_t7D024B3A4DD33F9564AB9F99900543A39F8D6C1F_m6BF5F94448DA2D007AE233889745DC53288A6E6C_gshared(), Array_InternalArray__get_Item_TisEntry_t8E87EB3AB285DC6482DC94A7091A002369E1D6B3_mECC6E7BC675589BF78F945558BB458898EF89F31_gshared(), Array_InternalArray__get_Item_TisEntry_t968B3132C9DB3DA38AA94EA8E357C88C98E0481A_m0CA3A4E9FCDBEEA7593BB16F9DEA3617D37F751A_gshared(), Array_InternalArray__get_Item_TisEntry_tFFDF932514D611FAE4AB69C8DDC8FA5F889B6438_mF3F63DC0B9094BF571EE82E9B17ADEB9D30E6A40_gshared(), Array_InternalArray__get_Item_TisKeyValuePair_2_t1F845C75952D49E12CC3AA3713F4701056F14BC1_m353354DB14BDA046233D91940577E39B5AED2FC0_gshared() (+14340 more) +Nodes (11645): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), DelegateState__ctor_mDD5278B33FD519B95B51AE33D6481009357F0C9C(), DelegateState_get_CanEnterState_mE0B1940DC98D5C01A1FE5BE3468A5D340B55EA4C(), DelegateState_get_CanExitState_m0908AD6A342ECCC3C3D27A360145433E457F534C(), DelegateState_OnEnterState_m3BC881A29399C345B88031258C80C8C2F8C90B1C(), DelegateState_OnExitState_mF8FBA5B03C9860985C0C2D5F5378A5D248C88B1C(), Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(), State__ctor_m76B9B9B55CDA4BE0B2FB575D16718DBE851A1FF4() (+11637 more) ### Community 9 - "Community 9" Cohesion: 0.0 -Nodes (14772): UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_mF5FF85F4C57B299E380CF84FDFAC28D2A77F06AE(), Sequence_AssertNormalizedTimes_mF10ED038769E25B5B1B3339F20CA038168035EE2(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_m2BE2470D8C93AFF745AA294C1F157F07A98CB5D8(), cg_ezr_m0036B0266C872A9EA6B18BBAAD4AFD03EE4C0327(), cg_jiy_m6E01242634831B730BC36D22C334EBD333F8207E(), cg_vy_m58F451A442BC2F6015E8E9021E9FA50DF62872A5(), UIOutsideModView__cctor_mB67925DE0A6169145BA0E3D5732127119C6FFFD5(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_mC7CA174A23290C34424DF6D2733D5E64B92E5977() (+14764 more) +Nodes (11443): ArraySegment_1_get_Array_m1747D6AEF82ECC2FC8BF82E0085F87625B873290_inline(), ArraySegment_1_get_Array_m2DBA02EABF9E0C3B44C58659B338872ACD6D73E1_inline(), ArraySegment_1_get_Array_m5B8145321CE390962D9E060CB1D71B5D8864F1D1_inline(), ArraySegment_1_get_Array_m66D80077530F32FBCF09E33171A7CB1F6D1EAF7D_inline(), ArraySegment_1_get_Array_m6FE5C7903751CF31CCA0FE65705B037B8B2E2C7C_inline(), ArraySegment_1_get_Array_m81A40345E7A687B5042C27645F5D56FD579429ED_inline(), ArraySegment_1_get_Array_m85F374406C1E34FDEFA7F160336A247891AF8105_inline(), ArraySegment_1_get_Array_m9AB4BA95DD23AB6FD46CC0AF95E4A0B1E8A6A071_inline() (+11435 more) ### Community 10 - "Community 10" Cohesion: 0.0 -Nodes (12508): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), DelegateState__ctor_mDD5278B33FD519B95B51AE33D6481009357F0C9C(), DelegateState_get_CanEnterState_mE0B1940DC98D5C01A1FE5BE3468A5D340B55EA4C(), DelegateState_get_CanExitState_m0908AD6A342ECCC3C3D27A360145433E457F534C(), DelegateState_OnEnterState_m3BC881A29399C345B88031258C80C8C2F8C90B1C(), DelegateState_OnExitState_mF8FBA5B03C9860985C0C2D5F5378A5D248C88B1C(), Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(), State__ctor_m76B9B9B55CDA4BE0B2FB575D16718DBE851A1FF4() (+12500 more) +Nodes (12058): DontAllowFade__ctor_m533802D5DC3A7A1BB7444049EBF16CDFD08B824E(), ExitEvent__ctor_m6BE8C1994D6C90917D903A7174230EE88FD3A7F3(), AnimancerNode_RecreatePlayable_m1A0D747B77B96A001A3561BEA04CE616CEE130AA(), AnimancerNode_RequireUpdate_mCD83C817E4FBB68D90537D32E3422FFE37A837FA(), AnimancerNode_SetWeightDirty_m0085C392078531253AE35A0C52F99C8A1ECB8E8A(), DelayedPause__ctor_m0832C4DA8F1AD95094A36EF55D94EE961A88F28F(), EventDispatcher__ctor_m7E7EA9F08ED16545B6F77F3F4A8C3BD1C9B418A6(), Key__ctor_m2576627738004155CCD8EBDB34A4F8C5C85AB291() (+12050 more) ### Community 11 - "Community 11" Cohesion: 0.0 -Nodes (12448): DontAllowFade__ctor_m533802D5DC3A7A1BB7444049EBF16CDFD08B824E(), ExitEvent__ctor_m6BE8C1994D6C90917D903A7174230EE88FD3A7F3(), ManualMixerState_Initialize_m540E4EBEC88D78848D9098D9C22459D7FFDB77E4(), MixerState_SetChild_mB53D3FC5945C1F8E690444FC23E7A3720B60B27F(), AnimancerNode_RecreatePlayable_m1A0D747B77B96A001A3561BEA04CE616CEE130AA(), AnimancerNode_RequireUpdate_mCD83C817E4FBB68D90537D32E3422FFE37A837FA(), DelayedPause__ctor_m0832C4DA8F1AD95094A36EF55D94EE961A88F28F(), EventDispatcher__ctor_m7E7EA9F08ED16545B6F77F3F4A8C3BD1C9B418A6() (+12440 more) +Nodes (11084): PostUpdate_PrepareFrame_mEB7F6EE68F46E425A44A5539B7A8504E7A1F0610(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m07B1968ADD8E11FDD8FC35F78D0AD1E19DFF2BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m45FC770F3613E37DBED5982944504D45B0D8DBFB_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m76FF7CAA649CEFFF377F3CDD59D6BB2DA1083BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m9E9CF620A0C9BF97705EDB41F6EBBD12013726BC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mC4F1F19A11E9A6769A2B8FED9DA7BDE71E38AF7F_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mCAF4912F692C728426BC1DD0FAA3ACF50C0C18FC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mD68D9CE32DF5A44E06ED6912EF841CCF685A3B64_gshared() (+11076 more) ### Community 12 - "Community 12" Cohesion: 0.0 -Nodes (9209): ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m68061ED1DE86EAFD0A96D304ABA9C69E2FC70FEC_gshared(), ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m9285212607C4E7AF5953684F1E508C8845275C1F_gshared(), ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mCA304A98F315716442B439A2A4D9803F53F75C5A_gshared(), ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2E8CDB09A666CEF06D7C44D84DF2BE3823882916_gshared(), ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m98A259F988CB2316792C07EC9E9F5A28773E1CF2_gshared(), ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_mDDBE102EFF55704C59390799F3390E2C7AEE738D_gshared(), ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m0F0DAF7E6CE33BB4ED4A9C34ACC9900E64E1ADC3_gshared(), ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_mCCC98190748768E1CF66E13CD4D4818741351BF7_gshared() (+9201 more) +Nodes (9035): ReadOnlySequence_1_get_Start_m55503E294901DBF9C74BE99C7CEC7A7171B19368_gshared_inline(), ReadOnlySequence_1_get_Start_mE0805A72F54483F7BACEA389357B365B599F9E97_gshared_inline(), Span_1__ctor_mA426411A0F5450BCD564C621BB663B1273773B99_gshared_inline(), ReadOnlySpan_1__ctor_m0FC0B92549C2968E80B5F75A85F28B96DBFCFD63_inline(), ReadOnlySpan_1_Slice_mC8B7C665F49384744642F03EA355239F0E4AF966_gshared_inline(), ReadOnlySpan_1_Slice_mEB3D3A427170FC5A0AB734619D4792C299697C89_gshared_inline(), Span_1__ctor_mE18EBB601FBFA01BA29FE353364700952A9091FE_gshared_inline(), Array_Empty_TisBFloat16_t01010688FDE3210A5FCA718A043DBE329F33B0BF_m949D7E159ADC3B2AE06198C0DE1ED5986D26F30C_inline() (+9027 more) ### Community 13 - "Community 13" Cohesion: 0.0 -Nodes (9726): ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m45AA23B38ECE6B28D89D0E72F41C33D1B7A0023A_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m9C23B628D687A4A080B37C12F33BF81CDC3FBA2C_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mB8B25E983E8492E65BD4449CAC4570EC7D37B12E_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mCB358AADC3D56D4A6DC8F1F34B2E803EB38D0782_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mCC65E5FB39395ECB4D1C69FB35E5E3F22CCA23AB_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m1D013AE163EFD669E73C0607DAF91114B6A70FBB_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2DC80696CB10F3234513DD4801723E9EABE2A362_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m6979DED8A68D37141E27FD3CBB6AE1E221C3C182_gshared() (+9718 more) +Nodes (9745): ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m45AA23B38ECE6B28D89D0E72F41C33D1B7A0023A_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m9C23B628D687A4A080B37C12F33BF81CDC3FBA2C_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mB8B25E983E8492E65BD4449CAC4570EC7D37B12E_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mCB358AADC3D56D4A6DC8F1F34B2E803EB38D0782_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mCC65E5FB39395ECB4D1C69FB35E5E3F22CCA23AB_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m1D013AE163EFD669E73C0607DAF91114B6A70FBB_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2DC80696CB10F3234513DD4801723E9EABE2A362_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m6979DED8A68D37141E27FD3CBB6AE1E221C3C182_gshared() (+9737 more) ### Community 14 - "Community 14" Cohesion: 0.0 -Nodes (7501): Enumerator_System_Collections_IEnumerator_get_Current_m3FCE22D15C040EE9F8614C711F786205BA6AAFB6_gshared(), ArraySegment_1_get_Array_m2E2331A2A9F6CE753D983CC7AC8BD0CBD6F9B304_inline(), ArraySegment_1_get_Array_mC21189B8455DFE92DECDFACED174A927370DE0FC_inline(), ArraySegment_1_get_Count_mB5785EEC4627D248BF178575741BB908711A59F5_inline(), ArraySegment_1_get_Count_mE0EB9800F53C49B5C0D6AB226738A917F6FE9231_inline(), ArraySegment_1_get_Offset_m34A01E7CB8F98A6800EE534519EF33FF99B1CEFB_inline(), ArraySegment_1_get_Offset_mE1CD46CF5BE93AA4FA008A986382100EC3A52393_inline(), Enumerator__ctor_m0030D0B8AB9E107228FCD8C1859FA4EC37E2ABA0() (+7493 more) +Nodes (8665): HashCode_Combine_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m4ACF71EFA41042F2FDF0F9EB8EE7971029562D99(), UnitFullType_GetHashCode_mEA29FDC1942116789945749DE102DF8472C534C9(), UnitFullType_GetHashCode_mEA29FDC1942116789945749DE102DF8472C534C9_AdjustorThunk(), CSteamID_GetHashCode_m97DD624F8F68FDE26E18938DE3E01AB605707133(), CSteamID_GetHashCode_m97DD624F8F68FDE26E18938DE3E01AB605707133_AdjustorThunk(), Action_1__ctor_m1840BF5F2B806323FE80ACB6B4B8738B3C70C1EA(), Action_1__ctor_m8277D7C0B02FD31FAAD0AB4307FB95B73319EFEA(), Action_1_Invoke_m9E76E6EE2FAD2E88F47663F5EB53C96E718FD33E_inline() (+8657 more) ### Community 15 - "Community 15" Cohesion: 0.0 -Nodes (7404): fa_bcl_mDF19D910AC6CB333D9F05F26F5F05E85233AEC52(), fa_bdl_m2FD650D15D0BCAA16C66B272F4491F9AF11DF1D3(), fa_bdm_mB4E9F1034F55038E607BBB76CB02AF4F38523156(), fa_bqu_m8671364FF026E27CE27353F0060711A09CD7B4C0(), fa_cls_mD68947D7B403B5F3ED64F01B80B954AD19BA45FA(), fa_cmx_m5ADEA948E5FFA13078C37D1F9635D3F7A635C328(), fa_ctp_mBC86F36694D20EE6553E50E4B15BDB0BD9CE9380(), fa_dum_mB21FEC3FCD2EBEC3E5A9EDC3787C17F8264B7FE5() (+7396 more) +Nodes (8050): ExampleInput_get_SpaceHold_m5462056899742B828DCF278ABD6BE64CC358A52A(), Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline(), Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline(), Color32_op_Implicit_m47CBB138122B400E0B1F4BFD7C30A6C2C00FCA3E_inline(), Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline(), Color__ctor_mCD6889CDE39F18704CD6EA8E2EFBFA48BA3E13B0_inline(), Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline(), Color_get_green_mEB001F2CD8C68C6BBAEF9101990B779D3AA2A6EF_inline() (+8042 more) ### Community 16 - "Community 16" Cohesion: 0.0 -Nodes (5806): HttpWebRequest_U3CRunWithTimeoutU3Eb__242_0_TisIl2CppFullySharedGenericAny_m4E6C98DD423CDEC7FCA891C4669EC332FBBC344C_gshared(), HttpWebRequest_U3CRunWithTimeoutU3Eb__242_0_TisRuntimeObject_mD7B34A54CEBE629B055F4E06844C6D50EE0A241B_gshared(), LowLevelList_1_CopyTo_m39292EA1E9A9DE27CA5E34D9A69ADEC84E80F3DE_gshared(), LowLevelList_1_CopyTo_m84036282E39188B5D6D6D88BD506264711B760BD_gshared(), Nullable_1_ToString_mF43168D6369F27A1CF24B882855397CAD50452EA_gshared(), ObjectEqualityComparer_1_GetHashCode_mE28C25CC705B54AED50B5F9E8B22315DE8CF48E1_gshared(), BlockingCollection_1_CancelWaitingConsumers_mA7B44CA1BADE1835C43BA89A8E6B3A8171F68581_gshared(), BlockingCollection_1_CancelWaitingProducers_m4672AE3122AE831CE7D9F6BE08CD684CCBEFE4B7_gshared() (+5798 more) +Nodes (6125): bag_dcd_mECF6155A089DACDF676025CC555400F5D3F0E2D9(), GameConfig_cy_m667020A1011EC152362FA8C7FFB78C8D5859B9F8(), GameConfig_kxm_mAA365A446177AC20805E3FDF61291C2E34A630DB(), cfo_ql_m60357CFE0922DE16328F2F26C2C53BD70C67B916(), jje_dtn_m001D9BC3C1D0CA3865C5C35A4BA22C23F000684B(), jje_gfn_m520CC66CF2B649C2DF0E5719F6122A0BF1DCB1BB(), jje_jmi_mF03039D649E66E0E2F1508491849C6D3BAF31474(), jje_liy_mBB99B36A832BFBE7CED65AC5249BBFC5854BA982() (+6117 more) ### Community 17 - "Community 17" Cohesion: 0.0 -Nodes (5627): AllYCounterSkillFormatter__ctor_m6AB3E4CCCB7594B2B99183B67EBABA3C612AD860(), AllYCounterSkillFormatter_Deserialize_m052EE207F21240B74FE727761B38EA7FF4D54DEF(), AllYCounterSkillFormatter_Serialize_m30416CA2C7B0D3035E0BA16B43A3449F596C4DA9(), AllYTranSportSkillFormatter__ctor_m50530EECC38B18AE56E3F7934E587E65513A8442(), AllYTranSportSkillFormatter_Deserialize_mC37151BC56C5B0AD46D43D146FF8194811364517(), AllYTranSportSkillFormatter_Serialize_m4B443A9BFE6127DD1DF9D8364A770E6338834CB3(), ArrayFormatter_1__ctor_m1F89951DD8633FFCC1C1C08A4A29C4C9AE5F562F(), ArrayFormatter_1__ctor_m43BBF210FFA429C3830B367ECC751E440C70D1F6() (+5619 more) +Nodes (1379): AngleRangeGUI, UnityEditor.U2D, AnimancerUtilities_Wrap_m1F43DDCC9F8591CDEA8960139DD5ADCDD61082E0(), Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline(), ViAssisstant_IntInf_m1FDDDD13E68E206BD66372A6FDFE73963286AC48(), ViAssisstant_IntSup_m01D7B73F36B5501BEED900CF3103F6EB617B77DE(), ViMath2D_CaculateAngle_m68F1DC7E73BF46B4F75C9B6FE5FEB0C232C0F127(), ViMath2D_Rotate_m65A649472D92AAE814096E6C58FF7032E736F479() (+1371 more) ### Community 18 - "Community 18" Cohesion: 0.0 -Nodes (1082): AnimancerUtilities_Wrap_m1F43DDCC9F8591CDEA8960139DD5ADCDD61082E0(), Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline(), Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_inline(), ViAssisstant_IntInf_m1FDDDD13E68E206BD66372A6FDFE73963286AC48(), ViAssisstant_IntSup_m01D7B73F36B5501BEED900CF3103F6EB617B77DE(), ViMath2D_CaculateAngle_m68F1DC7E73BF46B4F75C9B6FE5FEB0C232C0F127(), ViMath2D_Length_m3149F886FF671F1070115F171123D0E747CD5C67(), ViMath2D_Length_m590BD6BBE2A13A804985146C954BB2947ED33D1C() (+1074 more) +Nodes (5641): AllYCounterSkillFormatter__ctor_m6AB3E4CCCB7594B2B99183B67EBABA3C612AD860(), AllYCounterSkillFormatter_Deserialize_m052EE207F21240B74FE727761B38EA7FF4D54DEF(), AllYCounterSkillFormatter_Serialize_m30416CA2C7B0D3035E0BA16B43A3449F596C4DA9(), AllYTranSportSkillFormatter__ctor_m50530EECC38B18AE56E3F7934E587E65513A8442(), AllYTranSportSkillFormatter_Deserialize_mC37151BC56C5B0AD46D43D146FF8194811364517(), AllYTranSportSkillFormatter_Serialize_m4B443A9BFE6127DD1DF9D8364A770E6338834CB3(), ArrayFormatter_1__ctor_m1F89951DD8633FFCC1C1C08A4A29C4C9AE5F562F(), ArrayFormatter_1__ctor_m43BBF210FFA429C3830B367ECC751E440C70D1F6() (+5633 more) ### Community 19 - "Community 19" Cohesion: 0.0 -Nodes (3761): AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(), AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_gshared(), AllocatorManager_CreateAllocator_TisIl2CppFullySharedGenericStruct_mB4F41AC6CCD167F35B0272A4F38196E32A364C03_gshared(), AllocatorManager_DestroyAllocator_TisIl2CppFullySharedGenericStruct_mBB46F1DC9D6AC1889886DD0B5DB327AB990498B5_gshared(), AllocatorManager_Free_TisIl2CppFullySharedGenericStruct_mDBB8A012EA9B6286BBF754ABC553D87E29E2084C_gshared(), AllocatorManager_FreeBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mB883369C2E1D3F28BFE59C63AF0075570A928971_gshared(), AllocatorManager_UnmanagedUnregister_TisIl2CppFullySharedGenericStruct_mA531B69E183CA56C8BC7D2DD419333CA5E2DC004_gshared(), AllocatorManager_Unregister_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mB8321A6BD18AF456ABC30E251B65EDA0381ECE93_gshared() (+3753 more) +Nodes (4115): ek_bbo_m1C9A4510171D9DB1E0BF2225FA58C723C0C7032E(), ikv_kpp_mA130EABC080C56352C63633D8F5AE0F8E1BC0EAA(), ct_bbd_m5B14CDA1E46E0EB80E9A0FAC978175E95D3D545A(), zs_kwq_m7025AA13284F7FF8873439ED775D34E328E94954(), CallbackDispatcher_Register_mBFB06FA332CA59D0925760F2C6FD2A29D4D1793F(), CallbackDispatcher_Unregister_m6F046DF4DE963DC8B05F13237AA0339A3F9AD4C7(), CallResult__ctor_m26E58342D0D5B5BC02A277BAF7B7B80B24F6942F(), Dictionary_2_Add_m9E6F5D1C9D4DD76E4A8F7090ACEFAC73FCB8A089() (+4107 more) ### Community 20 - "Community 20" Cohesion: 0.0 -Nodes (5708): SafeBuffer_Read_TisIl2CppFullySharedGenericStruct_m5C99057FB70397D465B35CD760D405368EDC0780_gshared(), SafeBuffer_ReadArray_TisIl2CppFullySharedGenericStruct_mF1046C6E291413A93FD3C14E0E76922A66D670CB_gshared(), SafeBuffer_Write_TisIl2CppFullySharedGenericStruct_mB9108472DF9AF02FDB9D4C8BD4F0F16CEEC3BFF5_gshared(), SafeBuffer_WriteArray_TisIl2CppFullySharedGenericStruct_m9454E400F08DAC0305896873C1FDAD4A8C61ECCB_gshared(), ArraySortHelper_1_BinarySearch_m07E77AE5F025761CFC1EFF940733C99F13F654EB_gshared(), ArraySortHelper_1_BinarySearch_m0BCE6EC3BE95132C034E9626C43F2A2FAED04D3B_gshared(), ArraySortHelper_1_BinarySearch_m2E2CDF934D38871D8986995661CB1D62071A5CB6_gshared(), ArraySortHelper_1_BinarySearch_m2F04ACEEAC9A3195EF97DA8703640035B24AC1A5_gshared() (+5700 more) +Nodes (3693): AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(), AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_gshared(), AllocatorManager_CreateAllocator_TisIl2CppFullySharedGenericStruct_mB4F41AC6CCD167F35B0272A4F38196E32A364C03_gshared(), AllocatorManager_DestroyAllocator_TisIl2CppFullySharedGenericStruct_mBB46F1DC9D6AC1889886DD0B5DB327AB990498B5_gshared(), AllocatorManager_Free_TisIl2CppFullySharedGenericStruct_mDBB8A012EA9B6286BBF754ABC553D87E29E2084C_gshared(), AllocatorManager_FreeBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mB883369C2E1D3F28BFE59C63AF0075570A928971_gshared(), AllocatorManager_UnmanagedUnregister_TisIl2CppFullySharedGenericStruct_mA531B69E183CA56C8BC7D2DD419333CA5E2DC004_gshared(), AllocatorManager_Unregister_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mB8321A6BD18AF456ABC30E251B65EDA0381ECE93_gshared() (+3685 more) ### Community 21 - "Community 21" Cohesion: 0.0 -Nodes (3626): TaskFactory_1_FromAsyncImpl_m486CF2195A6A9CBB3251AD5A2181B7E6873162B3(), TaskFactory_FromAsync_m9B2E0DF5F6D053647BF20AC7254F32817940D3F7(), TaskFactory_FromAsync_mC66587E72475D8951D90D60FEF44D21A81770970(), Math_Max_m12FB4E1302123ADB441E3A7BDF52E8404DDE53A2(), Math_Max_m670CC45E68892199F0ED53A131DAB78A953389BB(), Math_Max_m8CA8DA82E6369E8477818CB2C8C83ADDA7B4CEFD(), Math_Min_m1B6A7DBB8BBF41DE5E09DAAA47913DE1A3168B88(), Math_Min_m1C589BAB3D638CE6D3A29E552EDB5E9F95856C28() (+3618 more) +Nodes (4601): PolymorphicAttribute__ctor_m0BB581101F89070100B28A601AB7199519ABBCC5(), bcx_MoveNext_mCD25BC1C5053733CC02299EDB800E2707037866F(), MultilingualFieldAttribute__ctor_m6798E1E78CCA80AFD13606E0734F99501F5E4AF5(), GameObject_AddComponent_TisMeshFilter_t6D1CE2473A1E45AC73013400585A1163BF66B2F5_mEAB8177A64DF1A50BB7996ACEEEADCD65358AC94(), GameObject_AddComponent_TisMeshRenderer_t4B7747212F0B88244BB7790C61AE124BFC15BAAE_mCDD3E77673305199F52C772AE8C7952F3864740D(), GhostMaterialReplace_Invoke_mE667EE164F3628FAC247BA0BAA4ED7A62A205778_inline(), List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_inline(), Object_Instantiate_TisMesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4_mCB63EA96E3A7048C1CD837AD0CAF59AA9200DBE8() (+4593 more) ### Community 22 - "Community 22" Cohesion: 0.0 -Nodes (4400): EmbeddedAttribute__ctor_m68CAD82666F0FF415043D7DC217986AA2D3133D1(), NullableAttribute__ctor_mA329224BEC75C65B8E9B5D81D7F5E769E22790E2(), NullableContextAttribute__ctor_m3F94BA00FB614574AC19D78E61DC0CA0AE15FCAC(), SaveCachedDataTask(), DisposeSafetyHandle(), UsageAttribute__ctor_m802D31C3F757DF295A0016E479D8CD2B1923B9D0(), win(), __Il2CppComDelegate_Finalize_mC9F8EA94444C3AF0A43CC723A23EE4D8B7984F8C() (+4392 more) +Nodes (3488): MonoTlsSettings_CopyDefaultSettings_m4B0A3E8B7D106FA7F0D243FB2A0A4B115CD21942(), TaskToApm_End_mDFB29EEE501409834D464F4C249A535723B7E6ED(), TaskFactory_1_FromAsyncImpl_m486CF2195A6A9CBB3251AD5A2181B7E6873162B3(), TaskFactory_FromAsync_m9B2E0DF5F6D053647BF20AC7254F32817940D3F7(), TaskFactory_FromAsync_mC66587E72475D8951D90D60FEF44D21A81770970(), CryptoStream_EndWrite_mA68470A2CBD4FB1206BF30812E7EAA1D1FC4B0C5(), BufferedStream_EndWrite_m97561E80E838C260487886B84EDC8CEAA7FC8832(), Math_Max_m12FB4E1302123ADB441E3A7BDF52E8404DDE53A2() (+3480 more) ### Community 23 - "Community 23" Cohesion: 0.0 -Nodes (4263): AnimancerPlayable_Evaluate_m50B69F25DC93E6A64FD6D85CAD213156EEBD0B20(), AnimancerPlayable_Evaluate_m868C701E76EE3280B0085F0D063B75FDC98B0595(), AnimancerPlayable_get_IsValid_m1D469E2995826A7D0079F9BF9150D4CB158B3CDF(), AnimancerPlayable_get_UpdateMode_mA09454B9BDE03B7AF58365A52729B046A70F4215(), ClipState_CreatePlayable_mAB21757034DAF46570361FF47827F442EF05791E(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m6E37CA22CA51404E314A49F08590D4D56A1DDB0B_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m6E86F071C0CAFFA63554920F8FED40246F763F2D_gshared(), AsyncGPUReadback_RequestIntoNativeSlice_TisIl2CppFullySharedGenericStruct_mA4DD4B9AEC668DF0ED1B605EB0B4413825AC0774_gshared() (+4255 more) +Nodes (5426): ArraySortHelper_1_BinarySearch_m07E77AE5F025761CFC1EFF940733C99F13F654EB_gshared(), ArraySortHelper_1_BinarySearch_m0BCE6EC3BE95132C034E9626C43F2A2FAED04D3B_gshared(), ArraySortHelper_1_BinarySearch_m2E2CDF934D38871D8986995661CB1D62071A5CB6_gshared(), ArraySortHelper_1_BinarySearch_m2F04ACEEAC9A3195EF97DA8703640035B24AC1A5_gshared(), ArraySortHelper_1_BinarySearch_m315E2B25213727CCFDEAC95743F382D00A2C66E5_gshared(), ArraySortHelper_1_BinarySearch_m31FF9BB3CA599A5B4279B8C152629FA796203D20_gshared(), ArraySortHelper_1_BinarySearch_m3237E149FCC78B4A3CA769DE9A2073D34C46BA5A_gshared(), ArraySortHelper_1_BinarySearch_m384CB8DC9FC270B9F4B13C64D56F420AEF48028F_gshared() (+5418 more) ### Community 24 - "Community 24" Cohesion: 0.0 -Nodes (4126): DecimalSerializer_Serialize_m127DB2CFD977E7BF516387D1069DD6A69CF0F228(), RepresentationConverter_ToDecimal_mEFCEDB9B1267CDE8D5FF4495D7F6E5D7AD147B5F(), RepresentationConverter_ToDouble_m066DF58D13A3F58A02B98C14BF73BA7EB1A48E3E(), RepresentationConverter_ToInt32_m97422425B38795B22177A03489AD45F2A34E7B09(), RepresentationConverter_ToInt64_mEC148B66C1605343130BB00DABD7631867A87F70(), BsonInt64_ToDecimal_mF52CC16D1EF09F4C2BA796ADBAEF52487CB970D6(), Decimal__cctor_m3B13EC53441FFFB01B2DD8DF586EB3472523C5BA(), Decimal__ctor_m6DDFD6E3A7A8CDEB1BADF8E09A8D8E1BDA9497A9() (+4118 more) +Nodes (4467): ReadOnlyCollection_1_Contains_m08F053377062A13D3F105E6F58E5D02489A8BD66(), ReadOnlyCollection_1_Contains_m095D718795464C6D06D9D3E2C58F7C46262340EF(), ReadOnlyCollection_1_Contains_m1099806682D86CEF3C728FE8433AFB5A856C3D18(), ReadOnlyCollection_1_Contains_m214708698A141F252DC734FE38974A9624E78EC4(), ReadOnlyCollection_1_Contains_m231159C753F716BC81B238DA23A9D58198A7BE6B(), ReadOnlyCollection_1_Contains_m32D25F20FAA874053EDE3D81A2AD884F4715ADD7(), ReadOnlyCollection_1_Contains_m34473D930FE8DDC02B81A100567F684AF1A32DD8(), ReadOnlyCollection_1_Contains_m36559661F5D9CAA995E0542FB317EFB7D5EA46A7() (+4459 more) ### Community 25 - "Community 25" Cohesion: 0.0 -Nodes (0): +Nodes (5081): AddrofIntrinsics_AddrOf_TisIl2CppFullySharedGenericAny_m5BD9D07EF2F193BD1D209D91D3E6D993D40435F6_gshared(), AddrofIntrinsics_AddrOf_TisRuntimeObject_m26881CDB13AAC26B23F4C487BF5461CC7BBFB6EF_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718_mB3FA48E0C3F931F2C543835EBBAB90078A1D6911(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718_mB3FA48E0C3F931F2C543835EBBAB90078A1D6911_gshared() (+5073 more) ### Community 26 - "Community 26" Cohesion: 0.0 -Nodes (4440): Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), ArrayHelper_Empty_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_m14EBD7FCECD3BD84BB7AB607C59AC28273298395_inline(), AsyncHelpers_ForEachItemSequentially_TisIl2CppFullySharedGenericAny_m60C317CD1F381BF298BF4203B28B647A32E8A19A_gshared(), AsyncIteratorMethodBuilder_AwaitOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m97FC0EDCCE567EA93BA65A44A7049AC22A1172A4(), AsyncIteratorMethodBuilder_AwaitOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m97FC0EDCCE567EA93BA65A44A7049AC22A1172A4_AdjustorThunk(), AsyncIteratorMethodBuilder_AwaitUnsafeOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m66ECE8870C19BFEDB416842F8521623C0C65FED9(), AsyncIteratorMethodBuilder_AwaitUnsafeOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m66ECE8870C19BFEDB416842F8521623C0C65FED9_AdjustorThunk(), AsyncIteratorMethodBuilder_MoveNext_TisIl2CppFullySharedGenericAny_m7931F9D0117C508EE44DB6ECF7C0C943B6863AC0_AdjustorThunk() (+4432 more) +Nodes (4038): Enumerator_get_Current_m0841DC4DDE11ED5E3A6B60EB3474D7D7D0188420_gshared(), Enumerator_get_Current_m2035958E4DDFC7AD0D212BFB188A3DFF92747F5E_gshared(), Enumerator_get_Current_m29D464FFA106497F6688CA9CA96BE25D7CB7F781_gshared(), Enumerator_get_Current_m462D24C4AC1E2401412E4EE49F1EAD959F22C746_gshared(), Enumerator_get_Current_m57DCC34465CFF3D039D9F3FA822F0BC81D8E3E1A_gshared(), Enumerator_get_Current_m7716F010A3F70FEAA308621DC5F3B28D3A2B51AF_gshared(), Enumerator_get_Current_m877939A5CEE545E83B6B42D300CD17E737A793B9_gshared(), Enumerator_get_Current_m8D89F35E05824B1E7776F7C28A37EA85457E15B7_gshared() (+4030 more) ### Community 27 - "Community 27" Cohesion: 0.0 -Nodes (3933): Array_Empty_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m22E209B597C5752567BA3362E9DD1A84F595DC96_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline(), Array_Empty_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m5B415C4745E47108DD9258EBCCB422EFD6B8A0EB_inline(), Array_Empty_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m7E922E24AAEBD664256383832D53DDF17E1F3052_inline() (+3925 more) +Nodes (3920): FixedStringMethods_ComputeHashCode_TisIl2CppFullySharedGenericStruct_mB6493676FFCDAB4AD0FA6FB82564500A8286403C_gshared(), NativeList_1_AddRange_m5469007F99D38C73CAF59B7F3A2A20BDA7605288_gshared(), NativeList_1_get_Length_mBCE0D52E1FEFC40B5CFEE2F41B493C7FF6A07FA7_gshared(), NativeList_1_InsertRangeWithBeginEnd_m6C08CC6FCE0C86D983776D77B196EAF0FA4FB020_gshared(), NativeList_1_RemoveAt_mEDD020DF08725F529B5AA06F652196FD3B6ABC92_gshared(), NativeList_1_RemoveAtSwapBack_m3BAA4B8DC92D6A907E4B8570A4919F0C0B2211B7_gshared(), NativeList_1_RemoveRangeSwapBack_mC915D35A96C41DB035F4D0FCEF77143963205A4E_gshared(), NativeList_1_RemoveRangeSwapBackWithBeginEnd_mD9907E1058AD66004B86EC620926C2437926B369_gshared() (+3912 more) ### Community 28 - "Community 28" Cohesion: 0.0 -Nodes (4034): ggz_NextBytes_m278233F1789EB22F0B077398057AF1600195BA59(), ViStringSerialize_PrintTo_m8F9062D0545B004BCC60ABF3A838A8BA19C3BB03(), ViStringSerialize_PrintTo_mBB91F319F3A5CBA980D376A72A8802DEF33D727C(), ViStringSerialize_Read_m01D2D0FB8EFC0ABF1A065186DBA2C7EB34A9077C(), ViStringSerialize_Read_m0CDA4DD367A33C47854A9CA14BCE8A5FF1057FA6(), ViStringSerialize_Read_m73B772C12E3DC92FEED25EE1DA5DF9C8755E82C2(), ViStringSerialize_Read_mC9CB9B7B0CFDE65C73AF54BB6E394C7D6BF8D892(), ViStringSerialize_Read_mE3850D94F4B201443514495725DB7B91942A2AB1() (+4026 more) +Nodes (0): ### Community 29 - "Community 29" Cohesion: 0.0 -Nodes (3356): DeferredDisposableLifetime_1__cctor_m90B2B8374560F9E6622D41DE5FD4D4F696B7D45C_gshared(), ArraySegment_1_get_Array_m1747D6AEF82ECC2FC8BF82E0085F87625B873290_inline(), ArraySegment_1_get_Array_m2DBA02EABF9E0C3B44C58659B338872ACD6D73E1_inline(), ArraySegment_1_get_Array_m5B8145321CE390962D9E060CB1D71B5D8864F1D1_inline(), ArraySegment_1_get_Array_m66D80077530F32FBCF09E33171A7CB1F6D1EAF7D_inline(), ArraySegment_1_get_Array_m6FE5C7903751CF31CCA0FE65705B037B8B2E2C7C_inline(), ArraySegment_1_get_Array_m81A40345E7A687B5042C27645F5D56FD579429ED_inline(), ArraySegment_1_get_Array_m85F374406C1E34FDEFA7F160336A247891AF8105_inline() (+3348 more) +Nodes (1374): AchievementConditionBase, AroundBuildingsConditionCondition, AroundCityGridsConditionCondition, AroundEnemyUnitsConditionCondition, AroundSelfUnitsConditionCondition, AroundWondersConditionCondition, BuildWonderConditionCondition, Logic.Achievement (+1366 more) ### Community 30 - "Community 30" Cohesion: 0.0 -Nodes (3541): NativeList_1_CheckIndexInRange_m1AD11CF2F507F007C5AAD437D7CAD59C04B12238_gshared(), NativeList_1_CheckIndexInRange_m200159303CBD51B208138C8824ABE9B1FBD5F5F8_gshared(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(), DynamicArray_1_get_Item_m5B1DBAB0205422DC339E985CCEBD396137011912(), DynamicArray_1_get_Item_m7109F100EE5DC9FAC5D38BEADCD4D8CB66DA3E6C(), DynamicArray_1_get_Item_m7DDF1E462D1484149A4D812CAD717F816205FD44(), DynamicArray_1_get_Item_mF3E6225CDFD0CD64C4DC1289DB12E97049574C31() (+3533 more) +Nodes (4358): UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_mF5FF85F4C57B299E380CF84FDFAC28D2A77F06AE(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_m2BE2470D8C93AFF745AA294C1F157F07A98CB5D8(), cg_ezr_m0036B0266C872A9EA6B18BBAAD4AFD03EE4C0327(), cg_jiy_m6E01242634831B730BC36D22C334EBD333F8207E(), cg_vy_m58F451A442BC2F6015E8E9021E9FA50DF62872A5(), AICalculatorData__cctor_m8C4BA51A96069E1D463FB176F3140FF55EFF609F(), UIOutsideModView__cctor_mB67925DE0A6169145BA0E3D5732127119C6FFFD5(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_mC7CA174A23290C34424DF6D2733D5E64B92E5977() (+4350 more) ### Community 31 - "Community 31" Cohesion: 0.0 -Nodes (3359): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), AnimancerEvent_get_CurrentState_mE8E313D5B0D8BE0D33BAF3F90CCACC40D7187757_inline(), AnimancerLayer_get_CommandCount_m59A5957C7DB7E574CAC3EF8DEA1200585276772A_inline(), AnimancerLayer_get_CurrentState_mBE9E219D94516C430237703D8B4A5DE184116C3E_inline(), AnimancerNode_get_FadeSpeed_mA8510DDC870DBE7539463970CE9A3B4D2796A1B6_inline(), AnimancerNode_get_Index_mE0DF69950BF6E0BD21617437EADF360A30C1680C_inline(), AnimancerNode_get_Root_m93B6EB9E73B0E65C10C6CD74021B39CE8401A49C_inline(), AnimancerNode_get_Speed_mF329FD7BF54B33FE62153BA759BEDC74B8AAACF3_inline() (+3351 more) +Nodes (3138): AnimancerTransitionAssetBase__ctor_m8B042983702448B0C59777089D5D8F37DFA54E13(), AnimancerUtilities_RemovePlayable_mEACBF3BF8EBB17BE8AAE58D2A61979BB94F957FB(), PlayableExtensions_Destroy_TisPlayable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F_m2399B68C5F020C97F66F38B421680ED89E236FDB(), PlayableExtensions_GetOutput_TisPlayable_t95C6B795846BA0C7D96E4DA14897CCCF2554334F_m5462C6F519C3F4D8AFB0F44F26E86096DDAC4FC4(), ValueAnimation_1_Start_mCC85B391FD32BEAF30ECD78E3C74A8D16E437212_gshared(), AnimationDataSet_2_Add_m0791FFD5600773A8FBAEDC9D71F203C2D77DDC0A(), AnimationDataSet_2_Add_m13512086BF5255CF2B7AE572383752C7A970F75F(), AnimationDataSet_2_Add_m34BC010174C74AFF4B52A0278D53F4F602CA7E7C() (+3130 more) ### Community 32 - "Community 32" Cohesion: 0.0 -Nodes (2070): CallbackDispatcher_Initialize_mD46551C05A55CC1A824F139BEBCA33666AA892B9(), GameServer_Init_m111EC130AA36E318B03FE235A17EE9AC7CCF0D49(), GameServer_InitEx_mE022135077D894126D112A55DFEE4B1F53D8CFBF(), InteropHelp_PtrToStringUTF8_m684337FAC0BD132A5643CE8649FA5ACD80E5CE9B(), ISteamMatchmakingPingResponse_Finalize_m461C13B8F1C5013EBECA9528B03EDB843BC4924E(), ISteamMatchmakingPlayersResponse_Finalize_m4119A80E1817D779D5F8FE7DF4DD33A89BF81AD4(), ISteamMatchmakingRulesResponse_Finalize_m471BA9A05E42DFF8A85977C49005F18C5175D98E(), ISteamMatchmakingServerListResponse_Finalize_m1045C61F517FAC85A379B0DF7BCCCA3462F62D45() (+2062 more) +Nodes (3983): Array_Empty_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m22E209B597C5752567BA3362E9DD1A84F595DC96_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline(), Array_Empty_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m5B415C4745E47108DD9258EBCCB422EFD6B8A0EB_inline(), Array_Empty_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m7E922E24AAEBD664256383832D53DDF17E1F3052_inline() (+3975 more) ### Community 33 - "Community 33" Cohesion: 0.0 -Nodes (3103): BsonDocumentWrapper_Create_TisIl2CppFullySharedGenericAny_m9DBD701370EC3E8967700417D4056E7FA58D5575_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m52B7469ED8C326A6C2ADE2F403A2321F0E42FCD6_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m748C759F111B147DCE620BC72991590AFA2FF664_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_mE98FFEF3EC0E124FCE58E0D51D9315733F31B385_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_mFB745D362662F504A961C69E1A0053274FEFB99D_gshared(), Avx2_EmulatedGather_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m916056C6D56ED56A8C621B65387940440621885B_gshared(), Avx2_EmulatedGather_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9A1DADAD9E0F3273D16A73D963070B45A72D049C_gshared(), Avx2_EmulatedGather_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m16B5D468730F5B7AFE121394A46B16F4E3F663CB_gshared() (+3095 more) +Nodes (3117): EmbeddedAttribute__ctor_m68CAD82666F0FF415043D7DC217986AA2D3133D1(), NullableAttribute__ctor_mA329224BEC75C65B8E9B5D81D7F5E769E22790E2(), NullableContextAttribute__ctor_m3F94BA00FB614574AC19D78E61DC0CA0AE15FCAC(), UsageAttribute__ctor_m802D31C3F757DF295A0016E479D8CD2B1923B9D0(), Contract_EnsuresOnThrow_TisRuntimeObject_m19124F8798C1C42ADD0A80B888F84F2F729AEAB7_gshared(), Contract_EnsuresOnThrow_TisRuntimeObject_m91E64FA6BDE5589ECCAB2B2ECF68A7AF8B1DF2F2_gshared(), Contract_Requires_TisRuntimeObject_m3D1EB51CB1E7A30DB811F4EBA939171C648ACB79_gshared(), Contract_Requires_TisRuntimeObject_m46DA15C6B834C645330543A940D4DE4476945E6F_gshared() (+3109 more) ### Community 34 - "Community 34" Cohesion: 0.0 -Nodes (770): AnimancerJob, Animancer, AnimatedProperty, ClearMenuItems(), PopSelectedItem(), PushSelectedItem(), Render(), RunFrame() (+762 more) +Nodes (3405): RepresentationConverter_ToDecimal_mEFCEDB9B1267CDE8D5FF4495D7F6E5D7AD147B5F(), RepresentationConverter_ToDouble_m066DF58D13A3F58A02B98C14BF73BA7EB1A48E3E(), RepresentationConverter_ToInt32_m97422425B38795B22177A03489AD45F2A34E7B09(), RepresentationConverter_ToInt64_mEC148B66C1605343130BB00DABD7631867A87F70(), BsonInt32_ToDecimal_m0315D63B13F8A2250F05E89A1F2BC615A52901D1(), BsonInt64_ToDecimal_mF52CC16D1EF09F4C2BA796ADBAEF52487CB970D6(), Decimal__cctor_m3B13EC53441FFFB01B2DD8DF586EB3472523C5BA(), Decimal_Compare_mD355A42530880B398409FF6353E77759438B1023() (+3397 more) ### Community 35 - "Community 35" Cohesion: 0.0 -Nodes (1865): ikv_kpp_mA130EABC080C56352C63633D8F5AE0F8E1BC0EAA(), ct_bbd_m5B14CDA1E46E0EB80E9A0FAC978175E95D3D545A(), zs_kwq_m7025AA13284F7FF8873439ED775D34E328E94954(), CallbackDispatcher_Register_mBFB06FA332CA59D0925760F2C6FD2A29D4D1793F(), CallbackDispatcher_Unregister_m6F046DF4DE963DC8B05F13237AA0339A3F9AD4C7(), CallResult__ctor_m26E58342D0D5B5BC02A277BAF7B7B80B24F6942F(), Dictionary_2_Add_m9E6F5D1C9D4DD76E4A8F7090ACEFAC73FCB8A089(), Dictionary_2_Remove_m586B6F3867BF4CA4C614E589C6CE4A74EEF4422D() (+1857 more) +Nodes (3611): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), AnimancerLayer_get_CurrentState_mBE9E219D94516C430237703D8B4A5DE184116C3E_inline(), AnimancerNode_get_Index_mE0DF69950BF6E0BD21617437EADF360A30C1680C_inline(), AnimancerNode_get_Speed_mF329FD7BF54B33FE62153BA759BEDC74B8AAACF3_inline(), AnimancerPlayable_get_Current_mCC9E0799CE34E6FE7D40744F72AB6961C0B1A024_inline(), AnimancerPlayable_get_DefaultFadeDuration_m1099E80F36FA9BC3A9E377904F6BD67505818DAA_inline(), AnimancerPlayable_get_Layers_mD1CC4E248A812777280788BE1092147C83F81D12_inline(), AnimancerTransition_1_Apply_m4B94157C1A0FAB5672DA6C89EBA6797AF32BDD08() (+3603 more) ### Community 36 - "Community 36" Cohesion: 0.0 -Nodes (3015): LongEnumEqualityComparer_1_GetHashCode_m61BF4CA9A33282177F9DD76BB500FCF4D37CBBBE_gshared(), Nullable_1_GetHashCode_m0BA8FC436E9F78DCCCA729D80797AEF7B03463B5_gshared(), Nullable_1_GetHashCode_m22A932B19518EC693006CF81F92B7937FB32B25D_gshared(), Nullable_1_GetHashCode_m2AFEAD36F48D2F5DE8ECE59A6D10D73B229DDAC7_gshared(), ObjectEqualityComparer_1_GetHashCode_m2FA84A087493C9A7FFE57B05CCBD5DF9B92CB659_gshared(), ObjectEqualityComparer_1_GetHashCode_m4EF06EF9D6102986E59CDE8D75F1D7AFA139B089_gshared(), ObjectEqualityComparer_1_GetHashCode_m5D1ECE8F6D32A61BD58B2A0C9CA9F1AD1888041F_gshared(), Tuple_1_System_Runtime_CompilerServices_ITuple_get_Item_mE5C32575AB304AF08045733C88B662D5E22844BC_gshared() (+3007 more) +Nodes (3492): Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(), DynamicArray_1_get_Item_m5B1DBAB0205422DC339E985CCEBD396137011912(), DynamicArray_1_get_Item_m7109F100EE5DC9FAC5D38BEADCD4D8CB66DA3E6C(), DynamicArray_1_get_Item_m7DDF1E462D1484149A4D812CAD717F816205FD44(), DynamicArray_1_get_Item_mF3E6225CDFD0CD64C4DC1289DB12E97049574C31(), Enumerator__ctor_m01484E68645864FD93A5A123FD2F3D0D367B839B(), Enumerator__ctor_m026FE663AE06E1603109A4E65A78F4DACB74F7C7() (+3484 more) ### Community 37 - "Community 37" Cohesion: 0.0 -Nodes (3029): Math_ModF_m0F96CE4FC43C89BECCE17B6EFB51B01D39BD0EBB(), Math_Pow_mEAE651F0858203FBE12B72B6A53951BBD0FB5265(), Math_Truncate_mE66B1AD68C17D27675DE0CB74643374F9EDB649C(), BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2__ctor_m9E1C5BE4A0DE43BD79C1D0562E01C0485714FB74_inline() (+3021 more) +Nodes (3200): bae_frk_mF0AB8B65E2F47B059173BB6D9C3FE5D1D866F0D3(), bag_fso_m91A6F341325DD438CDF45D6A6C31CEA9B2AD4C56(), bag_fsu_m93BAFBA03D27FCADC21C5EA7EBDA1D2ABFC3A493(), bag_fta_m270A3157A3BA65C67DB347ACB2571BFC46F16AE9(), bag_ftc_mC640B0F4E5291DB2746DF5ACBDA80AF45292A7B4(), epv_ett_m912117BDB448D4DF5164E69E7138D329C4FDCEDC(), epw_etv_m12D39ED35E1B3C0C3D1D93B4F81EA259C2A8C586(), epw_Invoke_m1593957ED398150F380E813850C8D5E839C4DE72() (+3192 more) ### Community 38 - "Community 38" Cohesion: 0.0 -Nodes (2527): NativeArrayHelpers_CopyFromNativeSlice_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mEDA599B53DB377A69259BBF5A057F154737BE588_gshared(), CollectionHelper_CreateNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mE89A180FD53BA60F5FA7F6F059773A378080BA34(), CollectionHelper_CreateNativeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m53D2BC04C5127B3B1163A395E36386918CACFE4B(), CollectionHelper_CreateNativeArray_TisTransformData_tEC27E9D73132522EA47BF569B8FE23C627A5FC20_m6CC10B223D67915614A5EA4B2720F12E6559A8B9(), Enumerator__ctor_m1928AB0E8574CF7B13919F62C2469AC6D6952218(), Enumerator__ctor_m304F82D7089091F30EAE4AB8C570C8C5636F7D54(), Enumerator__ctor_m31BE532FAA2EB110D5C45837203677DD1ADF0286(), Enumerator__ctor_m3C4EA98CB3561DEAA707CB13014A8D13AE449359() (+2519 more) +Nodes (2689): PopsicleSetter_Set_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m20F57FD285D02B9E6856CBB2E640E8969E08E537_gshared(), PopsicleSetter_Set_TisIl2CppFullySharedGenericAny_mB58FA71E1F970542C11E978FAA63BCF438CB2E8B_gshared(), PopsicleSetter_Set_TisRuntimeObject_mA510FFB5FFE759899EA890919FD662EBF2870994_gshared(), Tensor_1_get_Item_m10517DD629C25BAAA5762E1BBFAC6EB5DAA5D5B6_gshared(), Tensor_1_set_Item_mCBC310B3F3434AAB18E329B6C03C1BC836A30765_gshared(), Tensor_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mC0C90A5262D50D90C3557276B5F3A9ECD154C5B4_gshared(), Tensor_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m536E9B2F5DCDFBB6F8D218667416EA0EF3DB628A_gshared(), Tensor_1_System_Collections_Generic_IListU3CTU3E_Insert_m78C3C37B19402FDF8381F31CE5F78A1789A74D92_gshared() (+2681 more) ### Community 39 - "Community 39" Cohesion: 0.0 -Nodes (2448): Action_1__ctor_m352C88C0080092E4462B504026030C6C4786DFDE(), Disposable_AcquireContent_mFAB7242FAD69588B23C93B0CB1F37E538F52451A(), Disposable__ctor_m4DE0705D6774DC8FC787B1C3A76F5C1C9833DEDE(), U3CU3Ec_U3CAcquireContentU3Eb__3_0_m54647822F4DD88B78E2C634C3045FE491CB1071D(), ArrayFormatter_1__ctor_m00A70A5FFBA123BE7DDDF4E011A63855E58A2227(), ArrayFormatter_1__ctor_m1A45DA23705E3C7AFAD886FF0993A6DF665DD5F5(), ArrayFormatter_1__ctor_m1ED35D6D0C2709E2ABF9B437C167728F0C8378E7(), ArrayFormatter_1__ctor_m6E49FF48ADA69AC45588E328909B1384EADF1B32() (+2440 more) +Nodes (769): AnimancerJob, Animancer, AnimatedProperty, ClearMenuItems(), PopSelectedItem(), PushSelectedItem(), Render(), RunFrame() (+761 more) ### Community 40 - "Community 40" Cohesion: 0.0 -Nodes (2416): Array_InternalArray__get_Item_TisEntry_t1CDC747C9ADFDE73D5CEF9691C3E6BD8FBDF7189_m7F4306F343EB7A102E6633552E3E8B693CBF7735(), Array_InternalArray__get_Item_TisEntry_t23291431B0F4E6D5E55BE94929C25DAF99F6D19A_m3644030E0B144CEBCA2E5942A86BBC04C7F144E1(), Array_InternalArray__get_Item_TisEntry_t50EA0C1E8A8EE9E0CC561055CA772A2BF21F8A5E_m924E96294956702A8D9E84BE23E10CEFC4104F04(), Array_InternalArray__get_Item_TisEntry_t93281171D04B819043C2FE272F0FB15167C2E9C5_m63BBB0F3D7CBFA5F1D51BDBF44C922A7898388ED(), Array_InternalArray__get_Item_TisEntry_t9DD41777766A237ECDB0E269740F073135AB4A64_m1ABD3AF96EA97F3798321E12B9A4B31CAB76F338(), Array_InternalArray__get_Item_TisEntry_tB846AFB0A0F9B314A2B6C14EBE942392AEB189B4_m35EC67E296B0B255285780D5457E5CBF8D76EA28(), Array_InternalArray__get_Item_TisEntry_tBFCAF6DF9FBB6B7CB44FAA838B615D233C134CAB_m405522050391F574D9E92F2F2904E87FD2FD7171(), Array_InternalArray__get_Item_TisEntry_tC6BA3FCE24005B80AD289EB230B5E04466EEDC86_mDE42BF9A0060EFA6DDCE4A697F746C869136C604() (+2408 more) +Nodes (1738): NamedOnnxValue_CreateFromTensor_TisIl2CppFullySharedGenericAny_m5B9C574CED9388D24C5974F3558FCF35FAFBB58F_gshared(), NamedOnnxValue_CreateFromTensor_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m136F0AB581EDF766D324A64C8E62BA08B5613A5C_gshared(), ObjectEqualityComparer_1_Equals_m854C2E5F3D69A09C83839722E59116434E577ADC_gshared(), ObjectEqualityComparer_1_Equals_mDB67632684D022DEDEE2E3311EC8A64F0F18A255_gshared(), ObjectEqualityComparer_1_GetHashCode_m35A9262B969CF319688B6D20983CBE064D37FE73_gshared(), ObjectEqualityComparer_1_GetHashCode_m9243B3A91D0C48543D6A165E13889106F10AD5BE_gshared(), ObjectEqualityComparer_1_IndexOf_m45BDC95A6E5AB0542ED27558B68E4EDDD7F43C07_gshared(), ObjectEqualityComparer_1_IndexOf_m5120BC7228BC077AF011DA6E5BB82415C27FD30E_gshared() (+1730 more) ### Community 41 - "Community 41" Cohesion: 0.0 -Nodes (2416): Array_InternalArray__get_Item_TisAccelerationEvent_tA2256FB99C2ACE6C0D05BDED1D3EF05DB5181E68_mEC4BAF0DFCF52221B3F6626EA60E2838CF698593(), Array_InternalArray__get_Item_TisAnimancerEvent_tFD0D7B09BB7C21DB92DB3DC5F51AEF510383A6E2_m55AE498601F1F36F1759906BDB2D650B3D3C1F52(), Array_InternalArray__get_Item_TisAnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03_m066792325C018423FC1740C37C00D551CB574A3E(), Array_InternalArray__get_Item_TisAppId_t_tEDCDD5747BB4D932D7C0D2DC9245ADB4ACBA421F_m28BABE60A294312ED061016FF527F787934A6359(), Array_InternalArray__get_Item_TisArchiveFileInfo_t051019338FB580F17B7DA49693024E09572EF9CC_mCB5C85BB13515B3586504D43A9F0801F05FE281E(), Array_InternalArray__get_Item_TisArchiveHandle_tECB0188191D0D3519C85970E537865D8F0E49CAA_mA8FD0FC76B52017A9C03F1062D0401D294DFD3A5(), Array_InternalArray__get_Item_TisAsyncGPUReadbackRequest_t6A735D3E0F1DEF8F43EBD0E6FE550FAE564519C7_mE005C1FB38B6D09B6CF04B1EE02BDF059FAC0A37(), Array_InternalArray__get_Item_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_m5803906032467756117FD3125CA4243C7B1FD4F1() (+2408 more) +Nodes (3070): ViMathDefine_Log_mEBAFAF982A5880E8591D71883111765EF8DB613C(), Double_IsPositiveInfinity_m2987455D4BE481D4568F1A47120843F2A8A5FFB0_inline(), Math_Log_m5A3BBBF06AB82F25C885812E07D27B473CF43054(), Math_ModF_m0F96CE4FC43C89BECCE17B6EFB51B01D39BD0EBB(), Math_Pow_mEAE651F0858203FBE12B72B6A53951BBD0FB5265(), Math_Truncate_mE66B1AD68C17D27675DE0CB74643374F9EDB649C(), SpriteSkinUtility_GetHash_m3EB3A276AB986508F0E6876045E363B185B60A4D(), BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline() (+3062 more) ### Community 42 - "Community 42" Cohesion: 0.0 -Nodes (1981): ArraySegment_1_get_Array_m0A37BDEA0523B09288F812B98E20D333AC5E8ACD_inline(), ArraySegment_1_get_Array_m12259026D885142F80E08F7D6B6A1C5E027049AD_inline(), ArraySegment_1_get_Array_m1B2E5117440374B71BEA40B0A51E356CE60CBAF0_inline(), ArraySegment_1_get_Array_m1E527B0219936D6E63F60F321794D4A41AE9FA96_inline(), ArraySegment_1_get_Array_m24475EFE270516273D5BD2ED66509B95226F44A5_inline(), ArraySegment_1_get_Array_m24FD23F83EF142F9648C83A31ACCDD6F160C766C_inline(), ArraySegment_1_get_Array_m36D0B3102AA934A99E3996B16BA3359A023ABA9D_inline(), ArraySegment_1_get_Array_m3EC30DFD5EF29FFD45B00323A707799C81586212_inline() (+1973 more) +Nodes (2392): ent_esj_m5511EF800B5598003F5751582ED2E8E425F4C9C9(), ent_esk_mEDC09B379500CA113FDF2921EC6CB5D03D0EC69A(), epy_etz_m84B9B9A0B51AF3604812236C248F58E8745C2F7D(), epy_eua_mBC0512B0511A7633DF5A468D2E5B6B515BC95C64(), UIOutsideLibraryView_dlp_mA93EA68992CBFF711860FD0326257A8AD44F226D(), UIOutsideTutorView_eau_m536802AC8EF076B352B73D62745082B0632CEC3E(), UIOutsideWikiView_eax_m109AF737B5E09FEAC1412083E256CAD2AEE97075(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+2384 more) ### Community 43 - "Community 43" Cohesion: 0.0 -Nodes (1946): ArraySegment_1_get_Array_m197854ECC37F17B928DF151B9E9B3849D25FD234_inline(), ArraySegment_1_get_Array_m1B023530CEE9F0816934FDDD167983DBB0922B76_inline(), ArraySegment_1_get_Array_m439E978608DF511B0CFF860A230322B2BFB93C2F_inline(), ArraySegment_1_get_Array_m45274C465C129D05C04058E42CC1885331963BC0_inline(), ArraySegment_1_get_Array_m6CF9DE0D4DE8775EFEAF60B8F5C7D983DF08A4A3_inline(), ArraySegment_1_get_Array_m6F863B79EE6D5629D4D1E781EA4E0C4F31C26F42_inline(), ArraySegment_1_get_Array_m71D9FC5B93E089750D7942591BF403D20352BC87_inline(), ArraySegment_1_get_Array_m783565E05F6EE1C494E0D9909B94B3F180AB20AE_inline() (+1938 more) +Nodes (2560): CollectionExtensions_ToReadOnly_TisParameterExpression_tE8D3A1137422F75D256CBB200EDC82820F240110_m38BDDD59B8317C3114792AF4F226A3C978FDF901(), Expression_Lambda_TisIl2CppFullySharedGenericAny_mBE3C492CB081CEA8FAAF9F3D46AFE6D8DB05EBCA_gshared(), Expression_Lambda_TisRuntimeObject_m208FF8532548F744FDC7715D12012D92B4B9CDC5_gshared(), ConstantExpression_get_Value_mCC4506ED39F235D2D2A57728CC0DD36C390B4C17_inline(), Dictionary_2__ctor_m517E7F9D104FEAE6646EABDDC9C852510E86077C(), Dictionary_2__ctor_m712893C2C48C47CCAFAD85A865C702E8D3D2B71F(), Dictionary_2_TryAdd_mF9B0463373910BAF21DB075A3A9788E5A7E7F1D2(), Dictionary_2_TryAdd_mFB1B8FE3D03CB2B3D204AEA592204998B4F2958A() (+2552 more) ### Community 44 - "Community 44" Cohesion: 0.0 -Nodes (1051): DataCommonEventSource_Trace_TisIl2CppFullySharedGenericAny_m48217756B9E6E7203BE8879023F75CCA9F162478_gshared(), DataCommonEventSource_Trace_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mF7F0C527D5B6EE78EFF33249E36838EA9015E446_gshared(), DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_gshared(), DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_mCA145160EC3063BCC45C08271291BBF6EDA99195_gshared(), DataCommonEventSource_Trace_TisRuntimeObject_m0EDE55B17966DCB42AFD9FC6D69AE77D5EBF7E83_gshared(), NullableSerializer_1__ctor_m64C4C49294BE546AAF55DB96EEC7B8F7146B9AC7_gshared(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), BaseField_1_get_labelElement_m18106DF604A4B8BB3BF756C55203248FE7B6825C_inline() (+1043 more) +Nodes (2689): ActionConfirmMessageFormatter__ctor_m42FB3B127CB78F044A19CC2B91A58D39BAF3A26C(), ActionConfirmMessageFormatter_Deserialize_mCAB2E600BE2EFCFD72764280689C6B9345D5BC62(), ActionConfirmMessageFormatter_Serialize_m99C703EF1F09B60A353582C00FE263680DB60C36(), ActionExcuteMessageFormatter__ctor_mE89FD29A88912F13AB306E02ADC045B2FE6325BC(), ActionExcuteMessageFormatter_Deserialize_mCCAEC22AAFC74AE338FE7FFD65D7304E07A27657(), ActionExcuteMessageFormatter_Serialize_m5EA34A8A4E320B95B4AC1CA42A850270EBDA7E44(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+2681 more) ### Community 45 - "Community 45" Cohesion: 0.0 -Nodes (2400): ValueAnimation_1_Start_mCC85B391FD32BEAF30ECD78E3C74A8D16E437212_gshared(), AnimationDataSet_2_Add_m0791FFD5600773A8FBAEDC9D71F203C2D77DDC0A(), AnimationDataSet_2_Add_m13512086BF5255CF2B7AE572383752C7A970F75F(), AnimationDataSet_2_Add_m34BC010174C74AFF4B52A0278D53F4F602CA7E7C(), AnimationDataSet_2_Add_m3B8112BC15048263B03E5DF4CB7976964D3DC74B(), AnimationDataSet_2_Add_m404ADEBFC3B0B946E06E5EEA8D5950CDCEC183B8(), AnimationDataSet_2_Add_m421046E26B54D604A9F1A9229604E7DDF6C09BD8(), AnimationDataSet_2_Add_m53C45865FC0A355359D068CFDFA61ABD622865E1() (+2392 more) +Nodes (2617): BsonDocumentWrapper_Create_TisIl2CppFullySharedGenericAny_m9DBD701370EC3E8967700417D4056E7FA58D5575_gshared(), NativeReference_1_CheckNotDisposed_mB1417CFA5E7A0BB6B30EE33D10B3DD5D78C1C08B_gshared(), Nullable_1_Equals_mC16F757827EDDF94224EBF7D532177F329D60C0E_gshared(), Nullable_1_GetHashCode_m2D0DFE795827DD0BDA5575556169B553AD82E00B_gshared(), Nullable_1_GetHashCode_m981382AEF588E8BF9CFFCEED2F2EDF7700C910FB_gshared(), Nullable_1_ToString_m1210FEC357281E7B86C70387BBDB035AFC0ED01A_gshared(), Nullable_1_ToString_mB002C1CA9B69551459747E7D711C8D130A29ECE0_gshared(), ObjectEqualityComparer_1_GetHashCode_m28D816B121BD54B4240B00BBBB19D97C4F0886DB_gshared() (+2609 more) ### Community 46 - "Community 46" Cohesion: 0.0 -Nodes (2260): HashCode_Combine_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m4ACF71EFA41042F2FDF0F9EB8EE7971029562D99(), UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539(), UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539_AdjustorThunk(), UnitFullType_GetHashCode_mEA29FDC1942116789945749DE102DF8472C534C9(), UnitFullType_GetHashCode_mEA29FDC1942116789945749DE102DF8472C534C9_AdjustorThunk(), jje_dtn_m001D9BC3C1D0CA3865C5C35A4BA22C23F000684B(), jje_gfn_m520CC66CF2B649C2DF0E5719F6122A0BF1DCB1BB(), jje_jmi_mF03039D649E66E0E2F1508491849C6D3BAF31474() (+2252 more) +Nodes (2216): ScriptableObject_CreateInstance_TisRuntimeObject_mC07BE383F5EF546F4191035A679930852BC19BDA_gshared(), Activator_CreateInstance_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mA5589FEB1272F05337DDA4D3300BE9B8D9700A35(), Activator_CreateInstance_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_m352B21AA96F81D3AAFEC94237A3D01038A0C61D8(), Activator_CreateInstance_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m458B1EE9503B5C407D2E43E2847F41BFAE2CAC26(), Activator_CreateInstance_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m45BD2C80229861B9960B7ADAB7E5208809EDFDBA(), Activator_CreateInstance_TisRectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_m4613E6AAAADEC23A6C5FA5E54E9779F441CE794D(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Activator_CreateInstance_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m2BACE7A800D707FD2BBBADCAA1E55904A26C17DA() (+2208 more) ### Community 47 - "Community 47" Cohesion: 0.0 @@ -1957,311 +2088,311 @@ Nodes (19): asfloat(), asint(), asuint(), f32tof16(), min(), select(), Unity.Bur ### Community 48 - "Community 48" Cohesion: 0.0 -Nodes (1937): ArraySegment_1_get_Array_m1896B96738A2C6D236E8ACCDC37FA1E9FB9E8A2F_inline(), ArraySegment_1_get_Array_m2209FF2DA83FC6294670A626757B7060D2A5E4D8_inline(), ArraySegment_1_get_Array_m264A3366D24FE7843D686F6DE4C76BCE61152D12_inline(), ArraySegment_1_get_Array_m4363EBFD63680D0CC1DB7C48FF3DAC8B73968668_inline(), ArraySegment_1_get_Array_m4D719AF4B0B8518696DEBCB8AE9EB1DAE930FC3C_inline(), ArraySegment_1_get_Array_m5397A754192C48C7212136A27BB5D70F90D8C8EE_inline(), ArraySegment_1_get_Array_m5AF838FB97EA85F51EEE70E6E88E733310A46AC7_inline(), ArraySegment_1_get_Array_m684FA572C1C7BBADD02ECEADD197FF7B7214E0EF_inline() (+1929 more) +Nodes (936): MouseEventBase_1_get_currentTarget_mACAF21506F714D1BBFC086B0F7EA5579DCC72714_gshared(), NullableSerializer_1__ctor_m64C4C49294BE546AAF55DB96EEC7B8F7146B9AC7_gshared(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), BaseField_1_get_labelElement_m18106DF604A4B8BB3BF756C55203248FE7B6825C_inline(), BaseField_1_get_showMixedValue_m1EF27AA5B2600E90F6F266A2D560B2E85C8B254C_inline(), BaseField_1_get_value_m4D3669C5B6D8FC270A658D537E588B0170E8F3C4(), BaseField_1_get_visualInput_m8EBA755E9B8AD281AE3B659323B3E79B7B5D544B(), BaseField_1_set_value_mC59AC8A46301F9E49A641AF48154BBD293B2CB2C() (+928 more) ### Community 49 - "Community 49" Cohesion: 0.0 -Nodes (1881): ArraySegment_1_get_Array_m07FFAA6A1DB7B89225FF621A9D1DE23E4AE9F875_inline(), ArraySegment_1_get_Array_m0AA90934516E40213DD80FA26310ECFA91EFAE4E_inline(), ArraySegment_1_get_Array_m1631D7FA218D88E42A56E375C99EE91AE91C7112_inline(), ArraySegment_1_get_Array_m19F626A6A809CF41373C9DD3B785F2DC8F58E1EB_inline(), ArraySegment_1_get_Array_m2AB994CBEEB979F3D2648B0FCB02A1D8088C3A73_inline(), ArraySegment_1_get_Array_m2E2799862A5EB0D3E20C00C23A7DA4E2A63AAA82_inline(), ArraySegment_1_get_Array_m3692ADC547A67A5D57EF16DBCB101442C9A42C39_inline(), ArraySegment_1_get_Array_m44919767C029CEAB12889D5FFA5E700F5B3C77F8_inline() (+1873 more) +Nodes (1976): UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539(), UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539_AdjustorThunk(), Vector2_op_Addition_m08FDB48B512979D8747CB6AA3EF13F9260DE9D09_inline(), CSteamID_Equals_m89E4C9BC7F08814FA47BB73FABFCF5F6102021CD(), CSteamID_Equals_m89E4C9BC7F08814FA47BB73FABFCF5F6102021CD_AdjustorThunk(), HSteamNetConnection_Equals_m38B50988A48FFA0F7A05026E62AD8AD4EE85D4A3(), HSteamNetConnection_Equals_m38B50988A48FFA0F7A05026E62AD8AD4EE85D4A3_AdjustorThunk(), PublishedFileId_t_Equals_mC2B5F36CF5FC031E3AC7A1FA5529EBB63DB48C8A() (+1968 more) ### Community 50 - "Community 50" Cohesion: 0.0 -Nodes (1933): ent_esj_m5511EF800B5598003F5751582ED2E8E425F4C9C9(), ent_esk_mEDC09B379500CA113FDF2921EC6CB5D03D0EC69A(), epy_etz_m84B9B9A0B51AF3604812236C248F58E8745C2F7D(), epy_eua_mBC0512B0511A7633DF5A468D2E5B6B515BC95C64(), ViDebuger_AssertError_m3889E6EE3E0AE271BD0C92501197BCD7A722F6A8(), ViDebuger_AssertWarning_m6E864A75DF391474A4482B80C5BE07001FF70ED1(), ViDebuger_AssertWarning_mCBEAEDC6D821D0423CACE69EA942769FE4843EDD(), ViOStream__SetValue_m64F68728ACC60398B9AA47B356A5ABCD9A55EC00() (+1925 more) +Nodes (1983): Array_InternalArray__get_Item_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_mF01CACE82616CAD4135BE2FAC266A923369F3A61(), Array_InternalArray__get_Item_TisContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC_mBB17D60F1712E426F2F0B07792407B20EA2EB501(), Array_InternalArray__get_Item_TisEmptyData_t00356C2BB80236243B9C3C1D0EFBF8837803D27D_m5CB79741155DE9B13ECF8E7DD602CF4145771D33(), Array_InternalArray__get_Item_TisEmptyData_t02ECBE01728C0979248845C107F3FCE871DDC9E3_m7E9E40089766BF5FF69964E44CA568E3006DE68F(), Array_InternalArray__get_Item_TisEmptyData_t1C3D3C071EBD9CF479FFE737CB6E0618C82FE95E_mABD86630C97B4D012AA0CDE2F95C06A6486D45BE(), Array_InternalArray__get_Item_TisEmptyData_t2CB75995D335E22F6BF31D1CB979DB1067C5025E_mDC22F7CC0C93AFADE6C3F59F37F558FFFFFB6A56(), Array_InternalArray__get_Item_TisEmptyData_t3ADF94D95DAB6657C31C89FBD83359BCC8B247EC_mCD14ECE62AA234121B72E8BDF58B1037042B37F4(), Array_InternalArray__get_Item_TisEmptyData_t43DE49ADBBE9CFA603DCA7C5CDC998DE6DC976A1_m16960B324D10C1FFBBA83B79B5D8223F1D54ABC4() (+1975 more) ### Community 51 - "Community 51" Cohesion: 0.0 -Nodes (2021): Array_InternalArray__get_Item_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_mF01CACE82616CAD4135BE2FAC266A923369F3A61(), Array_InternalArray__get_Item_TisContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC_mBB17D60F1712E426F2F0B07792407B20EA2EB501(), Array_InternalArray__get_Item_TisEmptyData_t00356C2BB80236243B9C3C1D0EFBF8837803D27D_m5CB79741155DE9B13ECF8E7DD602CF4145771D33(), Array_InternalArray__get_Item_TisEmptyData_t02ECBE01728C0979248845C107F3FCE871DDC9E3_m7E9E40089766BF5FF69964E44CA568E3006DE68F(), Array_InternalArray__get_Item_TisEmptyData_t1C3D3C071EBD9CF479FFE737CB6E0618C82FE95E_mABD86630C97B4D012AA0CDE2F95C06A6486D45BE(), Array_InternalArray__get_Item_TisEmptyData_t2CB75995D335E22F6BF31D1CB979DB1067C5025E_mDC22F7CC0C93AFADE6C3F59F37F558FFFFFB6A56(), Array_InternalArray__get_Item_TisEmptyData_t3ADF94D95DAB6657C31C89FBD83359BCC8B247EC_mCD14ECE62AA234121B72E8BDF58B1037042B37F4(), Array_InternalArray__get_Item_TisEmptyData_t43DE49ADBBE9CFA603DCA7C5CDC998DE6DC976A1_m16960B324D10C1FFBBA83B79B5D8223F1D54ABC4() (+2013 more) +Nodes (2284): ObjectEqualityComparer_1_Equals_m4CDA33045C9068C4F80D07C6CACE60B0912280F8_gshared(), ObjectEqualityComparer_1_Equals_m8FA64C58DBEB7D9760E92B075FB2D798FD4CE318_gshared(), ObjectEqualityComparer_1_IndexOf_m42E348A10AE798FB7F862D33C325864C12193C9A_gshared(), ObjectEqualityComparer_1_IndexOf_mA6F11D9E632A8E8CE96AE8B9752C02FF08FE0413_gshared(), ObjectEqualityComparer_1_LastIndexOf_mB0D84F145DF71B073907183DE03ACCC450B1FD55_gshared(), ObjectEqualityComparer_1_LastIndexOf_mE9C0C6E96949D35B80CEE0F414D177DA2F7AE06C_gshared(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline() (+2276 more) ### Community 52 - "Community 52" Cohesion: 0.0 -Nodes (1775): PolymorphicAttribute__ctor_m0BB581101F89070100B28A601AB7199519ABBCC5(), bcx_MoveNext_mCD25BC1C5053733CC02299EDB800E2707037866F(), MultilingualFieldAttribute__ctor_m6798E1E78CCA80AFD13606E0734F99501F5E4AF5(), ComputeBuffer_BeginWrite_TisIl2CppFullySharedGenericStruct_m64E369E270A3B785F518547B718040DD556A73AD_gshared(), GameObject_GetComponentAtIndex_TisRuntimeObject_m9A438D0241C3503B2646841F350E8AED74075A9F_gshared(), GameObject_GetComponentInParent_TisIl2CppFullySharedGenericAny_m344119E56640668CC72CE6788872E2E1F6A9848F_gshared(), GameObject_GetComponentInParent_TisRuntimeObject_m940CCA4411B863505A42B98CE5A6CA4DF3AFD867_gshared(), Action_2_Invoke_mF5036A6D1FF31DA2E4CB571F6A0F904796417719_inline() (+1767 more) +Nodes (2271): ObjectEqualityComparer_1_Equals_mDD2C93F144540C4FCCE3270DC4707347AC7716DD_gshared(), ObjectEqualityComparer_1_IndexOf_m7AAC3E052F9C5DDA35B7EA3C493C674ED1F63D1A_gshared(), ObjectEqualityComparer_1_LastIndexOf_m90ACF651F29E5883D4BCADFD603481058A5F86BD_gshared(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline() (+2263 more) ### Community 53 - "Community 53" Cohesion: 0.0 -Nodes (744): AddressablesAsyncExtensions, AsyncOperationHandleConfiguredSource, Cysharp.Threading.Tasks, GetResult(), OnCompleted(), UnsafeOnCompleted(), Aggregate, Cysharp.Threading.Tasks.Linq (+736 more) +Nodes (2209): Tuple_1_System_Runtime_CompilerServices_ITuple_get_Item_mE5C32575AB304AF08045733C88B662D5E22844BC_gshared(), Tuple_2_System_Runtime_CompilerServices_ITuple_get_Item_m9AF3A9D8F7D1F183485C33CC386E69387F694589_gshared(), Tuple_3_System_Runtime_CompilerServices_ITuple_get_Item_m62BAEDD21F68734854FF640C62F5BC834E26FA7B_gshared(), Tuple_4_System_Runtime_CompilerServices_ITuple_get_Item_m69D95468313E279C2758E6243CAA0FC69E4BD321_gshared(), Tuple_5_System_Runtime_CompilerServices_ITuple_get_Item_mF9767A62C862C01F03EBD6D799922D88DCA75E50_gshared(), Tuple_6_System_Runtime_CompilerServices_ITuple_get_Item_mA345A1E1A10FD4E0559D92E052E52FEF349DB42A_gshared(), Tuple_7_System_Runtime_CompilerServices_ITuple_get_Item_m9DA587CC2FF0493422306CCA5558A09EF8E4D6B8_gshared(), Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4() (+2201 more) ### Community 54 - "Community 54" Cohesion: 0.0 -Nodes (1900): ActionQueryMatcher__ctor_mC55E3FF32B3E78B556201397D2DB1E484C2FB8D3(), AnimancerTransitionAsset_1_get_Transition_mC638CEE005E5D5E2A870678A83BDAE2F9C659671_inline(), AnimancerTransitionAsset_1_set_Transition_m3507858CC522C3983874E7F772857C729CB9BA7E_inline(), Array_Allocate_TisMemoryBlock_t83C4AD217E04686899AC67FBD8D14A7C9AAC6E84_mCDBD1381CA662F016D4B6003D9BA89FE592EB6D8(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline() (+1892 more) +Nodes (1866): ArraySegment_1_Equals_m25C8296020D7E6E0B7EF6914CB07629EF0B4727D(), ArraySegment_1_GetHashCode_m2EC1FDAB80FBC952462F357BADDB69CC38AB9AA3(), BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), Bounds_Equals_m615135524315743D29633C33B6C8B16B754266DB_inline(), Bounds_Equals_m93E0B9D24C73E57A6FABB9D312101D48183C88CC_inline(), Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_inline(), Bounds_get_extents_mFE6DC407FCE2341BE2C750CB554055D211281D25_inline(), Bounds_GetHashCode_m59C79B529D33866FE45FEFC0C69FBD3B4AC7E172_inline() (+1858 more) ### Community 55 - "Community 55" Cohesion: 0.0 -Nodes (2275): bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_mB4B5D68D56D55562A9FD58AC5BEAA147964BDB24() (+2267 more) +Nodes (2019): Action_1__ctor_m85C15848977E87A976978E191FF23BE7775A4118(), Action_1__ctor_m86D48E56A74C816F2F8A131EB27B279C757C27FE(), Action_1_Invoke_m5697C0ED1CE04C4561DFFA07BEBB152DFE7DB3E1_inline(), Action_2__ctor_m4EF2E22B17BBCFD4D70776918EF7C9CB1BE41996(), BaseAttribute_get_Default_m94D0085FF0599F4C0E8A99AECA09BA94EF60C2E2_inline(), BaseAttribute_get_Hidden_mCC368F2255941BA1715CA0BED558F82E6F3725C0_inline(), BaseAttribute_get_Max_m0D184E9D2747223B993BFD0B9301852C5DB52919_inline(), BaseAttribute_get_MetaValue_m28E3B7B0E528D9D2DFFC368192A9540CC22F4994_inline() (+2011 more) ### Community 56 - "Community 56" Cohesion: 0.0 -Nodes (2267): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_m50A0342BC8634A3558D5B9C1EA2540BD0D283063(), DebuggerProxy__ctor_mA67D2CC3100CC593D967E6BDD5F356113DE48489() (+2259 more) +Nodes (1673): hx_hkh_mF0121CF886172A7EA9510A47EE8605529A970CCE(), hx_lrb_m0B55C6F1A7525DBAD39CC2D2E112CFF9771561E7(), Graph_AddNode_TisRuntimeObject_m362DFED92854FBD5FDA3AB422EE44CBDFDBE02AF_gshared(), PickListElement_1__ctor_mE52044A95556459E2F962ED3F52565402ECDD24B_gshared(), PickRandomListElement_1__ctor_m0A3710437B7B424E1179CFA7EBD8044FFAE89224_gshared(), RemoveElementFromList_1__ctor_mA9C0ACE90FFC00F1A9265BA5C48CF6F7CDA95432_gshared(), SendEventToObjects_1__ctor_m2FD39C53DBB4C4D971718E25759CB6BD207E1812_gshared(), SendMessageToType_1__ctor_m7CF753F94D83E152A5E10BA92C4A63E75ED466FB_gshared() (+1665 more) ### Community 57 - "Community 57" Cohesion: 0.0 -Nodes (1877): ArraySegment_1_Equals_m25C8296020D7E6E0B7EF6914CB07629EF0B4727D(), ArraySegment_1_GetHashCode_m2EC1FDAB80FBC952462F357BADDB69CC38AB9AA3(), BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), Bounds_Equals_m615135524315743D29633C33B6C8B16B754266DB_inline(), Bounds_Equals_m93E0B9D24C73E57A6FABB9D312101D48183C88CC_inline(), Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_inline(), Bounds_get_extents_mFE6DC407FCE2341BE2C750CB554055D211281D25_inline(), Bounds_GetHashCode_m59C79B529D33866FE45FEFC0C69FBD3B4AC7E172_inline() (+1869 more) +Nodes (1621): Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), ArrayBuilder_1_Add_mDD45C48FAB10C7E71DCA9471405200E47934BA17(), ArrayBuilder_1_get_Count_mCA377EA906AE8833A2DE64E4FE36A8357857059B_inline(), ArrayBuilder_1_get_Item_mD96AA83499A6A14962A12723E14162A1F175852E(), Enumerator__ctor_m01EBD00AA2094A26D7A06612EBCFDAEB7BDF4F09(), Enumerator__ctor_m0F98614729A5017594BCB5D1D847C1D319913311(), Enumerator__ctor_m4D02C32B485C6B5756A14F13D055DD8301B439EF(), Enumerator__ctor_m9DA60FCFA9D63876BD09F2400D98CF3133BB3128() (+1613 more) ### Community 58 - "Community 58" Cohesion: 0.0 -Nodes (2045): Action_1__ctor_m85C15848977E87A976978E191FF23BE7775A4118(), Action_1__ctor_m86D48E56A74C816F2F8A131EB27B279C757C27FE(), Action_1_Invoke_m5697C0ED1CE04C4561DFFA07BEBB152DFE7DB3E1_inline(), Action_2__ctor_m4EF2E22B17BBCFD4D70776918EF7C9CB1BE41996(), BaseAttribute_get_Default_m94D0085FF0599F4C0E8A99AECA09BA94EF60C2E2_inline(), BaseAttribute_get_Hidden_mCC368F2255941BA1715CA0BED558F82E6F3725C0_inline(), BaseAttribute_get_Max_m0D184E9D2747223B993BFD0B9301852C5DB52919_inline(), BaseAttribute_get_MetaValue_m28E3B7B0E528D9D2DFFC368192A9540CC22F4994_inline() (+2037 more) +Nodes (1697): ParserSettings_GetWindowWidth_m427CD0E5A6BFE5CF15A9DE2310299CB314D87EEF(), SpanHelpers_CopyTo_TisIl2CppFullySharedGenericAny_mD0A8926B03486D3EDEA2654070EB4791ADA8EDF7_gshared(), DeferredDisposableLifetime_1__cctor_m90B2B8374560F9E6622D41DE5FD4D4F696B7D45C_gshared(), ObjectId_GetMachineName_mF5431806057942D3FFD04D1BD23EF818F6E6681D(), AscendingGuidGenerator_GetMachineName_m904A94CAC7566AED7578D251B86E9F9074FE5578(), ActivationContext_CreatePartialActivationContext_m7F3168378CFB8913C47FEAB213C0E3D22D838DB5(), ActivationContext_CreatePartialActivationContext_mB642FA603E70C8973D330BF50F0A1CFAE4D3C1E9(), ActivationContext__ctor_m403E3FF1C127B6E71CDEEC56EE701E82A98E0A46() (+1689 more) ### Community 59 - "Community 59" Cohesion: 0.0 -Nodes (1707): Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), ArrayBuilder_1_Add_mDD45C48FAB10C7E71DCA9471405200E47934BA17(), ArrayBuilder_1_get_Count_mCA377EA906AE8833A2DE64E4FE36A8357857059B_inline(), ArrayBuilder_1_get_Item_mD96AA83499A6A14962A12723E14162A1F175852E(), Enumerator__ctor_m01EBD00AA2094A26D7A06612EBCFDAEB7BDF4F09(), Enumerator__ctor_m0F98614729A5017594BCB5D1D847C1D319913311(), Enumerator__ctor_m4D02C32B485C6B5756A14F13D055DD8301B439EF(), Enumerator__ctor_m9DA60FCFA9D63876BD09F2400D98CF3133BB3128() (+1699 more) +Nodes (1999): bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_AdjustorThunk(), bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_AdjustorThunk(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2__ctor_m9E1C5BE4A0DE43BD79C1D0562E01C0485714FB74_AdjustorThunk(), bool2__ctor_m9E1C5BE4A0DE43BD79C1D0562E01C0485714FB74_inline(), bool2_Equals_mA73BA304B87D4C007247008330E8AE017413F727_AdjustorThunk(), bool2_Equals_mA73BA304B87D4C007247008330E8AE017413F727_inline() (+1991 more) ### Community 60 - "Community 60" Cohesion: 0.0 -Nodes (1699): SpanHelpers_CopyTo_TisIl2CppFullySharedGenericAny_mD0A8926B03486D3EDEA2654070EB4791ADA8EDF7_gshared(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4(), Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(), Comparer_1_get_Default_m7B0C8B1667D39869F64400148505FB7B1DF05100(), Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F(), Comparer_1_get_Default_mF0432C77CCC727F33EF733138201216D0B06038D() (+1691 more) +Nodes (1984): Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), ArrayHelper_Empty_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_m14EBD7FCECD3BD84BB7AB607C59AC28273298395_inline(), AsyncIteratorMethodBuilder_AwaitOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m97FC0EDCCE567EA93BA65A44A7049AC22A1172A4(), AsyncIteratorMethodBuilder_AwaitOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m97FC0EDCCE567EA93BA65A44A7049AC22A1172A4_AdjustorThunk(), AsyncIteratorMethodBuilder_AwaitUnsafeOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m66ECE8870C19BFEDB416842F8521623C0C65FED9(), AsyncIteratorMethodBuilder_AwaitUnsafeOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m66ECE8870C19BFEDB416842F8521623C0C65FED9_AdjustorThunk(), AsyncIteratorMethodBuilder_MoveNext_TisIl2CppFullySharedGenericAny_m7931F9D0117C508EE44DB6ECF7C0C943B6863AC0_AdjustorThunk(), AsyncIteratorMethodBuilder_MoveNext_TisIl2CppFullySharedGenericAny_m7931F9D0117C508EE44DB6ECF7C0C943B6863AC0_inline() (+1976 more) ### Community 61 - "Community 61" Cohesion: 0.0 -Nodes (1936): CSteamID_GetHashCode_m97DD624F8F68FDE26E18938DE3E01AB605707133(), CSteamID_GetHashCode_m97DD624F8F68FDE26E18938DE3E01AB605707133_AdjustorThunk(), Nullable_1_GetHashCode_m11DB651F5399C16C4775AEECFC159BF929C95C0D_gshared(), ObjectEqualityComparer_1_GetHashCode_m55E00033E580302129E7CA973ACE35238D111CD4_gshared(), ObjectEqualityComparer_1_GetHashCode_m7469361A5A8899A9AAC3C16C334E79B76875B6E3_gshared(), ObjectEqualityComparer_1_GetHashCode_mC9E151CED4740F6A843ACA51B801B5C3F9C17BD9_gshared(), ValueTuple_2_GetHashCode_m995162834DD1EFB77E21C4BC2FEA9ABA9254C066_gshared(), Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_inline() (+1928 more) +Nodes (556): AddressablesAsyncExtensions, AsyncOperationHandleConfiguredSource, Cysharp.Threading.Tasks, GetResult(), OnCompleted(), UnsafeOnCompleted(), Aggregate, Cysharp.Threading.Tasks.Linq (+548 more) ### Community 62 - "Community 62" Cohesion: 0.0 -Nodes (1999): bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_AdjustorThunk(), bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_AdjustorThunk(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2__ctor_m9E1C5BE4A0DE43BD79C1D0562E01C0485714FB74_AdjustorThunk(), bool2__ctor_m9E1C5BE4A0DE43BD79C1D0562E01C0485714FB74_inline(), bool2_Equals_mA73BA304B87D4C007247008330E8AE017413F727_AdjustorThunk(), bool2_Equals_mA73BA304B87D4C007247008330E8AE017413F727_inline() (+1991 more) +Nodes (1353): hd_brm_m559B92EE4C8B399A350FEB3774F373BF4806E07B(), hd_iua_m978C29DC42ABCE723D9913A4F5807ED2AEC7BBE4(), YooAssets_SetDefaultPackage_mB83D34E411C4AB0C42DD9E9CB1992E836BA06328_inline(), AssetBundle_LoadAllAssetsAsync_TisIl2CppFullySharedGenericAny_mA6A81E1F200BA2CE3BB6815BFF4A464127AA9EBB_gshared(), Either_Fail_TisIl2CppFullySharedGenericAny_mA0C90A58040B00181252CD5D812BEE89CF69A04F_gshared(), List_1_Add_m2B5312E60384311F3BD53C9BF13C5E45D1FAB04C_inline(), ProviderBase_CreateHandle_TisRuntimeObject_mDE6391D37AF086187F659628E6CCDA229B7E9C81_gshared(), ProviderBase_get_RefCount_m5081C763FA2C514C06B02B72726AAF0D5E13BF8C_inline() (+1345 more) ### Community 63 - "Community 63" Cohesion: 0.0 -Nodes (1801): Dictionary_2_Add_mDE4097FB0966AA44FE7FC75CB14C6477E1357358(), Dictionary_2__ctor_m41416548770E408030D2C8C36D80942308EDA36B(), fl_ead_mE94C1BE02DB29BF1C09E9D081B6035149D682432(), hh__cctor_mFBC56256199BF12B58F0D3EBD76E5B3DD0105C33(), ArrayFormatter_1__ctor_m0528101537BC08976DEA8BCD8703BB387022FE55(), ArrayFormatter_1__ctor_m09501C8D979125A3605F4958329660B65BA91749(), ArrayFormatter_1__ctor_m09A1245216793A096404B83DDC47A1C636007366(), ArrayFormatter_1__ctor_m121402522DA7BC4CE99A0C725478A6EDF54F88CA() (+1793 more) +Nodes (1789): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m1F653087085C8A6C95D4284E9C55C18A67B0F532(), math_csum_m6A99E69A84442A729781A97F78B260223DD01D8F_inline() (+1781 more) ### Community 64 - "Community 64" Cohesion: 0.0 -Nodes (547): AnimancerTransitionAssetBase__ctor_m8B042983702448B0C59777089D5D8F37DFA54E13(), AnimancerPlayable_get_Disposables_m4ECF320723FEE796F592ECAEC218835814CA1372(), List_1__ctor_mB4C51AD04BB1308274A370FED1FA4A1651C5766F(), Sequence_GetDefaultNormalizedStartTime_m9B141B1BECF5954F21A4E2D7502A6FF9E898EBDB(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_ClosedInstInvoker(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_ClosedStaticInvoker(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_OpenGenericInterfaceInvoker(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_OpenGenericVirtualInvoker() (+539 more) +Nodes (1729): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m028901EE8061A92AB26992ABB3AC361969CE5968(), double2__ctor_m4026FE95F69FAEBD29D7092ADAA1CB845A8E859B_inline() (+1721 more) ### Community 65 - "Community 65" Cohesion: 0.0 -Nodes (1789): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m1F653087085C8A6C95D4284E9C55C18A67B0F532(), math_csum_m6A99E69A84442A729781A97F78B260223DD01D8F_inline() (+1781 more) +Nodes (1269): Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_2_Invoke_m5387D08742D6C89CAB31D981C0F63C08D70AB3AD_inline(), Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_inline(), Action_3_Invoke_m399A0EB5E51EFD9B7D25DFE0EB7BF5EC0BE98346_inline(), CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66(), CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mB50EABDE414D7C266411468DE2497738C902B820(), CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m3CB1C8964D34063EC97466FD36BAF24692213866() (+1261 more) ### Community 66 - "Community 66" Cohesion: 0.0 -Nodes (1729): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m028901EE8061A92AB26992ABB3AC361969CE5968(), double2__ctor_m4026FE95F69FAEBD29D7092ADAA1CB845A8E859B_inline() (+1721 more) +Nodes (1465): ProcessAnimationJobStruct_1_GetJobReflectionData_m8F636665FEDE1B3771316C87350E0EF1302227AB_gshared(), BatchQueryJobStruct_1_Initialize_mC1463CBF7472A124AAA0EAC3D6F9C9E661C8F525_gshared(), Array_InternalArray__get_Item_TisAllocToFree_tC46982856CB8220A92BB724F5FB75CCCD09C67D8_m17C4B8539ABF7B2640934781809C91CF24E391B2(), Array_InternalArray__get_Item_TisAllocToUpdate_tD0221D0ABC5378DDE5AAB1DAA219C337E562B512_m6811A2F4F8719D2B93A3047D12628D542E2A46BB(), Array_InternalArray__get_Item_TisAssetEntry_tEB6FC90E5BB63DCA4FF932F2D64595339A28806D_mB4FFFE872F4CB44223D250B32E79DD425932B575(), Array_InternalArray__get_Item_TisAttributeOverride_t58F1DF22E69714D48ECBEEAD266D443A858BADEF_m7DD60807CAA4A76621AAB5517B0109A666A3604E(), Array_InternalArray__get_Item_TisAttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_mD4DBE50462A0D42F8191C1174AC4F2CEC1CBA663(), Array_InternalArray__get_Item_TisBlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357_m1F46990B4922965C1721D5E7A139E3FA764329AB() (+1457 more) ### Community 67 - "Community 67" Cohesion: 0.0 -Nodes (1683): BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline() (+1675 more) +Nodes (1656): ObjectEqualityComparer_1_Equals_m11402F20BD7BCFDA774C2E884DC43DDDA878CCB5_gshared(), ObjectEqualityComparer_1_Equals_mA55495083A293E05AACC935035F84903201DBFDC_gshared(), ObjectEqualityComparer_1_IndexOf_m179FE729AC6785B91544266227CF61B73A260FE4_gshared(), ObjectEqualityComparer_1_IndexOf_m30F5B52AE1F9B0671B5B0B0D232FB78BAE0BDD6B_gshared(), ObjectEqualityComparer_1_LastIndexOf_m0FFE4F376DEAD6C983245C2FB1A0D7D581967017_gshared(), ObjectEqualityComparer_1_LastIndexOf_mE2D535837708BD7465A47765E8331135CEF9C857_gshared(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline() (+1648 more) ### Community 68 - "Community 68" Cohesion: 0.0 -Nodes (1646): bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m5868EDDBC438498A6A62CD1062B0CE7D8B58509F(), float2__ctor_m3D598E2C2D173DE852F3AB157502968261383C97_inline(), float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline(), float3_get_yzx_mDF6DE39B69C5DE384F74C0D1EC91AA0388E23535_inline() (+1638 more) +Nodes (1682): BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline() (+1674 more) ### Community 69 - "Community 69" Cohesion: 0.0 -Nodes (1409): ProcessAnimationJobStruct_1_GetJobReflectionData_m8F636665FEDE1B3771316C87350E0EF1302227AB_gshared(), BatchQueryJobStruct_1_Initialize_mC1463CBF7472A124AAA0EAC3D6F9C9E661C8F525_gshared(), Array_InternalArray__get_Item_TisAllocToFree_tC46982856CB8220A92BB724F5FB75CCCD09C67D8_m17C4B8539ABF7B2640934781809C91CF24E391B2(), Array_InternalArray__get_Item_TisAllocToUpdate_tD0221D0ABC5378DDE5AAB1DAA219C337E562B512_m6811A2F4F8719D2B93A3047D12628D542E2A46BB(), Array_InternalArray__get_Item_TisAssetEntry_tEB6FC90E5BB63DCA4FF932F2D64595339A28806D_mB4FFFE872F4CB44223D250B32E79DD425932B575(), Array_InternalArray__get_Item_TisAttributeOverride_t58F1DF22E69714D48ECBEEAD266D443A858BADEF_m7DD60807CAA4A76621AAB5517B0109A666A3604E(), Array_InternalArray__get_Item_TisAttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_mD4DBE50462A0D42F8191C1174AC4F2CEC1CBA663(), Array_InternalArray__get_Item_TisBlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357_m1F46990B4922965C1721D5E7A139E3FA764329AB() (+1401 more) +Nodes (1441): BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(), ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(), ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(), ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(), ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(), ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(), ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline() (+1433 more) ### Community 70 - "Community 70" Cohesion: 0.0 -Nodes (492): AdditionalLightsShadowCasterPass, AdditionalShadowsConstantBuffer, PassData, UnityEngine.Rendering.Universal.Internal, BlitToRTHandlePass, BlitToRTHandleRendererFeature, Bloom, DownscaleParameter (+484 more) +Nodes (146): Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_inline(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenInst(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_ClosedInstInvoker(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_ClosedStaticInvoker(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_OpenStaticInvoker(), ConcurrentBag_1_Clear_m3BD0744A7FD76D4FC4D2FEC6E25716FBFA1AD58B_gshared(), ConcurrentBag_1_CopyFromEachQueueToArray_mABE4A980B0F225F9D7F1673C0E10F64275D0C58E_gshared(), ConcurrentBag_1__ctor_mB6DBC1BBCC2EA6BB05974D235044798AE1297A01_gshared() (+138 more) ### Community 71 - "Community 71" Cohesion: 0.0 -Nodes (191): Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_inline(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenGenericInterface(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenGenericVirtual(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenInst(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenInterface(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenVirtual(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_ClosedInstInvoker(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_ClosedStaticInvoker() (+183 more) +Nodes (485): AnimatorMessageListener, Unity.VisualScripting, AsyncStartTrigger, Cysharp.Threading.Tasks.Triggers, AsyncTriggerBase, BoltAnimationEvent, Unity.VisualScripting, BoltGUI (+477 more) ### Community 72 - "Community 72" Cohesion: 0.0 -Nodes (1269): Action_1_Invoke_m0E4885731BC5FB5682B2F9AAFE2051895D1E43DE_inline(), Action_1_Invoke_m6BADC1E75837D17C7C206C74AB63B78F8BFCD450_inline(), Action_1_Invoke_m91C72AB142C1ED1618F5B3D9DADCB3CEF510CF54_inline(), Action_1_Invoke_mC3BC9535865C67F9284E97F12F6F49056EDCCAFD_inline(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), AnimancerTransition_1_Apply_m81B651D4AAAE7201A0D0930ABD5B06417AB5491E(), AnimancerTransition_1__ctor_m22D29EC4A72525AB18299ACBAF1C5D80FEB643D4(), AnimancerTransition_1_get_State_m42696D0E54362EDA39E8C2FC0BC55A03918AFB14() (+1261 more) +Nodes (1410): ObjectEqualityComparer_1_Equals_m1B23D588F595D9524707A947FA29C488B458D49C_gshared(), ObjectEqualityComparer_1_Equals_m4F12CE7894C7521D9FA2BD6C0CEC52FD62BD9E50_gshared(), ObjectEqualityComparer_1_IndexOf_m3A93562831D458C140FD26142E757C9D64C3DEB3_gshared(), ObjectEqualityComparer_1_IndexOf_mB5D1D9A36B967996B9901843325018500DE0949C_gshared(), ObjectEqualityComparer_1_LastIndexOf_mE086C110551D35FD13464CBF0AAC9B15B0EF75F0_gshared(), ObjectEqualityComparer_1_LastIndexOf_mFD2D33BA45E3F513B48DE4261A829F254245DABD_gshared(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline() (+1402 more) ### Community 73 - "Community 73" Cohesion: 0.0 -Nodes (1396): Enumerable_Select_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisValueTuple_2_tD9B2DFA658DCD9F80643E0A14F0A6116844CE4A4_m7F7021276F4309AB90077D08A5985F82622BB5BC(), Func_2__ctor_m0EBB3755058A70293727FB0E06A7992D0341A30C(), zw_czk_m16E15EA48A6A429ECCB85ECD660EBBCD6B23E97C(), zw_dbt_mE37D373874F02D6F05CED3FFC8268EEBFE08269C(), zw_nwx_m84657AB37955BD5E1050C2200C7BBBFA075D9C8E(), zw_oew_mFDF30EFD58B355C24DB59A9F247A9182AA5CB02A(), zx__ctor_mF9834087BBBD391E2FB95EB241AE580800BE84F9(), ReflectionExtensions_ToTypeInfo_mC606F798E237871FB423BBB1B5BE203BE1E670B5() (+1388 more) +Nodes (1380): ObjectEqualityComparer_1_Equals_m009BFA4AA5D0A9912F7944DBBB4A3257AADE8676_gshared(), ObjectEqualityComparer_1_IndexOf_m80D4C1A23AA096A77F15F9957ABBE9E758A2A528_gshared(), ObjectEqualityComparer_1_LastIndexOf_m88189D11149857ED8B3F59AD2AFD67D065C99D90_gshared(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline() (+1372 more) ### Community 74 - "Community 74" Cohesion: 0.0 -Nodes (1293): Comparer_1_Create_m00EE8078D32DD1027615F8BA945877AD1BD17FDA_gshared(), Comparer_1_Create_m0673CFD2AA627CD039C944CB44EA26CA60CFBEA7_gshared(), Comparer_1_Create_m07D478E1484B6C858AE9983C6E2A9C4CB579D472_gshared(), Comparer_1_Create_m0B85A595A5363B0F5D36DD8204EA2B6A6CC49A3D_gshared(), Comparer_1_Create_m14D2B25D093529B38AA1AC9C4D28E536CE497B6A_gshared(), Comparer_1_Create_m251F3F161BD124CFCAA5ED681CE92F4AB790ADF0_gshared(), Comparer_1_Create_m25B924092D3FA7A537661F850EE26159C65E60BD_gshared(), Comparer_1_Create_m296F3C32BD52AC0C18304B427D2141C6C10D5EEC_gshared() (+1285 more) +Nodes (1221): Nullable_1_ToString_mF43168D6369F27A1CF24B882855397CAD50452EA_gshared(), Delegate_Clone_m8B21D18E314730820FF59DF786DD02BFF1D750C6(), Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3(), TaskCanceledException__ctor_mFBB9383EBC8A44183E702C0ECBE28E8463E22CD5(), MarshalAsAttribute_Copy_m4A28A414850393917E5D5BED017E94E0CE020104(), ArrayListEnumerator_Clone_m89212CD12B55B7EDC5448CCDD3DA0AE786151FCB(), ArrayListEnumeratorSimple_Clone_mB8CAE8F92F790B72257148726FF453F8833228AB(), BitArrayEnumeratorSimple_Clone_m790AEE6EF5964EDEF5F2C307553BF8DC0C57F740() (+1213 more) ### Community 75 - "Community 75" Cohesion: 0.0 -Nodes (1402): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline() (+1394 more) +Nodes (989): MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_m69E5B5290F982D6CDF9FA99A428804D6A999886B_gshared(), MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_mA1682B4144801F8C6F415BECEAEDEE352FD1748C_gshared(), Array_Empty_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m22E209B597C5752567BA3362E9DD1A84F595DC96_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline() (+981 more) ### Community 76 - "Community 76" Cohesion: 0.0 -Nodes (1083): MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_m69E5B5290F982D6CDF9FA99A428804D6A999886B_gshared(), MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_mA1682B4144801F8C6F415BECEAEDEE352FD1748C_gshared(), Array_Empty_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m22E209B597C5752567BA3362E9DD1A84F595DC96_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline() (+1075 more) +Nodes (479): Comparer_1__ctor_m12B4B1B50866B60AC980BA05FFB8C1BA9916DC19(), Comparer_1__ctor_m28F0EB491512F955E81E9AABA41F490518F481AE(), Comparer_1__ctor_m290953B68F8980CA3861CAAB2F3A79BC4A83616F(), Comparer_1__ctor_m2F8903704557F0C6358C6784DF30CDB1828C9A6F(), Comparer_1__ctor_m31B214E3CDB7AA1BE4EED771F8FE70DAF043033E(), Comparer_1__ctor_m3353053D092D4FBC9AEFC70AC825209F43417E31(), Comparer_1__ctor_m3AA5AD89BAB268C785B3211C793B9B66D17BCB05(), Comparer_1__ctor_m482F6103C7F8D76C1D68AF2E641D219A7008287C() (+471 more) ### Community 77 - "Community 77" Cohesion: 0.0 -Nodes (1371): bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline(), bool4__ctor_m2A59D4A3453F6D4B684BABDF76792A2F28112307_inline() (+1363 more) +Nodes (993): DataSet_1_HasMappedBufferRange_mF35963F8A8F935B5C3C691804A4EE85500317178_gshared(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), Array_IndexOf_TisBFloat16_t01010688FDE3210A5FCA718A043DBE329F33B0BF_m6A14C72C92481569823279CDB2750BE737BB8653(), Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D(), Array_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m139BCCBB4246249FA99A37FB06D04879944554C7(), Array_IndexOf_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_mF1B61759DE675C8CA16E136A540DACC778476225(), Array_IndexOf_TisFloat16_t93A1665C0ABAA7D64AAB3F67AE80AB2F938E796D_m8558B058D1DF3520D62969709D2ABA71635E5F89() (+985 more) ### Community 78 - "Community 78" Cohesion: 0.0 -Nodes (1076): ArraySegment_1_Equals_m25C8296020D7E6E0B7EF6914CB07629EF0B4727D(), ArraySegment_1_GetHashCode_m2EC1FDAB80FBC952462F357BADDB69CC38AB9AA3(), Comparer_1__ctor_m00E81172381E7AE678362A259D215A7F8436E4FB(), Comparer_1__ctor_m01305909F1440FCE019A10B1883D89CAB12C1BAA(), Comparer_1__ctor_m082E30FD0AC1C4CAFABB346D41B21EAD474D09F3(), Comparer_1__ctor_m08D3B681DFE4B6840AB998E593695A66B8145D57(), Comparer_1__ctor_m0DBDE525377654E019F071A483F84409F74567CB(), Comparer_1__ctor_m0E2B6B77420566D1FD163C4919F363EF011A3C2C() (+1068 more) +Nodes (809): CompletedFileHandler_Invoke_m76C07D9F40A0547E02EC1C63DF3F4B45AE99CBCF_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_OpenInst(), Deflater__ctor_m8D1FE76A45B522A5322FB2AB408A84613B8A6BF9(), Deflater__ctor_m9EEEB040372E91B1757D4F3CF556064A36DE769D(), Deflater__ctor_mAE6A6FE30D86484351A0DD6C0F6BA0509A0981EF(), Deflater_Deflate_m40F7F94572DEB3C858D91F9D4B5A6692599EFC59(), Deflater_Deflate_m84FD8CDD2D0BBB6236D08081481CDE2AB1F68149() (+801 more) ### Community 79 - "Community 79" Cohesion: 0.0 -Nodes (1134): DataSet_1_HasMappedBufferRange_mF35963F8A8F935B5C3C691804A4EE85500317178_gshared(), Action_1_Invoke_mAD178F36104C15DBB36646715C8C079F015C7994_inline(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), Array_IndexOf_TisBFloat16_t01010688FDE3210A5FCA718A043DBE329F33B0BF_m6A14C72C92481569823279CDB2750BE737BB8653(), Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D(), Array_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m139BCCBB4246249FA99A37FB06D04879944554C7(), Array_IndexOf_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_mF1B61759DE675C8CA16E136A540DACC778476225() (+1126 more) +Nodes (892): Action_1__ctor_mA8C3AC97D1F076EA5D1D0C10CEE6BD3E94711501(), Array_Resize_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m848A8FC319792F387E6DF3EC87DF9E9685763375(), Array_Resize_TisHighlightState_tFF5FE9065990F04A37FEC545A0024047F0ABD740_m056A39CD9D80FED713495139C0EC448AF2F83672(), Array_Resize_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6BAA7BD6F22421B894347B1476C37052FAC6C916(), Array_Resize_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m540BB33A026A346B7B0033684BE811ED519B1E33(), Array_Resize_TisMaterialReference_t86DB0799D5C82869D4FF0A4F59624AED6910FD26_m489C12CB47EAA03F917AED6C31CC778FCD467E5C(), Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E(), Array_Resize_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m879C2A54DAFE78F46D1185B50ED527EE182BFB04() (+884 more) ### Community 80 - "Community 80" Cohesion: 0.0 -Nodes (318): Action_1__ctor_m1840BF5F2B806323FE80ACB6B4B8738B3C70C1EA(), Action_1__ctor_m8277D7C0B02FD31FAAD0AB4307FB95B73319EFEA(), Action_1_Invoke_m9E76E6EE2FAD2E88F47663F5EB53C96E718FD33E_inline(), Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E(), Bad_2__ctor_m7BD9D7A0F124D49AC6E723D0416737ABCEF732E5(), Bad_2_get_Messages_m86B3976FEB4A3A97B15CBDBACBE540730F61AA34_inline(), Bad_2_get_Messages_mC187F60689E4EBF566565214751161D1400502EB_inline(), ConcurrentDictionary_2_set_Item_m050171C2656C2982971EECEA9026CADF5AEF72B1() (+310 more) +Nodes (593): ActiveInModeAttribute, UnityEditor.Timeline.Actions, Keys, SetAdditionalPropertiesVisibilityAttribute, Styles, UnityEditor.Rendering, AllowsNullAttribute, Unity.VisualScripting (+585 more) ### Community 81 - "Community 81" -Cohesion: 0.0 -Nodes (969): ManualResetValueTaskSourceCore_1_SetException_mF7BF08920989E5C2698F01D53613CACD21D541F6_gshared(), RendezvousAwaitable_1_SetException_m46B8F1E0D33252EFA5618CA198F81C9FB7F99F06_gshared(), AsyncTaskMethodBuilder_1_Create_m0DBDD9164C1E94BB8CDBFB011C3AE620B9BBB4B7(), AsyncTaskMethodBuilder_1_Create_m6A59453D00C0143F178809ADFD98C90E8C291ABB(), AsyncTaskMethodBuilder_1_get_Task_m3E4C6AB5A394B6C8E538FB9D262C0C698FFE9970(), AsyncTaskMethodBuilder_1_get_Task_mEA092EC6F1324A9D694CF6056FA8583F2A2BDC89(), AsyncTaskMethodBuilder_1_Start_TisU3CWaitForCompletionU3Ed__15_t9E060FE7291342719C045F76EA67AD067BF74208_m59D61097324759E52596782E30AA09851886C25C(), AsyncTaskMethodBuilder_1_Start_TisU3CWaitForCompletionU3Ed__15_tBDA3F288439FE7046BD6F46BA290F1DF864F8882_m763AB42496D0B3BACA58B3ACA8B23385480D0591() (+961 more) +Cohesion: 0.01 +Nodes (817): cvl_ggj_m3EF948C095311F5E8BAF0429878AAE6749B52660(), eri__ctor_m33BC1D98F665246152AEF351E11BF9A2F88C0CDA(), Action_1__ctor_m0648BF1D399A0A75DC88764D5C2A079C1D58C830(), Action_1__ctor_m0C23244E48022AB5C19509049C8146F31D3FB3AE(), Action_1__ctor_m0DF8E9E9AFB247311DED312A4C1ED04BE41A33B7(), Action_1__ctor_m0EEFDEF46E1133EB662FABC2408D2C91D75765C5(), Action_1__ctor_m1BC153B6ED2DF72BDEE5A823C05195836BEC78F3(), Action_1__ctor_m20C6D4A777F2ECBE03D1DCB023461D2DE95EC38D() (+809 more) ### Community 82 - "Community 82" Cohesion: 0.0 -Nodes (970): Action_1__ctor_mA8C3AC97D1F076EA5D1D0C10CEE6BD3E94711501(), Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(), Array_Resize_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m848A8FC319792F387E6DF3EC87DF9E9685763375(), Array_Resize_TisHighlightState_tFF5FE9065990F04A37FEC545A0024047F0ABD740_m056A39CD9D80FED713495139C0EC448AF2F83672(), Array_Resize_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6BAA7BD6F22421B894347B1476C37052FAC6C916(), Array_Resize_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m540BB33A026A346B7B0033684BE811ED519B1E33(), Array_Resize_TisMaterialReference_t86DB0799D5C82869D4FF0A4F59624AED6910FD26_m489C12CB47EAA03F917AED6C31CC778FCD467E5C(), Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E() (+962 more) +Nodes (608): SpanHelpers_IndexOfAny_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D2D736D49303A286F55D3500FB84FA9AC2BCCDF_gshared(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), ActionTask_1__ctor_m3D190A013FA4AF9945CA12D818448D0872248141(), ActionTask_1__ctor_mF0E2FBFF5DC602F7116B1BE56AA6CD66D0B1CFD8(), ActionTask_1_get_agent_mBFDD5B5E4A0F035CCFA013085640675BFF8E9433(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_Empty_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m40BF877782A5609BAC6F280DAEA189DA3B78BCFC_inline() (+600 more) ### Community 83 - "Community 83" Cohesion: 0.0 -Nodes (899): ActionConfirmMessageFormatter__ctor_m42FB3B127CB78F044A19CC2B91A58D39BAF3A26C(), ActionConfirmMessageFormatter_Deserialize_mCAB2E600BE2EFCFD72764280689C6B9345D5BC62(), ActionConfirmMessageFormatter_Serialize_m99C703EF1F09B60A353582C00FE263680DB60C36(), ActionExcuteMessageFormatter__ctor_mE89FD29A88912F13AB306E02ADC045B2FE6325BC(), ActionExcuteMessageFormatter_Deserialize_mCCAEC22AAFC74AE338FE7FFD65D7304E07A27657(), ActionExcuteMessageFormatter_Serialize_m5EA34A8A4E320B95B4AC1CA42A850270EBDA7E44(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+891 more) +Nodes (697): ManualResetValueTaskSourceCore_1_SetException_mF7BF08920989E5C2698F01D53613CACD21D541F6_gshared(), RendezvousAwaitable_1_SetException_m46B8F1E0D33252EFA5618CA198F81C9FB7F99F06_gshared(), AsyncTaskMethodBuilder_1_Create_m0DBDD9164C1E94BB8CDBFB011C3AE620B9BBB4B7(), AsyncTaskMethodBuilder_1_Create_m6A59453D00C0143F178809ADFD98C90E8C291ABB(), AsyncTaskMethodBuilder_1_get_Task_m3E4C6AB5A394B6C8E538FB9D262C0C698FFE9970(), AsyncTaskMethodBuilder_1_get_Task_mEA092EC6F1324A9D694CF6056FA8583F2A2BDC89(), AsyncTaskMethodBuilder_1_Start_TisU3CWaitForCompletionU3Ed__15_t9E060FE7291342719C045F76EA67AD067BF74208_m59D61097324759E52596782E30AA09851886C25C(), AsyncTaskMethodBuilder_1_Start_TisU3CWaitForCompletionU3Ed__15_tBDA3F288439FE7046BD6F46BA290F1DF864F8882_m763AB42496D0B3BACA58B3ACA8B23385480D0591() (+689 more) ### Community 84 - "Community 84" -Cohesion: 0.0 -Nodes (309): AnimatorMessageListener, Unity.VisualScripting, AsyncAwakeTrigger, AsyncTriggerExtensions, Cysharp.Threading.Tasks.Triggers, AsyncStartTrigger, AsyncTriggerExtensions, Cysharp.Threading.Tasks.Triggers (+301 more) +Cohesion: 0.01 +Nodes (674): Activator_CreateInstance_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m67168082B56486E52ACE1428D1D092E51E978A2B(), BaseRuntimePanel_get_targetDisplay_mF2B0D9BB8A234F9273185DFAA4EC014E86CEDFD3_inline(), CommandBuffer_SetBufferData_TisIl2CppFullySharedGenericStruct_m14E6204274D0FD89CB6457CE966661D0650A8666_gshared(), CommandBuffer_SetBufferData_TisIl2CppFullySharedGenericStruct_m46409F218741C0D24E21228312B5DA8446D174A8_gshared(), CommandBuffer_SetBufferData_TisIl2CppFullySharedGenericStruct_m51DFEC65C4C610333B2B55F5FBC5441BEA86265F_gshared(), CommandBuffer_SetBufferData_TisIl2CppFullySharedGenericStruct_mBF059314517180FE72340F8EA07CC2D0C9FDE3D7_gshared(), Component_GetComponent_TisIl2CppFullySharedGenericAny_m47CBDD147982125387F078ABBFDAAB92D397A6C2_gshared(), Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared() (+666 more) ### Community 85 - "Community 85" Cohesion: 0.01 -Nodes (930): eri__ctor_m33BC1D98F665246152AEF351E11BF9A2F88C0CDA(), eri_jdg_mE4F8880F0698AD0D89187C5A731089C38E09938C(), eri_jdh_m6BC8DC4ED7A7CDCC84502E820537EAEB12EE0DB6(), Action_1__ctor_m0648BF1D399A0A75DC88764D5C2A079C1D58C830(), Action_1__ctor_m0C23244E48022AB5C19509049C8146F31D3FB3AE(), Action_1__ctor_m0DF8E9E9AFB247311DED312A4C1ED04BE41A33B7(), Action_1__ctor_m0EEFDEF46E1133EB662FABC2408D2C91D75765C5(), Action_1__ctor_m1BC153B6ED2DF72BDEE5A823C05195836BEC78F3() (+922 more) +Nodes (645): ArrayFormatter_1__ctor_m00A70A5FFBA123BE7DDDF4E011A63855E58A2227(), ArrayFormatter_1__ctor_m1A45DA23705E3C7AFAD886FF0993A6DF665DD5F5(), ArrayFormatter_1__ctor_m1ED35D6D0C2709E2ABF9B437C167728F0C8378E7(), ArrayFormatter_1__ctor_m6E49FF48ADA69AC45588E328909B1384EADF1B32(), ArrayFormatter_1__ctor_m78AAA598E92BFE7FF927388D880044BA6453FA38(), ArrayFormatter_1__ctor_m9D01DDDD764B4B2832CD9040C206DE8631987DC5(), ArrayFormatter_1__ctor_mB80128A379D516853E3B4746B2EA36BDC41020E1(), ArrayFormatter_1__ctor_mBA500BE2FAE776A0AF09ED37B75B4020A1275127() (+637 more) ### Community 86 - "Community 86" -Cohesion: 0.0 -Nodes (291): AddChildAllocator(), Allocate(), AllocateBlock(), AllocatorManager, AreTheSame(), CheckAllocatedSuccessfully(), CheckDelegate(), CheckExists() (+283 more) +Cohesion: 0.01 +Nodes (677): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m30F3FBCA7FF6DA6DB48936FF84B26DCA89843B27(), float2__ctor_m037D046BD70923231612C90B14E364EB2BB15BD7_inline() (+669 more) ### Community 87 - "Community 87" Cohesion: 0.0 -Nodes (669): SpanHelpers_IndexOfAny_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D2D736D49303A286F55D3500FB84FA9AC2BCCDF_gshared(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), ActionTask_1__ctor_m3D190A013FA4AF9945CA12D818448D0872248141(), ActionTask_1__ctor_mF0E2FBFF5DC602F7116B1BE56AA6CD66D0B1CFD8(), ActionTask_1_get_agent_mBFDD5B5E4A0F035CCFA013085640675BFF8E9433(), ActionTask_1_get_agent_mFE5B5E88C09BC5DDC0796054147DBB514D89D9CC(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138() (+661 more) +Nodes (567): Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Array_Empty_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_mE50439C1B1BF67A65FAFEDB0FA7AC2D70D46EF01_inline(), Array_Empty_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m4C704A5BD884CD9AB780E000CBC880180508C410_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisDispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_mF01AA806CE655E3ABAF52F0F9DD7CC113403C7E2_inline(), Array_Empty_TisEventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_mAEF379183FDCBD07C651D56777D4AA5A5C969A47_inline(), Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m4D53E0E0F90F37AD5DBFD2DC75E52406F90C7ABC_inline(), Array_Empty_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m94E12BB613D748D2EEB9E1ABD961630D2F970385_inline() (+559 more) ### Community 88 - "Community 88" -Cohesion: 0.0 -Nodes (521): ActiveInModeAttribute, UnityEditor.Timeline.Actions, Keys, SetAdditionalPropertiesVisibilityAttribute, Styles, UnityEditor.Rendering, AllowsNullAttribute, Unity.VisualScripting (+513 more) +Cohesion: 0.01 +Nodes (456): Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m95B7C2BAA1A1E7FF65E4539C686A8F526F77E395(), Array_Empty_TisAttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E_m0F7B255CF739B8C78F6D0663FFFD44753100FCAE_inline(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_Empty_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m44F781E90531F7FCDB12BC4290CD4394A887FC06_inline(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(), Array_Sort_TisKeyValuePair_2_t1F749E064301C7FBDD1C0B79D6C7290359EA8141_mB25A5148E720ABA81B37DEA3086F117F6C6B6496(), Array_Sort_TisKeyValuePair_2_tECFA8C561C082CE87D892A9355E0A1BB44319556_m5F8C06D7B66A4408BA021AF8D573068C195605F7() (+448 more) ### Community 89 - "Community 89" Cohesion: 0.01 -Nodes (642): Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), MemoryExtensions_AsSpan_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_mD28D90ABA16366C6D685D93235779B48F58E3A75_gshared_inline(), MemoryExtensions_AsSpan_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_mD28D90ABA16366C6D685D93235779B48F58E3A75_inline(), MemoryExtensions_AsSpan_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1E5C1D43E4B2F852CCAF43D40AD05F1484690337_gshared_inline(), MemoryExtensions_AsSpan_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1E5C1D43E4B2F852CCAF43D40AD05F1484690337_inline(), MemoryExtensions_AsSpan_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m53C83BDD1B307C2E6329BD8EE5989206ADF7C2AF_gshared_inline(), MemoryExtensions_AsSpan_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m53C83BDD1B307C2E6329BD8EE5989206ADF7C2AF_inline(), MemoryExtensions_AsSpan_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_m2BBBF8DF011FB3D812509B04EA093C0D6882B862_gshared_inline() (+634 more) +Nodes (476): bbk__ctor_mBA789A37E40CD52124A7FF47E0FB768E023B7B56(), List_1__ctor_m2ABCBA75B5DBE0FE1CFB44DC289E64079D0FFEF4(), List_1__ctor_m7D566B8A25538BEE22F4276471201E96C650C768(), List_1__ctor_mD036D3C5E4B98B749D08C612DD52A981DBA2CF08(), ArrayFormatter_1__ctor_m15C4C078FE5CC517C134B2988E9EA8B26A0B306E(), ArrayFormatter_1__ctor_m173381F8853DD0BFE4D3149070766FC1437A965C(), ArrayFormatter_1__ctor_m24896EE7176041D9E0567691CD032E3BF7F627A3(), ArrayFormatter_1__ctor_m2B07510C30EAF4F9298EAEE41EFE2758839DF5A9() (+468 more) ### Community 90 - "Community 90" Cohesion: 0.01 -Nodes (678): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m30F3FBCA7FF6DA6DB48936FF84B26DCA89843B27(), float2__ctor_m037D046BD70923231612C90B14E364EB2BB15BD7_inline() (+670 more) +Nodes (111): AirborneState, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, AttackState, Animancer.Examples.StateMachines, BasicCharacterBrain, Animancer.Examples.AnimatorControllers.GameKit (+103 more) ### Community 91 - "Community 91" Cohesion: 0.01 -Nodes (479): bbk__ctor_mBA789A37E40CD52124A7FF47E0FB768E023B7B56(), List_1__ctor_m2ABCBA75B5DBE0FE1CFB44DC289E64079D0FFEF4(), List_1__ctor_m7D566B8A25538BEE22F4276471201E96C650C768(), List_1__ctor_mD036D3C5E4B98B749D08C612DD52A981DBA2CF08(), ArrayFormatter_1__ctor_m15C4C078FE5CC517C134B2988E9EA8B26A0B306E(), ArrayFormatter_1__ctor_m173381F8853DD0BFE4D3149070766FC1437A965C(), ArrayFormatter_1__ctor_m24896EE7176041D9E0567691CD032E3BF7F627A3(), ArrayFormatter_1__ctor_m2B07510C30EAF4F9298EAEE41EFE2758839DF5A9() (+471 more) +Nodes (334): dlGetProcAddress(), GLEW_CONTEXT_ARG_DEF_LIST(), GLEWAPIENTRY(), glewContextIsSupported(), glewGetExtension(), _glewInit_GL_3DFX_tbuffer(), _glewInit_GL_AMD_debug_output(), _glewInit_GL_AMD_draw_buffers_blend() (+326 more) ### Community 92 - "Community 92" Cohesion: 0.01 -Nodes (334): dlGetProcAddress(), GLEW_CONTEXT_ARG_DEF_LIST(), GLEWAPIENTRY(), glewContextIsSupported(), glewGetExtension(), _glewInit_GL_3DFX_tbuffer(), _glewInit_GL_AMD_debug_output(), _glewInit_GL_AMD_draw_buffers_blend() (+326 more) +Nodes (268): Convert_ToString_mF3930B3E8180F7A6B5579751128BC862CE2A324D(), TimeoutException__ctor_mDC4162DC42FD01F72B442951759B90438432A7F5(), List_1_get_Count_mF3540C84790DAB9D381F00753BA20A85694C3446_inline(), List_1_get_Item_mAAE7FBDBD94CC48BA01C01ACFC3C66EE219110D0(), List_1_RemoveRange_m5B47428142038A77A46C58F4673D5B84A07CEA92(), List_1_set_Item_m58893707EC3B663186D1550A23DE96C818416CBD(), List_1_Sort_m73682F7A633F3DDE4C73BA091D7DF9A6B37C9EDF(), RegexCharClass_AddChar_mED269B31D5C606032B3394A9B9305ED172D16746() (+260 more) ### Community 93 - "Community 93" Cohesion: 0.01 -Nodes (94): BaseCondition, NodeCanvas.Tasks.Actions, ButtonClicked, NodeCanvas.Tasks.Conditions, CanSeeTargetAny2D, NodeCanvas.Tasks.Conditions, CanSeeTargetAny, NodeCanvas.Tasks.Conditions (+86 more) +Nodes (98): BaseCondition, NodeCanvas.Tasks.Actions, ButtonClicked, NodeCanvas.Tasks.Conditions, CheckBoolean, NodeCanvas.Tasks.Conditions, CheckBooleanTrigger, NodeCanvas.Tasks.Conditions (+90 more) ### Community 94 - "Community 94" -Cohesion: 0.02 -Nodes (99): BuiltInBaseShaderGUI, Styles, UnityEditor, UnityEditor.Rendering.BuiltIn.ShaderGraph, BuiltInLitSubTarget, LitBlockMasks, LitIncludes, LitKeywords (+91 more) +Cohesion: 0.01 +Nodes (138): BoneInspectorPanelFactory, BoneInspectorPanelUxmlTraits, UnityEditor.U2D.Animation, BoneReparentToolController, BoneReparentToolModel, BoneReparentToolView, CustomUxmlFactory, CustomUxmlTraits (+130 more) ### Community 95 - "Community 95" -Cohesion: 0.02 -Nodes (68): Clipper, ClipperBase, ClipperException, ClipperOffset, Equals(), ExtrasClipperLib, GetHashCode(), Int128Mul() (+60 more) - -### Community 96 - "Community 96" -Cohesion: 0.02 -Nodes (70): BurstString, BurstStringInternal, EncodeToRaw(), BurstString, BurstStringInternal, GetBlock(), GetExponent(), GetLength() (+62 more) - -### Community 97 - "Community 97" Cohesion: 0.01 Nodes (132): Changelog_1_0_0, LudiqCoreChangelog_1_0_0, LudiqGraphsChangelog_1_0_0, Unity.VisualScripting, Changelog_1_0_1, LudiqCoreChangelog_1_0_1, LudiqGraphsChangelog_1_0_1, Unity.VisualScripting (+124 more) -### Community 98 - "Community 98" +### Community 96 - "Community 96" Cohesion: 0.01 Nodes (62): InstanceActionInvoker, Unity.VisualScripting, InstanceActionInvoker, Unity.VisualScripting, InstanceActionInvoker, Unity.VisualScripting, InstanceActionInvoker, Unity.VisualScripting (+54 more) -### Community 99 - "Community 99" +### Community 97 - "Community 97" Cohesion: 0.02 -Nodes (166): CustomAttributeExtensions_GetCustomAttributes_m2851556A37AAF9A808EFB2C603D11E48635FA785(), InvalidProgramException__ctor_m75BD70D9AEEE6B109A3FB51897615B6DAA992B28(), Attribute_GetCustomAttributes_m4C0D259C25DCA89493CA59BD2AB393F29558AEA9(), MinAttribute__ctor_mE569E9A31ED222B7128543394AAF44DA09839262(), Action_1__ctor_m1540C8C2516AEA9F0AEE87470E2815CA36C560C7(), AProperty__ctor_mAED58387B9563DED80A12595C6A11B5B2BEA6D2A(), BoundsIntPropertyBag__ctor_mE2B2BB212558FE1C221E01D8FCEC4C41B02C6BF5(), BoundsPropertyBag__ctor_mB3B92E349452661D037A9AB2A8B6581ECFEBB111() (+158 more) +Nodes (29): CreateDecalProjector, UnityEditor.Rendering.Universal, DefaultControls, DefaultRuntimeFactory, IFactoryControls, UnityEngine.UI, FreeformPathPresets, UnityEditor.Rendering.Universal (+21 more) + +### Community 98 - "Community 98" +Cohesion: 0.04 +Nodes (25): IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, IShaderScriptableStrippingData, IsKeywordEnabled(), IsShaderFeatureEnabled(), IsVolumeFeatureEnabled(), PassHasKeyword() (+17 more) + +### Community 99 - "Community 99" +Cohesion: 0.03 +Nodes (43): Splice, Geom, LibTessDotNet, Unity.SpriteShape.External, UnityEngine.Rendering.Universal, LibTessDotNet, Mesh, Unity.SpriteShape.External (+35 more) ### Community 100 - "Community 100" -Cohesion: 0.01 -Nodes (65): AirborneState, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, BasicCharacterBrain, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, Character, Animancer.Examples.AnimatorControllers.GameKit (+57 more) - -### Community 101 - "Community 101" -Cohesion: 0.01 -Nodes (90): BoltAnimationEvent, Unity.VisualScripting, CollisionEvent2DUnit, Unity.VisualScripting, CollisionEventUnit, Unity.VisualScripting, FixedUpdate, Unity.VisualScripting (+82 more) - -### Community 102 - "Community 102" -Cohesion: 0.01 -Nodes (103): BoneInspectorPanelFactory, BoneInspectorPanelUxmlTraits, UnityEditor.U2D.Animation, BoneReparentToolModel, BoneReparentToolView, CustomUxmlFactory, CustomUxmlTraits, UnityEditor.U2D.Animation (+95 more) - -### Community 103 - "Community 103" -Cohesion: 0.03 -Nodes (32): EditorMaterialQualityUtilities, UnityEditor.Rendering.Utilities, IShaderVariantStripper, IShaderVariantStripperSkipper, PlasticMenuItem, Unity.PlasticSCM.Editor, ShaderPreprocessor, IShaderScriptableStrippingData (+24 more) - -### Community 104 - "Community 104" -Cohesion: 0.02 -Nodes (57): AnimationCurve_DirectConverter, fsConverterRegistrar, ParadoxNotion.Serialization.FullSerializer.Internal.DirectConverters, Unity.VisualScripting.FullSerializer, Bounds_DirectConverter, fsConverterRegistrar, ParadoxNotion.Serialization.FullSerializer.Internal.DirectConverters, Unity.VisualScripting.FullSerializer (+49 more) - -### Community 105 - "Community 105" Cohesion: 0.04 Nodes (133): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3_op_BitwiseAnd_mE44CC5838094A40F1F605A7798994197165A63E1_inline(), bool3_op_LogicalNot_m85C703CC4098B3731505A162957F91C0373548BD_inline(), float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline(), float3_Equals_m4A47BDC70977496712F3BE7DA359E840D99C020A_inline(), float3_get_xxx_mFD7DFB9FF23BB0B3437F12CC35DB3D1E0ADF7B20_inline(), float3_get_xyz_m720A862AA512BE0B0B1089527A43EEF2B6766BEF_inline() (+125 more) -### Community 106 - "Community 106" +### Community 101 - "Community 101" Cohesion: 0.01 Nodes (3): Arm, Neon, Unity.Burst.Intrinsics -### Community 107 - "Community 107" +### Community 102 - "Community 102" +Cohesion: 0.02 +Nodes (51): AnimatorEntryComparer, UnityEngine.Timeline, ColorEqualityComparer, UnityEngine.TestTools.Utils, EventHookComparer, Unity.VisualScripting, Animancer, FastComparer (+43 more) + +### Community 103 - "Community 103" +Cohesion: 0.02 +Nodes (62): Bloom, DownscaleParameter, UnityEngine.Rendering.Universal, ChannelMixer, UnityEngine.Rendering.Universal, ChromaticAberration, UnityEngine.Rendering.Universal, ColorAdjustments (+54 more) + +### Community 104 - "Community 104" +Cohesion: 0.02 +Nodes (37): CancelEventArgs, EventArgs, FunctionArgs, Unity.VisualScripting.Dependencies.NCalc, ICollection, IConnectionCollection, Unity.VisualScripting, IKeyedCollection (+29 more) + +### Community 105 - "Community 105" Cohesion: 0.03 -Nodes (24): CreateDecalProjector, UnityEditor.Rendering.Universal, DefaultControls, DefaultRuntimeFactory, IFactoryControls, UnityEngine.UI, GameObjectCreatePixelPerfectCamera(), GameObjectCreation (+16 more) +Nodes (83): Add(), CheckRead(), CheckWrite(), Clear(), ContainsKey(), Count(), Dispose(), GetKeyArray() (+75 more) + +### Community 106 - "Community 106" +Cohesion: 0.02 +Nodes (36): DebugDisplaySettingsCommon, SettingsPanel, UnityEngine.Rendering.Universal, WidgetFactory, DebugDisplaySettingsLighting, SettingsPanel, Strings, UnityEngine.Rendering.Universal (+28 more) + +### Community 107 - "Community 107" +Cohesion: 0.02 +Nodes (55): BranchListViewItem, Unity.PlasticSCM.Editor.Views.Branches, ChangeCategoryTreeViewItem, Unity.PlasticSCM.Editor.Views.Diff, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer, Unity.PlasticSCM.Editor.Views.IncomingChanges.Gluon, Unity.PlasticSCM.Editor.Views.PendingChanges, ChangelistTreeViewItem (+47 more) ### Community 108 - "Community 108" -Cohesion: 0.02 -Nodes (50): AnimatorEntryComparer, UnityEngine.Timeline, ColorEqualityComparer, UnityEngine.TestTools.Utils, EventHookComparer, Unity.VisualScripting, Animancer, FastComparer (+42 more) +Cohesion: 0.04 +Nodes (26): Divide, GenericDivide, Unity.VisualScripting, GenericMultiply, Unity.VisualScripting, Multiply, PixelBlends, UnityEditor.U2D.Aseprite (+18 more) ### Community 109 - "Community 109" -Cohesion: 0.02 -Nodes (58): BranchListViewItem, Unity.PlasticSCM.Editor.Views.Branches, ChangeCategoryTreeViewItem, Unity.PlasticSCM.Editor.Views.Diff, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer, Unity.PlasticSCM.Editor.Views.IncomingChanges.Gluon, Unity.PlasticSCM.Editor.Views.PendingChanges, ChangelistTreeViewItem (+50 more) +Cohesion: 0.04 +Nodes (15): BitAnd(), BitArrayUtilities, BitNot(), BitOr(), IBitArray, UnityEngine.Rendering, BitArrayTests, UnityEngine.Rendering.Tests (+7 more) ### Community 110 - "Community 110" -Cohesion: 0.02 -Nodes (2): ISkill, Logic.Skill +Cohesion: 0.03 +Nodes (46): ITestInterfaceWithContextDerivation, MyContextObjectClass, TestITestInterfaceWithContextDerivationImplementation, UnityEditor.Build.Pipeline.Tests, IEditorBuildCallbacks, ClusterOutput, IClusterOutput, UnityEditor.Build.Pipeline.Tasks (+38 more) ### Community 111 - "Community 111" -Cohesion: 0.03 -Nodes (48): ITestInterfaceWithContextDerivation, MyContextObjectClass, TestITestInterfaceWithContextDerivationImplementation, UnityEditor.Build.Pipeline.Tests, IEditorBuildCallbacks, ClusterOutput, IClusterOutput, UnityEditor.Build.Pipeline.Tasks (+40 more) - -### Community 112 - "Community 112" Cohesion: 0.04 Nodes (43): Add(), AddNoResize(), AddRange(), AddRangeNoResize(), CompareTo(), Equals(), FixedList128BytesDebugView, FixedList128BytesExtensions (+35 more) -### Community 113 - "Community 113" +### Community 112 - "Community 112" Cohesion: 0.05 Nodes (41): AnimationCurveParameter, BoolParameter, ClampedFloatParameter, ClampedIntParameter, ColorParameter, CubemapParameter, FloatParameter, FloatRangeParameter (+33 more) -### Community 114 - "Community 114" -Cohesion: 0.05 -Nodes (14): BitAnd(), BitArrayUtilities, BitNot(), BitOr(), IBitArray, UnityEngine.Rendering, BitArrayTests, UnityEngine.Rendering.Tests (+6 more) - -### Community 115 - "Community 115" +### Community 113 - "Community 113" Cohesion: 0.03 Nodes (3): ILobby, LobbyBase, TH1_Logic.Net -### Community 116 - "Community 116" -Cohesion: 0.04 -Nodes (16): AllSlideInUpComicActionLogic, ComicAction, ComicActionLogic, ComicActionLogicFactory, FadeInComicActionLogic, FadeOutComicActionLogic, SlideInDownComicActionLogic, SlideInLeftComicActionLogic (+8 more) +### Community 114 - "Community 114" +Cohesion: 0.08 +Nodes (18): BurstString, BurstStringInternal, EncodeToRaw(), BurstString, BurstStringInternal, GetBlock(), GetExponent(), GetLength() (+10 more) -### Community 117 - "Community 117" +### Community 115 - "Community 115" Cohesion: 0.04 Nodes (33): AdditionHandler, Unity.VisualScripting, AndHandler, Unity.VisualScripting, BinaryOperatorHandler, DivisionHandler, Unity.VisualScripting, EqualityHandler (+25 more) +### Community 116 - "Community 116" +Cohesion: 0.04 +Nodes (31): BaseChunk, CellExtra, UnityEditor.U2D.Aseprite, ColorProfileChunk, UnityEditor.U2D.Aseprite, ExternalFilesChunk, UnityEditor.U2D.Aseprite, IPaletteProvider (+23 more) + +### Community 117 - "Community 117" +Cohesion: 0.05 +Nodes (17): Column, IColumnUpdate, ILayerImportColumnField, UICellImportElement, UILayerImportColumn, UnityEditor.U2D.PSD, IsHovered(), UICellLabelElement (+9 more) + ### Community 118 - "Community 118" Cohesion: 0.04 -Nodes (20): CancelEventArgs, EventArgs, FunctionArgs, Unity.VisualScripting.Dependencies.NCalc, IList, NonNullableList, Unity.VisualScripting, ListChangedEventArgs (+12 more) +Nodes (28): GetApplicationVariable, Unity.VisualScripting, GetGraphVariable, Unity.VisualScripting, GetSavedVariable, Unity.VisualScripting, IApplicationVariableUnit, IGraphVariableUnit (+20 more) ### Community 119 - "Community 119" -Cohesion: 0.04 -Nodes (31): GetApplicationVariable, Unity.VisualScripting, GetGraphVariable, Unity.VisualScripting, GetSavedVariable, Unity.VisualScripting, GetSceneVariable, Unity.VisualScripting (+23 more) +Cohesion: 0.06 +Nodes (3): ViMath2D, ViMath3D, ViMathDefine ### Community 120 - "Community 120" Cohesion: 0.05 -Nodes (19): AdvancedEconomyEnhanceCultureCard, AdvancedEienteiCultureCard, AdvancedHeroEnhanceCultureCard, AdvancedMilitaryEnhanceCultureCard, AdvancedMoriyaCultureCard, AdvancedPalaceOfEarthCultureCard, AdvancedScarletMansionCultureCard, CultureCardBase (+11 more) +Nodes (32): BoxTool, Styles, UnityEditor.Tilemaps, EraseTool, Styles, UnityEditor.Tilemaps, FillTool, Styles (+24 more) ### Community 121 - "Community 121" -Cohesion: 0.05 -Nodes (32): BoxTool, Styles, UnityEditor.Tilemaps, EraseTool, Styles, UnityEditor.Tilemaps, FillTool, Styles (+24 more) +Cohesion: 0.09 +Nodes (44): attr_utils(), GetConst(), GetExecutionProviderType(), GetInputCharacteristic(), GetInputMemoryType(), GetOutputCharacteristic(), GetTensorTypeAndShapeInfo(), GetUnowned() (+36 more) ### Community 122 - "Community 122" Cohesion: 0.04 -Nodes (13): ICollection, IConnectionCollection, Unity.VisualScripting, IKeyedCollection, Unity.VisualScripting, IMergedCollection, Unity.VisualScripting, ISet (+5 more) - -### Community 123 - "Community 123" -Cohesion: 0.04 Nodes (24): DefineCollection, Item, UnityEditor.ShaderGraph, IConditional, IncludeDescriptor, UnityEditor.ShaderGraph, Item, KernelCollection (+16 more) +### Community 123 - "Community 123" +Cohesion: 0.08 +Nodes (5): IDrawer, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, PathEditor, UnityEditor.U2D.Common.Path + ### Community 124 - "Community 124" -Cohesion: 0.1 -Nodes (5): BrushCell, GameObjectBrush, HiddenGridLayout, UnityEditor.Tilemaps, GridBrushBase +Cohesion: 0.05 +Nodes (25): IAnalyticsIdentifiable, IAotStubbable, IGraph, Unity.VisualScripting, IGraphElement, Unity.VisualScripting, IGraphItem, IGraphNest (+17 more) ### Community 125 - "Community 125" Cohesion: 0.08 @@ -2292,5700 +2423,5700 @@ Cohesion: 0.1 Nodes (4): Demo_ViDoubleLink3, Performance_ViDoubleLink3, ViDoubleLink3, ViDoubleLinkNode3 ### Community 132 - "Community 132" -Cohesion: 0.07 -Nodes (8): BaseTextureImportPlatformSettings, TextureImporterPlatformUtilities, UnityEditor.U2D.Aseprite, ITexturePlatformSettingsDataProvider, TexturePlatformSettings, TexturePlatformSettingsHelper, UnityEditor.U2D.Aseprite.Common, UnityEditor.U2D.Common - -### Community 133 - "Community 133" Cohesion: 0.06 Nodes (9): ISecondaryTextureDataProvider, ISpriteBoneDataProvider, ISpriteEditorDataProvider, ISpriteMeshDataProvider, ISpriteNameFileIdDataProvider, ISpriteOutlineDataProvider, ISpritePhysicsOutlineDataProvider, ITextureDataProvider (+1 more) -### Community 134 - "Community 134" -Cohesion: 0.07 -Nodes (8): ColorProviderFromCode, ColorProviderFromStyleSheet, IColorProvider, UnityEditor.ShaderGraph.Drawing.Colors, ILayoutIgnorer, LayoutElement, OnValidate(), UnityEngine.UI +### Community 133 - "Community 133" +Cohesion: 0.06 +Nodes (15): Collection, IGraphElementCollection, Unity.VisualScripting, INotifyCollectionChanged, MergedGraphElementCollection, Unity.VisualScripting, MergedKeyedCollection, NonNullableCollection (+7 more) -### Community 135 - "Community 135" +### Community 134 - "Community 134" Cohesion: 0.06 Nodes (23): BuildSettingsMessage, UnityEditor.TestTools.TestRunner.UnityTestProtocol, EditorVersionMessage, UnityEditor.TestTools.TestRunner.UnityTestProtocol, Message, MessageForRetryRepeat, PlayerSettingsMessage, UnityEditor.TestTools.TestRunner.UnityTestProtocol (+15 more) -### Community 136 - "Community 136" +### Community 135 - "Community 135" Cohesion: 0.06 Nodes (23): Acknowledgement_AqnParser, Unity.VisualScripting, Acknowledgement_DeepCopy, Unity.VisualScripting, Acknowledgement_DotNetZip, Unity.VisualScripting, Acknowledgement_FatcowIcons, Unity.VisualScripting (+15 more) -### Community 137 - "Community 137" +### Community 136 - "Community 136" Cohesion: 0.09 Nodes (10): ConditionalDrawerInternal, ConditionalDrawerWithAdditionalPropertiesInternal, CoreEditorDrawer, CoreEditorDrawersExtensions, FoldoutGroupDrawerInternal, GroupDrawerInternal, IDrawer, SelectDrawerInternal (+2 more) -### Community 138 - "Community 138" +### Community 137 - "Community 137" Cohesion: 0.06 Nodes (2): ISpriteMeshView, UnityEditor.U2D.Animation -### Community 139 - "Community 139" +### Community 138 - "Community 138" Cohesion: 0.11 Nodes (18): AsmTokenKindProvider, AssertDataDirectiveLength(), BurstDisassembler, Contains(), NextChar(), ParseComment(), ParseDirective(), ParseInstructionOrIdentifierOrRegister() (+10 more) -### Community 140 - "Community 140" +### Community 139 - "Community 139" Cohesion: 0.07 Nodes (2): ISkeletonView, UnityEditor.U2D.Animation +### Community 140 - "Community 140" +Cohesion: 0.08 +Nodes (7): BaseTextureImportPlatformSettings, TextureImporterPlatformUtilities, UnityEditor.U2D.Aseprite, ITexturePlatformSettingsDataProvider, TexturePlatformSettings, UnityEditor.U2D.Aseprite.Common, UnityEditor.U2D.Common + ### Community 141 - "Community 141" Cohesion: 0.08 -Nodes (19): FuzzyGroupOption, Unity.VisualScripting, FuzzyOption, FavoritesRoot, OnLostFocus(), Root, SearchRoot, Styles (+11 more) +Nodes (7): IEditablePath, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, ISelectable, ItemToItemGui, TimelineItemGUI, UnityEditor.Timeline ### Community 142 - "Community 142" Cohesion: 0.08 -Nodes (10): ConnectionCollection, Unity.VisualScripting, ConnectionCollectionBase, GraphConnectionCollection, Unity.VisualScripting, GraphElementCollection, Unity.VisualScripting, GuidCollection (+2 more) +Nodes (19): FuzzyGroupOption, Unity.VisualScripting, FuzzyOption, FavoritesRoot, OnLostFocus(), Root, SearchRoot, Styles (+11 more) ### Community 143 - "Community 143" Cohesion: 0.08 -Nodes (14): BuildCallbacks, UnityEditor.Build.Pipeline, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, PostDependencyCallback, UnityEditor.Build.Pipeline.Tasks (+6 more) +Nodes (10): ConnectionCollection, Unity.VisualScripting, ConnectionCollectionBase, GraphConnectionCollection, Unity.VisualScripting, GraphElementCollection, Unity.VisualScripting, GuidCollection (+2 more) ### Community 144 - "Community 144" +Cohesion: 0.08 +Nodes (14): BuildCallbacks, UnityEditor.Build.Pipeline, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, PostDependencyCallback, UnityEditor.Build.Pipeline.Tasks (+6 more) + +### Community 145 - "Community 145" Cohesion: 0.15 Nodes (3): Demo_ViDoubleLink2, ViDoubleLink2, ViDoubleLinkNode2 -### Community 145 - "Community 145" -Cohesion: 0.08 -Nodes (3): Arm, Neon, Unity.Burst.Intrinsics - ### Community 146 - "Community 146" -Cohesion: 0.09 -Nodes (26): Animancer Third-Party Library, Creating a New UI Panel Pattern, Event System (EventManager + UIEvents), Singleton Pattern (Key Managers), Steamworks.NET Third-Party Library, TH1_Core Module, TH1_Resource Module, TH1_UI Module (+18 more) +Cohesion: 0.08 +Nodes (2): IGUIWrapper, UnityEditor.U2D.Animation ### Community 147 - "Community 147" Cohesion: 0.08 -Nodes (7): Matrix2ShaderProperty, UnityEditor.ShaderGraph, Matrix3ShaderProperty, UnityEditor.ShaderGraph, Matrix4ShaderProperty, UnityEditor.ShaderGraph, MatrixShaderProperty +Nodes (3): Arm, Neon, Unity.Burst.Intrinsics ### Community 148 - "Community 148" -Cohesion: 0.08 -Nodes (0): +Cohesion: 0.09 +Nodes (26): Animancer Third-Party Library, Creating a New UI Panel Pattern, Event System (EventManager + UIEvents), Singleton Pattern (Key Managers), Steamworks.NET Third-Party Library, TH1_Core Module, TH1_Resource Module, TH1_UI Module (+18 more) ### Community 149 - "Community 149" Cohesion: 0.08 -Nodes (0): +Nodes (7): Matrix2ShaderProperty, UnityEditor.ShaderGraph, Matrix3ShaderProperty, UnityEditor.ShaderGraph, Matrix4ShaderProperty, UnityEditor.ShaderGraph, MatrixShaderProperty ### Community 150 - "Community 150" Cohesion: 0.08 -Nodes (3): ITimelinePlaybackControls, TimelinePlaybackControls, UnityEditor.Timeline +Nodes (0): ### Community 151 - "Community 151" Cohesion: 0.08 -Nodes (2): ICanvas, Unity.VisualScripting +Nodes (0): ### Community 152 - "Community 152" -Cohesion: 0.21 -Nodes (4): ContinuationQueue, Cysharp.Threading.Tasks.Internal, LastTimeUpdate(), TimeUpdate() +Cohesion: 0.08 +Nodes (4): CubemapShaderProperty, UnityEditor.ShaderGraph.Internal, Texture2DArrayShaderProperty, UnityEditor.ShaderGraph.Internal ### Community 153 - "Community 153" -Cohesion: 0.21 -Nodes (4): Cysharp.Threading.Tasks.Internal, LastTimeUpdate(), PlayerLoopRunner, TimeUpdate() +Cohesion: 0.08 +Nodes (3): ITimelinePlaybackControls, TimelinePlaybackControls, UnityEditor.Timeline ### Community 154 - "Community 154" +Cohesion: 0.08 +Nodes (2): ICanvas, Unity.VisualScripting + +### Community 155 - "Community 155" +Cohesion: 0.08 +Nodes (17): IBranchUnit, Unity.VisualScripting, IGraphNesterElement, INesterState, Unity.VisualScripting, INesterStateTransition, Unity.VisualScripting, INesterUnit (+9 more) + +### Community 156 - "Community 156" +Cohesion: 0.19 +Nodes (3): Demo_RefList1, ViRefList1, ViRefNode1 + +### Community 157 - "Community 157" Cohesion: 0.09 Nodes (10): BoneSelection, UnityEditor.U2D.Animation, IBoneSelection, IndexedSelection, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path, SerializableSelection (+2 more) -### Community 155 - "Community 155" +### Community 158 - "Community 158" +Cohesion: 0.11 +Nodes (4): ColorProviderFromCode, ColorProviderFromStyleSheet, IColorProvider, UnityEditor.ShaderGraph.Drawing.Colors + +### Community 159 - "Community 159" Cohesion: 0.09 Nodes (7): TimelineActiveMode, UnityEditor.Timeline, TimelineDisabledMode, UnityEditor.Timeline, TimelineInactiveMode, UnityEditor.Timeline, TimelineMode -### Community 156 - "Community 156" +### Community 160 - "Community 160" +Cohesion: 0.09 +Nodes (15): EventUnitWidget, Unity.VisualScripting, GraphInputWidget, Unity.VisualScripting, GraphOutputWidget, Unity.VisualScripting, MissingTypeUnitWidget, Unity.VisualScripting (+7 more) + +### Community 161 - "Community 161" Cohesion: 0.18 Nodes (3): Demo_ViDoubleLink1, ViDoubleLink1, ViDoubleLinkNode1 -### Community 157 - "Community 157" +### Community 162 - "Community 162" Cohesion: 0.17 Nodes (2): YooAsset, YooAssets -### Community 158 - "Community 158" +### Community 163 - "Community 163" +Cohesion: 0.23 +Nodes (4): ContinuationQueue, Cysharp.Threading.Tasks.Internal, LastTimeUpdate(), TimeUpdate() + +### Community 164 - "Community 164" +Cohesion: 0.23 +Nodes (4): Cysharp.Threading.Tasks.Internal, LastTimeUpdate(), PlayerLoopRunner, TimeUpdate() + +### Community 165 - "Community 165" +Cohesion: 0.09 +Nodes (11): DecalDrawDBufferSystem, UnityEngine.Rendering.Universal, DecalDrawErrorSystem, UnityEngine.Rendering.Universal, DecalDrawSystem, DecalDrawFowardEmissiveSystem, UnityEngine.Rendering.Universal, DecalDrawGBufferSystem (+3 more) + +### Community 166 - "Community 166" +Cohesion: 0.11 +Nodes (7): fsISerializationCallbacks, fsSerializationCallbackProcessor, fsSerializationCallbackReceiverProcessor, Unity.VisualScripting.FullSerializer, fsObjectProcessor, fsRecoveryProcessor, ParadoxNotion.Serialization + +### Community 167 - "Community 167" Cohesion: 0.18 Nodes (20): ActionConfirmMessage, ActionExcuteMessage, BaseMessage, ChangeCivMessage, ChatMessage, ForceUpdateMessage, GameStartMessage, HeartbeatMessage (+12 more) -### Community 159 - "Community 159" +### Community 168 - "Community 168" Cohesion: 0.12 Nodes (11): Action_1_Invoke_m1AAB217B001E387B4424C54CFB8D5278CFBE4C65_inline(), Action_2_Invoke_mD689727D0B27507C2BBDB452C43EC087E02CE401_inline(), Func_2_Invoke_m67075A0C8A50189A2501B63347177A0748FFE22C_inline(), IntPtr_ToPointer_m1A0612EED3A1C8B8850BE2943CFC42523064B4F6_inline(), NativeInputSystem__cctor_mADBD6616441651B2AFE2AD8AF64D63DF0BA66693(), NativeInputSystem_NotifyBeforeUpdate_m39AE2F1A42BD47200A263AD0EF9EDA5EF4C0042A(), NativeInputSystem_NotifyDeviceDiscovered_m861CCAFB4DD314DB3DC58FBD0398800CF9272C03(), NativeInputSystem_NotifyUpdate_m482599CC17084B0383809F97671530613EA39AD0() (+3 more) -### Community 160 - "Community 160" +### Community 169 - "Community 169" Cohesion: 0.13 Nodes (11): BitPackFormatterAttribute, BrotliFormatterAttribute, BrotliStringFormatterAttribute, InternStringFormatterAttribute, MemoryPack, MemoryPoolFormatterAttribute, OrdinalIgnoreCaseStringDictionaryFormatter, ReadOnlyMemoryPoolFormatterAttribute (+3 more) -### Community 161 - "Community 161" +### Community 170 - "Community 170" +Cohesion: 0.16 +Nodes (18): CheckRead(), CheckReadBounds(), CheckWrite(), Clear(), Copy(), CountBits(), Dispose(), Find() (+10 more) + +### Community 171 - "Community 171" Cohesion: 0.1 Nodes (9): ClipAction, UnityEditor.Timeline.Actions, IAction, MarkerAction, UnityEditor.Timeline.Actions, TimelineAction, UnityEditor.Timeline.Actions, TrackAction (+1 more) -### Community 162 - "Community 162" -Cohesion: 0.1 -Nodes (4): CarrySkill, Logic.Skill, JunkerOfficerSkill, Logic.Skill +### Community 172 - "Community 172" +Cohesion: 0.18 +Nodes (20): additiveExpression_return, arguments_return, bitwiseAndExpression_return, bitwiseOrExpression_return, bitwiseXOrExpression_return, booleanAndExpression_return, conditionalExpression_return, equalityExpression_return (+12 more) -### Community 163 - "Community 163" +### Community 173 - "Community 173" Cohesion: 0.17 Nodes (10): ITextureSettings, TextureAlphaSettings, TextureCubemapSettings, TextureMipmapSettings, TextureNormalSettings, TextureSettings, TextureSpriteSettings, TextureWrapSettings (+2 more) -### Community 164 - "Community 164" +### Community 174 - "Community 174" Cohesion: 0.15 Nodes (8): DictionaryPool, Dispose(), GenericPool, HashSetPool, ListPool, ObjectPool, UnityEngine.Rendering, UnsafeGenericPool -### Community 165 - "Community 165" -Cohesion: 0.1 -Nodes (11): InvalidSignatureException, UnityEngine.TestTools.TestRunner, OutOfOrderExpectedLogMessageException, UnityEngine.TestTools.TestRunner, ResultStateException, UnexpectedLogMessageException, UnityEngine.TestTools.TestRunner, UnhandledLogMessageException (+3 more) +### Community 175 - "Community 175" +Cohesion: 0.11 +Nodes (14): DecalBlockMasks, DecalColorMasks, DecalData, DecalDefines, DecalIncludes, DecalKeywords, DecalPasses, DecalPragmas (+6 more) -### Community 166 - "Community 166" +### Community 176 - "Community 176" Cohesion: 0.1 Nodes (13): Description, Unity.VisualScripting, IDescription, IGraphDescription, Unity.VisualScripting, IGraphElementDescription, Unity.VisualScripting, IMachineDescription (+5 more) -### Community 167 - "Community 167" -Cohesion: 0.1 -Nodes (13): EventUnitWidget, Unity.VisualScripting, GraphInputWidget, Unity.VisualScripting, GraphOutputWidget, Unity.VisualScripting, MissingTypeUnitWidget, Unity.VisualScripting (+5 more) - -### Community 168 - "Community 168" -Cohesion: 0.1 -Nodes (7): Collection, NonNullableCollection, Unity.VisualScripting, UnitPortDefinitionCollection, Unity.VisualScripting, Unity.VisualScripting, WidgetList - -### Community 169 - "Community 169" -Cohesion: 0.11 -Nodes (7): DictionaryAsset, Unity.VisualScripting, LudiqScriptableObject, MacroScriptableObject, Unity.VisualScripting, Unity.VisualScripting, VariablesAsset - -### Community 170 - "Community 170" +### Community 177 - "Community 177" Cohesion: 0.1 Nodes (18): GLString, -border, -dealloc, -deleteTexture, -drawAtPoint, -drawWithBounds, -flags, -font (+10 more) -### Community 171 - "Community 171" +### Community 178 - "Community 178" Cohesion: 0.15 Nodes (9): AppID(), IsMod(), IsP2PFile(), IsShortcut(), IsSteamApp(), IsValid(), ModID(), Steamworks (+1 more) -### Community 172 - "Community 172" +### Community 179 - "Community 179" Cohesion: 0.11 Nodes (10): Animancer, AnimatedBool, ProcessAnimation(), Animancer, AnimatedFloat, ProcessAnimation(), Animancer, AnimatedInt (+2 more) -### Community 173 - "Community 173" +### Community 180 - "Community 180" Cohesion: 0.12 Nodes (9): ITestRunSettings, ITestSettings, PlayerLauncherTestRunSettings, UnityEditor.TestTools.TestRunner, RunSettings, UnityEditor.TestTools.TestRunner.CommandLineTest, TestSetting, TestSettings (+1 more) -### Community 174 - "Community 174" +### Community 181 - "Community 181" +Cohesion: 0.11 +Nodes (11): InvalidSignatureException, UnityEngine.TestTools.TestRunner, OutOfOrderExpectedLogMessageException, UnityEngine.TestTools.TestRunner, ResultStateException, UnexpectedLogMessageException, UnityEngine.TestTools.TestRunner, UnhandledLogMessageException (+3 more) + +### Community 182 - "Community 182" Cohesion: 0.11 Nodes (13): ByteInspector, Unity.VisualScripting, DiscreteNumberInspector, IntInspector, Unity.VisualScripting, SbyteInspector, Unity.VisualScripting, ShortInspector (+5 more) -### Community 175 - "Community 175" +### Community 183 - "Community 183" Cohesion: 0.11 Nodes (2): IWidget, Unity.VisualScripting -### Community 176 - "Community 176" +### Community 184 - "Community 184" Cohesion: 0.16 Nodes (10): IGraphAssignable, IGraphElement, IHaveNodeReference, IInvokable, IReflectedWrapper, ISubParametersContainer, ISubTasksContainer, ITaskAssignable (+2 more) -### Community 177 - "Community 177" +### Community 185 - "Community 185" Cohesion: 0.11 Nodes (3): CommonLogic, Logic.Common, ICommonLogic -### Community 178 - "Community 178" +### Community 186 - "Community 186" Cohesion: 0.12 Nodes (8): IUniTaskAsyncDisposable, Cysharp.Threading.Tasks, IConnectableUniTaskAsyncEnumerable, IUniTaskAsyncDisposable, IUniTaskAsyncEnumerable, IUniTaskAsyncEnumerator, IUniTaskOrderedAsyncEnumerable, UniTaskAsyncEnumerableExtensions -### Community 179 - "Community 179" -Cohesion: 0.12 -Nodes (3): Bmi1, Unity.Burst.Intrinsics, X86 - -### Community 180 - "Community 180" -Cohesion: 0.11 -Nodes (2): UIBehaviour, UnityEngine.EventSystems - -### Community 181 - "Community 181" -Cohesion: 0.11 -Nodes (9): IPluginLinked, IPluginModule, Unity.VisualScripting, PluginAcknowledgement, Unity.VisualScripting, PluginChangelog, Unity.VisualScripting, PluginDeprecatedSavedVersionLoader (+1 more) - -### Community 182 - "Community 182" -Cohesion: 0.14 -Nodes (7): GraphNest, Unity.VisualScripting, IGraphNest, INesterStateTransition, NesterStateTransition, Unity.VisualScripting, StateTransition - -### Community 183 - "Community 183" -Cohesion: 0.11 -Nodes (9): Unity.VisualScripting, WaitForEndOfFrameUnit, Unity.VisualScripting, WaitForNextFrameUnit, Unity.VisualScripting, WaitForSecondsUnit, WaitUnit, Unity.VisualScripting (+1 more) - -### Community 184 - "Community 184" -Cohesion: 0.15 -Nodes (6): Animancer, AssertIndex(), IndexOf(), Insert(), Remove(), RemoveAt() - -### Community 185 - "Community 185" -Cohesion: 0.12 -Nodes (2): ICommonLogic, Logic.Common - -### Community 186 - "Community 186" -Cohesion: 0.16 -Nodes (5): AssetBundleWebRequest, YooAsset, FileGeneralRequest, YooAsset, IWebRequester - ### Community 187 - "Community 187" -Cohesion: 0.12 -Nodes (11): IVFXMultiMeshOutput, VFXAbstractParticleURPLitOutput, UnityEditor.VFX.URP, VFXURPLitMeshOutput, NormalBendingProperties, UnityEditor.VFX.URP, VFXURPLitPlanarPrimitiveOutput, CustomUVInputProperties (+3 more) +Cohesion: 0.19 +Nodes (7): CollectEmptyNodePositionVisitor, CollectPackNodePositionVisitor, IImagePackNodeVisitor, ImagePackNode, PSDImporterCustomPacker, UnityEditor.U2D.Aseprite.Common, UnityEditor.U2D.Common ### Community 188 - "Community 188" -Cohesion: 0.12 -Nodes (9): EnterPlayMode, UnityEngine.TestTools, ExitPlayMode, UnityEngine.TestTools, IEditModeTestYieldInstruction, RecompileScripts, UnityEngine.TestTools, UnityEngine.TestTools (+1 more) +Cohesion: 0.11 +Nodes (3): Contents, IAngleRangeView, UnityEditor.U2D ### Community 189 - "Community 189" Cohesion: 0.12 -Nodes (13): Description, GraphDescription, Unity.VisualScripting, GraphElementDescription, Unity.VisualScripting, IGraphDescription, IGraphElementDescription, IMachineDescription (+5 more) +Nodes (3): Bmi1, Unity.Burst.Intrinsics, X86 ### Community 190 - "Community 190" -Cohesion: 0.12 -Nodes (7): GetVariableOption, Unity.VisualScripting, IsVariableDefinedOption, Unity.VisualScripting, SetVariableOption, Unity.VisualScripting, UnifiedVariableUnitOption +Cohesion: 0.11 +Nodes (17): ChangesetsTab, Colors, Dialog, DiffPanel, DirectoryConflictResolution, DirectoryConflicts, HexColors, HistoryTab (+9 more) ### Community 191 - "Community 191" Cohesion: 0.12 -Nodes (9): Average, ScalarAverage, Unity.VisualScripting, Unity.VisualScripting, Vector2Average, Unity.VisualScripting, Vector3Average, Unity.VisualScripting (+1 more) +Nodes (3): IRenderGraphResource, RenderGraphResource, UnityEngine.Experimental.Rendering.RenderGraphModule ### Community 192 - "Community 192" -Cohesion: 0.12 -Nodes (9): PerSecond, ScalarPerSecond, Unity.VisualScripting, Unity.VisualScripting, Vector2PerSecond, Unity.VisualScripting, Vector3PerSecond, Unity.VisualScripting (+1 more) +Cohesion: 0.11 +Nodes (2): UIBehaviour, UnityEngine.EventSystems ### Community 193 - "Community 193" -Cohesion: 0.15 -Nodes (10): ControllerState, Animancer, Float1ControllerState, ITransition, Animancer, Float2ControllerState, ITransition, Animancer (+2 more) +Cohesion: 0.11 +Nodes (9): IPluginLinked, IPluginModule, Unity.VisualScripting, PluginAcknowledgement, Unity.VisualScripting, PluginChangelog, Unity.VisualScripting, PluginDeprecatedSavedVersionLoader (+1 more) ### Community 194 - "Community 194" -Cohesion: 0.15 -Nodes (7): fsBaseConverter, fsConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer, fsDirectConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer +Cohesion: 0.11 +Nodes (9): Unity.VisualScripting, WaitForEndOfFrameUnit, Unity.VisualScripting, WaitForNextFrameUnit, Unity.VisualScripting, WaitForSecondsUnit, WaitUnit, Unity.VisualScripting (+1 more) ### Community 195 - "Community 195" -Cohesion: 0.12 -Nodes (10): AIConfig, AIConfigCategory, ExcelConfig, ExcelConfigBase, ExcelConfig, GeoDesc, GeoDescCategory, ExcelConfig (+2 more) +Cohesion: 0.14 +Nodes (7): GraphNest, Unity.VisualScripting, IGraphNest, INesterStateTransition, NesterStateTransition, Unity.VisualScripting, StateTransition ### Community 196 - "Community 196" Cohesion: 0.15 -Nodes (7): BuiltinBuildPipeline, YooAsset.Editor, IBuildPipeline, RawFileBuildPipeline, YooAsset.Editor, ScriptableBuildPipeline, YooAsset.Editor +Nodes (6): Animancer, AssertIndex(), IndexOf(), Insert(), Remove(), RemoveAt() ### Community 197 - "Community 197" Cohesion: 0.12 -Nodes (3): IEditablePathController, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (2): ICommonLogic, Logic.Common ### Community 198 - "Community 198" -Cohesion: 0.12 -Nodes (11): AlphaChannelNames, PhotoshopFile, ImageResource, PhotoshopFile, RawImageResource, PhotoshopFile, ResolutionInfo, PhotoshopFile (+3 more) +Cohesion: 0.16 +Nodes (5): AssetBundleWebRequest, YooAsset, FileGeneralRequest, YooAsset, IWebRequester ### Community 199 - "Community 199" Cohesion: 0.12 -Nodes (11): InfoLayers, PhotoshopFile, LayerId, PhotoshopFile, LayerInfo, LayerSectionInfo, PhotoshopFile, LayerUnicodeName (+3 more) +Nodes (5): DisabledUndo, UnityEditor.U2D.Animation, IUndo, UnityEditor.U2D.Animation, UnityEngineUndo ### Community 200 - "Community 200" -Cohesion: 0.13 -Nodes (3): ITexture2D, Texture2DWrapper, UnityEditor.U2D.Sprites +Cohesion: 0.12 +Nodes (3): GLSystem, IGL, UnityEngine.U2D.Sprites ### Community 201 - "Community 201" Cohesion: 0.12 -Nodes (9): BurstDisassembler, LLVMIRInstructionInfo, Unity.Burst.Editor, BurstDisassembler, Unity.Burst.Editor, WasmInstructionInfo, BurstDisassembler, Unity.Burst.Editor (+1 more) +Nodes (11): IVFXMultiMeshOutput, VFXAbstractParticleURPLitOutput, UnityEditor.VFX.URP, VFXURPLitMeshOutput, NormalBendingProperties, UnityEditor.VFX.URP, VFXURPLitPlanarPrimitiveOutput, CustomUVInputProperties (+3 more) ### Community 202 - "Community 202" -Cohesion: 0.15 -Nodes (6): BurstRuntime, BurstRuntimeInternal, LoadAdditionalLibrary(), LoadAdditionalLibraryInternal(), PreserveAttribute, Unity.Burst +Cohesion: 0.12 +Nodes (7): ActiveFields, KeywordDependentCollection, IRequirements, IRequirementsSet, SetRequirements(), ShaderGraphRequirementsPerKeyword, UnityEditor.ShaderGraph.Internal ### Community 203 - "Community 203" Cohesion: 0.12 -Nodes (3): Arm, Neon, Unity.Burst.Intrinsics +Nodes (13): Description, GraphDescription, Unity.VisualScripting, GraphElementDescription, Unity.VisualScripting, IGraphDescription, IGraphElementDescription, IMachineDescription (+5 more) ### Community 204 - "Community 204" -Cohesion: 0.16 -Nodes (8): CheckIndexInRange(), CompareTo(), ElementAt(), Equals(), GetUnsafePtr(), MoveNext(), ToString(), Unity.Collections +Cohesion: 0.12 +Nodes (7): GetVariableOption, Unity.VisualScripting, IsVariableDefinedOption, Unity.VisualScripting, SetVariableOption, Unity.VisualScripting, UnifiedVariableUnitOption ### Community 205 - "Community 205" -Cohesion: 0.16 -Nodes (7): IBuildContext, IContextObject, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, UnityEditor.Build.Pipeline.Interfaces +Cohesion: 0.12 +Nodes (9): Average, ScalarAverage, Unity.VisualScripting, Unity.VisualScripting, Vector2Average, Unity.VisualScripting, Vector3Average, Unity.VisualScripting (+1 more) ### Community 206 - "Community 206" -Cohesion: 0.13 -Nodes (7): ClickAction, CreatePointAction, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, SliderAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework +Cohesion: 0.12 +Nodes (9): PerSecond, ScalarPerSecond, Unity.VisualScripting, Unity.VisualScripting, Vector2PerSecond, Unity.VisualScripting, Vector3PerSecond, Unity.VisualScripting (+1 more) ### Community 207 - "Community 207" -Cohesion: 0.12 -Nodes (2): IReorderableListAdaptor, Unity.VisualScripting.ReorderableList +Cohesion: 0.15 +Nodes (10): ControllerState, Animancer, Float1ControllerState, ITransition, Animancer, Float2ControllerState, ITransition, Animancer (+2 more) ### Community 208 - "Community 208" -Cohesion: 0.12 -Nodes (11): ContinuousNumberInspector, DecimalInspector, Unity.VisualScripting, DoubleInspector, Unity.VisualScripting, FloatInspector, Unity.VisualScripting, LongInspector (+3 more) +Cohesion: 0.15 +Nodes (7): fsBaseConverter, fsConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer, fsDirectConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer ### Community 209 - "Community 209" Cohesion: 0.12 -Nodes (8): IAboutable, IPluginModule, PluginManifest, Unity.VisualScripting, PluginPaths, Unity.VisualScripting, Product, Unity.VisualScripting +Nodes (10): AIConfig, AIConfigCategory, ExcelConfig, ExcelConfigBase, ExcelConfig, GeoDesc, GeoDescCategory, ExcelConfig (+2 more) ### Community 210 - "Community 210" -Cohesion: 0.12 -Nodes (5): IGraphElementWidget, Unity.VisualScripting, IUnitPortWidget, Unity.VisualScripting, IWidget +Cohesion: 0.15 +Nodes (7): BuiltinBuildPipeline, YooAsset.Editor, IBuildPipeline, RawFileBuildPipeline, YooAsset.Editor, ScriptableBuildPipeline, YooAsset.Editor ### Community 211 - "Community 211" Cohesion: 0.12 -Nodes (11): DecrementHandler, Unity.VisualScripting, IncrementHandler, Unity.VisualScripting, LogicalNegationHandler, Unity.VisualScripting, NumericNegationHandler, Unity.VisualScripting (+3 more) +Nodes (3): IEditablePathController, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 212 - "Community 212" -Cohesion: 0.12 -Nodes (11): IApplicationVariableUnit, Unity.VisualScripting, IGraphVariableUnit, Unity.VisualScripting, IObjectVariableUnit, Unity.VisualScripting, ISavedVariableUnit, Unity.VisualScripting (+3 more) +Cohesion: 0.17 +Nodes (7): IPSDLayerMappingStrategy, IPSDLayerMappingStrategyComparable, LayerMappingStrategy, LayerMappingUseLayerName, LayerMappingUseLayerNameCaseSensitive, LayerMappingUserLayerID, UnityEditor.U2D.PSD ### Community 213 - "Community 213" -Cohesion: 0.13 -Nodes (12): ControlInputDefinition, Unity.VisualScripting, ControlOutputDefinition, Unity.VisualScripting, ControlPortDefinition, IUnitInputPortDefinition, IUnitOutputPortDefinition, Unity.VisualScripting (+4 more) +Cohesion: 0.12 +Nodes (11): AlphaChannelNames, PhotoshopFile, ImageResource, PhotoshopFile, RawImageResource, PhotoshopFile, ResolutionInfo, PhotoshopFile (+3 more) ### Community 214 - "Community 214" Cohesion: 0.12 -Nodes (11): IUnitControlPort, Unity.VisualScripting, IUnitInputPort, Unity.VisualScripting, IUnitInvalidPort, Unity.VisualScripting, IUnitOutputPort, Unity.VisualScripting (+3 more) +Nodes (11): InfoLayers, PhotoshopFile, LayerId, PhotoshopFile, LayerInfo, LayerSectionInfo, PhotoshopFile, LayerUnicodeName (+3 more) ### Community 215 - "Community 215" +Cohesion: 0.13 +Nodes (3): ITexture2D, Texture2DWrapper, UnityEditor.U2D.Sprites + +### Community 216 - "Community 216" +Cohesion: 0.15 +Nodes (6): BurstRuntime, BurstRuntimeInternal, LoadAdditionalLibrary(), LoadAdditionalLibraryInternal(), PreserveAttribute, Unity.Burst + +### Community 217 - "Community 217" +Cohesion: 0.12 +Nodes (3): Arm, Neon, Unity.Burst.Intrinsics + +### Community 218 - "Community 218" +Cohesion: 0.16 +Nodes (7): IBuildContext, IContextObject, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, UnityEditor.Build.Pipeline.Interfaces + +### Community 219 - "Community 219" +Cohesion: 0.16 +Nodes (4): IExecuter, UnityEditor.TestTools.TestRunner.CommandLineTest, TestStarter, UnityEditor.TestTools.TestRunner.CommandLineTest + +### Community 220 - "Community 220" +Cohesion: 0.12 +Nodes (2): IReorderableListAdaptor, Unity.VisualScripting.ReorderableList + +### Community 221 - "Community 221" +Cohesion: 0.12 +Nodes (11): ContinuousNumberInspector, DecimalInspector, Unity.VisualScripting, DoubleInspector, Unity.VisualScripting, FloatInspector, Unity.VisualScripting, LongInspector (+3 more) + +### Community 222 - "Community 222" +Cohesion: 0.12 +Nodes (5): IGraphElementWidget, Unity.VisualScripting, IUnitPortWidget, Unity.VisualScripting, IWidget + +### Community 223 - "Community 223" +Cohesion: 0.12 +Nodes (11): DecrementHandler, Unity.VisualScripting, IncrementHandler, Unity.VisualScripting, LogicalNegationHandler, Unity.VisualScripting, NumericNegationHandler, Unity.VisualScripting (+3 more) + +### Community 224 - "Community 224" +Cohesion: 0.12 +Nodes (11): GlobalEventUnit, OnApplicationFocus, Unity.VisualScripting, OnApplicationLostFocus, Unity.VisualScripting, OnApplicationPause, Unity.VisualScripting, OnApplicationQuit (+3 more) + +### Community 225 - "Community 225" +Cohesion: 0.12 +Nodes (11): IApplicationVariableUnit, Unity.VisualScripting, IGraphVariableUnit, Unity.VisualScripting, IObjectVariableUnit, Unity.VisualScripting, ISavedVariableUnit, Unity.VisualScripting (+3 more) + +### Community 226 - "Community 226" +Cohesion: 0.13 +Nodes (12): ControlInputDefinition, Unity.VisualScripting, ControlOutputDefinition, Unity.VisualScripting, ControlPortDefinition, IUnitInputPortDefinition, IUnitOutputPortDefinition, Unity.VisualScripting (+4 more) + +### Community 227 - "Community 227" +Cohesion: 0.12 +Nodes (11): IUnitControlPort, Unity.VisualScripting, IUnitInputPort, Unity.VisualScripting, IUnitInvalidPort, Unity.VisualScripting, IUnitOutputPort, Unity.VisualScripting (+3 more) + +### Community 228 - "Community 228" Cohesion: 0.12 Nodes (11): IUnitControlPortDefinition, Unity.VisualScripting, IUnitInputPortDefinition, Unity.VisualScripting, IUnitOutputPortDefinition, Unity.VisualScripting, IUnitPortDefinition, IUnitValuePortDefinition (+3 more) -### Community 216 - "Community 216" -Cohesion: 0.17 -Nodes (8): CollectAll, CollectPrefab, CollectScene, CollectShaderVariants, CollectSprite, DefaultFilterRule, YooAsset.Editor, IFilterRule +### Community 229 - "Community 229" +Cohesion: 0.13 +Nodes (14): CatalogEntry, Dependency, DependencyGroup, Deprecation, IndexResponse, NugetForUnity.PackageSource, RegistrationLeafObject, RegistrationPageObject (+6 more) -### Community 217 - "Community 217" +### Community 230 - "Community 230" Cohesion: 0.17 Nodes (6): EditorPlayModeUpdatePackageVersionOperation, HostPlayModeUpdatePackageVersionOperation, OfflinePlayModeUpdatePackageVersionOperation, UpdatePackageVersionOperation, WebPlayModeUpdatePackageVersionOperation, YooAsset -### Community 218 - "Community 218" -Cohesion: 0.14 -Nodes (8): CharacterGroupCache, CharacterPartCache, UnityEditor.U2D.Animation, ICharacterOrder, SpriteCache, TH1Resource, UnityEditor.U2D.Animation, TransformCache +### Community 231 - "Community 231" +Cohesion: 0.13 +Nodes (4): FlexibleMenu, GridPalettesDropdown, MenuItemProvider, UnityEditor.Tilemaps -### Community 219 - "Community 219" -Cohesion: 0.18 -Nodes (13): BoneVisibilityToolData, UnityEditor.U2D.Animation, CacheObject, SerializableDictionary, CharacterPartMap, MeshMap, MeshPreviewMap, SkeletonMap (+5 more) - -### Community 220 - "Community 220" +### Community 232 - "Community 232" Cohesion: 0.19 Nodes (10): IComputeShaderVariantStripper, IComputeShaderVariantStripperScope, IComputeShaderVariantStripperSkipper, IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, IVariantStripper, IVariantStripperScope (+2 more) -### Community 221 - "Community 221" +### Community 233 - "Community 233" Cohesion: 0.13 Nodes (3): IMoveItemDrawer, IMoveItemMode, UnityEditor.Timeline -### Community 222 - "Community 222" +### Community 234 - "Community 234" Cohesion: 0.14 Nodes (3): ISequenceState, NullSequenceState, UnityEditor.Timeline -### Community 223 - "Community 223" -Cohesion: 0.15 -Nodes (3): FuzzyOptionTree, Unity.VisualScripting, IFuzzyOptionTree +### Community 235 - "Community 235" +Cohesion: 0.17 +Nodes (4): ITimelinePlaybackControls, TimelinePlaybackControlsImpl, TimelineWindow, UnityEditor.Timeline -### Community 224 - "Community 224" -Cohesion: 0.13 -Nodes (7): GetVariableUnitOption, Unity.VisualScripting, IsVariableDefinedUnitOption, Unity.VisualScripting, SetVariableUnitOption, Unity.VisualScripting, VariableUnitOption - -### Community 225 - "Community 225" +### Community 236 - "Community 236" Cohesion: 0.13 Nodes (5): FuzzyOption, Unity.VisualScripting, IFuzzyOption, IUnitOption, Unity.VisualScripting -### Community 226 - "Community 226" -Cohesion: 0.15 -Nodes (10): ControlConnection, Unity.VisualScripting, InvalidConnection, Unity.VisualScripting, IUnitConnection, UnitConnection, UnitConnectionDebugData, DebugData (+2 more) - -### Community 227 - "Community 227" -Cohesion: 0.16 -Nodes (3): Del(), HasAny(), ViMask - -### Community 228 - "Community 228" -Cohesion: 0.16 -Nodes (4): TH1_UI.Controller.Interaction, UIOutsideLoadingController, TH1_UI.View.Outside, UIOutsideLoadingView - -### Community 229 - "Community 229" -Cohesion: 0.14 -Nodes (9): AutomaticReflectedInspector, Unity.VisualScripting, GraphGroupInspector, Unity.VisualScripting, ReflectedInspector, StickyNoteInspector, Unity.VisualScripting, UnitInspector (+1 more) - -### Community 230 - "Community 230" -Cohesion: 0.15 -Nodes (2): IPlayMode, YooAsset - -### Community 231 - "Community 231" -Cohesion: 0.15 -Nodes (4): IEditablePath, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, ISelectable - -### Community 232 - "Community 232" -Cohesion: 0.26 -Nodes (5): HexagonalRuleTile, UnityEngine, IsometricRuleTile, UnityEngine, RuleTile - -### Community 233 - "Community 233" -Cohesion: 0.15 -Nodes (7): AsmTokenKindProvider, BurstDisassembler, LLVMIRAsmTokenKindProvider, Unity.Burst.Editor, BurstDisassembler, Unity.Burst.Editor, WasmAsmTokenKindProvider - -### Community 234 - "Community 234" -Cohesion: 0.18 -Nodes (2): ScriptableRendererFeature, UnityEngine.Rendering.Universal - -### Community 235 - "Community 235" -Cohesion: 0.15 -Nodes (9): ContextFilterableAttribute, NeverAllowedByTargetAttribute, UnityEditor.ShaderGraph, SRPFilterAttribute, UnityEditor.ShaderGraph, SubTargetFilterAttribute, UnityEditor.ShaderGraph, TitleAttribute (+1 more) - -### Community 236 - "Community 236" -Cohesion: 0.15 -Nodes (7): BlackboardCategoryViewModel, UnityEditor.ShaderGraph.Drawing, InspectorViewModel, UnityEditor.ShaderGraph.Drawing, ISGViewModel, ShaderInputViewModel, UnityEditor.ShaderGraph.Drawing - ### Community 237 - "Community 237" Cohesion: 0.15 -Nodes (12): AddItem, AddTrackMenu, ClipActionSection, ClipEditActionSection, CustomClipActionSection, CustomTimelineActionSection, CustomTrackActionSection, MarkerActionSection (+4 more) +Nodes (3): FuzzyOptionTree, Unity.VisualScripting, IFuzzyOptionTree ### Community 238 - "Community 238" -Cohesion: 0.18 -Nodes (4): IBlendable, ITimelineItem, ITrimmable, UnityEditor.Timeline +Cohesion: 0.13 +Nodes (7): GetVariableUnitOption, Unity.VisualScripting, IsVariableDefinedUnitOption, Unity.VisualScripting, SetVariableUnitOption, Unity.VisualScripting, VariableUnitOption ### Community 239 - "Community 239" Cohesion: 0.15 -Nodes (4): ElementAdderMenuBuilder, Unity.VisualScripting.ReorderableList.Element_Adder_Menu, IElementAdderMenuBuilder, Unity.VisualScripting.ReorderableList.Element_Adder_Menu +Nodes (10): ControlConnection, Unity.VisualScripting, InvalidConnection, Unity.VisualScripting, IUnitConnection, UnitConnection, UnitConnectionDebugData, DebugData (+2 more) ### Community 240 - "Community 240" +Cohesion: 0.25 +Nodes (12): byref(), il2cpp_class_from_il2cpp_type(), il2cpp_class_get_declaring_type(), il2cpp_class_get_name(), il2cpp_class_get_namespace(), il2cpp_current_thread_walk_frame_stack(), il2cpp_method_get_class(), il2cpp_method_get_name() (+4 more) + +### Community 241 - "Community 241" +Cohesion: 0.21 +Nodes (11): Animancer.Units, AnimationSpeedAttribute, Animancer.Units, DegreesAttribute, DegreesPerSecondAttribute, MetersAttribute, MetersPerSecondAttribute, MetersPerSecondPerSecondAttribute (+3 more) + +### Community 242 - "Community 242" +Cohesion: 0.16 +Nodes (3): Del(), HasAny(), ViMask + +### Community 243 - "Community 243" +Cohesion: 0.19 +Nodes (8): CollectAll, CollectPrefab, CollectScene, CollectShaderVariants, CollectSprite, DefaultFilterRule, YooAsset.Editor, IFilterRule + +### Community 244 - "Community 244" +Cohesion: 0.25 +Nodes (2): Manipulator, UnityEditor.Timeline + +### Community 245 - "Community 245" +Cohesion: 0.14 +Nodes (4): BasicPlayableBehaviour, UnityEngine.Timeline, IPlayableAsset, IPlayableBehaviour + +### Community 246 - "Community 246" +Cohesion: 0.14 +Nodes (9): AutomaticReflectedInspector, Unity.VisualScripting, GraphGroupInspector, Unity.VisualScripting, ReflectedInspector, StickyNoteInspector, Unity.VisualScripting, UnitInspector (+1 more) + +### Community 247 - "Community 247" +Cohesion: 0.14 +Nodes (9): IGraphElementWidget, INodeWidget, Unity.VisualScripting, IStateWidget, Unity.VisualScripting, IUnitConnectionWidget, Unity.VisualScripting, IUnitWidget (+1 more) + +### Community 248 - "Community 248" +Cohesion: 0.21 +Nodes (3): IUnitPortCollection, UnitPortCollection, Unity.VisualScripting + +### Community 249 - "Community 249" +Cohesion: 0.15 +Nodes (4): Animancer, CreateDrawer(), Drawer, MixerState + +### Community 250 - "Community 250" +Cohesion: 0.15 +Nodes (2): IPlayMode, YooAsset + +### Community 251 - "Community 251" +Cohesion: 0.26 +Nodes (5): HexagonalRuleTile, UnityEngine, IsometricRuleTile, UnityEngine, RuleTile + +### Community 252 - "Community 252" +Cohesion: 0.27 +Nodes (2): BringWindowToFront, Unity.PlasticSCM.Editor.Tool + +### Community 253 - "Community 253" +Cohesion: 0.18 +Nodes (2): ScriptableRendererFeature, UnityEngine.Rendering.Universal + +### Community 254 - "Community 254" +Cohesion: 0.18 +Nodes (4): IBlendable, ITimelineItem, ITrimmable, UnityEditor.Timeline + +### Community 255 - "Community 255" +Cohesion: 0.15 +Nodes (9): ContextFilterableAttribute, NeverAllowedByTargetAttribute, UnityEditor.ShaderGraph, SRPFilterAttribute, UnityEditor.ShaderGraph, SubTargetFilterAttribute, UnityEditor.ShaderGraph, TitleAttribute (+1 more) + +### Community 256 - "Community 256" +Cohesion: 0.15 +Nodes (7): BlackboardCategoryViewModel, UnityEditor.ShaderGraph.Drawing, InspectorViewModel, UnityEditor.ShaderGraph.Drawing, ISGViewModel, ShaderInputViewModel, UnityEditor.ShaderGraph.Drawing + +### Community 257 - "Community 257" +Cohesion: 0.18 +Nodes (8): IdentifierField, IdentifierInput, UnityEditor.ShaderGraph.Drawing, UxmlFactory, UxmlTraits, TextValueField, TextValueFieldTraits, TextValueInput + +### Community 258 - "Community 258" +Cohesion: 0.15 +Nodes (12): AddItem, AddTrackMenu, ClipActionSection, ClipEditActionSection, CustomClipActionSection, CustomTimelineActionSection, CustomTrackActionSection, MarkerActionSection (+4 more) + +### Community 259 - "Community 259" +Cohesion: 0.15 +Nodes (4): ElementAdderMenuBuilder, Unity.VisualScripting.ReorderableList.Element_Adder_Menu, IElementAdderMenuBuilder, Unity.VisualScripting.ReorderableList.Element_Adder_Menu + +### Community 260 - "Community 260" Cohesion: 0.15 Nodes (2): IFuzzyOptionTree, Unity.VisualScripting -### Community 241 - "Community 241" -Cohesion: 0.15 -Nodes (10): IGraphNester, IGraphNesterElement, Unity.VisualScripting, IGraphParentElement, IGraphRoot, IMachine, Unity.VisualScripting, IMacro (+2 more) +### Community 261 - "Community 261" +Cohesion: 0.23 +Nodes (8): DigCast, DigIndex, DigIndexer, DigMember, DigStaticObject, NoAllocDelegate, NoAllocDig, Unity.VisualScripting -### Community 242 - "Community 242" +### Community 262 - "Community 262" +Cohesion: 0.19 +Nodes (2): Page, Unity.VisualScripting + +### Community 263 - "Community 263" Cohesion: 0.15 Nodes (7): IGraphNester, Unity.VisualScripting, IGraphParent, IGraphParentElement, Unity.VisualScripting, IGraphRoot, Unity.VisualScripting -### Community 243 - "Community 243" +### Community 264 - "Community 264" Cohesion: 0.15 Nodes (9): IGraphElementDebugData, IStateDebugData, Unity.VisualScripting, IStateTransitionDebugData, Unity.VisualScripting, IUnitConnectionDebugData, Unity.VisualScripting, IUnitDebugData (+1 more) -### Community 244 - "Community 244" +### Community 265 - "Community 265" Cohesion: 0.15 Nodes (7): EventUnit, GlobalEventUnit, Unity.VisualScripting, MachineEventUnit, Unity.VisualScripting, ManualEventUnit, Unity.VisualScripting -### Community 245 - "Community 245" +### Community 266 - "Community 266" Cohesion: 0.23 Nodes (2): LayerUtils, ParadoxNotion -### Community 246 - "Community 246" +### Community 267 - "Community 267" +Cohesion: 0.26 +Nodes (2): Node, ViPriorityValue + +### Community 268 - "Community 268" Cohesion: 0.3 Nodes (11): FragmentAttackAllyData, FragmentAttackAndCounterData, FragmentAttackGroundData, FragmentCityExpData, FragmentCityExpUpData, FragmentGridUpdateData, FragmentMoveData, FragmentMoveExplorerData (+3 more) -### Community 247 - "Community 247" +### Community 269 - "Community 269" Cohesion: 0.26 Nodes (10): Action_1_Invoke_m1DDC149E3BDDF7CAA1CCEBDA6D58D6971F126303_inline(), PlayableDirector_ClearReferenceValue_Injected_m9955C0A6558AA830976F3072700092D374A79A8B(), PlayableDirector_ClearReferenceValue_m011DC51A81993B00D95ACC74FD90291363AB534C(), PlayableDirector_GetReferenceValue_Injected_mE46AABB378E696DF9A413D98D24E1AA0A312D106(), PlayableDirector_GetReferenceValue_m635841386147673FFBBEF0CD9DA908337F3C97C8(), PlayableDirector_SendOnPlayableDirectorPause_m1B8EE7CBD23957C664AA417A9261194DFFFADFE1(), PlayableDirector_SendOnPlayableDirectorPlay_m7F75DBA4355DAA92F53AC337BB952069B63081A0(), PlayableDirector_SendOnPlayableDirectorStop_m4E9AEB579B8EA66ECC6FA9BE23BBF7973AB3EDD7() (+2 more) -### Community 248 - "Community 248" +### Community 270 - "Community 270" Cohesion: 0.24 Nodes (3): BaseTool, ITool, UnityEditor.U2D.Animation -### Community 249 - "Community 249" +### Community 271 - "Community 271" Cohesion: 0.17 Nodes (4): ISelection, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path -### Community 250 - "Community 250" +### Community 272 - "Community 272" +Cohesion: 0.24 +Nodes (11): CacheObject, SerializableDictionary, CharacterPartMap, MeshMap, MeshPreviewMap, SkeletonMap, SkinningObject, SpriteMap (+3 more) + +### Community 273 - "Community 273" Cohesion: 0.17 Nodes (6): Placeholder, UnityEditor.Experimental.U2D.Animation.Tests, UnityEditor.Experimental.U2D.Commons.Tests, UnityEditor.Experimental.U2D.PSDImporter.Tests, UnityEditor.U2D.Aseprite.Tests, UnityEngine.U2D.PixelPerfect.Tests -### Community 251 - "Community 251" +### Community 274 - "Community 274" +Cohesion: 0.18 +Nodes (3): HandlesSystem, IHandles, UnityEditor.U2D.Sprites + +### Community 275 - "Community 275" Cohesion: 0.21 Nodes (3): Data, ProgressControlsForMigration, Unity.PlasticSCM.Editor.UI.Progress -### Community 252 - "Community 252" +### Community 276 - "Community 276" Cohesion: 0.17 Nodes (5): IMayRequireNDCPosition, IMayRequirePixelPosition, IMayRequireScreenPosition, MayRequireScreenPositionExtensions, UnityEditor.ShaderGraph -### Community 253 - "Community 253" +### Community 277 - "Community 277" Cohesion: 0.17 Nodes (2): Target, UnityEditor.ShaderGraph -### Community 254 - "Community 254" +### Community 278 - "Community 278" +Cohesion: 0.17 +Nodes (6): KeywordDescriptors, Passes, PreviewTarget, StructDescriptors, SubShaders, UnityEditor.ShaderGraph + +### Community 279 - "Community 279" Cohesion: 0.17 Nodes (8): BoltCore, Styles, Unity.VisualScripting, BoltFlow, Unity.VisualScripting, BoltState, Unity.VisualScripting, Plugin -### Community 255 - "Community 255" +### Community 280 - "Community 280" Cohesion: 0.18 Nodes (9): FlowGraphData, Unity.VisualScripting, GraphData, IGraphDataAction, UnityEditor.ShaderGraph, IGraphDataWithVariables, IGraphEventListenerData, StateGraphData (+1 more) -### Community 256 - "Community 256" +### Community 281 - "Community 281" Cohesion: 0.18 Nodes (3): fsObjectProcessor, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer -### Community 257 - "Community 257" +### Community 282 - "Community 282" Cohesion: 0.22 Nodes (5): Demo_Provider, ViProvider, ViPtrProvider, ViPtrProviderClass, ViSimpleProvider -### Community 258 - "Community 258" +### Community 283 - "Community 283" +Cohesion: 0.18 +Nodes (7): EmpireStatisticLimit, EmpireStatisticResult, Logic.Editor, TechStatisticLimit, TechStatisticResult, UnitStatisticLimit, UnitStatisticResult + +### Community 284 - "Community 284" +Cohesion: 0.18 +Nodes (7): BuildParameters, BuiltinBuildParameters, YooAsset.Editor, RawFileBuildParameters, YooAsset.Editor, ScriptableBuildParameters, YooAsset.Editor + +### Community 285 - "Community 285" Cohesion: 0.24 Nodes (6): AddressByFileName, AddressByFolderAndFileName, AddressByGroupAndFileName, AddressDisable, YooAsset.Editor, IAddressRule -### Community 259 - "Community 259" +### Community 286 - "Community 286" Cohesion: 0.18 Nodes (4): CreateDefaultStatus(), YooAsset, HandleBase, YooAsset -### Community 260 - "Community 260" +### Community 287 - "Community 287" Cohesion: 0.18 Nodes (4): ISelectable, UnityEditor.Rendering.Universal.Path2D, UnityEditor.Timeline, UnityEditor.U2D.Common.Path -### Community 261 - "Community 261" +### Community 288 - "Community 288" +Cohesion: 0.27 +Nodes (6): GetOrCreatePartiallyUnsafeWithHashCode(), GetOrCreatePartiallyUnsafeWithSubHashCode(), GetOrCreateUnsafe(), PreserveAttribute, SharedStatic, Unity.Burst + +### Community 289 - "Community 289" Cohesion: 0.36 Nodes (3): IGetSelectedNodes, PendingChangesViewMenu, Unity.PlasticSCM.Editor.Views.PendingChanges -### Community 262 - "Community 262" +### Community 290 - "Community 290" +Cohesion: 0.27 +Nodes (3): GCAllocRecorder, GcAllocRecorderTest, Unity.Collections.Tests + +### Community 291 - "Community 291" +Cohesion: 0.18 +Nodes (2): IAssemblyNameProvider, Microsoft.Unity.VisualStudio.Editor + +### Community 292 - "Community 292" +Cohesion: 0.2 +Nodes (5): GUIDProvider, IGUIDGenerator, Microsoft.Unity.VisualStudio.Editor, Packages.Rider.Editor.ProjectGeneration, IGUIDGenerator + +### Community 293 - "Community 293" +Cohesion: 0.2 +Nodes (5): Element, GroupElement, IProvider, Styles, UnityEditor.Rendering + +### Community 294 - "Community 294" Cohesion: 0.22 Nodes (2): SerializedPropertyExtension, UnityEditor.Rendering -### Community 263 - "Community 263" -Cohesion: 0.22 -Nodes (6): ILayoutController, ILayoutElement, ILayoutGroup, ILayoutIgnorer, ILayoutSelfController, UnityEngine.UI - -### Community 264 - "Community 264" -Cohesion: 0.18 -Nodes (7): FuzzyOptionTreeExtensionProvider, Unity.VisualScripting, XFuzzyOptionTreeExtensionProvider, GraphContextExtensionProvider, Unity.VisualScripting, XCanvasExtensionProvider, MultiDecoratorProvider - -### Community 265 - "Community 265" -Cohesion: 0.18 -Nodes (7): ControlInputWidget, Unity.VisualScripting, InvalidInputWidget, Unity.VisualScripting, UnitInputPortWidget, Unity.VisualScripting, ValueInputWidget - -### Community 266 - "Community 266" -Cohesion: 0.2 -Nodes (9): AddUnitCollectData, CollectData, DamageCollectData, LearnTechCollectData, MatchGameEndCollectData, OnTurnStartCollectData, PlayerGameEndCollectData, TH1_Logic.Collect (+1 more) - -### Community 267 - "Community 267" -Cohesion: 0.2 -Nodes (2): IUnitLogic, Logic - -### Community 268 - "Community 268" -Cohesion: 0.33 -Nodes (2): Cysharp.Threading.Tasks.Internal, MinimumQueue - -### Community 269 - "Community 269" -Cohesion: 0.29 -Nodes (8): BurstIntrinsicGetCSRFromManaged(), BurstIntrinsicSetCSRFromManaged(), DoGetCSRTrampoline(), DoSetCSRTrampoline(), getcsr_raw(), setcsr_raw(), Unity.Burst.Intrinsics, X86 - -### Community 270 - "Community 270" -Cohesion: 0.2 -Nodes (5): IPlasticTimer, IPlasticTimerBuilder, Unity.PlasticSCM.Editor.UI, UnityPlasticTimer, UnityPlasticTimerBuilder - -### Community 271 - "Community 271" -Cohesion: 0.2 -Nodes (2): RTHandles, UnityEngine.Rendering - -### Community 272 - "Community 272" -Cohesion: 0.2 -Nodes (7): BuiltInToURP2DConverterContainer, UnityEditor.Rendering.Universal, BuiltInToURPConverterContainer, UnityEditor.Rendering.Universal, RenderPipelineConverterContainer, UnityEditor.Rendering.Universal, UpgradeURP2DAssetsContainer - -### Community 273 - "Community 273" -Cohesion: 0.2 -Nodes (6): CoreRPHelpURLAttribute, Documentation, UnityEngine.Rendering.ShaderGraph, UnityEngine.Rendering.Universal, URPHelpURLAttribute, DocumentationInfo - -### Community 274 - "Community 274" -Cohesion: 0.22 -Nodes (5): ActivationTrackEditor, UnityEditor.Timeline, MarkerTrackEditor, UnityEditor.Timeline, TrackEditor - -### Community 275 - "Community 275" -Cohesion: 0.2 -Nodes (2): IUnitDescriptor, Unity.VisualScripting - -### Community 276 - "Community 276" -Cohesion: 0.2 -Nodes (7): BoltCoreConfiguration, Unity.VisualScripting, BoltFlowConfiguration, Unity.VisualScripting, BoltStateConfiguration, Unity.VisualScripting, PluginConfiguration - -### Community 277 - "Community 277" -Cohesion: 0.2 -Nodes (7): BoltCoreManifest, Unity.VisualScripting, BoltFlowManifest, Unity.VisualScripting, BoltStateManifest, Unity.VisualScripting, PluginManifest - -### Community 278 - "Community 278" -Cohesion: 0.2 -Nodes (7): ControlOutputWidget, Unity.VisualScripting, InvalidOutputWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, ValueOutputWidget - -### Community 279 - "Community 279" -Cohesion: 0.2 -Nodes (7): GraphElementAnalysis, StateAnalysis, Unity.VisualScripting, StateTransitionAnalysis, Unity.VisualScripting, UnitAnalysis, Unity.VisualScripting - -### Community 280 - "Community 280" -Cohesion: 0.2 -Nodes (7): GraphElementDescription, StateDescription, Unity.VisualScripting, StateTransitionDescription, Unity.VisualScripting, UnitDescription, Unity.VisualScripting - -### Community 281 - "Community 281" -Cohesion: 0.2 -Nodes (7): CollisionEventUnit, OnCollisionEnter, Unity.VisualScripting, OnCollisionExit, Unity.VisualScripting, OnCollisionStay, Unity.VisualScripting - -### Community 282 - "Community 282" -Cohesion: 0.2 -Nodes (7): OnTriggerEnter, Unity.VisualScripting, OnTriggerExit, Unity.VisualScripting, OnTriggerStay, Unity.VisualScripting, TriggerEventUnit - -### Community 283 - "Community 283" -Cohesion: 0.2 -Nodes (7): CollisionEvent2DUnit, OnCollisionEnter2D, Unity.VisualScripting, OnCollisionExit2D, Unity.VisualScripting, OnCollisionStay2D, Unity.VisualScripting - -### Community 284 - "Community 284" -Cohesion: 0.2 -Nodes (7): OnTriggerEnter2D, Unity.VisualScripting, OnTriggerExit2D, Unity.VisualScripting, OnTriggerStay2D, Unity.VisualScripting, TriggerEvent2DUnit - -### Community 285 - "Community 285" -Cohesion: 0.2 -Nodes (3): IGraphItem, IUnitPort, Unity.VisualScripting - -### Community 286 - "Community 286" -Cohesion: 0.2 -Nodes (5): Macro, ScriptGraphAsset, Unity.VisualScripting, StateGraphAsset, Unity.VisualScripting - -### Community 287 - "Community 287" -Cohesion: 0.22 -Nodes (2): GUIStyleUtils, ParadoxNotion - -### Community 288 - "Community 288" -Cohesion: 0.39 -Nodes (7): Demo_Angle, Diff(), IsBetween(), Lerp(), Normalize(), SameSignAngle(), SetValue() - -### Community 289 - "Community 289" -Cohesion: 0.22 -Nodes (2): IPlayerLogic, Logic - -### Community 290 - "Community 290" -Cohesion: 0.22 -Nodes (5): ISkinningSerializer, SkinningCopyData, SkinningCopySpriteData, SpriteBoneCopyData, UnityEditor.U2D.Animation - -### Community 291 - "Community 291" -Cohesion: 0.22 -Nodes (2): IUndo, UnityEditor.U2D.Animation - -### Community 292 - "Community 292" -Cohesion: 0.22 -Nodes (7): GenericShaderGraphMaterialGUI, ShaderGraphLitGUI, ShaderGraphUnlitGUI, UnityEditor.Rendering.Universal, VFXGenericShaderGraphMaterialGUI, VFXShaderGraphLitGUI, VFXShaderGraphUnlitGUI - -### Community 293 - "Community 293" -Cohesion: 0.22 -Nodes (8): BuildContent, BundleBuildContent, CustomAssets, UnityEditor.Build.Pipeline, IBuildContent, IBundleBuildContent, ICustomAssets, TestBundleBuildContent - -### Community 294 - "Community 294" -Cohesion: 0.25 -Nodes (4): CommandLineOptionSet, UnityEditor.TestRunner.CommandLineParser, ICommandLineOption, UnityEditor.TestRunner.CommandLineParser - ### Community 295 - "Community 295" -Cohesion: 0.22 -Nodes (5): EditmodeWorkItemFactory, UnityEditor.TestTools.TestRunner, PlaymodeWorkItemFactory, UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory +Cohesion: 0.18 +Nodes (6): AnimationClipUpgrader, IAnimationClip, IAssetPath, IRenderer, ReplaceBindings(), UnityEditor.Rendering ### Community 296 - "Community 296" -Cohesion: 0.22 -Nodes (2): ITestRunnerApiMapper, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Cohesion: 0.18 +Nodes (2): IShaderNodeView, UnityEditor.ShaderGraph ### Community 297 - "Community 297" -Cohesion: 0.22 -Nodes (2): TimelineNavigator, UnityEditor.Timeline +Cohesion: 0.2 +Nodes (2): SubTarget, UnityEditor.ShaderGraph ### Community 298 - "Community 298" Cohesion: 0.22 -Nodes (7): AnnotationMarker, Timeline.Samples, INotification, INotificationOptionProvider, Marker, SignalEmitter, UnityEngine.Timeline +Nodes (6): ILayoutController, ILayoutElement, ILayoutGroup, ILayoutIgnorer, ILayoutSelfController, UnityEngine.UI ### Community 299 - "Community 299" +Cohesion: 0.18 +Nodes (7): FuzzyOptionTreeExtensionProvider, Unity.VisualScripting, XFuzzyOptionTreeExtensionProvider, GraphContextExtensionProvider, Unity.VisualScripting, XCanvasExtensionProvider, MultiDecoratorProvider + +### Community 300 - "Community 300" +Cohesion: 0.18 +Nodes (7): ControlInputWidget, Unity.VisualScripting, InvalidInputWidget, Unity.VisualScripting, UnitInputPortWidget, Unity.VisualScripting, ValueInputWidget + +### Community 301 - "Community 301" +Cohesion: 0.2 +Nodes (9): AddUnitCollectData, CollectData, DamageCollectData, LearnTechCollectData, MatchGameEndCollectData, OnTurnStartCollectData, PlayerGameEndCollectData, TH1_Logic.Collect (+1 more) + +### Community 302 - "Community 302" +Cohesion: 0.2 +Nodes (2): IUnitLogic, Logic + +### Community 303 - "Community 303" +Cohesion: 0.27 +Nodes (2): GameAsyncOperation, YooAsset + +### Community 304 - "Community 304" +Cohesion: 0.33 +Nodes (2): Cysharp.Threading.Tasks.Internal, MinimumQueue + +### Community 305 - "Community 305" +Cohesion: 0.36 +Nodes (2): FABRIK2D, UnityEngine.U2D.IK + +### Community 306 - "Community 306" +Cohesion: 0.24 +Nodes (5): Dict, LibTessDotNet, Node, Unity.SpriteShape.External, UnityEngine.Rendering.Universal + +### Community 307 - "Community 307" +Cohesion: 0.24 +Nodes (3): PopulateRuleOverideTileWizard, UnityEditor.Tilemaps, ScriptableWizard + +### Community 308 - "Community 308" +Cohesion: 0.29 +Nodes (8): BurstIntrinsicGetCSRFromManaged(), BurstIntrinsicSetCSRFromManaged(), DoGetCSRTrampoline(), DoSetCSRTrampoline(), getcsr_raw(), setcsr_raw(), Unity.Burst.Intrinsics, X86 + +### Community 309 - "Community 309" +Cohesion: 0.22 +Nodes (3): AssetStatusCache, IAssetStatusCache, Unity.PlasticSCM.Editor.AssetsOverlays.Cache + +### Community 310 - "Community 310" +Cohesion: 0.2 +Nodes (5): IPlasticTimer, IPlasticTimerBuilder, Unity.PlasticSCM.Editor.UI, UnityPlasticTimer, UnityPlasticTimerBuilder + +### Community 311 - "Community 311" +Cohesion: 0.22 +Nodes (4): Discovery, IDiscovery, Microsoft.Unity.VisualStudio.Editor, Packages.Rider.Editor + +### Community 312 - "Community 312" +Cohesion: 0.31 +Nodes (5): INotifyValueChanged, ToolbarRadio, UnityEditor.Rendering.LookDev, UxmlFactory, UxmlTraits + +### Community 313 - "Community 313" +Cohesion: 0.2 +Nodes (5): IDebugDisplaySettings, UnityEngine.Rendering, IDebugDisplaySettingsData, UnityEngine.Rendering, IDebugDisplaySettingsQuery + +### Community 314 - "Community 314" +Cohesion: 0.2 +Nodes (2): RTHandles, UnityEngine.Rendering + +### Community 315 - "Community 315" +Cohesion: 0.29 +Nodes (2): CoreMatrixUtils, UnityEngine.Rendering + +### Community 316 - "Community 316" +Cohesion: 0.2 +Nodes (7): BuiltInToURP2DConverterContainer, UnityEditor.Rendering.Universal, BuiltInToURPConverterContainer, UnityEditor.Rendering.Universal, RenderPipelineConverterContainer, UnityEditor.Rendering.Universal, UpgradeURP2DAssetsContainer + +### Community 317 - "Community 317" +Cohesion: 0.22 +Nodes (5): BuiltInBaseShaderGUI, BuiltInLitGUI, UnityEditor.Rendering.BuiltIn.ShaderGraph, BuiltInUnlitGUI, UnityEditor.Rendering.BuiltIn.ShaderGraph + +### Community 318 - "Community 318" +Cohesion: 0.2 +Nodes (2): ExtensibleFuzzyOptionTree, Unity.VisualScripting + +### Community 319 - "Community 319" +Cohesion: 0.2 +Nodes (7): BoltCoreManifest, Unity.VisualScripting, BoltFlowManifest, Unity.VisualScripting, BoltStateManifest, Unity.VisualScripting, PluginManifest + +### Community 320 - "Community 320" +Cohesion: 0.2 +Nodes (5): IAboutable, PluginManifest, Unity.VisualScripting, Product, Unity.VisualScripting + +### Community 321 - "Community 321" +Cohesion: 0.29 +Nodes (3): GraphGroupEditor, Styles, Unity.VisualScripting + +### Community 322 - "Community 322" +Cohesion: 0.2 +Nodes (2): IUnitDescriptor, Unity.VisualScripting + +### Community 323 - "Community 323" +Cohesion: 0.2 +Nodes (7): GraphElementAnalysis, StateAnalysis, Unity.VisualScripting, StateTransitionAnalysis, Unity.VisualScripting, UnitAnalysis, Unity.VisualScripting + +### Community 324 - "Community 324" +Cohesion: 0.2 +Nodes (7): GraphElementDescription, StateDescription, Unity.VisualScripting, StateTransitionDescription, Unity.VisualScripting, UnitDescription, Unity.VisualScripting + +### Community 325 - "Community 325" +Cohesion: 0.2 +Nodes (7): BoltCoreConfiguration, Unity.VisualScripting, BoltFlowConfiguration, Unity.VisualScripting, BoltStateConfiguration, Unity.VisualScripting, PluginConfiguration + +### Community 326 - "Community 326" +Cohesion: 0.2 +Nodes (7): ControlOutputWidget, Unity.VisualScripting, InvalidOutputWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, ValueOutputWidget + +### Community 327 - "Community 327" +Cohesion: 0.24 +Nodes (2): ApplicationVariables, Unity.VisualScripting + +### Community 328 - "Community 328" +Cohesion: 0.2 +Nodes (5): Macro, ScriptGraphAsset, Unity.VisualScripting, StateGraphAsset, Unity.VisualScripting + +### Community 329 - "Community 329" +Cohesion: 0.2 +Nodes (7): CollisionEventUnit, OnCollisionEnter, Unity.VisualScripting, OnCollisionExit, Unity.VisualScripting, OnCollisionStay, Unity.VisualScripting + +### Community 330 - "Community 330" +Cohesion: 0.2 +Nodes (7): OnTriggerEnter, Unity.VisualScripting, OnTriggerExit, Unity.VisualScripting, OnTriggerStay, Unity.VisualScripting, TriggerEventUnit + +### Community 331 - "Community 331" +Cohesion: 0.2 +Nodes (7): CollisionEvent2DUnit, OnCollisionEnter2D, Unity.VisualScripting, OnCollisionExit2D, Unity.VisualScripting, OnCollisionStay2D, Unity.VisualScripting + +### Community 332 - "Community 332" +Cohesion: 0.2 +Nodes (7): OnTriggerEnter2D, Unity.VisualScripting, OnTriggerExit2D, Unity.VisualScripting, OnTriggerStay2D, Unity.VisualScripting, TriggerEvent2DUnit + +### Community 333 - "Community 333" +Cohesion: 0.28 +Nodes (7): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterState, OnValidate(), StateMachine, IOwnedState, StateBehaviour + +### Community 334 - "Community 334" +Cohesion: 0.22 +Nodes (2): GUIStyleUtils, ParadoxNotion + +### Community 335 - "Community 335" +Cohesion: 0.39 +Nodes (7): Demo_Angle, Diff(), IsBetween(), Lerp(), Normalize(), SameSignAngle(), SetValue() + +### Community 336 - "Community 336" +Cohesion: 0.22 +Nodes (2): IPlayerLogic, Logic + +### Community 337 - "Community 337" +Cohesion: 0.22 +Nodes (5): ISkinningSerializer, SkinningCopyData, SkinningCopySpriteData, SpriteBoneCopyData, UnityEditor.U2D.Animation + +### Community 338 - "Community 338" +Cohesion: 0.22 +Nodes (2): IUndo, UnityEditor.U2D.Animation + +### Community 339 - "Community 339" +Cohesion: 0.28 +Nodes (4): DrawBatchDataKey, IShapeEditorFactory, ShapeEditorFactory, UnityEditor.U2D.Sprites + +### Community 340 - "Community 340" +Cohesion: 0.33 +Nodes (3): ISerializedCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineSerializedCamera + +### Community 341 - "Community 341" +Cohesion: 0.22 +Nodes (7): GenericShaderGraphMaterialGUI, ShaderGraphLitGUI, ShaderGraphUnlitGUI, UnityEditor.Rendering.Universal, VFXGenericShaderGraphMaterialGUI, VFXShaderGraphLitGUI, VFXShaderGraphUnlitGUI + +### Community 342 - "Community 342" +Cohesion: 0.22 +Nodes (6): CoreRPHelpURLAttribute, Documentation, UnityEngine.Rendering.ShaderGraph, UnityEngine.Rendering.Universal, URPHelpURLAttribute, DocumentationInfo + +### Community 343 - "Community 343" +Cohesion: 0.25 +Nodes (3): DecalProjector, UnityEngine.Rendering.Universal, UpdateDecalVisibility() + +### Community 344 - "Community 344" +Cohesion: 0.22 +Nodes (8): BuildContent, BundleBuildContent, CustomAssets, UnityEditor.Build.Pipeline, IBuildContent, IBundleBuildContent, ICustomAssets, TestBundleBuildContent + +### Community 345 - "Community 345" +Cohesion: 0.25 +Nodes (4): CommandLineOptionSet, UnityEditor.TestRunner.CommandLineParser, ICommandLineOption, UnityEditor.TestRunner.CommandLineParser + +### Community 346 - "Community 346" +Cohesion: 0.22 +Nodes (2): ITestRunnerApiMapper, UnityEditor.TestTools.TestRunner.UnityTestProtocol + +### Community 347 - "Community 347" +Cohesion: 0.22 +Nodes (5): EditmodeWorkItemFactory, UnityEditor.TestTools.TestRunner, PlaymodeWorkItemFactory, UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory + +### Community 348 - "Community 348" +Cohesion: 0.22 +Nodes (2): TimelineNavigator, UnityEditor.Timeline + +### Community 349 - "Community 349" +Cohesion: 0.22 +Nodes (7): AnnotationMarker, Timeline.Samples, INotification, INotificationOptionProvider, Marker, SignalEmitter, UnityEngine.Timeline + +### Community 350 - "Community 350" Cohesion: 0.22 Nodes (3): GraphContextExtension, Unity.VisualScripting, IGraphContextExtension -### Community 300 - "Community 300" +### Community 351 - "Community 351" Cohesion: 0.25 Nodes (5): AccessorInfoStubWriter, Unity.VisualScripting, MemberInfoStubWriter, MethodBaseStubWriter, Unity.VisualScripting -### Community 301 - "Community 301" +### Community 352 - "Community 352" Cohesion: 0.22 Nodes (5): FlowGraphContext, Unity.VisualScripting, GraphContext, StateGraphContext, Unity.VisualScripting -### Community 302 - "Community 302" +### Community 353 - "Community 353" Cohesion: 0.22 Nodes (5): AnyStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, Unity.VisualScripting, StateDescriptor -### Community 303 - "Community 303" +### Community 354 - "Community 354" Cohesion: 0.22 Nodes (3): Cloner, Unity.VisualScripting, ICloner -### Community 304 - "Community 304" +### Community 355 - "Community 355" Cohesion: 0.22 Nodes (3): INesterUnit, NesterUnit, Unity.VisualScripting -### Community 305 - "Community 305" +### Community 356 - "Community 356" Cohesion: 0.22 Nodes (7): ControlPortDefinition, Unity.VisualScripting, IUnitControlPortDefinition, IUnitValuePortDefinition, UnitPortDefinition, Unity.VisualScripting, ValuePortDefinition -### Community 306 - "Community 306" +### Community 357 - "Community 357" +Cohesion: 0.22 +Nodes (3): INesterState, NesterState, Unity.VisualScripting + +### Community 358 - "Community 358" +Cohesion: 0.32 +Nodes (2): GCloud.UQM, UQMLog + +### Community 359 - "Community 359" +Cohesion: 0.25 +Nodes (3): Animancer.Editor, ObjectReference, Serialization + +### Community 360 - "Community 360" Cohesion: 0.29 Nodes (2): ParadoxNotion, WeakReferenceList -### Community 307 - "Community 307" +### Community 361 - "Community 361" Cohesion: 0.29 Nodes (3): INodeReference, NodeCanvas.Framework, NodeReference -### Community 308 - "Community 308" -Cohesion: 0.25 -Nodes (2): Logic.Skill, PowerUpSkill - -### Community 309 - "Community 309" +### Community 362 - "Community 362" Cohesion: 0.29 Nodes (5): IFixedSizeMemoryPackable, IMemoryPackable, IMemoryPackFormatterRegister, MemoryPack, RegisterFormatter() -### Community 310 - "Community 310" +### Community 363 - "Community 363" Cohesion: 0.29 Nodes (3): IMemoryPackFormatter, MemoryPack, MemoryPackFormatter -### Community 311 - "Community 311" +### Community 364 - "Community 364" +Cohesion: 0.25 +Nodes (2): INugetPackageSource, NugetForUnity.PackageSource + +### Community 365 - "Community 365" +Cohesion: 0.25 +Nodes (2): IWebRequester, YooAsset + +### Community 366 - "Community 366" Cohesion: 0.25 Nodes (2): IBundleQuery, YooAsset -### Community 312 - "Community 312" +### Community 367 - "Community 367" Cohesion: 0.25 Nodes (4): ICharacterDataProvider, ICharacterOrder, IMainSkeletonDataProvider, UnityEditor.U2D.Animation -### Community 313 - "Community 313" +### Community 368 - "Community 368" Cohesion: 0.25 Nodes (4): ISelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path -### Community 314 - "Community 314" +### Community 369 - "Community 369" Cohesion: 0.25 Nodes (3): ITriangulator, Triangulator, UnityEditor.U2D.Animation -### Community 315 - "Community 315" +### Community 370 - "Community 370" Cohesion: 0.25 Nodes (4): ClickAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework, HoveredControlAction -### Community 316 - "Community 316" +### Community 371 - "Community 371" Cohesion: 0.29 Nodes (3): AssetDatabaseSystem, IAssetDatabase, UnityEditor.U2D.Sprites -### Community 317 - "Community 317" +### Community 372 - "Community 372" +Cohesion: 0.25 +Nodes (1): SpriteEditorModuleBase + +### Community 373 - "Community 373" +Cohesion: 0.25 +Nodes (4): GridSelectionToolEditor, UnityEditor.Tilemaps, ICreateHorizontalToolbar, ICreateVerticalToolbar + +### Community 374 - "Community 374" +Cohesion: 0.25 +Nodes (1): IAssetMenuOperations + +### Community 375 - "Community 375" Cohesion: 0.39 Nodes (2): CooldownWindowDelayer, Unity.PlasticSCM.Editor.UI -### Community 318 - "Community 318" +### Community 376 - "Community 376" Cohesion: 0.25 Nodes (2): IIncomingChangesTab, Unity.PlasticSCM.Editor.Views.IncomingChanges -### Community 319 - "Community 319" +### Community 377 - "Community 377" Cohesion: 0.25 Nodes (3): NativeContainderTests_ValidateTypes_JobDebugger, NativeContainerTests_ValidateTypes, NativeContainerTests_ValidateTypesFixture -### Community 320 - "Community 320" +### Community 378 - "Community 378" Cohesion: 0.25 Nodes (2): IFileIO, Packages.Rider.Editor.ProjectGeneration -### Community 321 - "Community 321" -Cohesion: 0.25 -Nodes (2): ListBufferExtensions, UnityEngine.Rendering +### Community 379 - "Community 379" +Cohesion: 0.36 +Nodes (3): Microsoft.Unity.VisualStudio.Editor.Messaging, State, TcpClient -### Community 322 - "Community 322" -Cohesion: 0.29 -Nodes (3): IVolumeDebugSettings, IVolumeDebugSettings2, UnityEngine.Rendering - -### Community 323 - "Community 323" -Cohesion: 0.39 -Nodes (6): SavedBool, SavedFloat, SavedInt, SavedParameter, SavedString, UnityEditor.Rendering.Universal - -### Community 324 - "Community 324" -Cohesion: 0.25 -Nodes (3): RenderPipelineGlobalSettingsProvider, UnityEditor.Rendering.Universal, UniversalGlobalSettingsPanelProvider - -### Community 325 - "Community 325" -Cohesion: 0.29 -Nodes (3): Equals(), Identifier(), UnityEngine.Rendering.Universal - -### Community 326 - "Community 326" -Cohesion: 0.25 -Nodes (7): BuildResults, BundleBuildResults, SerializedFileMetaData, UnityEditor.Build.Pipeline, IBuildResults, IBundleBuildResults, TestBuildResultsBase - -### Community 327 - "Community 327" -Cohesion: 0.25 -Nodes (3): IMaySupportVFX, MaySupportVFXExtensions, UnityEditor.ShaderGraph - -### Community 328 - "Community 328" -Cohesion: 0.25 -Nodes (2): ITestAdaptorFactory, UnityEditor.TestTools.TestRunner.Api - -### Community 329 - "Community 329" +### Community 380 - "Community 380" Cohesion: 0.25 Nodes (5): ITestResultAdaptor, Microsoft.Unity.VisualStudio.Editor.Testing, TestResultAdaptor, TestResultAdaptorContainer, UnityEditor.TestTools.TestRunner.Api -### Community 330 - "Community 330" -Cohesion: 0.25 -Nodes (2): IPlatformSetup, UnityEditor.TestTools.TestRunner - -### Community 331 - "Community 331" -Cohesion: 0.25 -Nodes (2): StadiaPlatformSetup, UnityEditor.TestTools.TestRunner - -### Community 332 - "Community 332" -Cohesion: 0.25 -Nodes (2): SwitchPlatformSetup, UnityEditor.TestTools.TestRunner - -### Community 333 - "Community 333" -Cohesion: 0.25 -Nodes (3): GetHashCode(), MarkerEditor, UnityEditor.Timeline - -### Community 334 - "Community 334" -Cohesion: 0.25 -Nodes (3): ITrimItemDrawer, ITrimItemMode, UnityEditor.Timeline - -### Community 335 - "Community 335" -Cohesion: 0.29 -Nodes (3): SignalEventDrawer, UnityEditor.Timeline.Signals, UnityEventDrawer - -### Community 336 - "Community 336" -Cohesion: 0.25 -Nodes (5): AnimationTrackKeyDataSource, UnityEditor.Timeline, BasePropertyKeyDataSource, TrackPropertyCurvesDataSource, UnityEditor.Timeline - -### Community 337 - "Community 337" -Cohesion: 0.32 -Nodes (3): AnimationPlayableAsset, AnimationPlayableAssetUpgrade, UnityEngine.Timeline - -### Community 338 - "Community 338" -Cohesion: 0.36 -Nodes (3): AnimationTrack, AnimationTrackUpgrade, UnityEngine.Timeline - -### Community 339 - "Community 339" -Cohesion: 0.25 -Nodes (2): IDragAndDropHandler, Unity.VisualScripting - -### Community 340 - "Community 340" -Cohesion: 0.25 -Nodes (5): NesterUnitDescriptor, StateUnitDescriptor, Unity.VisualScripting, SuperUnitDescriptor, Unity.VisualScripting - -### Community 341 - "Community 341" -Cohesion: 0.25 -Nodes (2): ICloner, Unity.VisualScripting - -### Community 342 - "Community 342" -Cohesion: 0.29 -Nodes (3): CFriendsList(), CFriendsListMenu, Show() - -### Community 343 - "Community 343" -Cohesion: 0.33 -Nodes (4): IHasKey, IPolymorphic, Animancer, ITransition - -### Community 344 - "Community 344" -Cohesion: 0.33 -Nodes (4): MixerParameterTween, Animancer, MixerParameterTweenFloat, MixerParameterTweenVector2 - -### Community 345 - "Community 345" -Cohesion: 0.33 -Nodes (3): AnimancerTransitionAssetBase, Animancer, AnimancerTransitionAsset - -### Community 346 - "Community 346" -Cohesion: 0.29 -Nodes (2): Colors, ParadoxNotion.Design - -### Community 347 - "Community 347" -Cohesion: 0.29 -Nodes (2): Logic.Skill, SuperHideSkill - -### Community 348 - "Community 348" -Cohesion: 0.33 -Nodes (4): INugetPackage, NugetForUnity.Models, INugetPackageIdentifier, INugetPackagePluginAPI - -### Community 349 - "Community 349" -Cohesion: 0.48 -Nodes (6): EditorSimulateModeParameters, HostPlayModeParameters, InitializeParameters, OfflinePlayModeParameters, WebPlayModeParameters, YooAsset - -### Community 350 - "Community 350" -Cohesion: 0.29 -Nodes (2): IStateNode, UniFramework.Machine - -### Community 351 - "Community 351" -Cohesion: 0.29 -Nodes (1): UniFramework.Utility - -### Community 352 - "Community 352" -Cohesion: 0.29 -Nodes (1): UniFramework.Utility - -### Community 353 - "Community 353" -Cohesion: 0.29 -Nodes (4): TextContent, UnityEditor.U2D.Animation, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD - -### Community 354 - "Community 354" -Cohesion: 0.29 -Nodes (2): IMeshPreviewBehaviour, UnityEditor.U2D.Animation - -### Community 355 - "Community 355" -Cohesion: 0.29 -Nodes (2): ITriangulator, UnityEditor.U2D.Animation - -### Community 356 - "Community 356" -Cohesion: 0.29 -Nodes (1): UnityEngine.U2D.Animation - -### Community 357 - "Community 357" -Cohesion: 0.29 -Nodes (4): PointRectSelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, RectSelector - -### Community 358 - "Community 358" -Cohesion: 0.33 -Nodes (3): DocumentLoadContext, PaintDotNet.Data.PhotoshopFileType, LoadContext - -### Community 359 - "Community 359" -Cohesion: 0.38 -Nodes (2): Unity.PlasticSCM.Editor, VCSPlugin - -### Community 360 - "Community 360" -Cohesion: 0.43 -Nodes (2): IsSolved, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer - -### Community 361 - "Community 361" -Cohesion: 0.29 -Nodes (2): IGenerator, Packages.Rider.Editor.ProjectGeneration - -### Community 362 - "Community 362" -Cohesion: 0.29 -Nodes (6): BuildDependencyData, ObjectDependencyData, UnityEditor.Build.Pipeline, IDependencyData, IObjectDependencyData, TestDependencyDataBase - -### Community 363 - "Community 363" -Cohesion: 0.29 -Nodes (4): LightmappingShaderProperties, LightmapTextureArrayProperty, UnityEditor.ShaderGraph.Internal, Texture2DArrayShaderProperty - -### Community 364 - "Community 364" -Cohesion: 0.29 -Nodes (3): PlatformExtensions, PragmaRenderers, UnityEditor.ShaderGraph - -### Community 365 - "Community 365" -Cohesion: 0.29 -Nodes (6): RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSOT, UnityEngine.Rendering - -### Community 366 - "Community 366" -Cohesion: 0.29 -Nodes (6): PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSOT, UnityEngine.Rendering - -### Community 367 - "Community 367" -Cohesion: 0.29 -Nodes (3): MyExercise_1, MyExercise_1s, MyMath - -### Community 368 - "Community 368" -Cohesion: 0.29 -Nodes (2): ICallbacks, UnityEditor.TestTools.TestRunner.Api - -### Community 369 - "Community 369" -Cohesion: 0.29 -Nodes (2): ITestRunnerApi, UnityEditor.TestTools.TestRunner.Api - -### Community 370 - "Community 370" -Cohesion: 0.29 -Nodes (2): AnalyticsTestCallback, UnityEditor.TestTools.TestRunner.Api.Analytics - -### Community 371 - "Community 371" -Cohesion: 0.29 -Nodes (5): AttributeFinderBase, PostbuildCleanupAttributeFinder, UnityEditor.TestTools.TestRunner, PrebuildSetupAttributeFinder, UnityEditor.TestTools.TestRunner - -### Community 372 - "Community 372" -Cohesion: 0.29 -Nodes (2): ITestJobDataHolder, UnityEditor.TestTools.TestRunner.TestRun - -### Community 373 - "Community 373" -Cohesion: 0.29 -Nodes (2): ITestJobRunner, UnityEditor.TestTools.TestRunner.TestRun - -### Community 374 - "Community 374" -Cohesion: 0.29 -Nodes (2): ITestRunCallback, UnityEngine.TestRunner - -### Community 375 - "Community 375" -Cohesion: 0.38 -Nodes (2): TMP_EditorCoroutine, TMPro.EditorUtilities - -### Community 376 - "Community 376" -Cohesion: 0.29 -Nodes (5): TMP_Character, TMPro, TMP_SpriteCharacter, TMPro, TMP_TextElement - -### Community 377 - "Community 377" -Cohesion: 0.29 -Nodes (2): RawImage, RawImageTestHook - -### Community 378 - "Community 378" -Cohesion: 0.29 -Nodes (5): Analysis, Unity.VisualScripting, IAnalysis, IGraphElementAnalysis, Unity.VisualScripting - -### Community 379 - "Community 379" -Cohesion: 0.29 -Nodes (5): LudiqBehaviourEditor, Unity.VisualScripting, LudiqRootObjectEditor, LudiqScriptableObjectEditor, Unity.VisualScripting - -### Community 380 - "Community 380" -Cohesion: 0.29 -Nodes (5): EditorPrefAttribute, Unity.VisualScripting, PluginConfigurationItemAttribute, ProjectSettingAttribute, Unity.VisualScripting - ### Community 381 - "Community 381" -Cohesion: 0.29 -Nodes (5): EventMachineEditor, Unity.VisualScripting, FlowMachineEditor, Unity.VisualScripting, MachineEditor +Cohesion: 0.25 +Nodes (2): ListBufferExtensions, UnityEngine.Rendering ### Community 382 - "Community 382" Cohesion: 0.29 -Nodes (5): FlowGraphDescriptor, Unity.VisualScripting, GraphDescriptor, StateGraphDescriptor, Unity.VisualScripting +Nodes (3): IVolumeDebugSettings, IVolumeDebugSettings2, UnityEngine.Rendering ### Community 383 - "Community 383" -Cohesion: 0.29 -Nodes (5): FlowMachineDescriptor, Unity.VisualScripting, MachineDescriptor, StateMachineDescriptor, Unity.VisualScripting +Cohesion: 0.39 +Nodes (6): SavedBool, SavedFloat, SavedInt, SavedParameter, SavedString, UnityEditor.Rendering.Universal ### Community 384 - "Community 384" -Cohesion: 0.29 -Nodes (5): FlowMacroDescriptor, Unity.VisualScripting, MacroDescriptor, StateMacroDescriptor, Unity.VisualScripting +Cohesion: 0.25 +Nodes (3): RenderPipelineGlobalSettingsProvider, UnityEditor.Rendering.Universal, UniversalGlobalSettingsPanelProvider ### Community 385 - "Community 385" Cohesion: 0.29 -Nodes (5): NesterUnitEditor, StateUnitEditor, Unity.VisualScripting, SuperUnitEditor, Unity.VisualScripting +Nodes (3): Equals(), Identifier(), UnityEngine.Rendering.Universal ### Community 386 - "Community 386" -Cohesion: 0.29 -Nodes (5): BoltCorePaths, Unity.VisualScripting, BoltFlowPaths, Unity.VisualScripting, PluginPaths +Cohesion: 0.25 +Nodes (7): BuildResults, BundleBuildResults, SerializedFileMetaData, UnityEditor.Build.Pipeline, IBuildResults, IBundleBuildResults, TestBuildResultsBase ### Community 387 - "Community 387" -Cohesion: 0.29 -Nodes (5): UnitInputPortWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, UnitPortWidget +Cohesion: 0.25 +Nodes (3): IMaySupportVFX, MaySupportVFXExtensions, UnityEditor.ShaderGraph ### Community 388 - "Community 388" -Cohesion: 0.29 -Nodes (5): FlowStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, SuperStateDescriptor, Unity.VisualScripting +Cohesion: 0.25 +Nodes (2): ITestAdaptorFactory, UnityEditor.TestTools.TestRunner.Api ### Community 389 - "Community 389" -Cohesion: 0.29 -Nodes (5): FlowStateEditor, Unity.VisualScripting, NesterStateEditor, SuperStateEditor, Unity.VisualScripting +Cohesion: 0.25 +Nodes (2): IPlatformSetup, UnityEditor.TestTools.TestRunner ### Community 390 - "Community 390" -Cohesion: 0.29 -Nodes (2): INotifiedCollectionItem, Unity.VisualScripting +Cohesion: 0.25 +Nodes (2): StadiaPlatformSetup, UnityEditor.TestTools.TestRunner ### Community 391 - "Community 391" -Cohesion: 0.29 -Nodes (2): IProxyableNotifyCollectionChanged, Unity.VisualScripting +Cohesion: 0.25 +Nodes (2): SwitchPlatformSetup, UnityEditor.TestTools.TestRunner ### Community 392 - "Community 392" -Cohesion: 0.29 -Nodes (3): VariantCollection, Unity.VisualScripting, VariantKeyedCollection +Cohesion: 0.25 +Nodes (2): ILogScope, UnityEngine.TestTools.Logging ### Community 393 - "Community 393" -Cohesion: 0.29 -Nodes (5): InvalidCastException, InvalidConversionException, Unity.VisualScripting, OperatorException, Unity.VisualScripting +Cohesion: 0.25 +Nodes (3): GetHashCode(), MarkerEditor, UnityEditor.Timeline ### Community 394 - "Community 394" -Cohesion: 0.29 -Nodes (5): AmbiguousOperatorException, Unity.VisualScripting, InvalidOperatorException, Unity.VisualScripting, OperatorException +Cohesion: 0.25 +Nodes (3): ITrimItemDrawer, ITrimItemMode, UnityEditor.Timeline ### Community 395 - "Community 395" Cohesion: 0.29 -Nodes (5): InstanceActionInvokerBase, Unity.VisualScripting, InstanceFunctionInvokerBase, Unity.VisualScripting, InstanceInvokerBase +Nodes (3): SignalEventDrawer, UnityEditor.Timeline.Signals, UnityEventDrawer ### Community 396 - "Community 396" -Cohesion: 0.29 -Nodes (5): StaticActionInvokerBase, Unity.VisualScripting, StaticFunctionInvokerBase, Unity.VisualScripting, StaticInvokerBase +Cohesion: 0.25 +Nodes (5): AnimationTrackKeyDataSource, UnityEditor.Timeline, BasePropertyKeyDataSource, TrackPropertyCurvesDataSource, UnityEditor.Timeline ### Community 397 - "Community 397" -Cohesion: 0.33 -Nodes (3): HashUtility, Unity.VisualScripting, UnityEngine.Timeline +Cohesion: 0.32 +Nodes (3): AnimationPlayableAsset, AnimationPlayableAssetUpgrade, UnityEngine.Timeline ### Community 398 - "Community 398" -Cohesion: 0.29 -Nodes (5): IGraphData, IGraphDataWithVariables, Unity.VisualScripting, IGraphEventListenerData, Unity.VisualScripting +Cohesion: 0.36 +Nodes (3): AnimationTrack, AnimationTrackUpgrade, UnityEngine.Timeline ### Community 399 - "Community 399" -Cohesion: 0.29 -Nodes (5): GetGraphs, GetScriptGraphs, Unity.VisualScripting, GetStateGraphs, Unity.VisualScripting +Cohesion: 0.25 +Nodes (2): DragAndDropUtility, Unity.VisualScripting ### Community 400 - "Community 400" -Cohesion: 0.29 -Nodes (5): HasGraph, HasScriptGraph, Unity.VisualScripting, HasStateGraph, Unity.VisualScripting +Cohesion: 0.25 +Nodes (2): IDragAndDropHandler, Unity.VisualScripting ### Community 401 - "Community 401" -Cohesion: 0.29 -Nodes (5): SetGraph, SetScriptGraph, Unity.VisualScripting, SetStateGraph, Unity.VisualScripting +Cohesion: 0.25 +Nodes (5): GetMemberOption, Unity.VisualScripting, MemberUnitOption, SetMemberOption, Unity.VisualScripting ### Community 402 - "Community 402" -Cohesion: 0.29 -Nodes (7): Explore Built-in Subagent (Haiku, Read-only), General-purpose Built-in Subagent, Plan Built-in Subagent (Read-only), Subagent Configuration (YAML Frontmatter), Claude Code Subagents Overview, Subagent Preserve Context Rationale, Subagent Scope and Priority +Cohesion: 0.25 +Nodes (5): NesterUnitDescriptor, StateUnitDescriptor, Unity.VisualScripting, SuperUnitDescriptor, Unity.VisualScripting ### Community 403 - "Community 403" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.25 +Nodes (2): ICloner, Unity.VisualScripting ### Community 404 - "Community 404" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (3): CFriendsList(), CFriendsListMenu, Show() ### Community 405 - "Community 405" Cohesion: 0.33 -Nodes (1): Steamworks +Nodes (4): IHasKey, IPolymorphic, Animancer, ITransition ### Community 406 - "Community 406" Cohesion: 0.33 -Nodes (1): Steamworks +Nodes (4): MixerParameterTween, Animancer, MixerParameterTweenFloat, MixerParameterTweenVector2 ### Community 407 - "Community 407" Cohesion: 0.33 -Nodes (1): Steamworks +Nodes (3): AnimancerTransitionAssetBase, Animancer, AnimancerTransitionAsset ### Community 408 - "Community 408" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): Colors, ParadoxNotion.Design ### Community 409 - "Community 409" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (3): ISerializationCollectable, ISerializationCollector, ParadoxNotion.Serialization.FullSerializer ### Community 410 - "Community 410" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (3): NodeCanvas.Framework.Internal, ReflectedAction, ReflectedActionWrapper ### Community 411 - "Community 411" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (3): NodeCanvas.Framework.Internal, ReflectedFunction, ReflectedFunctionWrapper ### Community 412 - "Community 412" Cohesion: 0.33 -Nodes (1): Steamworks +Nodes (4): INugetPackage, NugetForUnity.Models, INugetPackageIdentifier, INugetPackagePluginAPI ### Community 413 - "Community 413" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.48 +Nodes (6): EditorSimulateModeParameters, HostPlayModeParameters, InitializeParameters, OfflinePlayModeParameters, WebPlayModeParameters, YooAsset ### Community 414 - "Community 414" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): ILogger, YooAsset ### Community 415 - "Community 415" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): IStateNode, UniFramework.Machine ### Community 416 - "Community 416" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (1): UniFramework.Utility ### Community 417 - "Community 417" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (1): UniFramework.Utility ### Community 418 - "Community 418" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (4): TextContent, UnityEditor.U2D.Animation, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD ### Community 419 - "Community 419" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): IMeshPreviewBehaviour, UnityEditor.U2D.Animation ### Community 420 - "Community 420" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): ITriangulator, UnityEditor.U2D.Animation ### Community 421 - "Community 421" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (1): UnityEngine.U2D.Animation ### Community 422 - "Community 422" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (4): PointRectSelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, RectSelector ### Community 423 - "Community 423" Cohesion: 0.33 -Nodes (1): Steamworks +Nodes (4): SpriteMetaData, SpriteOutline, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD ### Community 424 - "Community 424" Cohesion: 0.33 -Nodes (1): Steamworks +Nodes (3): DocumentLoadContext, PaintDotNet.Data.PhotoshopFileType, LoadContext ### Community 425 - "Community 425" Cohesion: 0.33 -Nodes (1): Steamworks +Nodes (3): GUIUtilitySystem, IGUIUtility, UnityEditor.U2D.Sprites ### Community 426 - "Community 426" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): TilePaletteDragHandler, UnityEditor.Tilemaps ### Community 427 - "Community 427" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (3): BurstDisassembler, Unity.Burst.Editor, WasmAsmTokenKindProvider ### Community 428 - "Community 428" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (4): ManagedResolverFunction(), FromIntPtr(), IFunctionPointer, Unity.Burst ### Community 429 - "Community 429" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): CheckWorkspaceTreeNodeStatus, Codice ### Community 430 - "Community 430" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.38 +Nodes (2): Unity.PlasticSCM.Editor, VCSPlugin ### Community 431 - "Community 431" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.43 +Nodes (2): IsSolved, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer ### Community 432 - "Community 432" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): IGenerator, Packages.Rider.Editor.ProjectGeneration ### Community 433 - "Community 433" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (3): IApplyRevertPropertyContextMenuItemProvider, UnityEngine.Rendering, VolumeComponent ### Community 434 - "Community 434" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): BuiltInShaderGraphSaveContext, ShaderGraphMaterialsUpdater, UnityEditor.Rendering.BuiltIn, UnityEditor.Rendering.Universal, UniversalShaderGraphSaveContext ### Community 435 - "Community 435" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): RenderPipelineConverter, UnityEditor.Rendering.Universal ### Community 436 - "Community 436" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (6): BaseColorProperties, EmissiveColorProperties, SpecularColorProperties, StandardProperties, UnityEditor.VFX.URP, URPLitInputProperties ### Community 437 - "Community 437" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (6): BuildDependencyData, ObjectDependencyData, UnityEditor.Build.Pipeline, IDependencyData, IObjectDependencyData, TestDependencyDataBase ### Community 438 - "Community 438" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (6): BuildWriteData, BundleWriteData, UnityEditor.Build.Pipeline, IBundleWriteData, IWriteData, TestWriteDataBase ### Community 439 - "Community 439" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (4): LightmappingShaderProperties, LightmapTextureArrayProperty, UnityEditor.ShaderGraph.Internal, Texture2DArrayShaderProperty ### Community 440 - "Community 440" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (3): PlatformExtensions, PragmaRenderers, UnityEditor.ShaderGraph ### Community 441 - "Community 441" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (6): RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSOT, UnityEngine.Rendering ### Community 442 - "Community 442" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (6): PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSOT, UnityEngine.Rendering ### Community 443 - "Community 443" -Cohesion: 0.33 -Nodes (2): CrashSightCallback, CrashSightLogCallback +Cohesion: 0.29 +Nodes (3): MyExercise_1, MyExercise_1s, MyMath ### Community 444 - "Community 444" -Cohesion: 0.4 -Nodes (3): Animancer, AnimancerUtilities, ICopyable +Cohesion: 0.29 +Nodes (2): ICallbacks, UnityEditor.TestTools.TestRunner.Api ### Community 445 - "Community 445" -Cohesion: 0.4 -Nodes (3): IBlackboard, IGlobalBlackboard, NodeCanvas.Framework +Cohesion: 0.29 +Nodes (3): IgnoreTest, UnityEditor.TestTools.TestRunner.Api, UnityEngine.TestTools ### Community 446 - "Community 446" -Cohesion: 0.33 -Nodes (1): ViActiveValue +Cohesion: 0.29 +Nodes (2): ITestRunnerApi, UnityEditor.TestTools.TestRunner.Api ### Community 447 - "Community 447" -Cohesion: 0.33 -Nodes (5): CityInfo, MapRecordData, PlayerInfo, TH1_Logic.MatchConfig, UnitInfo +Cohesion: 0.29 +Nodes (2): AnalyticsTestCallback, UnityEditor.TestTools.TestRunner.Api.Analytics ### Community 448 - "Community 448" -Cohesion: 0.33 -Nodes (3): EditablePathUtility, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Cohesion: 0.29 +Nodes (5): AttributeFinderBase, PostbuildCleanupAttributeFinder, UnityEditor.TestTools.TestRunner, PrebuildSetupAttributeFinder, UnityEditor.TestTools.TestRunner ### Community 449 - "Community 449" -Cohesion: 0.33 -Nodes (3): ISnapping, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Cohesion: 0.29 +Nodes (2): ITestJobDataHolder, UnityEditor.TestTools.TestRunner.TestRun ### Community 450 - "Community 450" -Cohesion: 0.33 -Nodes (3): IUndoObject, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Cohesion: 0.29 +Nodes (2): ITestJobRunner, UnityEditor.TestTools.TestRunner.TestRun ### Community 451 - "Community 451" -Cohesion: 0.33 -Nodes (3): IShape, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Cohesion: 0.29 +Nodes (5): AllocatingGCMemoryConstraint, AllocatingGCMemoryResult, UnityEngine.TestTools.Constraints, Constraint, ConstraintResult ### Community 452 - "Community 452" -Cohesion: 0.47 -Nodes (2): ImageDataFactory, PhotoshopFile.Compression +Cohesion: 0.29 +Nodes (3): ITestListener, TestListenerWrapper, UnityEngine.TestTools.TestRunner ### Community 453 - "Community 453" -Cohesion: 0.33 -Nodes (2): Hint, Unity.Burst.CompilerServices +Cohesion: 0.29 +Nodes (2): ITestRunCallback, UnityEngine.TestRunner ### Community 454 - "Community 454" -Cohesion: 0.33 -Nodes (3): Popcnt, Unity.Burst.Intrinsics, X86 +Cohesion: 0.38 +Nodes (2): TMP_EditorCoroutine, TMPro.EditorUtilities ### Community 455 - "Community 455" -Cohesion: 0.33 -Nodes (2): ApplicationDataPath, Unity.PlasticSCM.Editor +Cohesion: 0.29 +Nodes (5): TMP_Character, TMPro, TMP_SpriteCharacter, TMPro, TMP_TextElement ### Community 456 - "Community 456" -Cohesion: 0.4 -Nodes (2): QueryVisualElementsExtensions, Unity.PlasticSCM.Editor +Cohesion: 0.33 +Nodes (3): HashUtility, Unity.VisualScripting, UnityEngine.Timeline ### Community 457 - "Community 457" -Cohesion: 0.33 -Nodes (3): CheckinProgress, Unity.PlasticSCM.Editor.Developer, Unity.PlasticSCM.Editor.Gluon +Cohesion: 0.29 +Nodes (2): RawImage, RawImageTestHook ### Community 458 - "Community 458" -Cohesion: 0.33 -Nodes (5): Gluon, Installer, Plastic, ToolConstants, Unity.PlasticSCM.Editor.Tool +Cohesion: 0.29 +Nodes (5): Analysis, Unity.VisualScripting, IAnalysis, IGraphElementAnalysis, Unity.VisualScripting ### Community 459 - "Community 459" -Cohesion: 0.33 -Nodes (5): BranchesColumns, ChangesetsColumns, LocksColumns, Unity.PlasticSCM.Editor.UI, UnityConstants +Cohesion: 0.29 +Nodes (5): EventMachineEditor, Unity.VisualScripting, FlowMachineEditor, Unity.VisualScripting, MachineEditor ### Community 460 - "Community 460" -Cohesion: 0.33 -Nodes (4): CustomEditor, IRemoveAdditionalDataContextualMenu, UnityEditor.Rendering, VolumeComponentEditorAttribute +Cohesion: 0.29 +Nodes (2): IndividualPropertyDrawer, Unity.VisualScripting ### Community 461 - "Community 461" -Cohesion: 0.33 -Nodes (2): ISerializedCamera, UnityEditor.Rendering +Cohesion: 0.29 +Nodes (5): LudiqBehaviourEditor, Unity.VisualScripting, LudiqRootObjectEditor, LudiqScriptableObjectEditor, Unity.VisualScripting ### Community 462 - "Community 462" -Cohesion: 0.47 -Nodes (3): DebugDisplaySettingsPanel, UnityEngine.Rendering, IDebugDisplaySettingsPanelDisposable +Cohesion: 0.29 +Nodes (5): BoltCorePaths, Unity.VisualScripting, BoltFlowPaths, Unity.VisualScripting, PluginPaths ### Community 463 - "Community 463" -Cohesion: 0.33 -Nodes (5): GenerateHLSL, HLSLArray, PackingAttribute, SurfaceDataAttributes, UnityEngine.Rendering +Cohesion: 0.29 +Nodes (5): EditorPrefAttribute, Unity.VisualScripting, PluginConfigurationItemAttribute, ProjectSettingAttribute, Unity.VisualScripting ### Community 464 - "Community 464" -Cohesion: 0.53 -Nodes (4): Append(), GetFuncHashCode(), GetHashCode(), UnityEngine.Rendering +Cohesion: 0.29 +Nodes (5): FlowGraphDescriptor, Unity.VisualScripting, GraphDescriptor, StateGraphDescriptor, Unity.VisualScripting ### Community 465 - "Community 465" -Cohesion: 0.33 -Nodes (2): TileLayoutUtils, UnityEngine.Rendering +Cohesion: 0.29 +Nodes (5): NesterUnitEditor, StateUnitEditor, Unity.VisualScripting, SuperUnitEditor, Unity.VisualScripting ### Community 466 - "Community 466" -Cohesion: 0.33 -Nodes (4): DefaultLightingExplorerExtension, LightExplorer, Styles, UnityEditor +Cohesion: 0.29 +Nodes (5): UnitInputPortWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, UnitPortWidget ### Community 467 - "Community 467" -Cohesion: 0.47 -Nodes (1): AutoLoadPipelineAsset +Cohesion: 0.29 +Nodes (5): FlowMachineDescriptor, Unity.VisualScripting, MachineDescriptor, StateMachineDescriptor, Unity.VisualScripting ### Community 468 - "Community 468" -Cohesion: 0.47 -Nodes (2): ShaderGraphShortcuts, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): FlowMacroDescriptor, Unity.VisualScripting, MacroDescriptor, StateMacroDescriptor, Unity.VisualScripting ### Community 469 - "Community 469" -Cohesion: 0.33 -Nodes (3): IMayRequireBitangent, MayRequireBitangentExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): FlowStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, SuperStateDescriptor, Unity.VisualScripting ### Community 470 - "Community 470" -Cohesion: 0.33 -Nodes (3): IMayRequireCameraOpaqueTexture, MayRequireCameraOpaqueTextureExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): FlowStateEditor, Unity.VisualScripting, NesterStateEditor, SuperStateEditor, Unity.VisualScripting ### Community 471 - "Community 471" -Cohesion: 0.33 -Nodes (3): IMayRequireDepthTexture, MayRequireDepthTextureExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): GraphElementEditor, StateEditor, Unity.VisualScripting, StateTransitionEditor, Unity.VisualScripting ### Community 472 - "Community 472" -Cohesion: 0.33 -Nodes (3): IMayRequireFaceSign, IMayRequireFaceSignExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (2): INotifiedCollectionItem, Unity.VisualScripting ### Community 473 - "Community 473" -Cohesion: 0.33 -Nodes (3): IMayRequireMeshUV, MayRequireMeshUVExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (2): IProxyableNotifyCollectionChanged, Unity.VisualScripting ### Community 474 - "Community 474" -Cohesion: 0.33 -Nodes (3): IMayRequireNormal, MayRequireNormalExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (3): VariantCollection, Unity.VisualScripting, VariantKeyedCollection ### Community 475 - "Community 475" -Cohesion: 0.33 -Nodes (3): IMayRequirePosition, MayRequirePositionExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): InvalidCastException, InvalidConversionException, Unity.VisualScripting, OperatorException, Unity.VisualScripting ### Community 476 - "Community 476" -Cohesion: 0.33 -Nodes (3): IMayRequirePositionPredisplacement, MayRequirePositionPredisplacementExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): IGraphData, IGraphDataWithVariables, Unity.VisualScripting, IGraphEventListenerData, Unity.VisualScripting ### Community 477 - "Community 477" -Cohesion: 0.33 -Nodes (3): IMayRequireTangent, MayRequireTangentExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): AmbiguousOperatorException, Unity.VisualScripting, InvalidOperatorException, Unity.VisualScripting, OperatorException ### Community 478 - "Community 478" -Cohesion: 0.33 -Nodes (3): IMayRequireTime, MayRequireTimeExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): InstanceActionInvokerBase, Unity.VisualScripting, InstanceFunctionInvokerBase, Unity.VisualScripting, InstanceInvokerBase ### Community 479 - "Community 479" -Cohesion: 0.33 -Nodes (3): IMayRequireVertexColor, MayRequireVertexColorExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): StaticActionInvokerBase, Unity.VisualScripting, StaticFunctionInvokerBase, Unity.VisualScripting, StaticInvokerBase ### Community 480 - "Community 480" -Cohesion: 0.33 -Nodes (3): IMayRequireVertexID, MayRequireVertexIDExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): SelectOnInteger, Unity.VisualScripting, SelectOnString, Unity.VisualScripting, SelectUnit ### Community 481 - "Community 481" -Cohesion: 0.33 -Nodes (3): IMayRequireVertexSkinning, MayRequireVertexSkinningExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): SwitchOnInteger, Unity.VisualScripting, SwitchOnString, Unity.VisualScripting, SwitchUnit ### Community 482 - "Community 482" -Cohesion: 0.33 -Nodes (3): IMayRequireViewDirection, MayRequireViewDirectionExtensions, UnityEditor.ShaderGraph +Cohesion: 0.29 +Nodes (5): GetGraphs, GetScriptGraphs, Unity.VisualScripting, GetStateGraphs, Unity.VisualScripting ### Community 483 - "Community 483" -Cohesion: 0.33 -Nodes (2): NodeExtensions, UnityEditor.Graphing +Cohesion: 0.29 +Nodes (5): HasGraph, HasScriptGraph, Unity.VisualScripting, HasStateGraph, Unity.VisualScripting ### Community 484 - "Community 484" -Cohesion: 0.33 -Nodes (1): UnityEditor.ShaderGraph.Serialization +Cohesion: 0.43 +Nodes (2): Round, Unity.VisualScripting ### Community 485 - "Community 485" -Cohesion: 0.4 -Nodes (5): AssetPipelineIgnore, IgnoreInV1, IgnoreInV2, UnityEditor.TestTools, AssetPipelineIgnoreAttribute +Cohesion: 0.29 +Nodes (5): SetGraph, SetScriptGraph, Unity.VisualScripting, SetStateGraph, Unity.VisualScripting ### Community 486 - "Community 486" -Cohesion: 0.33 -Nodes (3): EditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner, IEditorCompilationInterfaceProxy +Cohesion: 0.29 +Nodes (7): Explore Built-in Subagent (Haiku, Read-only), General-purpose Built-in Subagent, Plan Built-in Subagent (Read-only), Subagent Configuration (YAML Frontmatter), Claude Code Subagents Overview, Subagent Preserve Context Rationale, Subagent Scope and Priority ### Community 487 - "Community 487" Cohesion: 0.33 -Nodes (2): IUtpMessageReporter, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (1): Steamworks ### Community 488 - "Community 488" Cohesion: 0.33 -Nodes (3): ITestExecutionContext, UnityEngine.TestRunner.NUnitExtensions.Runner, UnityTestExecutionContext +Nodes (1): Steamworks ### Community 489 - "Community 489" -Cohesion: 0.4 -Nodes (3): TimelineClip, TimelineClipUpgrade, UnityEngine.Timeline +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 490 - "Community 490" Cohesion: 0.33 -Nodes (3): IInterval, RuntimeElement, UnityEngine.Timeline +Nodes (1): Steamworks ### Community 491 - "Community 491" -Cohesion: 0.4 -Nodes (3): AbstractEventData, BaseEventData, UnityEngine.EventSystems +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 492 - "Community 492" Cohesion: 0.33 -Nodes (3): IMeshModifier, IVertexModifier, UnityEngine.UI +Nodes (1): Steamworks ### Community 493 - "Community 493" Cohesion: 0.33 -Nodes (2): IFuzzyOption, Unity.VisualScripting +Nodes (1): Steamworks ### Community 494 - "Community 494" Cohesion: 0.33 -Nodes (3): NesterStateTransitionDescriptor, Unity.VisualScripting, StateTransitionDescriptor +Nodes (1): Steamworks ### Community 495 - "Community 495" Cohesion: 0.33 -Nodes (2): IGraphEventHandler, Unity.VisualScripting +Nodes (1): Steamworks ### Community 496 - "Community 496" Cohesion: 0.33 -Nodes (2): PlatformUtility, Unity.VisualScripting +Nodes (1): Steamworks ### Community 497 - "Community 497" Cohesion: 0.33 -Nodes (3): EqualityComparer, MemberInfoComparer, Unity.VisualScripting +Nodes (1): Steamworks ### Community 498 - "Community 498" Cohesion: 0.33 -Nodes (2): IOptimizedAccessor, Unity.VisualScripting +Nodes (1): Steamworks ### Community 499 - "Community 499" Cohesion: 0.33 -Nodes (0): +Nodes (1): Steamworks ### Community 500 - "Community 500" -Cohesion: 0.4 +Cohesion: 0.33 Nodes (1): Steamworks ### Community 501 - "Community 501" -Cohesion: 0.4 -Nodes (3): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterParameters +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 502 - "Community 502" -Cohesion: 0.4 -Nodes (4): Animancer, DocsURLs, Strings, Tooltips +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 503 - "Community 503" -Cohesion: 0.5 -Nodes (3): Animancer.FSM, CurrentToString(), ToString() +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 504 - "Community 504" -Cohesion: 0.5 -Nodes (3): Animancer.FSM, CurrentToString(), ToString() +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 505 - "Community 505" -Cohesion: 0.4 -Nodes (2): ISerializedReflectedInfo, ParadoxNotion.Serialization +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 506 - "Community 506" -Cohesion: 0.4 -Nodes (2): ITaskSystem, NodeCanvas.Framework +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 507 - "Community 507" -Cohesion: 0.6 -Nodes (2): ViTuple, ViTupleInterface +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 508 - "Community 508" -Cohesion: 0.4 -Nodes (1): ViAccumulateVersion +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 509 - "Community 509" -Cohesion: 0.4 -Nodes (3): BaseCondition, CountryStrategyCondition, NodeCanvas.Tasks.Actions +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 510 - "Community 510" -Cohesion: 0.4 -Nodes (2): ExcelConfig, ExcelConfigBase +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 511 - "Community 511" -Cohesion: 0.4 -Nodes (2): ISequencerTask, TH1_Presentation.Sequencer.Task +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 512 - "Community 512" -Cohesion: 0.4 -Nodes (2): IEscClosable, TH1_UI.Controller.Base +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 513 - "Community 513" -Cohesion: 0.4 -Nodes (2): IDecryptionServices, YooAsset +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 514 - "Community 514" -Cohesion: 0.4 -Nodes (2): IDeliveryLoadServices, YooAsset +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 515 - "Community 515" -Cohesion: 0.4 -Nodes (2): IRemoteServices, YooAsset +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 516 - "Community 516" -Cohesion: 0.4 -Nodes (1): Cysharp.Threading.Tasks +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 517 - "Community 517" -Cohesion: 0.4 -Nodes (3): CircleVertexSelector, UnityEditor.U2D.Animation, ICircleSelector +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 518 - "Community 518" -Cohesion: 0.4 -Nodes (2): ISpriteLibDataProvider, UnityEditor.U2D.Animation +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 519 - "Community 519" -Cohesion: 0.4 -Nodes (2): BaseUpgrader, UnityEditor.U2D.Animation.Upgrading +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 520 - "Community 520" -Cohesion: 0.4 -Nodes (3): IconUtility, UnityEngine.U2D.Animation, UnityEngine.U2D.IK +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 521 - "Community 521" -Cohesion: 0.4 -Nodes (2): Aliasing, Unity.Burst.CompilerServices +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 522 - "Community 522" -Cohesion: 0.4 -Nodes (2): Loop, Unity.Burst.CompilerServices +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 523 - "Community 523" -Cohesion: 0.4 -Nodes (4): Unity.Burst.Intrinsics, V128DebugView, V256DebugView, V64DebugView +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 524 - "Community 524" -Cohesion: 0.4 -Nodes (4): CameraUI, Environment, Styles, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 525 - "Community 525" -Cohesion: 0.4 -Nodes (4): CameraUI, Output, Styles, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 526 - "Community 526" -Cohesion: 0.4 -Nodes (4): CameraUI, PhysicalCamera, Styles, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 527 - "Community 527" -Cohesion: 0.4 -Nodes (4): CameraUI, Rendering, Styles, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (2): CrashSightCallback, CrashSightLogCallback ### Community 528 - "Community 528" Cohesion: 0.4 -Nodes (2): ISerializedLight, UnityEditor.Rendering +Nodes (3): Animancer, AnimancerUtilities, ICopyable ### Community 529 - "Community 529" Cohesion: 0.4 -Nodes (2): IEnvironmentDisplayer, Style +Nodes (3): IBlackboard, IGlobalBlackboard, NodeCanvas.Framework ### Community 530 - "Community 530" -Cohesion: 0.4 -Nodes (2): SerializedDataParameter, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (1): ViActiveValue ### Community 531 - "Community 531" -Cohesion: 0.4 -Nodes (2): CommandBufferPool, UnityEngine.Rendering +Cohesion: 0.33 +Nodes (4): DiplomacyChatInfo, DiplomacyStateInfo, FeelingStateInfo, FeelingStrategyInfo ### Community 532 - "Community 532" -Cohesion: 0.4 -Nodes (4): Environment, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Cohesion: 0.33 +Nodes (5): CityInfo, MapRecordData, PlayerInfo, TH1_Logic.MatchConfig, UnitInfo ### Community 533 - "Community 533" -Cohesion: 0.4 -Nodes (4): Output, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Cohesion: 0.33 +Nodes (3): SpriteCache, TH1Resource, UnityEditor.U2D.Animation ### Community 534 - "Community 534" -Cohesion: 0.4 -Nodes (4): Rendering, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Cohesion: 0.33 +Nodes (2): TH1_UI.View.Global, UIGlobalBugReportView ### Community 535 - "Community 535" -Cohesion: 0.4 -Nodes (2): ComponentUtility, UnityEngine.Rendering.Universal +Cohesion: 0.33 +Nodes (3): Cache, MemoryPack.Internal, TypeHelpers ### Community 536 - "Community 536" Cohesion: 0.4 -Nodes (2): IWriteOperation, UnityEditor.Build.Pipeline.Interfaces +Nodes (4): DisableGroup, EnableGroup, YooAsset.Editor, IActiveRule ### Community 537 - "Community 537" -Cohesion: 0.4 -Nodes (2): IHasCustomDeprecationMessage, UnityEditor.ShaderGraph +Cohesion: 0.33 +Nodes (3): Cysharp.Threading.Tasks.Internal, RuntimeHelpersAbstraction, WellKnownNoReferenceContainsType ### Community 538 - "Community 538" -Cohesion: 0.4 -Nodes (2): IInspectable, UnityEditor.ShaderGraph.Drawing +Cohesion: 0.33 +Nodes (3): ShortcutIds, ShortcutUtility, UnityEditor.U2D.Animation ### Community 539 - "Community 539" -Cohesion: 0.4 -Nodes (2): IPropertyDrawer, UnityEditor.ShaderGraph.Drawing +Cohesion: 0.33 +Nodes (3): EditablePathUtility, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 540 - "Community 540" -Cohesion: 0.4 -Nodes (2): StackPool, UnityEditor.Graphing +Cohesion: 0.33 +Nodes (3): ISnapping, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 541 - "Community 541" -Cohesion: 0.5 -Nodes (4): BlockFieldDescriptor, CustomSlotBlockFieldDescriptor, UnityEditor.ShaderGraph, FieldDescriptor +Cohesion: 0.33 +Nodes (3): IUndoObject, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 542 - "Community 542" -Cohesion: 0.4 -Nodes (1): UnityEditor.ShaderGraph.Serialization +Cohesion: 0.33 +Nodes (3): DefaultControl, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework ### Community 543 - "Community 543" -Cohesion: 0.4 -Nodes (2): AssertHelpers, UnityEditor.ShaderGraph +Cohesion: 0.33 +Nodes (3): IShape, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 544 - "Community 544" Cohesion: 0.4 -Nodes (2): ISettingsBuilder, UnityEditor.TestTools.TestRunner.CommandLineTest +Nodes (4): AnalyticFactory, Analytics, IAnalytics, UnityEditor.U2D.PSD ### Community 545 - "Community 545" -Cohesion: 0.4 -Nodes (3): AssemblyWrapper, EditorAssemblyWrapper, UnityEditor.TestTools.TestRunner +Cohesion: 0.47 +Nodes (2): ImageDataFactory, PhotoshopFile.Compression ### Community 546 - "Community 546" -Cohesion: 0.4 -Nodes (2): IEditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner +Cohesion: 0.33 +Nodes (2): TilePaletteContextMenuHandler, UnityEditor.Tilemaps ### Community 547 - "Community 547" -Cohesion: 0.4 -Nodes (2): ITestListCache, UnityEditor.TestTools.TestRunner +Cohesion: 0.33 +Nodes (2): Hint, Unity.Burst.CompilerServices ### Community 548 - "Community 548" -Cohesion: 0.4 -Nodes (3): IAsyncTestAssemblyBuilder, UnityEngine.TestTools.NUnitExtensions, ITestAssemblyBuilder +Cohesion: 0.33 +Nodes (3): Popcnt, Unity.Burst.Intrinsics, X86 ### Community 549 - "Community 549" -Cohesion: 0.4 -Nodes (3): TestMethodCommand, UnityEngine.TestTools, UnityTestMethodCommand +Cohesion: 0.33 +Nodes (2): SafeDebugReaderProvider, ISymbolReader ### Community 550 - "Community 550" -Cohesion: 0.4 -Nodes (2): IRemoteTestResultDataFactory, UnityEngine.TestRunner.TestLaunchers +Cohesion: 0.33 +Nodes (2): ApplicationDataPath, Unity.PlasticSCM.Editor ### Community 551 - "Community 551" Cohesion: 0.4 -Nodes (3): AssemblyLoadProxy, UnityEngine.TestTools.Utils, IAssemblyLoadProxy +Nodes (2): QueryVisualElementsExtensions, Unity.PlasticSCM.Editor ### Community 552 - "Community 552" Cohesion: 0.4 -Nodes (3): AssemblyWrapper, UnityEngine.TestTools.Utils, IAssemblyWrapper +Nodes (2): ProjectViewAssetSelection, Unity.PlasticSCM.Editor.AssetMenu ### Community 553 - "Community 553" -Cohesion: 0.4 -Nodes (2): TMP_ListPool, TMPro +Cohesion: 0.33 +Nodes (3): CheckinProgress, Unity.PlasticSCM.Editor.Developer, Unity.PlasticSCM.Editor.Gluon ### Community 554 - "Community 554" -Cohesion: 0.4 -Nodes (3): SpriteDataObject, TexturePacker_JsonArray, TMPro.SpriteAssetUtilities +Cohesion: 0.33 +Nodes (5): Gluon, Installer, Plastic, ToolConstants, Unity.PlasticSCM.Editor.Tool ### Community 555 - "Community 555" -Cohesion: 0.4 -Nodes (1): UnityEditor.Timeline +Cohesion: 0.33 +Nodes (2): EditorProgressBar, Unity.PlasticSCM.Editor.UI ### Community 556 - "Community 556" -Cohesion: 0.4 -Nodes (3): TimelineAssetEditionMode, UnityEditor.Timeline, TimelineInactiveMode +Cohesion: 0.33 +Nodes (5): BranchesColumns, ChangesetsColumns, LocksColumns, Unity.PlasticSCM.Editor.UI, UnityConstants ### Community 557 - "Community 557" -Cohesion: 0.4 -Nodes (3): TimelineAsset, TimelineAssetUpgrade, UnityEngine.Timeline +Cohesion: 0.33 +Nodes (4): CustomEditor, IRemoveAdditionalDataContextualMenu, UnityEditor.Rendering, VolumeComponentEditorAttribute ### Community 558 - "Community 558" -Cohesion: 0.4 -Nodes (2): IReorderableListDropTarget, Unity.VisualScripting.ReorderableList +Cohesion: 0.33 +Nodes (2): ISerializedCamera, UnityEditor.Rendering ### Community 559 - "Community 559" -Cohesion: 0.4 -Nodes (2): Plugin, Unity.VisualScripting +Cohesion: 0.47 +Nodes (3): DebugDisplaySettingsPanel, UnityEngine.Rendering, IDebugDisplaySettingsPanelDisposable ### Community 560 - "Community 560" -Cohesion: 0.4 -Nodes (2): EditorTypeUtility, Unity.VisualScripting +Cohesion: 0.33 +Nodes (5): GenerateHLSL, HLSLArray, PackingAttribute, SurfaceDataAttributes, UnityEngine.Rendering ### Community 561 - "Community 561" -Cohesion: 0.4 -Nodes (2): ISidebarPanelContent, Unity.VisualScripting +Cohesion: 0.53 +Nodes (4): Append(), GetFuncHashCode(), GetHashCode(), UnityEngine.Rendering ### Community 562 - "Community 562" -Cohesion: 0.4 -Nodes (1): Unity.VisualScripting +Cohesion: 0.33 +Nodes (2): TileLayoutUtils, UnityEngine.Rendering ### Community 563 - "Community 563" -Cohesion: 0.4 -Nodes (2): IPoolable, Unity.VisualScripting +Cohesion: 0.33 +Nodes (4): DefaultLightingExplorerExtension, LightExplorer, Styles, UnityEditor ### Community 564 - "Community 564" Cohesion: 0.4 -Nodes (1): Unity.VisualScripting +Nodes (4): IAnalytics, IAnalyticsData, Renderer2DAnalytics, UnityEditor.Rendering.Universal.Analytics ### Community 565 - "Community 565" -Cohesion: 0.4 -Nodes (2): IOptimizedInvoker, Unity.VisualScripting +Cohesion: 0.33 +Nodes (3): ISerializedLight, UnityEditor.Rendering.Universal, UniversalRenderPipelineSerializedLight ### Community 566 - "Community 566" -Cohesion: 0.4 -Nodes (2): IGizmoDrawer, Unity.VisualScripting +Cohesion: 0.47 +Nodes (1): AutoLoadPipelineAsset ### Community 567 - "Community 567" -Cohesion: 0.4 -Nodes (3): AnalyticsIdentifier, IAnalyticsIdentifiable, Unity.VisualScripting +Cohesion: 0.47 +Nodes (2): ShaderGraphShortcuts, UnityEditor.ShaderGraph ### Community 568 - "Community 568" -Cohesion: 0.4 -Nodes (0): +Cohesion: 0.33 +Nodes (3): IMayRequireBitangent, MayRequireBitangentExtensions, UnityEditor.ShaderGraph ### Community 569 - "Community 569" -Cohesion: 0.5 -Nodes (2): Packsize, Steamworks +Cohesion: 0.33 +Nodes (3): IMayRequireCameraOpaqueTexture, MayRequireCameraOpaqueTextureExtensions, UnityEditor.ShaderGraph ### Community 570 - "Community 570" -Cohesion: 0.5 -Nodes (2): Animancer.Examples.FineControl, IInteractable +Cohesion: 0.33 +Nodes (3): IMayRequireDepthTexture, MayRequireDepthTextureExtensions, UnityEditor.ShaderGraph ### Community 571 - "Community 571" -Cohesion: 0.5 -Nodes (3): Animancer, DefaultFadeValueAttribute, DefaultValueAttribute +Cohesion: 0.33 +Nodes (3): IMayRequireFaceSign, IMayRequireFaceSignExtensions, UnityEditor.ShaderGraph ### Community 572 - "Community 572" -Cohesion: 0.5 -Nodes (2): Animancer.Editor, ScriptableObjectEditor +Cohesion: 0.33 +Nodes (3): IMayRequireMeshUV, MayRequireMeshUVExtensions, UnityEditor.ShaderGraph ### Community 573 - "Community 573" -Cohesion: 0.5 -Nodes (2): Animancer, IUpdatable +Cohesion: 0.33 +Nodes (3): IMayRequireNormal, MayRequireNormalExtensions, UnityEditor.ShaderGraph ### Community 574 - "Community 574" -Cohesion: 0.67 -Nodes (2): Animancer, AnimancerTransitionAsset +Cohesion: 0.33 +Nodes (3): IMayRequirePosition, MayRequirePositionExtensions, UnityEditor.ShaderGraph ### Community 575 - "Community 575" -Cohesion: 0.5 -Nodes (2): CanvasCoreExpand, IGraphExporter +Cohesion: 0.33 +Nodes (3): IMayRequirePositionPredisplacement, MayRequirePositionPredisplacementExtensions, UnityEditor.ShaderGraph ### Community 576 - "Community 576" -Cohesion: 0.67 -Nodes (2): IMigratable, ParadoxNotion.Serialization.FullSerializer +Cohesion: 0.33 +Nodes (3): IMayRequireTangent, MayRequireTangentExtensions, UnityEditor.ShaderGraph ### Community 577 - "Community 577" -Cohesion: 0.5 -Nodes (3): BBMappingParameter, NodeCanvas.Framework.Internal, BBObjectParameter +Cohesion: 0.33 +Nodes (3): IMayRequireTime, MayRequireTimeExtensions, UnityEditor.ShaderGraph ### Community 578 - "Community 578" -Cohesion: 0.5 -Nodes (3): MultipleChoiceRequestInfo, NodeCanvas.DialogueTrees, SubtitlesRequestInfo +Cohesion: 0.33 +Nodes (3): IMayRequireVertexColor, MayRequireVertexColorExtensions, UnityEditor.ShaderGraph ### Community 579 - "Community 579" -Cohesion: 0.67 -Nodes (3): IDialogueActor, NodeCanvas.DialogueTrees, ProxyDialogueActor +Cohesion: 0.33 +Nodes (3): IMayRequireVertexID, MayRequireVertexIDExtensions, UnityEditor.ShaderGraph ### Community 580 - "Community 580" -Cohesion: 0.5 -Nodes (1): ViDelegateAssisstant +Cohesion: 0.33 +Nodes (3): IMayRequireVertexSkinning, MayRequireVertexSkinningExtensions, UnityEditor.ShaderGraph ### Community 581 - "Community 581" -Cohesion: 0.5 -Nodes (2): LobbyManager, TH1_Logic.Net +Cohesion: 0.33 +Nodes (3): IMayRequireViewDirection, MayRequireViewDirectionExtensions, UnityEditor.ShaderGraph ### Community 582 - "Community 582" -Cohesion: 0.5 -Nodes (2): AnimCache, TH1Resource +Cohesion: 0.33 +Nodes (2): NodeExtensions, UnityEditor.Graphing ### Community 583 - "Community 583" -Cohesion: 0.5 -Nodes (2): ResourceCache, TH1Resource +Cohesion: 0.33 +Nodes (3): Group, ShaderGroup, UnityEditor.ShaderGraph ### Community 584 - "Community 584" -Cohesion: 0.5 -Nodes (3): IsExternalInit, MemoryPack, System.Runtime.CompilerServices +Cohesion: 0.33 +Nodes (3): AdditionalCommandCollection, Item, UnityEditor.ShaderGraph ### Community 585 - "Community 585" -Cohesion: 0.5 -Nodes (2): AssemblyLoader, NugetForUnity.Helper +Cohesion: 0.33 +Nodes (3): DependencyCollection, Item, UnityEditor.ShaderGraph ### Community 586 - "Community 586" -Cohesion: 0.67 -Nodes (3): Compare(), CompareTo(), NugetForUnity.Models +Cohesion: 0.33 +Nodes (3): FieldCollection, Item, UnityEditor.ShaderGraph ### Community 587 - "Community 587" -Cohesion: 0.5 -Nodes (2): HomePageWindow, YooAsset.Editor +Cohesion: 0.33 +Nodes (1): UnityEditor.ShaderGraph.Serialization ### Community 588 - "Community 588" -Cohesion: 0.5 -Nodes (2): IBuildPipeline, YooAsset.Editor +Cohesion: 0.33 +Nodes (2): TestSlot, UnityEditor.ShaderGraph ### Community 589 - "Community 589" -Cohesion: 0.5 -Nodes (2): IBuildTask, YooAsset.Editor +Cohesion: 0.33 +Nodes (3): StringFormatterTests, Tests_2, Tests_2s ### Community 590 - "Community 590" -Cohesion: 0.5 -Nodes (2): IActiveRule, YooAsset.Editor +Cohesion: 0.33 +Nodes (3): ApplicationPlayingTests, PlayModeTests_7, PlayModeTests_8 ### Community 591 - "Community 591" -Cohesion: 0.5 -Nodes (2): IAddressRule, YooAsset.Editor +Cohesion: 0.33 +Nodes (3): MovementScript, PlayModeTests_9, PlayModeTests_9s ### Community 592 - "Community 592" -Cohesion: 0.5 -Nodes (2): IFilterRule, YooAsset.Editor +Cohesion: 0.33 +Nodes (2): ICallbacksHolder, UnityEditor.TestTools.TestRunner.Api ### Community 593 - "Community 593" -Cohesion: 0.5 -Nodes (2): UIElementsTools, YooAsset.Editor +Cohesion: 0.4 +Nodes (2): EditModeLauncherContextSettings, UnityEditor.TestTools.TestRunner ### Community 594 - "Community 594" -Cohesion: 0.5 -Nodes (2): IBuildinQueryServices, YooAsset +Cohesion: 0.4 +Nodes (2): DelayedCallback, UnityEditor.TestTools.TestRunner ### Community 595 - "Community 595" -Cohesion: 0.5 -Nodes (2): IEncryptionServices, YooAsset +Cohesion: 0.33 +Nodes (3): EditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner, IEditorCompilationInterfaceProxy ### Community 596 - "Community 596" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks, EnumerableAsyncExtensions +Cohesion: 0.33 +Nodes (2): IUtpMessageReporter, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 597 - "Community 597" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks, ExceptionExtensions +Cohesion: 0.33 +Nodes (3): ITestExecutionContext, UnityEngine.TestRunner.NUnitExtensions.Runner, UnityTestExecutionContext ### Community 598 - "Community 598" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks.Linq, UniTaskAsyncEnumerable +Cohesion: 0.33 +Nodes (2): SortingLayerHelper, TMPro ### Community 599 - "Community 599" -Cohesion: 0.5 -Nodes (2): IOutlineGenerator, UnityEditor.U2D.Animation +Cohesion: 0.33 +Nodes (4): TMP_Glyph, TMP_Sprite, TMPro, TMP_TextElement_Legacy ### Community 600 - "Community 600" -Cohesion: 0.5 -Nodes (3): IBoneSelection, UnityEditor.U2D.Animation, ITransformSelection +Cohesion: 0.4 +Nodes (2): TimelineAssetViewModel, UnityEditor.Timeline ### Community 601 - "Community 601" -Cohesion: 0.5 -Nodes (3): ControllerEvents, UnityEditor.U2D.Animation.SpriteLibraryEditor, ViewEvents +Cohesion: 0.4 +Nodes (3): TimelineClip, TimelineClipUpgrade, UnityEngine.Timeline ### Community 602 - "Community 602" -Cohesion: 0.5 -Nodes (3): IAnimationPreviewable, IPreviewable, UnityEngine.U2D.Common +Cohesion: 0.33 +Nodes (3): IInterval, RuntimeElement, UnityEngine.Timeline ### Community 603 - "Community 603" -Cohesion: 0.5 -Nodes (2): Document, PDNWrapper +Cohesion: 0.4 +Nodes (3): AbstractEventData, BaseEventData, UnityEngine.EventSystems ### Community 604 - "Community 604" -Cohesion: 0.5 -Nodes (3): RawImageResource, PhotoshopFile, Thumbnail +Cohesion: 0.33 +Nodes (3): IMeshModifier, IVertexModifier, UnityEngine.UI ### Community 605 - "Community 605" -Cohesion: 0.5 -Nodes (3): MouseStyles, TilePaletteMouseCursorUtility, UnityEditor.Tilemaps +Cohesion: 0.33 +Nodes (2): IndividualEditor, Unity.VisualScripting ### Community 606 - "Community 606" -Cohesion: 0.5 -Nodes (2): ParentWindow, Unity.PlasticSCM.Editor +Cohesion: 0.33 +Nodes (2): IFuzzyOption, Unity.VisualScripting ### Community 607 - "Community 607" -Cohesion: 0.5 -Nodes (2): ProjectWindow, Unity.PlasticSCM.Editor +Cohesion: 0.33 +Nodes (3): CastMetadata, Unity.VisualScripting, ProxyMetadata ### Community 608 - "Community 608" -Cohesion: 0.5 -Nodes (2): BuildPathDictionary, Unity.PlasticSCM.Editor.AssetsOverlays.Cache +Cohesion: 0.33 +Nodes (3): CustomEventDescriptor, Unity.VisualScripting, EventUnitDescriptor ### Community 609 - "Community 609" -Cohesion: 0.5 -Nodes (2): GenericProgress, Unity.PlasticSCM.Editor.Developer +Cohesion: 0.33 +Nodes (3): NesterStateTransitionDescriptor, Unity.VisualScripting, StateTransitionDescriptor ### Community 610 - "Community 610" -Cohesion: 0.5 -Nodes (2): IncomingChangesNotification, Unity.PlasticSCM.Editor.UI.StatusBar +Cohesion: 0.33 +Nodes (3): FieldsCloner, Unity.VisualScripting, ReflectedCloner ### Community 611 - "Community 611" -Cohesion: 0.5 -Nodes (2): CreateWorkspaceViewState, Unity.PlasticSCM.Editor.Views.CreateWorkspace +Cohesion: 0.33 +Nodes (2): GradientCloner, Unity.VisualScripting ### Community 612 - "Community 612" -Cohesion: 0.5 -Nodes (2): ConflictResolutionState, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer.DirectoryConflicts +Cohesion: 0.33 +Nodes (3): IEventMachine, Unity.VisualScripting, IMachine ### Community 613 - "Community 613" -Cohesion: 0.5 -Nodes (2): LaunchCheckinConflictsDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs +Cohesion: 0.33 +Nodes (2): IGraphEventHandler, Unity.VisualScripting ### Community 614 - "Community 614" -Cohesion: 0.5 -Nodes (2): LaunchDependenciesDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs +Cohesion: 0.33 +Nodes (2): PlatformUtility, Unity.VisualScripting ### Community 615 - "Community 615" -Cohesion: 0.67 -Nodes (3): Allocate(), CheckAllocationDoesNotExceedCapacity(), Unity.Collections.LowLevel.Unsafe +Cohesion: 0.33 +Nodes (3): EqualityComparer, MemberInfoComparer, Unity.VisualScripting ### Community 616 - "Community 616" -Cohesion: 0.5 -Nodes (2): JetBrains.Rider.Unity.Editor, StartUpMethodExecutor +Cohesion: 0.33 +Nodes (2): IOptimizedAccessor, Unity.VisualScripting ### Community 617 - "Community 617" -Cohesion: 0.5 -Nodes (2): IGUIDGenerator, Packages.Rider.Editor.ProjectGeneration +Cohesion: 0.33 +Nodes (2): ReflectionPropertyAccessor, Unity.VisualScripting ### Community 618 - "Community 618" -Cohesion: 0.5 -Nodes (3): DoNotNormalizeAttribute, PostNormalizeAttribute, Unity.Mathematics +Cohesion: 0.33 +Nodes (3): IGettable, Unity.VisualScripting, XGettable ### Community 619 - "Community 619" -Cohesion: 0.5 -Nodes (2): ICoreRenderPipelinePreferencesProvider, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (1): UnityEditor.ShaderGraph.Serialization ### Community 620 - "Community 620" -Cohesion: 0.5 -Nodes (3): CameraUI, Styles, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (0): ### Community 621 - "Community 621" -Cohesion: 0.5 -Nodes (3): LightUI, Styles, UnityEditor.Rendering +Cohesion: 0.4 +Nodes (1): Steamworks ### Community 622 - "Community 622" -Cohesion: 0.5 -Nodes (3): ProbeVolumeUI, Styles, UnityEditor.Rendering +Cohesion: 0.4 +Nodes (3): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterParameters ### Community 623 - "Community 623" -Cohesion: 0.5 -Nodes (3): RenderPipelineGlobalSettingsUI, Styles, UnityEditor.Rendering +Cohesion: 0.4 +Nodes (4): Animancer, DocsURLs, Strings, Tooltips ### Community 624 - "Community 624" -Cohesion: 0.5 -Nodes (2): SwapCollectionExtensions, UnityEngine.Rendering +Cohesion: 0.4 +Nodes (2): Animancer.FSM, DelegateState ### Community 625 - "Community 625" Cohesion: 0.5 -Nodes (3): DebugManager, UIState, UnityEngine.Rendering +Nodes (3): Animancer.FSM, CurrentToString(), ToString() ### Community 626 - "Community 626" Cohesion: 0.5 -Nodes (2): IDebugDisplaySettingsQuery, UnityEngine.Rendering +Nodes (3): Animancer.FSM, CurrentToString(), ToString() ### Community 627 - "Community 627" -Cohesion: 0.5 -Nodes (2): ICloudBackground, UnityEngine.Rendering +Cohesion: 0.4 +Nodes (2): ISerializedReflectedInfo, ParadoxNotion.Serialization ### Community 628 - "Community 628" -Cohesion: 0.5 -Nodes (2): HaltonSequence, UnityEngine.Rendering +Cohesion: 0.4 +Nodes (2): ITaskSystem, NodeCanvas.Framework ### Community 629 - "Community 629" -Cohesion: 0.5 -Nodes (2): UnityEngine.Rendering, XRUtils +Cohesion: 0.6 +Nodes (2): ViTuple, ViTupleInterface ### Community 630 - "Community 630" -Cohesion: 0.5 -Nodes (1): EditorExampleTest +Cohesion: 0.4 +Nodes (1): ViAccumulateVersion ### Community 631 - "Community 631" -Cohesion: 0.5 -Nodes (1): RuntimeExampleTest +Cohesion: 0.4 +Nodes (3): BaseCondition, CountryStrategyCondition, NodeCanvas.Tasks.Actions ### Community 632 - "Community 632" -Cohesion: 0.5 -Nodes (2): ConfigurationTest, UnityEngine.Rendering.Universal.Test +Cohesion: 0.4 +Nodes (2): ExcelConfig, ExcelConfigBase ### Community 633 - "Community 633" -Cohesion: 0.5 -Nodes (3): PhysicalCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Cohesion: 0.4 +Nodes (2): ISequencerTask, TH1_Presentation.Sequencer.Task ### Community 634 - "Community 634" -Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Cohesion: 0.4 +Nodes (2): IEscClosable, TH1_UI.Controller.Base ### Community 635 - "Community 635" Cohesion: 0.5 -Nodes (2): BIRPToURPConversionExtensions, PropertyConversions +Nodes (4): TwoPaneSplitView, SplitView, UxmlFactory, YooAsset.Editor ### Community 636 - "Community 636" -Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineGlobalSettingsUI +Cohesion: 0.4 +Nodes (2): IDecryptionServices, YooAsset ### Community 637 - "Community 637" -Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI +Cohesion: 0.4 +Nodes (2): IDeliveryLoadServices, YooAsset ### Community 638 - "Community 638" -Cohesion: 0.5 -Nodes (2): NewRendererFeatureDropdownItem, UnityEditor.Rendering.Universal +Cohesion: 0.4 +Nodes (2): IRemoteServices, YooAsset ### Community 639 - "Community 639" -Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineAssetUI +Cohesion: 0.4 +Nodes (2): Cysharp.Threading.Tasks.Editor, SplitterGUILayout ### Community 640 - "Community 640" -Cohesion: 0.5 -Nodes (3): VFXSRPSubOutput, UnityEditor.VFX.URP, VFXURPSubOutput +Cohesion: 0.4 +Nodes (1): Cysharp.Threading.Tasks ### Community 641 - "Community 641" Cohesion: 0.5 -Nodes (3): IShaderVariantSettings, UnityEngine.Rendering.Universal, UniversalRenderPipelineGlobalSettings +Nodes (2): Cysharp.Threading.Tasks.Internal, Entry ### Community 642 - "Community 642" -Cohesion: 0.5 -Nodes (3): UnityEngine.Rendering.Universal, UniversalRenderPipelineVolumeDebugSettings, VolumeDebugSettings +Cohesion: 0.4 +Nodes (3): CircleVertexSelector, UnityEditor.U2D.Animation, ICircleSelector ### Community 643 - "Community 643" -Cohesion: 0.5 -Nodes (2): TileSizeExtensions, UnityEngine.Rendering.Universal +Cohesion: 0.4 +Nodes (2): ISpriteLibDataProvider, UnityEditor.U2D.Animation ### Community 644 - "Community 644" -Cohesion: 0.5 -Nodes (2): IBuildTask, UnityEditor.Build.Pipeline.Interfaces +Cohesion: 0.4 +Nodes (2): BaseUpgrader, UnityEditor.U2D.Animation.Upgrading ### Community 645 - "Community 645" -Cohesion: 0.5 -Nodes (3): BuildSpriteData, UnityEditor.Build.Pipeline, IBuildSpriteData +Cohesion: 0.4 +Nodes (3): IconUtility, UnityEngine.U2D.Animation, UnityEngine.U2D.IK ### Community 646 - "Community 646" -Cohesion: 0.5 -Nodes (1): UnityEngine.Build.Pipeline +Cohesion: 0.4 +Nodes (2): Aliasing, Unity.Burst.CompilerServices ### Community 647 - "Community 647" -Cohesion: 0.5 -Nodes (3): BuildCacheTestBase, LocalBuildCacheTests, UnityEditor.Build.Pipeline.Tests +Cohesion: 0.4 +Nodes (2): Loop, Unity.Burst.CompilerServices ### Community 648 - "Community 648" -Cohesion: 0.5 -Nodes (3): SerializableVirtualTexture, SerializableVirtualTextureLayer, UnityEditor.ShaderGraph.Internal +Cohesion: 0.4 +Nodes (4): Unity.Burst.Intrinsics, V128DebugView, V256DebugView, V64DebugView ### Community 649 - "Community 649" Cohesion: 0.5 -Nodes (2): IHasDependencies, UnityEditor.ShaderGraph +Nodes (2): CloudProjectId, Unity.PlasticSCM.Editor.CollabMigration ### Community 650 - "Community 650" Cohesion: 0.5 -Nodes (2): IGeneratesBodyCode, UnityEditor.ShaderGraph +Nodes (2): IsCurrent, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer ### Community 651 - "Community 651" -Cohesion: 0.5 -Nodes (2): IGeneratesFunction, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (4): CameraUI, Environment, Styles, UnityEditor.Rendering ### Community 652 - "Community 652" -Cohesion: 0.5 -Nodes (2): IMayRequireTransform, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (4): CameraUI, Output, Styles, UnityEditor.Rendering ### Community 653 - "Community 653" -Cohesion: 0.5 -Nodes (2): IOnAssetEnabled, UnityEditor.Graphing +Cohesion: 0.4 +Nodes (4): CameraUI, PhysicalCamera, Styles, UnityEditor.Rendering ### Community 654 - "Community 654" -Cohesion: 0.5 -Nodes (2): ILegacyTarget, UnityEditor.ShaderGraph.Legacy +Cohesion: 0.4 +Nodes (4): CameraUI, Rendering, Styles, UnityEditor.Rendering ### Community 655 - "Community 655" -Cohesion: 0.5 -Nodes (2): IPropertyFromNode, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (2): ISerializedLight, UnityEditor.Rendering ### Community 656 - "Community 656" -Cohesion: 0.5 -Nodes (2): PropertyUtil, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (2): IEnvironmentDisplayer, Style ### Community 657 - "Community 657" -Cohesion: 0.5 -Nodes (2): AbstractMaterialNodeModificationListener, UnityEditor.ShaderGraph.Drawing +Cohesion: 0.4 +Nodes (2): SerializedDataParameter, UnityEditor.Rendering ### Community 658 - "Community 658" -Cohesion: 0.5 -Nodes (2): IControlAttribute, UnityEditor.ShaderGraph.Drawing.Controls +Cohesion: 0.4 +Nodes (2): CommandBufferPool, UnityEngine.Rendering ### Community 659 - "Community 659" -Cohesion: 0.5 -Nodes (2): ISGViewModel, UnityEditor.ShaderGraph.Drawing +Cohesion: 0.4 +Nodes (4): Environment, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 660 - "Community 660" -Cohesion: 0.5 -Nodes (2): IShaderInputObserver, UnityEditor.ShaderGraph.Drawing +Cohesion: 0.4 +Nodes (4): Output, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 661 - "Community 661" -Cohesion: 0.5 -Nodes (2): IHasMetadata, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (4): Rendering, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 662 - "Community 662" -Cohesion: 0.5 -Nodes (2): InstancingOptionsExtensions, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (2): ComponentUtility, UnityEngine.Rendering.Universal ### Community 663 - "Community 663" -Cohesion: 0.5 -Nodes (2): ShaderModelExtensions, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (2): IWriteOperation, UnityEditor.Build.Pipeline.Interfaces ### Community 664 - "Community 664" Cohesion: 0.5 -Nodes (2): FakeJsonObject, UnityEditor.ShaderGraph.Serialization +Nodes (2): TextureSamplerState, UnityEditor.ShaderGraph ### Community 665 - "Community 665" -Cohesion: 0.5 -Nodes (3): IRequiredSetting, RequiredSettingBase, UnityEngine.Rendering +Cohesion: 0.4 +Nodes (2): IHasCustomDeprecationMessage, UnityEditor.ShaderGraph ### Community 666 - "Community 666" -Cohesion: 0.5 -Nodes (3): PRSIRequiredSetting, PRSRequiredSettingBase, UnityEngine.Rendering +Cohesion: 0.4 +Nodes (2): IInspectable, UnityEditor.ShaderGraph.Drawing ### Community 667 - "Community 667" -Cohesion: 0.5 -Nodes (2): PlayModeTests_10s, SlowTests +Cohesion: 0.4 +Nodes (2): IPropertyDrawer, UnityEditor.ShaderGraph.Drawing ### Community 668 - "Community 668" -Cohesion: 0.5 -Nodes (2): ITestResultAdaptor, UnityEditor.TestTools.TestRunner.Api +Cohesion: 0.4 +Nodes (2): StackPool, UnityEditor.Graphing ### Community 669 - "Community 669" Cohesion: 0.5 -Nodes (2): ResultSummarizer, UnityEditor.TestTools.TestRunner.GUI +Nodes (4): BlockFieldDescriptor, CustomSlotBlockFieldDescriptor, UnityEditor.ShaderGraph, FieldDescriptor ### Community 670 - "Community 670" -Cohesion: 0.5 -Nodes (3): ISceneWrapper, SceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene +Cohesion: 0.4 +Nodes (1): UnityEditor.ShaderGraph.Serialization ### Community 671 - "Community 671" -Cohesion: 0.5 -Nodes (3): EditorAssembliesProxy, UnityEditor.TestTools.TestRunner, IEditorAssembliesProxy +Cohesion: 0.4 +Nodes (2): AssertHelpers, UnityEditor.ShaderGraph ### Community 672 - "Community 672" Cohesion: 0.5 -Nodes (2): ITestListProvider, UnityEditor.TestTools.TestRunner +Nodes (2): TestRunnerWindowSettings, UnityEditor.TestTools.TestRunner ### Community 673 - "Community 673" -Cohesion: 0.5 -Nodes (2): ITestSettingsDeserializer, UnityEditor.TestTools.TestRunner +Cohesion: 0.4 +Nodes (2): ISettingsBuilder, UnityEditor.TestTools.TestRunner.CommandLineTest ### Community 674 - "Community 674" -Cohesion: 0.5 -Nodes (2): IUtpLogger, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Cohesion: 0.4 +Nodes (3): AssemblyWrapper, EditorAssemblyWrapper, UnityEditor.TestTools.TestRunner ### Community 675 - "Community 675" -Cohesion: 0.5 -Nodes (2): Is, UnityEngine.TestTools.Constraints +Cohesion: 0.4 +Nodes (2): IEditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner ### Community 676 - "Community 676" -Cohesion: 0.5 -Nodes (2): ITestSuiteModifier, UnityEngine.TestRunner.NUnitExtensions +Cohesion: 0.4 +Nodes (2): ITestListCache, UnityEditor.TestTools.TestRunner ### Community 677 - "Community 677" -Cohesion: 0.5 -Nodes (2): IEnumerableTestMethodCommand, UnityEngine.TestRunner.NUnitExtensions.Runner +Cohesion: 0.4 +Nodes (3): IAsyncTestAssemblyBuilder, UnityEngine.TestTools.NUnitExtensions, ITestAssemblyBuilder ### Community 678 - "Community 678" -Cohesion: 0.5 -Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory +Cohesion: 0.4 +Nodes (3): TestMethodCommand, UnityEngine.TestTools, UnityTestMethodCommand ### Community 679 - "Community 679" -Cohesion: 0.5 -Nodes (2): IPrebuildSetup, UnityEngine.TestTools +Cohesion: 0.4 +Nodes (2): IRemoteTestResultDataFactory, UnityEngine.TestRunner.TestLaunchers ### Community 680 - "Community 680" -Cohesion: 0.5 -Nodes (2): IAssemblyLoadProxy, UnityEngine.TestTools.Utils +Cohesion: 0.4 +Nodes (3): AssemblyLoadProxy, UnityEngine.TestTools.Utils, IAssemblyLoadProxy ### Community 681 - "Community 681" -Cohesion: 0.5 -Nodes (2): IScriptingRuntimeProxy, UnityEngine.TestTools.Utils +Cohesion: 0.4 +Nodes (3): AssemblyWrapper, UnityEngine.TestTools.Utils, IAssemblyWrapper ### Community 682 - "Community 682" -Cohesion: 0.5 -Nodes (3): CustomYieldInstruction, MonoBehaviourTest, UnityEngine.TestTools +Cohesion: 0.4 +Nodes (2): TMP_ListPool, TMPro ### Community 683 - "Community 683" -Cohesion: 0.5 -Nodes (2): TMP_ResourcesLoader, TMPro.EditorUtilities +Cohesion: 0.4 +Nodes (3): SpriteDataObject, TexturePacker_JsonArray, TMPro.SpriteAssetUtilities ### Community 684 - "Community 684" -Cohesion: 0.5 -Nodes (1): TMPro +Cohesion: 0.4 +Nodes (1): UnityEditor.Timeline ### Community 685 - "Community 685" -Cohesion: 0.5 -Nodes (3): Glyph, TMP_SpriteGlyph, TMPro +Cohesion: 0.4 +Nodes (3): TimelineAssetEditionMode, UnityEditor.Timeline, TimelineInactiveMode ### Community 686 - "Community 686" -Cohesion: 0.5 -Nodes (2): BuiltInPresets, UnityEditor.Timeline +Cohesion: 0.4 +Nodes (3): TimelineAsset, TimelineAssetUpgrade, UnityEngine.Timeline ### Community 687 - "Community 687" -Cohesion: 0.5 -Nodes (2): ICurvesOwnerInspectorWrapper, UnityEditor.Timeline +Cohesion: 0.4 +Nodes (2): IReorderableListDropTarget, Unity.VisualScripting.ReorderableList ### Community 688 - "Community 688" -Cohesion: 0.5 -Nodes (1): UnityEditor.Timeline +Cohesion: 0.4 +Nodes (2): Plugin, Unity.VisualScripting ### Community 689 - "Community 689" -Cohesion: 0.5 -Nodes (2): IRowGUI, UnityEditor.Timeline +Cohesion: 0.4 +Nodes (2): EditorTypeUtility, Unity.VisualScripting ### Community 690 - "Community 690" -Cohesion: 0.5 -Nodes (1): UnityEditor.Timeline +Cohesion: 0.4 +Nodes (2): ISidebarPanelContent, Unity.VisualScripting ### Community 691 - "Community 691" -Cohesion: 0.5 -Nodes (2): ISnappable, UnityEditor.Timeline +Cohesion: 0.4 +Nodes (1): Unity.VisualScripting ### Community 692 - "Community 692" -Cohesion: 0.67 -Nodes (3): CloseScope(), Dispose(), UnityEditor +Cohesion: 0.5 +Nodes (2): FrameDelayedCallback, Unity.VisualScripting ### Community 693 - "Community 693" -Cohesion: 0.5 -Nodes (2): ILayerable, UnityEngine.Timeline +Cohesion: 0.4 +Nodes (2): IPoolable, Unity.VisualScripting ### Community 694 - "Community 694" -Cohesion: 0.5 -Nodes (2): IMarker, UnityEngine.Timeline +Cohesion: 0.4 +Nodes (1): Unity.VisualScripting ### Community 695 - "Community 695" -Cohesion: 0.5 -Nodes (3): MarkerTrack, SignalTrack, UnityEngine.Timeline +Cohesion: 0.4 +Nodes (2): IOptimizedInvoker, Unity.VisualScripting ### Community 696 - "Community 696" -Cohesion: 0.5 -Nodes (2): IPropertyPreview, UnityEngine.Timeline +Cohesion: 0.4 +Nodes (2): IGizmoDrawer, Unity.VisualScripting ### Community 697 - "Community 697" -Cohesion: 0.5 -Nodes (1): UnityEngine.EventSystems +Cohesion: 0.4 +Nodes (3): AnalyticsIdentifier, IAnalyticsIdentifiable, Unity.VisualScripting ### Community 698 - "Community 698" Cohesion: 0.5 -Nodes (1): UnityEngine.UI +Nodes (4): DFA, DFA14, DFA7, Unity.VisualScripting.Dependencies.NCalc ### Community 699 - "Community 699" -Cohesion: 0.5 -Nodes (2): IGraphicEnabledDisabled, UnityEngine.UI +Cohesion: 0.4 +Nodes (0): ### Community 700 - "Community 700" Cohesion: 0.5 -Nodes (2): IMask, UnityEngine.UI +Nodes (2): Packsize, Steamworks ### Community 701 - "Community 701" Cohesion: 0.5 -Nodes (2): IMaskable, UnityEngine.UI +Nodes (2): Animancer.Examples.FineControl, IInteractable ### Community 702 - "Community 702" Cohesion: 0.5 -Nodes (2): RectangularVertexClipper, UnityEngine.UI +Nodes (3): Animancer, DefaultFadeValueAttribute, DefaultValueAttribute ### Community 703 - "Community 703" Cohesion: 0.5 -Nodes (3): GraphElementAnalysis, Unity.VisualScripting, IGraphElementAnalysis +Nodes (2): Animancer.Editor, ScriptableObjectEditor ### Community 704 - "Community 704" Cohesion: 0.5 -Nodes (2): IAnalyser, Unity.VisualScripting +Nodes (2): Animancer, IUpdatable ### Community 705 - "Community 705" -Cohesion: 0.5 -Nodes (2): IAssigner, Unity.VisualScripting +Cohesion: 0.67 +Nodes (2): Animancer, AnimancerTransitionAsset ### Community 706 - "Community 706" Cohesion: 0.5 -Nodes (2): IElementAdderMenu, Unity.VisualScripting.ReorderableList.Element_Adder_Menu +Nodes (2): CanvasCoreExpand, IGraphExporter ### Community 707 - "Community 707" -Cohesion: 0.5 -Nodes (2): IDescriptor, Unity.VisualScripting +Cohesion: 0.67 +Nodes (2): IMigratable, ParadoxNotion.Serialization.FullSerializer ### Community 708 - "Community 708" Cohesion: 0.5 -Nodes (2): DraggedListItem, Unity.VisualScripting +Nodes (3): BBMappingParameter, NodeCanvas.Framework.Internal, BBObjectParameter ### Community 709 - "Community 709" Cohesion: 0.5 -Nodes (3): DropdownOption, DropdownSeparator, Unity.VisualScripting +Nodes (3): MultipleChoiceRequestInfo, NodeCanvas.DialogueTrees, SubtitlesRequestInfo ### Community 710 - "Community 710" -Cohesion: 0.5 -Nodes (1): Unity.VisualScripting +Cohesion: 0.67 +Nodes (3): IDialogueActor, NodeCanvas.DialogueTrees, ProxyDialogueActor ### Community 711 - "Community 711" Cohesion: 0.5 -Nodes (2): AotStubWriter, Unity.VisualScripting +Nodes (1): ViDelegateAssisstant ### Community 712 - "Community 712" Cohesion: 0.5 -Nodes (2): TypeExtensions, Unity.VisualScripting +Nodes (2): LobbyManager, TH1_Logic.Net ### Community 713 - "Community 713" Cohesion: 0.5 -Nodes (2): EditorTimeUtility, Unity.VisualScripting +Nodes (2): AnimCache, TH1Resource ### Community 714 - "Community 714" Cohesion: 0.5 -Nodes (3): AboutPluginsPage, Unity.VisualScripting, ListPage +Nodes (2): ResourceCache, TH1Resource ### Community 715 - "Community 715" Cohesion: 0.5 -Nodes (2): Unity.VisualScripting, XUnitOptionProvider +Nodes (3): IsExternalInit, MemoryPack, System.Runtime.CompilerServices ### Community 716 - "Community 716" Cohesion: 0.5 -Nodes (3): FlowStateTransitionEditor, Unity.VisualScripting, NesterStateTransitionEditor +Nodes (2): AssemblyLoader, NugetForUnity.Helper ### Community 717 - "Community 717" -Cohesion: 0.5 -Nodes (3): fsConfig, fsGlobalConfig, Unity.VisualScripting.FullSerializer +Cohesion: 0.67 +Nodes (3): Compare(), CompareTo(), NugetForUnity.Models ### Community 718 - "Community 718" Cohesion: 0.5 -Nodes (2): EnsureThat, Unity.VisualScripting +Nodes (2): HomePageWindow, YooAsset.Editor ### Community 719 - "Community 719" Cohesion: 0.5 -Nodes (1): Unity.VisualScripting +Nodes (2): IBuildPipeline, YooAsset.Editor ### Community 720 - "Community 720" Cohesion: 0.5 -Nodes (2): DebugUtility, Unity.VisualScripting +Nodes (2): IBuildTask, YooAsset.Editor ### Community 721 - "Community 721" Cohesion: 0.5 -Nodes (2): IGraphParent, Unity.VisualScripting +Nodes (2): IActiveRule, YooAsset.Editor ### Community 722 - "Community 722" Cohesion: 0.5 -Nodes (2): IAotStubbable, Unity.VisualScripting +Nodes (2): IAddressRule, YooAsset.Editor ### Community 723 - "Community 723" Cohesion: 0.5 -Nodes (2): IPrewarmable, Unity.VisualScripting +Nodes (2): IFilterRule, YooAsset.Editor ### Community 724 - "Community 724" Cohesion: 0.5 -Nodes (3): fsObjectAttribute, SerializationVersionAttribute, Unity.VisualScripting +Nodes (2): UIElementsTools, YooAsset.Editor ### Community 725 - "Community 725" Cohesion: 0.5 -Nodes (3): fsPropertyAttribute, SerializeAsAttribute, Unity.VisualScripting +Nodes (2): IBuildinQueryServices, YooAsset ### Community 726 - "Community 726" Cohesion: 0.5 -Nodes (2): ExceptionUtility, Unity.VisualScripting +Nodes (2): IEncryptionServices, YooAsset ### Community 727 - "Community 727" Cohesion: 0.5 -Nodes (2): IInitializable, Unity.VisualScripting +Nodes (2): Cysharp.Threading.Tasks, EnumerableAsyncExtensions ### Community 728 - "Community 728" Cohesion: 0.5 -Nodes (3): IUnitConnectionDebugData, UnitConnectionDebugData, Unity.VisualScripting +Nodes (2): Cysharp.Threading.Tasks, ExceptionExtensions ### Community 729 - "Community 729" Cohesion: 0.5 -Nodes (3): IUnitRelation, UnitRelation, Unity.VisualScripting +Nodes (2): Cysharp.Threading.Tasks.Linq, UniTaskAsyncEnumerable ### Community 730 - "Community 730" Cohesion: 0.5 -Nodes (3): ApplicationException, EvaluationException, Unity.VisualScripting.Dependencies.NCalc +Nodes (2): IOutlineGenerator, UnityEditor.U2D.Animation ### Community 731 - "Community 731" Cohesion: 0.5 -Nodes (2): LogicalExpressionVisitor, Unity.VisualScripting.Dependencies.NCalc +Nodes (3): IBoneSelection, UnityEditor.U2D.Animation, ITransformSelection ### Community 732 - "Community 732" Cohesion: 0.5 -Nodes (3): GLApplication, -sendEvent, -windowWillClose +Nodes (3): ControllerEvents, UnityEditor.U2D.Animation.SpriteLibraryEditor, ViewEvents ### Community 733 - "Community 733" Cohesion: 0.5 -Nodes (4): DB Reader Example Subagent (with Hook Validation), Subagent Hooks (PreToolUse, PostToolUse, Stop), Skills Preloading into Subagents, Subagent Tools and Permissions Control +Nodes (3): IAnimationPreviewable, IPreviewable, UnityEngine.U2D.Common ### Community 734 - "Community 734" -Cohesion: 0.67 -Nodes (2): Steamworks, Version +Cohesion: 0.5 +Nodes (2): Document, PDNWrapper ### Community 735 - "Community 735" -Cohesion: 0.67 -Nodes (2): Constants, Steamworks +Cohesion: 0.5 +Nodes (3): RawImageResource, PhotoshopFile, Thumbnail ### Community 736 - "Community 736" -Cohesion: 0.67 -Nodes (1): Steamworks +Cohesion: 0.5 +Nodes (3): MouseStyles, TilePaletteMouseCursorUtility, UnityEditor.Tilemaps ### Community 737 - "Community 737" -Cohesion: 0.67 -Nodes (1): Steamworks +Cohesion: 0.5 +Nodes (2): ParentWindow, Unity.PlasticSCM.Editor ### Community 738 - "Community 738" -Cohesion: 0.67 -Nodes (2): DoNotRenameAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): ProjectWindow, Unity.PlasticSCM.Editor ### Community 739 - "Community 739" -Cohesion: 0.67 -Nodes (2): NotObfuscatedCauseAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): BuildPathDictionary, Unity.PlasticSCM.Editor.AssetsOverlays.Cache ### Community 740 - "Community 740" -Cohesion: 0.67 -Nodes (2): ObfuscateAnywayAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): GenericProgress, Unity.PlasticSCM.Editor.Developer ### Community 741 - "Community 741" -Cohesion: 0.67 -Nodes (2): DoNotObfuscateClassAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): IncomingChangesNotification, Unity.PlasticSCM.Editor.UI.StatusBar ### Community 742 - "Community 742" -Cohesion: 0.67 -Nodes (2): DoNotUseClassForFakeCodeAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): CreateWorkspaceViewState, Unity.PlasticSCM.Editor.Views.CreateWorkspace ### Community 743 - "Community 743" -Cohesion: 0.67 -Nodes (2): DoNotObfuscateMethodBodyAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): ConflictResolutionState, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer.DirectoryConflicts ### Community 744 - "Community 744" -Cohesion: 0.67 -Nodes (2): Animancer.Examples.Events, EventUtilities +Cohesion: 0.5 +Nodes (2): LaunchCheckinConflictsDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs ### Community 745 - "Community 745" -Cohesion: 0.67 -Nodes (2): Animancer.Examples.AnimatorControllers, Animations +Cohesion: 0.5 +Nodes (2): LaunchDependenciesDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs ### Community 746 - "Community 746" Cohesion: 0.67 -Nodes (2): Animancer, IHasKey +Nodes (3): Allocate(), CheckAllocationDoesNotExceedCapacity(), Unity.Collections.LowLevel.Unsafe ### Community 747 - "Community 747" -Cohesion: 0.67 -Nodes (0): +Cohesion: 0.5 +Nodes (2): JetBrains.Rider.Unity.Editor, StartUpMethodExecutor ### Community 748 - "Community 748" -Cohesion: 0.67 -Nodes (2): CanvasCoreExpand, ExpandGraphEditor +Cohesion: 0.5 +Nodes (2): IGUIDGenerator, Packages.Rider.Editor.ProjectGeneration ### Community 749 - "Community 749" -Cohesion: 0.67 -Nodes (2): IEventData, ParadoxNotion +Cohesion: 0.5 +Nodes (3): DoNotNormalizeAttribute, PostNormalizeAttribute, Unity.Mathematics ### Community 750 - "Community 750" -Cohesion: 0.67 -Nodes (2): IMissingRecoverable, ParadoxNotion.Serialization +Cohesion: 0.5 +Nodes (2): ICoreRenderPipelinePreferencesProvider, UnityEditor.Rendering ### Community 751 - "Community 751" -Cohesion: 0.67 -Nodes (2): ParadoxNotion.Serialization, SerializationPair +Cohesion: 0.5 +Nodes (3): CameraUI, Styles, UnityEditor.Rendering ### Community 752 - "Community 752" -Cohesion: 0.67 -Nodes (2): fsGlobalConfig, ParadoxNotion.Serialization.FullSerializer +Cohesion: 0.5 +Nodes (3): LightUI, Styles, UnityEditor.Rendering ### Community 753 - "Community 753" -Cohesion: 0.67 -Nodes (2): LogTag, NodeCanvas.Framework +Cohesion: 0.5 +Nodes (3): ProbeVolumeUI, Styles, UnityEditor.Rendering ### Community 754 - "Community 754" -Cohesion: 0.67 -Nodes (2): NodeCanvas.Framework, VariableSeperator +Cohesion: 0.5 +Nodes (3): RenderPipelineGlobalSettingsUI, Styles, UnityEditor.Rendering ### Community 755 - "Community 755" -Cohesion: 0.67 -Nodes (2): AnimPhase, TH1_Anim.Fragments +Cohesion: 0.5 +Nodes (2): SwapCollectionExtensions, UnityEngine.Rendering ### Community 756 - "Community 756" -Cohesion: 0.67 -Nodes (2): FragmentStep, TH1_Anim.Fragments +Cohesion: 0.5 +Nodes (3): DebugManager, UIState, UnityEngine.Rendering ### Community 757 - "Community 757" -Cohesion: 0.67 -Nodes (2): ICityLogic, Logic +Cohesion: 0.5 +Nodes (2): IDebugDisplaySettingsQuery, UnityEngine.Rendering ### Community 758 - "Community 758" -Cohesion: 0.67 -Nodes (2): MatchLevelData, TH1_Logic.MatchConfig +Cohesion: 0.5 +Nodes (2): ICloudBackground, UnityEngine.Rendering ### Community 759 - "Community 759" -Cohesion: 0.67 -Nodes (2): MemberInfo, TH1_Logic.Net +Cohesion: 0.5 +Nodes (2): HaltonSequence, UnityEngine.Rendering ### Community 760 - "Community 760" -Cohesion: 0.67 -Nodes (2): OssData, TH1_Logic.Oss +Cohesion: 0.5 +Nodes (2): UnityEngine.Rendering, XRUtils ### Community 761 - "Community 761" -Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillOwner +Cohesion: 0.5 +Nodes (1): EditorExampleTest ### Community 762 - "Community 762" -Cohesion: 0.67 -Nodes (2): AllYCounterSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): RuntimeExampleTest ### Community 763 - "Community 763" -Cohesion: 0.67 -Nodes (2): AllYTranSportSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ConfigurationTest, UnityEngine.Rendering.Universal.Test ### Community 764 - "Community 764" -Cohesion: 0.67 -Nodes (2): AttackAfterKillSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): PhysicalCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 765 - "Community 765" -Cohesion: 0.67 -Nodes (2): AttackGetAttackPointSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 766 - "Community 766" -Cohesion: 0.67 -Nodes (2): AttackRangeUpSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): BIRPToURPConversionExtensions, PropertyConversions ### Community 767 - "Community 767" -Cohesion: 0.67 -Nodes (2): AttackUpSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineGlobalSettingsUI ### Community 768 - "Community 768" -Cohesion: 0.67 -Nodes (2): AutoHealSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI ### Community 769 - "Community 769" -Cohesion: 0.67 -Nodes (2): AyaBuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): NewRendererFeatureDropdownItem, UnityEditor.Rendering.Universal ### Community 770 - "Community 770" -Cohesion: 0.67 -Nodes (2): AyaDamageDebuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineAssetUI ### Community 771 - "Community 771" -Cohesion: 0.67 -Nodes (2): AyaMoveAgainBuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): VFXSRPSubOutput, UnityEditor.VFX.URP, VFXURPSubOutput ### Community 772 - "Community 772" -Cohesion: 0.67 -Nodes (2): AyaMoveAgainSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): IShaderVariantSettings, UnityEngine.Rendering.Universal, UniversalRenderPipelineGlobalSettings ### Community 773 - "Community 773" -Cohesion: 0.67 -Nodes (2): BambooMoveSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): UnityEngine.Rendering.Universal, UniversalRenderPipelineVolumeDebugSettings, VolumeDebugSettings ### Community 774 - "Community 774" -Cohesion: 0.67 -Nodes (2): BoneAttackUpSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): TileSizeExtensions, UnityEngine.Rendering.Universal ### Community 775 - "Community 775" -Cohesion: 0.67 -Nodes (2): BonePileSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IBuildTask, UnityEditor.Build.Pipeline.Interfaces ### Community 776 - "Community 776" -Cohesion: 0.67 -Nodes (2): BoneSacrificeSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): BuildSpriteData, UnityEditor.Build.Pipeline, IBuildSpriteData ### Community 777 - "Community 777" -Cohesion: 0.67 -Nodes (2): CanHideSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): UnityEngine.Build.Pipeline ### Community 778 - "Community 778" -Cohesion: 0.67 -Nodes (2): CantMoveSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): BuildCacheTestBase, LocalBuildCacheTests, UnityEditor.Build.Pipeline.Tests ### Community 779 - "Community 779" -Cohesion: 0.67 -Nodes (2): CarrySkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): SerializableVirtualTexture, SerializableVirtualTextureLayer, UnityEditor.ShaderGraph.Internal ### Community 780 - "Community 780" -Cohesion: 0.67 -Nodes (2): CatCartSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IHasDependencies, UnityEditor.ShaderGraph ### Community 781 - "Community 781" -Cohesion: 0.67 -Nodes (2): CityStolenSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IGeneratesBodyCode, UnityEditor.ShaderGraph ### Community 782 - "Community 782" -Cohesion: 0.67 -Nodes (2): CityTransportSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IGeneratesFunction, UnityEditor.ShaderGraph ### Community 783 - "Community 783" -Cohesion: 0.67 -Nodes (2): ConvertSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IMayRequireTransform, UnityEditor.ShaderGraph ### Community 784 - "Community 784" -Cohesion: 0.67 -Nodes (2): CorpseBuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IOnAssetEnabled, UnityEditor.Graphing ### Community 785 - "Community 785" -Cohesion: 0.67 -Nodes (2): CreepSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ILegacyTarget, UnityEditor.ShaderGraph.Legacy ### Community 786 - "Community 786" -Cohesion: 0.67 -Nodes (2): CriticalSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IPropertyFromNode, UnityEditor.ShaderGraph ### Community 787 - "Community 787" -Cohesion: 0.67 -Nodes (2): CurseGodSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): PropertyUtil, UnityEditor.ShaderGraph ### Community 788 - "Community 788" -Cohesion: 0.67 -Nodes (2): DashSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): AbstractMaterialNodeModificationListener, UnityEditor.ShaderGraph.Drawing ### Community 789 - "Community 789" -Cohesion: 0.67 -Nodes (2): DieBonePileSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IControlAttribute, UnityEditor.ShaderGraph.Drawing.Controls ### Community 790 - "Community 790" -Cohesion: 0.67 -Nodes (2): DuoSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ISGViewModel, UnityEditor.ShaderGraph.Drawing ### Community 791 - "Community 791" -Cohesion: 0.67 -Nodes (2): EirinFrenchAttackSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IShaderInputObserver, UnityEditor.ShaderGraph.Drawing ### Community 792 - "Community 792" -Cohesion: 0.67 -Nodes (2): EirinFrenchBuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IHasMetadata, UnityEditor.ShaderGraph ### Community 793 - "Community 793" -Cohesion: 0.67 -Nodes (2): EirinFrenchKillSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): InstancingOptionsExtensions, UnityEditor.ShaderGraph ### Community 794 - "Community 794" -Cohesion: 0.67 -Nodes (2): EirinFrenchOverHealSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ShaderModelExtensions, UnityEditor.ShaderGraph ### Community 795 - "Community 795" -Cohesion: 0.67 -Nodes (2): EirinFrenchSuperAttackSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): FakeJsonObject, UnityEditor.ShaderGraph.Serialization ### Community 796 - "Community 796" -Cohesion: 0.67 -Nodes (2): EscapeProSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): IRequiredSetting, RequiredSettingBase, UnityEngine.Rendering ### Community 797 - "Community 797" -Cohesion: 0.67 -Nodes (2): EscapeSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): PRSIRequiredSetting, PRSRequiredSettingBase, UnityEngine.Rendering ### Community 798 - "Community 798" -Cohesion: 0.67 -Nodes (2): EternitySkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): PlayModeTests_10s, SlowTests ### Community 799 - "Community 799" -Cohesion: 0.67 -Nodes (2): FearMakerSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ITestResultAdaptor, UnityEditor.TestTools.TestRunner.Api ### Community 800 - "Community 800" -Cohesion: 0.67 -Nodes (2): FlandreAttackSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ResultSummarizer, UnityEditor.TestTools.TestRunner.GUI ### Community 801 - "Community 801" -Cohesion: 0.67 -Nodes (2): FlandreBuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): ISceneWrapper, SceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene ### Community 802 - "Community 802" -Cohesion: 0.67 -Nodes (2): FlandreKillSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): EditorAssembliesProxy, UnityEditor.TestTools.TestRunner, IEditorAssembliesProxy ### Community 803 - "Community 803" -Cohesion: 0.67 -Nodes (2): FlySkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ITestListProvider, UnityEditor.TestTools.TestRunner ### Community 804 - "Community 804" -Cohesion: 0.67 -Nodes (2): ForestDefenseSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ITestSettingsDeserializer, UnityEditor.TestTools.TestRunner ### Community 805 - "Community 805" -Cohesion: 0.67 -Nodes (2): ForestStartDashSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IUtpLogger, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 806 - "Community 806" -Cohesion: 0.67 -Nodes (2): FortifySkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): Is, UnityEngine.TestTools.Constraints ### Community 807 - "Community 807" -Cohesion: 0.67 -Nodes (2): GalaxyArrowSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ITestSuiteModifier, UnityEngine.TestRunner.NUnitExtensions ### Community 808 - "Community 808" -Cohesion: 0.67 -Nodes (2): GridMomijiPerySkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IEnumerableTestMethodCommand, UnityEngine.TestRunner.NUnitExtensions.Runner ### Community 809 - "Community 809" -Cohesion: 0.67 -Nodes (2): GridMountainSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory ### Community 810 - "Community 810" -Cohesion: 0.67 -Nodes (2): GridRadiationSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IPrebuildSetup, UnityEngine.TestTools ### Community 811 - "Community 811" -Cohesion: 0.67 -Nodes (2): GridSanaeNineContinueDamageSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IAssemblyLoadProxy, UnityEngine.TestTools.Utils ### Community 812 - "Community 812" -Cohesion: 0.67 -Nodes (2): HealSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IScriptingRuntimeProxy, UnityEngine.TestTools.Utils ### Community 813 - "Community 813" -Cohesion: 0.67 -Nodes (2): HideStateSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): CustomYieldInstruction, MonoBehaviourTest, UnityEngine.TestTools ### Community 814 - "Community 814" -Cohesion: 0.67 -Nodes (2): HouraisanFrenchFakeMoonSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): TMP_ResourcesLoader, TMPro.EditorUtilities ### Community 815 - "Community 815" -Cohesion: 0.67 -Nodes (2): HouraisanFrenchWolfMoonSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): TMPro ### Community 816 - "Community 816" -Cohesion: 0.67 -Nodes (2): HouraisanFrenchWolfStartSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): Glyph, TMP_SpriteGlyph, TMPro ### Community 817 - "Community 817" -Cohesion: 0.67 -Nodes (2): IllusionSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): BuiltInPresets, UnityEditor.Timeline ### Community 818 - "Community 818" -Cohesion: 0.67 -Nodes (2): InfiltrateSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ICurvesOwnerInspectorWrapper, UnityEditor.Timeline ### Community 819 - "Community 819" -Cohesion: 0.67 -Nodes (2): JunkerOfficerSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): UnityEditor.Timeline ### Community 820 - "Community 820" -Cohesion: 0.67 -Nodes (2): KaguyaFrenchAroundSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IRowGUI, UnityEditor.Timeline ### Community 821 - "Community 821" -Cohesion: 0.67 -Nodes (2): KaguyaFrenchAttackProSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): UnityEditor.Timeline ### Community 822 - "Community 822" -Cohesion: 0.67 -Nodes (2): KaguyaFrenchAttackSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ISnappable, UnityEditor.Timeline ### Community 823 - "Community 823" Cohesion: 0.67 -Nodes (2): KaguyaFrenchCrescentMoonSkill, Logic.Skill +Nodes (3): CloseScope(), Dispose(), UnityEditor ### Community 824 - "Community 824" -Cohesion: 0.67 -Nodes (2): KaguyaFrenchForeverBuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ILayerable, UnityEngine.Timeline ### Community 825 - "Community 825" -Cohesion: 0.67 -Nodes (2): KaguyaFrenchNapoleonicCodeSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IMarker, UnityEngine.Timeline ### Community 826 - "Community 826" -Cohesion: 0.67 -Nodes (2): KaguyaFrenchNewMoonSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): MarkerTrack, SignalTrack, UnityEngine.Timeline ### Community 827 - "Community 827" -Cohesion: 0.67 -Nodes (2): KaguyaFrenchSynergyDebuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IPropertyPreview, UnityEngine.Timeline ### Community 828 - "Community 828" -Cohesion: 0.67 -Nodes (2): KaguyaFrenchSynergySkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): UnityEngine.EventSystems ### Community 829 - "Community 829" -Cohesion: 0.67 -Nodes (2): KanakoBattlefieldProSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): UnityEngine.UI ### Community 830 - "Community 830" -Cohesion: 0.67 -Nodes (2): KanakoBattlefieldSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IGraphicEnabledDisabled, UnityEngine.UI ### Community 831 - "Community 831" -Cohesion: 0.67 -Nodes (2): KanakoMountainAttackSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IMask, UnityEngine.UI ### Community 832 - "Community 832" -Cohesion: 0.67 -Nodes (2): KanakoMountainBuffSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IMaskable, UnityEngine.UI ### Community 833 - "Community 833" -Cohesion: 0.67 -Nodes (2): KanakoMountainSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): RectangularVertexClipper, UnityEngine.UI ### Community 834 - "Community 834" -Cohesion: 0.67 -Nodes (2): KanakoSittingSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): GraphElementAnalysis, Unity.VisualScripting, IGraphElementAnalysis ### Community 835 - "Community 835" -Cohesion: 0.67 -Nodes (2): KanakoTechSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IAnalyser, Unity.VisualScripting ### Community 836 - "Community 836" -Cohesion: 0.67 -Nodes (2): KanakoWarProSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IAssigner, Unity.VisualScripting ### Community 837 - "Community 837" -Cohesion: 0.67 -Nodes (2): KanakoWarSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IElementAdderMenu, Unity.VisualScripting.ReorderableList.Element_Adder_Menu ### Community 838 - "Community 838" -Cohesion: 0.67 -Nodes (2): KanakoWindProSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IDescriptor, Unity.VisualScripting ### Community 839 - "Community 839" -Cohesion: 0.67 -Nodes (2): KanakoWindSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): DraggedListItem, Unity.VisualScripting ### Community 840 - "Community 840" -Cohesion: 0.67 -Nodes (2): KoakumaDevotionSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): DropdownOption, DropdownSeparator, Unity.VisualScripting ### Community 841 - "Community 841" -Cohesion: 0.67 -Nodes (2): KoakumaHeroSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): Unity.VisualScripting ### Community 842 - "Community 842" -Cohesion: 0.67 -Nodes (2): KoishiAutoMoveSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): AotStubWriter, Unity.VisualScripting ### Community 843 - "Community 843" -Cohesion: 0.67 -Nodes (2): KoishiAutoSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): TypeExtensions, Unity.VisualScripting ### Community 844 - "Community 844" -Cohesion: 0.67 -Nodes (2): KoishiDeathFearSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): EditorTimeUtility, Unity.VisualScripting ### Community 845 - "Community 845" -Cohesion: 0.67 -Nodes (2): KoishiRespawnSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): AboutPluginsPage, Unity.VisualScripting, ListPage ### Community 846 - "Community 846" -Cohesion: 0.67 -Nodes (2): KoishiUndeadSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): Unity.VisualScripting, XUnitOptionProvider ### Community 847 - "Community 847" -Cohesion: 0.67 -Nodes (2): KomeijiFearImmuneSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): FlowStateTransitionEditor, Unity.VisualScripting, NesterStateTransitionEditor ### Community 848 - "Community 848" -Cohesion: 0.67 -Nodes (2): KomeijiFearSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): fsConfig, fsGlobalConfig, Unity.VisualScripting.FullSerializer ### Community 849 - "Community 849" -Cohesion: 0.67 -Nodes (2): KomeijiFearSplashSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): EnsureThat, Unity.VisualScripting ### Community 850 - "Community 850" -Cohesion: 0.67 -Nodes (2): KomeijiKnightAddSkill, Logic.Skill +Cohesion: 0.5 +Nodes (1): Unity.VisualScripting ### Community 851 - "Community 851" -Cohesion: 0.67 -Nodes (2): KomeijiKnightKillSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): DebugUtility, Unity.VisualScripting ### Community 852 - "Community 852" -Cohesion: 0.67 -Nodes (2): KomeijiRiderAddSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IGraphParent, Unity.VisualScripting ### Community 853 - "Community 853" -Cohesion: 0.67 -Nodes (2): KomeijiRiderKillSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IAotStubbable, Unity.VisualScripting ### Community 854 - "Community 854" -Cohesion: 0.67 -Nodes (2): KomeijiRiderTransSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IPrewarmable, Unity.VisualScripting ### Community 855 - "Community 855" -Cohesion: 0.67 -Nodes (2): LaevatainPreySkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): fsObjectAttribute, SerializationVersionAttribute, Unity.VisualScripting ### Community 856 - "Community 856" -Cohesion: 0.67 -Nodes (2): LaevatainSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): fsPropertyAttribute, SerializeAsAttribute, Unity.VisualScripting ### Community 857 - "Community 857" -Cohesion: 0.67 -Nodes (2): LandAndWaterSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): ExceptionUtility, Unity.VisualScripting ### Community 858 - "Community 858" -Cohesion: 0.67 -Nodes (2): LandOnlySkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): IInitializable, Unity.VisualScripting ### Community 859 - "Community 859" -Cohesion: 0.67 -Nodes (2): Logic.Skill, LuckSkill +Cohesion: 0.5 +Nodes (3): IUnitConnectionDebugData, UnitConnectionDebugData, Unity.VisualScripting ### Community 860 - "Community 860" -Cohesion: 0.67 -Nodes (2): Logic.Skill, MahaCorpseBuffSkill +Cohesion: 0.5 +Nodes (3): IUnitRelation, UnitRelation, Unity.VisualScripting ### Community 861 - "Community 861" -Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingAttackUpSkill +Cohesion: 0.5 +Nodes (3): ApplicationException, EvaluationException, Unity.VisualScripting.Dependencies.NCalc ### Community 862 - "Community 862" -Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingCounterSkill +Cohesion: 0.5 +Nodes (2): LogicalExpressionVisitor, Unity.VisualScripting.Dependencies.NCalc ### Community 863 - "Community 863" -Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingDuelSkill +Cohesion: 0.5 +Nodes (3): GLApplication, -sendEvent, -windowWillClose ### Community 864 - "Community 864" -Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingRestSkill +Cohesion: 0.5 +Nodes (4): DB Reader Example Subagent (with Hook Validation), Subagent Hooks (PreToolUse, PostToolUse, Stop), Skills Preloading into Subagents, Subagent Tools and Permissions Control ### Community 865 - "Community 865" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchBoomSkill +Nodes (2): Steamworks, Version ### Community 866 - "Community 866" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchEggSkill +Nodes (2): Constants, Steamworks ### Community 867 - "Community 867" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchEnhanceSkill +Nodes (1): Steamworks ### Community 868 - "Community 868" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchReviveSkill +Nodes (1): Steamworks ### Community 869 - "Community 869" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiBuffSkill +Nodes (2): DoNotRenameAttribute, OPS.Obfuscator.Attribute ### Community 870 - "Community 870" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiHunterAttackSkill +Nodes (2): NotObfuscatedCauseAttribute, OPS.Obfuscator.Attribute ### Community 871 - "Community 871" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiHunterSkill +Nodes (2): ObfuscateAnywayAttribute, OPS.Obfuscator.Attribute ### Community 872 - "Community 872" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiHuntSkill +Nodes (2): DoNotObfuscateClassAttribute, OPS.Obfuscator.Attribute ### Community 873 - "Community 873" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiKillSkill +Nodes (2): DoNotUseClassForFakeCodeAttribute, OPS.Obfuscator.Attribute ### Community 874 - "Community 874" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiPreySkill +Nodes (2): DoNotObfuscateMethodBodyAttribute, OPS.Obfuscator.Attribute ### Community 875 - "Community 875" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiSightSkill +Nodes (2): Animancer.Examples.Events, EventUtilities ### Community 876 - "Community 876" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoonPrincessSkill +Nodes (2): Animancer.Examples.AnimatorControllers, Animations ### Community 877 - "Community 877" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoriyaBuffSkill +Nodes (2): Animancer, IHasKey ### Community 878 - "Community 878" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoriyaKnightMoveSkill +Nodes (0): ### Community 879 - "Community 879" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoriyaRoadSkill +Nodes (2): CanvasCoreExpand, ExpandGraphEditor ### Community 880 - "Community 880" Cohesion: 0.67 -Nodes (2): Logic.Skill, MountainDefenseSkill +Nodes (2): IEventData, ParadoxNotion ### Community 881 - "Community 881" Cohesion: 0.67 -Nodes (2): Logic.Skill, MountainGodSkill +Nodes (2): IMissingRecoverable, ParadoxNotion.Serialization ### Community 882 - "Community 882" Cohesion: 0.67 -Nodes (2): Logic.Skill, MountainMoveSkill +Nodes (2): ParadoxNotion.Serialization, SerializationPair ### Community 883 - "Community 883" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoveRangeUpSkill +Nodes (2): fsGlobalConfig, ParadoxNotion.Serialization.FullSerializer ### Community 884 - "Community 884" Cohesion: 0.67 -Nodes (2): Logic.Skill, NoPopulationSkill +Nodes (2): LogTag, NodeCanvas.Framework ### Community 885 - "Community 885" Cohesion: 0.67 -Nodes (2): Logic.Skill, NuclearFusionSkill +Nodes (2): NodeCanvas.Framework, VariableSeperator ### Community 886 - "Community 886" Cohesion: 0.67 -Nodes (2): Logic.Skill, NuclearSkill +Nodes (2): AnimPhase, TH1_Anim.Fragments ### Community 887 - "Community 887" Cohesion: 0.67 -Nodes (2): Logic.Skill, OceanDefenseSkill +Nodes (2): FragmentStep, TH1_Anim.Fragments ### Community 888 - "Community 888" Cohesion: 0.67 -Nodes (2): Logic.Skill, OceanMoveSkill +Nodes (2): ICityLogic, Logic ### Community 889 - "Community 889" Cohesion: 0.67 -Nodes (2): Logic.Skill, OfficerSkill +Nodes (2): MatchLevelData, TH1_Logic.MatchConfig ### Community 890 - "Community 890" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliEarthSkill +Nodes (2): MemberInfo, TH1_Logic.Net ### Community 891 - "Community 891" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliFireSkill +Nodes (2): OssData, TH1_Logic.Oss ### Community 892 - "Community 892" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliMetalSkill +Nodes (2): Logic.Skill, SkillOwner ### Community 893 - "Community 893" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliMoveProSkill +Nodes (2): AllYCounterSkill, Logic.Skill ### Community 894 - "Community 894" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliMoveSkill +Nodes (2): AllYTranSportSkill, Logic.Skill ### Community 895 - "Community 895" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliRestSkill +Nodes (2): AttackAfterKillSkill, Logic.Skill ### Community 896 - "Community 896" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliStoneProSkill +Nodes (2): AttackGetAttackPointSkill, Logic.Skill ### Community 897 - "Community 897" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliStoneSkill +Nodes (2): AttackRangeUpSkill, Logic.Skill ### Community 898 - "Community 898" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliWaterSkill +Nodes (2): AttackUpSkill, Logic.Skill ### Community 899 - "Community 899" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliWoodSkill +Nodes (2): AutoHealSkill, Logic.Skill ### Community 900 - "Community 900" Cohesion: 0.67 -Nodes (2): Logic.Skill, PathStompSkill +Nodes (2): AyaBuffSkill, Logic.Skill ### Community 901 - "Community 901" Cohesion: 0.67 -Nodes (2): Logic.Skill, PeaceSkill +Nodes (2): AyaDamageDebuffSkill, Logic.Skill ### Community 902 - "Community 902" Cohesion: 0.67 -Nodes (2): Logic.Skill, PersistSkill +Nodes (2): AyaMoveAgainBuffSkill, Logic.Skill ### Community 903 - "Community 903" Cohesion: 0.67 -Nodes (2): Logic.Skill, PhilostoneSkill +Nodes (2): AyaMoveAgainSkill, Logic.Skill ### Community 904 - "Community 904" Cohesion: 0.67 -Nodes (2): Logic.Skill, PhoenixEggSkill +Nodes (2): BambooMoveSkill, Logic.Skill ### Community 905 - "Community 905" Cohesion: 0.67 -Nodes (2): Logic.Skill, PhoenixSkill +Nodes (2): BoneAttackUpSkill, Logic.Skill ### Community 906 - "Community 906" Cohesion: 0.67 -Nodes (2): Logic.Skill, PoisonedSkill +Nodes (2): BonePileSkill, Logic.Skill ### Community 907 - "Community 907" Cohesion: 0.67 -Nodes (2): Logic.Skill, PoorHealthSkill +Nodes (2): BoneSacrificeSkill, Logic.Skill ### Community 908 - "Community 908" Cohesion: 0.67 -Nodes (2): Logic.Skill, PowerUpSkill +Nodes (2): CanHideSkill, Logic.Skill ### Community 909 - "Community 909" Cohesion: 0.67 -Nodes (2): Logic.Skill, QuartetSkill +Nodes (2): CantMoveSkill, Logic.Skill ### Community 910 - "Community 910" Cohesion: 0.67 -Nodes (2): Logic.Skill, RecycleSkill +Nodes (2): CarrySkill, Logic.Skill ### Community 911 - "Community 911" Cohesion: 0.67 -Nodes (2): Logic.Skill, RedMistDefenseSkill +Nodes (2): CatCartSkill, Logic.Skill ### Community 912 - "Community 912" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenFrenchAttakSkill +Nodes (2): CityStolenSkill, Logic.Skill ### Community 913 - "Community 913" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenFrenchKillSkill +Nodes (2): CityTransportSkill, Logic.Skill ### Community 914 - "Community 914" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenIllusionProSkill +Nodes (2): ConvertSkill, Logic.Skill ### Community 915 - "Community 915" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenIllusionSkill +Nodes (2): CorpseBuffSkill, Logic.Skill ### Community 916 - "Community 916" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaAbsorbSkill +Nodes (2): CreepSkill, Logic.Skill ### Community 917 - "Community 917" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaAttackSkill +Nodes (2): CriticalSkill, Logic.Skill ### Community 918 - "Community 918" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaBuff2Skill +Nodes (2): CurseGodSkill, Logic.Skill ### Community 919 - "Community 919" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaBuff3Skill +Nodes (2): DashSkill, Logic.Skill ### Community 920 - "Community 920" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaBuffSkill +Nodes (2): DieBonePileSkill, Logic.Skill ### Community 921 - "Community 921" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaEgyptianEmpireKillSkill +Nodes (2): DuoSkill, Logic.Skill ### Community 922 - "Community 922" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaHelpProSkill +Nodes (2): EirinFrenchAttackSkill, Logic.Skill ### Community 923 - "Community 923" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaHelpSkill +Nodes (2): EirinFrenchBuffSkill, Logic.Skill ### Community 924 - "Community 924" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaHunterSkill +Nodes (2): EirinFrenchKillSkill, Logic.Skill ### Community 925 - "Community 925" Cohesion: 0.67 -Nodes (2): Logic.Skill, RengesyouControSkill +Nodes (2): EirinFrenchOverHealSkill, Logic.Skill ### Community 926 - "Community 926" Cohesion: 0.67 -Nodes (2): Logic.Skill, RengesyouSkill +Nodes (2): EirinFrenchSuperAttackSkill, Logic.Skill ### Community 927 - "Community 927" Cohesion: 0.67 -Nodes (2): Logic.Skill, RinCorpseColletSkill +Nodes (2): EscapeProSkill, Logic.Skill ### Community 928 - "Community 928" Cohesion: 0.67 -Nodes (2): Logic.Skill, RinFireSkill +Nodes (2): EscapeSkill, Logic.Skill ### Community 929 - "Community 929" Cohesion: 0.67 -Nodes (2): Logic.Skill, RotaLFlamesProSkill +Nodes (2): EternitySkill, Logic.Skill ### Community 930 - "Community 930" Cohesion: 0.67 -Nodes (2): Logic.Skill, RotaLFlamesSkill +Nodes (2): FearMakerSkill, Logic.Skill ### Community 931 - "Community 931" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaFlyProSkill +Nodes (2): FlandreAttackSkill, Logic.Skill ### Community 932 - "Community 932" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaFlySkill +Nodes (2): FlandreBuffSkill, Logic.Skill ### Community 933 - "Community 933" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaGuardSkill +Nodes (2): FlandreKillSkill, Logic.Skill ### Community 934 - "Community 934" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaKillSkill +Nodes (2): FlySkill, Logic.Skill ### Community 935 - "Community 935" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaTiredSkill +Nodes (2): ForestDefenseSkill, Logic.Skill ### Community 936 - "Community 936" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivineSkill +Nodes (2): ForestStartDashSkill, Logic.Skill ### Community 937 - "Community 937" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E2_ATK_Skill +Nodes (2): FortifySkill, Logic.Skill ### Community 938 - "Community 938" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E2_MOVE_Skill +Nodes (2): GalaxyArrowSkill, Logic.Skill ### Community 939 - "Community 939" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E3_COUNTER_Skill +Nodes (2): GridMomijiPerySkill, Logic.Skill ### Community 940 - "Community 940" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E3_HP_Skill +Nodes (2): GridMountainSkill, Logic.Skill ### Community 941 - "Community 941" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E4_DEFENSE_Skill +Nodes (2): GridRadiationSkill, Logic.Skill ### Community 942 - "Community 942" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E4_KILL_Skill +Nodes (2): GridSanaeNineContinueDamageSkill, Logic.Skill ### Community 943 - "Community 943" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F2_DEFENSE_Skill +Nodes (2): HealSkill, Logic.Skill ### Community 944 - "Community 944" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F2_RESIST_Skill +Nodes (2): HideStateSkill, Logic.Skill ### Community 945 - "Community 945" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F3_MOVE_Skill +Nodes (2): HouraisanFrenchFakeMoonSkill, Logic.Skill ### Community 946 - "Community 946" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F3_RESIST_Skill +Nodes (2): HouraisanFrenchWolfMoonSkill, Logic.Skill ### Community 947 - "Community 947" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F4_ATK_Skill +Nodes (2): HouraisanFrenchWolfStartSkill, Logic.Skill ### Community 948 - "Community 948" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F4_KILL_Skill +Nodes (2): IllusionSkill, Logic.Skill ### Community 949 - "Community 949" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeMoveSkill +Nodes (2): InfiltrateSkill, Logic.Skill ### Community 950 - "Community 950" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeNineContinueSkill +Nodes (2): JunkerOfficerSkill, Logic.Skill ### Community 951 - "Community 951" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeNineSkill +Nodes (2): KaguyaFrenchAroundSkill, Logic.Skill ### Community 952 - "Community 952" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeWindSkill +Nodes (2): KaguyaFrenchAttackProSkill, Logic.Skill ### Community 953 - "Community 953" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeWindXSkill +Nodes (2): KaguyaFrenchAttackSkill, Logic.Skill ### Community 954 - "Community 954" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriAttackBoomSkill +Nodes (2): KaguyaFrenchCrescentMoonSkill, Logic.Skill ### Community 955 - "Community 955" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriAttackSkill +Nodes (2): KaguyaFrenchForeverBuffSkill, Logic.Skill ### Community 956 - "Community 956" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriBanSkill +Nodes (2): KaguyaFrenchNapoleonicCodeSkill, Logic.Skill ### Community 957 - "Community 957" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriSeeSkill +Nodes (2): KaguyaFrenchNewMoonSkill, Logic.Skill ### Community 958 - "Community 958" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatsujinkiSkill +Nodes (2): KaguyaFrenchSynergyDebuffSkill, Logic.Skill ### Community 959 - "Community 959" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScarletKoakumaSkill +Nodes (2): KaguyaFrenchSynergySkill, Logic.Skill ### Community 960 - "Community 960" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScarletMistRealTimeVampireDebuffSkill +Nodes (2): KanakoBattlefieldProSkill, Logic.Skill ### Community 961 - "Community 961" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScarletMistRealTimeVampireSkill +Nodes (2): KanakoBattlefieldSkill, Logic.Skill ### Community 962 - "Community 962" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScoutProSkill +Nodes (2): KanakoMountainAttackSkill, Logic.Skill ### Community 963 - "Community 963" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScoutSkill +Nodes (2): KanakoMountainBuffSkill, Logic.Skill ### Community 964 - "Community 964" Cohesion: 0.67 -Nodes (2): Logic.Skill, ShenlanSkill +Nodes (2): KanakoMountainSkill, Logic.Skill ### Community 965 - "Community 965" Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillBanBombSkill +Nodes (2): KanakoSittingSkill, Logic.Skill ### Community 966 - "Community 966" Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillBanSkill +Nodes (2): KanakoTechSkill, Logic.Skill ### Community 967 - "Community 967" Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillBase +Nodes (2): KanakoWarProSkill, Logic.Skill ### Community 968 - "Community 968" Cohesion: 0.67 -Nodes (2): Logic.Skill, SneakSkill +Nodes (2): KanakoWarSkill, Logic.Skill ### Community 969 - "Community 969" Cohesion: 0.67 -Nodes (2): Logic.Skill, SpeedUpSkill +Nodes (2): KanakoWindProSkill, Logic.Skill ### Community 970 - "Community 970" Cohesion: 0.67 -Nodes (2): Logic.Skill, SplashSkill +Nodes (2): KanakoWindSkill, Logic.Skill ### Community 971 - "Community 971" Cohesion: 0.67 -Nodes (2): Logic.Skill, StaticSkill +Nodes (2): KoakumaDevotionSkill, Logic.Skill ### Community 972 - "Community 972" Cohesion: 0.67 -Nodes (2): Logic.Skill, StiffSkill +Nodes (2): KoakumaHeroSkill, Logic.Skill ### Community 973 - "Community 973" Cohesion: 0.67 -Nodes (2): Logic.Skill, StompSkill +Nodes (2): KoishiAutoMoveSkill, Logic.Skill ### Community 974 - "Community 974" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuperDashSkill +Nodes (2): KoishiAutoSkill, Logic.Skill ### Community 975 - "Community 975" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuperHideSkill +Nodes (2): KoishiDeathFearSkill, Logic.Skill ### Community 976 - "Community 976" Cohesion: 0.67 -Nodes (2): Logic.Skill, SurpriseSkill +Nodes (2): KoishiRespawnSkill, Logic.Skill ### Community 977 - "Community 977" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoAttackAllySkill +Nodes (2): KoishiUndeadSkill, Logic.Skill ### Community 978 - "Community 978" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoAttackProSkill +Nodes (2): KomeijiFearImmuneSkill, Logic.Skill ### Community 979 - "Community 979" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoAttackSkill +Nodes (2): KomeijiFearSkill, Logic.Skill ### Community 980 - "Community 980" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoCombineSkill +Nodes (2): KomeijiFearSplashSkill, Logic.Skill ### Community 981 - "Community 981" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoFullmapSkill +Nodes (2): KomeijiKnightAddSkill, Logic.Skill ### Community 982 - "Community 982" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiAttackSkill +Nodes (2): KomeijiKnightKillSkill, Logic.Skill ### Community 983 - "Community 983" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiCombineSkill +Nodes (2): KomeijiRiderAddSkill, Logic.Skill ### Community 984 - "Community 984" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiSkill +Nodes (2): KomeijiRiderKillSkill, Logic.Skill ### Community 985 - "Community 985" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiSplitSkill +Nodes (2): KomeijiRiderTransSkill, Logic.Skill ### Community 986 - "Community 986" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoMoveSkill +Nodes (2): LaevatainPreySkill, Logic.Skill ### Community 987 - "Community 987" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoSplitSkill +Nodes (2): LaevatainSkill, Logic.Skill ### Community 988 - "Community 988" Cohesion: 0.67 -Nodes (2): Logic.Skill, SwapSkill +Nodes (2): LandAndWaterSkill, Logic.Skill ### Community 989 - "Community 989" Cohesion: 0.67 -Nodes (2): Logic.Skill, TaiChiSkill +Nodes (2): LandOnlySkill, Logic.Skill ### Community 990 - "Community 990" Cohesion: 0.67 -Nodes (2): Logic.Skill, TenguBuffSkill +Nodes (2): Logic.Skill, LuckSkill ### Community 991 - "Community 991" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchAttackSkill +Nodes (2): Logic.Skill, MahaCorpseBuffSkill ### Community 992 - "Community 992" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchBuffSkill +Nodes (2): Logic.Skill, MeilingAttackUpSkill ### Community 993 - "Community 993" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchDieSkill +Nodes (2): Logic.Skill, MeilingCounterSkill ### Community 994 - "Community 994" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchKillSkill +Nodes (2): Logic.Skill, MeilingDuelSkill ### Community 995 - "Community 995" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchSightSkill +Nodes (2): Logic.Skill, MeilingRestSkill ### Community 996 - "Community 996" Cohesion: 0.67 -Nodes (2): Logic.Skill, ThirdEyeSkill +Nodes (2): Logic.Skill, MokouFrenchBoomSkill ### Community 997 - "Community 997" Cohesion: 0.67 -Nodes (2): Logic.Skill, TreatAsHeroSkill +Nodes (2): Logic.Skill, MokouFrenchEggSkill ### Community 998 - "Community 998" Cohesion: 0.67 -Nodes (2): Logic.Skill, TrioSkill +Nodes (2): Logic.Skill, MokouFrenchEnhanceSkill ### Community 999 - "Community 999" Cohesion: 0.67 -Nodes (2): Logic.Skill, UndeadSkill +Nodes (2): Logic.Skill, MokouFrenchReviveSkill ### Community 1000 - "Community 1000" Cohesion: 0.67 -Nodes (2): Logic.Skill, UniqueSkill +Nodes (2): Logic.Skill, MomijiBuffSkill ### Community 1001 - "Community 1001" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoBaseSkill +Nodes (2): Logic.Skill, MomijiHunterAttackSkill ### Community 1002 - "Community 1002" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoBoneMakerSkill +Nodes (2): Logic.Skill, MomijiHunterSkill ### Community 1003 - "Community 1003" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoDelayActSkill +Nodes (2): Logic.Skill, MomijiHuntSkill ### Community 1004 - "Community 1004" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoRadiationSkill +Nodes (2): Logic.Skill, MomijiKillSkill ### Community 1005 - "Community 1005" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoReadyMoveSkill +Nodes (2): Logic.Skill, MomijiPreySkill ### Community 1006 - "Community 1006" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoReadyMoveSuperSkill +Nodes (2): Logic.Skill, MomijiSightSkill ### Community 1007 - "Community 1007" Cohesion: 0.67 -Nodes (2): Logic.Skill, VampireProSkill +Nodes (2): Logic.Skill, MoonPrincessSkill ### Community 1008 - "Community 1008" Cohesion: 0.67 -Nodes (2): Logic.Skill, VampireSkill +Nodes (2): Logic.Skill, MoriyaBuffSkill ### Community 1009 - "Community 1009" Cohesion: 0.67 -Nodes (2): Logic.Skill, WaterDefenseSkill +Nodes (2): Logic.Skill, MoriyaKnightMoveSkill ### Community 1010 - "Community 1010" Cohesion: 0.67 -Nodes (2): Logic.Skill, WaterMoveSkill +Nodes (2): Logic.Skill, MoriyaRoadSkill ### Community 1011 - "Community 1011" Cohesion: 0.67 -Nodes (2): Logic.Skill, WindGodSkill +Nodes (2): Logic.Skill, MountainDefenseSkill ### Community 1012 - "Community 1012" Cohesion: 0.67 -Nodes (2): Logic.Skill, WindPriestessSkill +Nodes (2): Logic.Skill, MountainGodSkill ### Community 1013 - "Community 1013" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiDashProSkill +Nodes (2): Logic.Skill, MountainMoveSkill ### Community 1014 - "Community 1014" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiDashSkill +Nodes (2): Logic.Skill, MoveRangeUpSkill ### Community 1015 - "Community 1015" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiMovePlusSkill +Nodes (2): Logic.Skill, NoPopulationSkill ### Community 1016 - "Community 1016" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiMoveSkill +Nodes (2): Logic.Skill, NuclearFusionSkill ### Community 1017 - "Community 1017" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiPushSkill +Nodes (2): Logic.Skill, NuclearSkill ### Community 1018 - "Community 1018" Cohesion: 0.67 -Nodes (2): TH1_Logic.MatchConfig, WikiManager +Nodes (2): Logic.Skill, OceanDefenseSkill ### Community 1019 - "Community 1019" Cohesion: 0.67 -Nodes (2): IUIData, TH1_UI.Core +Nodes (2): Logic.Skill, OceanMoveSkill ### Community 1020 - "Community 1020" Cohesion: 0.67 -Nodes (2): TH1_UI.Core, UIResourceName +Nodes (2): Logic.Skill, OfficerSkill ### Community 1021 - "Community 1021" Cohesion: 0.67 -Nodes (2): MemoryPack, MemoryPackCode +Nodes (2): Logic.Skill, PatchouliEarthSkill ### Community 1022 - "Community 1022" Cohesion: 0.67 -Nodes (2): MemoryPack.Internal, PreserveAttribute +Nodes (2): Logic.Skill, PatchouliFireSkill ### Community 1023 - "Community 1023" Cohesion: 0.67 -Nodes (2): NugetForUnity, NuspecContentFile +Nodes (2): Logic.Skill, PatchouliMetalSkill ### Community 1024 - "Community 1024" Cohesion: 0.67 -Nodes (2): NugetForUnity, OnLoadNugetPackageRestorer +Nodes (2): Logic.Skill, PatchouliMoveProSkill ### Community 1025 - "Community 1025" Cohesion: 0.67 -Nodes (2): NugetForUnity.Models, NugetFrameworkGroup +Nodes (2): Logic.Skill, PatchouliMoveSkill ### Community 1026 - "Community 1026" Cohesion: 0.67 -Nodes (2): NugetForUnity.Models, SerializableNugetPackage +Nodes (2): Logic.Skill, PatchouliRestSkill ### Community 1027 - "Community 1027" Cohesion: 0.67 -Nodes (2): WindowsDefine, YooAsset.Editor +Nodes (2): Logic.Skill, PatchouliStoneProSkill ### Community 1028 - "Community 1028" Cohesion: 0.67 -Nodes (2): BuildResult, YooAsset.Editor +Nodes (2): Logic.Skill, PatchouliStoneSkill ### Community 1029 - "Community 1029" Cohesion: 0.67 -Nodes (2): IContextObject, YooAsset.Editor +Nodes (2): Logic.Skill, PatchouliWaterSkill ### Community 1030 - "Community 1030" Cohesion: 0.67 -Nodes (2): CollectAssetInfo, YooAsset.Editor +Nodes (2): Logic.Skill, PatchouliWoodSkill ### Community 1031 - "Community 1031" Cohesion: 0.67 -Nodes (2): CollectCommand, YooAsset.Editor +Nodes (2): Logic.Skill, PathStompSkill ### Community 1032 - "Community 1032" Cohesion: 0.67 -Nodes (2): RuleDisplayName, YooAsset.Editor +Nodes (2): Logic.Skill, PeaceSkill ### Community 1033 - "Community 1033" Cohesion: 0.67 -Nodes (2): ReportAssetInfo, YooAsset.Editor +Nodes (2): Logic.Skill, PersistSkill ### Community 1034 - "Community 1034" Cohesion: 0.67 -Nodes (2): ReportIndependAsset, YooAsset.Editor +Nodes (2): Logic.Skill, PhilostoneSkill ### Community 1035 - "Community 1035" Cohesion: 0.67 -Nodes (2): ReportSummary, YooAsset.Editor +Nodes (2): Logic.Skill, PhoenixEggSkill ### Community 1036 - "Community 1036" Cohesion: 0.67 -Nodes (2): DebugPackageData, YooAsset +Nodes (2): Logic.Skill, PhoenixSkill ### Community 1037 - "Community 1037" Cohesion: 0.67 -Nodes (2): RemoteDebuggerDefine, YooAsset +Nodes (2): Logic.Skill, PoisonedSkill ### Community 1038 - "Community 1038" Cohesion: 0.67 -Nodes (2): ResourceAssist, YooAsset +Nodes (2): Logic.Skill, PoorHealthSkill ### Community 1039 - "Community 1039" Cohesion: 0.67 -Nodes (2): IEventMessage, UniFramework.Event +Nodes (2): Logic.Skill, PowerUpSkill ### Community 1040 - "Community 1040" Cohesion: 0.67 -Nodes (1): Cysharp.Threading.Tasks +Nodes (2): Logic.Skill, QuartetSkill ### Community 1041 - "Community 1041" Cohesion: 0.67 -Nodes (2): SpriteLibraryPropertyString, UnityEditor.U2D.Animation +Nodes (2): Logic.Skill, RecycleSkill ### Community 1042 - "Community 1042" Cohesion: 0.67 -Nodes (2): SpriteLibrarySourceAssetPropertyString, UnityEditor.U2D.Animation +Nodes (2): Logic.Skill, RedMistDefenseSkill ### Community 1043 - "Community 1043" Cohesion: 0.67 -Nodes (2): ISpriteLibraryCategory, UnityEngine.U2D.Animation +Nodes (2): Logic.Skill, ReisenFrenchAttakSkill ### Community 1044 - "Community 1044" Cohesion: 0.67 -Nodes (2): ISpriteLibraryLabel, UnityEngine.U2D.Animation +Nodes (2): Logic.Skill, ReisenFrenchKillSkill ### Community 1045 - "Community 1045" Cohesion: 0.67 -Nodes (2): IPaletteProvider, UnityEditor.U2D.Aseprite +Nodes (2): Logic.Skill, ReisenIllusionProSkill ### Community 1046 - "Community 1046" Cohesion: 0.67 -Nodes (2): PhotoshopFile, PsdBlendMode +Nodes (2): Logic.Skill, ReisenIllusionSkill ### Community 1047 - "Community 1047" Cohesion: 0.67 -Nodes (2): PhotoshopFile, RleRowLengths +Nodes (2): Logic.Skill, RemiliaAbsorbSkill ### Community 1048 - "Community 1048" Cohesion: 0.67 -Nodes (2): BlendingRanges, PhotoshopFile +Nodes (2): Logic.Skill, RemiliaAttackSkill ### Community 1049 - "Community 1049" Cohesion: 0.67 -Nodes (2): Tooltips, UnityEditor.U2D.PSD +Nodes (2): Logic.Skill, RemiliaBuff2Skill ### Community 1050 - "Community 1050" Cohesion: 0.67 -Nodes (2): TilePaletteActiveTargetsProperties, UnityEditor.Tilemaps +Nodes (2): Logic.Skill, RemiliaBuff3Skill ### Community 1051 - "Community 1051" Cohesion: 0.67 -Nodes (2): BurstCompileAttribute, Unity.Burst +Nodes (2): Logic.Skill, RemiliaBuffSkill ### Community 1052 - "Community 1052" Cohesion: 0.67 -Nodes (2): ExternalLink, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, RemiliaEgyptianEmpireKillSkill ### Community 1053 - "Community 1053" Cohesion: 0.67 -Nodes (2): HelpData, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, RemiliaHelpProSkill ### Community 1054 - "Community 1054" Cohesion: 0.67 -Nodes (2): HelpFormat, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, RemiliaHelpSkill ### Community 1055 - "Community 1055" Cohesion: 0.67 -Nodes (2): HelpLink, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, RemiliaHunterSkill ### Community 1056 - "Community 1056" Cohesion: 0.67 -Nodes (2): ChangesetFromCollabCommitResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): Logic.Skill, RengesyouControSkill ### Community 1057 - "Community 1057" Cohesion: 0.67 -Nodes (2): CurrentUserAdminCheckResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): Logic.Skill, RengesyouSkill ### Community 1058 - "Community 1058" Cohesion: 0.67 -Nodes (2): IsCollabProjectMigratedResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): Logic.Skill, RinCorpseColletSkill ### Community 1059 - "Community 1059" Cohesion: 0.67 -Nodes (2): SubscriptionDetailsResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): Logic.Skill, RinFireSkill ### Community 1060 - "Community 1060" Cohesion: 0.67 -Nodes (1): Unity.Collections +Nodes (2): Logic.Skill, RotaLFlamesProSkill ### Community 1061 - "Community 1061" Cohesion: 0.67 -Nodes (2): Packages.Rider.Editor, RiderStyles +Nodes (2): Logic.Skill, RotaLFlamesSkill ### Community 1062 - "Community 1062" Cohesion: 0.67 -Nodes (2): CallbackInitializer, Packages.Rider.Editor.UnitTesting +Nodes (2): Logic.Skill, SakuyaFlyProSkill ### Community 1063 - "Community 1063" Cohesion: 0.67 -Nodes (2): Packages.Rider.Editor.UnitTesting, TestEvent +Nodes (2): Logic.Skill, SakuyaFlySkill ### Community 1064 - "Community 1064" Cohesion: 0.67 -Nodes (2): CommandLineParser, Packages.Rider.Editor.Util +Nodes (2): Logic.Skill, SakuyaGuardSkill ### Community 1065 - "Community 1065" Cohesion: 0.67 -Nodes (2): KnownAssemblies, Microsoft.Unity.VisualStudio.Editor +Nodes (2): Logic.Skill, SakuyaKillSkill ### Community 1066 - "Community 1066" Cohesion: 0.67 -Nodes (2): Microsoft.Unity.VisualStudio.Editor, Solution +Nodes (2): Logic.Skill, SakuyaTiredSkill ### Community 1067 - "Community 1067" Cohesion: 0.67 -Nodes (2): Microsoft.Unity.VisualStudio.Editor, SolutionProperties +Nodes (2): Logic.Skill, SanaeDivineSkill ### Community 1068 - "Community 1068" Cohesion: 0.67 -Nodes (2): ExceptionEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging +Nodes (2): Logic.Skill, SanaeDivine_E2_ATK_Skill ### Community 1069 - "Community 1069" Cohesion: 0.67 -Nodes (2): MessageEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging +Nodes (2): Logic.Skill, SanaeDivine_E2_MOVE_Skill ### Community 1070 - "Community 1070" Cohesion: 0.67 -Nodes (2): Microsoft.Unity.VisualStudio.Editor, ProjectProperties +Nodes (2): Logic.Skill, SanaeDivine_E3_COUNTER_Skill ### Community 1071 - "Community 1071" Cohesion: 0.67 -Nodes (2): ProbeSubdivisionResult, UnityEngine.Rendering +Nodes (2): Logic.Skill, SanaeDivine_E3_HP_Skill ### Community 1072 - "Community 1072" Cohesion: 0.67 -Nodes (2): ISerializedRenderPipelineGlobalSettings, UnityEditor.Rendering +Nodes (2): Logic.Skill, SanaeDivine_E4_DEFENSE_Skill ### Community 1073 - "Community 1073" Cohesion: 0.67 -Nodes (1): UnityEngine.Rendering +Nodes (2): Logic.Skill, SanaeDivine_E4_KILL_Skill ### Community 1074 - "Community 1074" Cohesion: 0.67 -Nodes (2): IAdditionalData, UnityEngine.Rendering +Nodes (2): Logic.Skill, SanaeDivine_F2_DEFENSE_Skill ### Community 1075 - "Community 1075" Cohesion: 0.67 -Nodes (2): IVirtualTexturingEnabledRenderPipeline, UnityEngine.Rendering +Nodes (2): Logic.Skill, SanaeDivine_F2_RESIST_Skill ### Community 1076 - "Community 1076" Cohesion: 0.67 -Nodes (2): SerializableEnum, UnityEngine.Rendering +Nodes (2): Logic.Skill, SanaeDivine_F3_MOVE_Skill ### Community 1077 - "Community 1077" Cohesion: 0.67 -Nodes (2): UnityEngine.Rendering, XRGraphics +Nodes (2): Logic.Skill, SanaeDivine_F3_RESIST_Skill ### Community 1078 - "Community 1078" Cohesion: 0.67 -Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule +Nodes (2): Logic.Skill, SanaeDivine_F4_ATK_Skill ### Community 1079 - "Community 1079" Cohesion: 0.67 -Nodes (2): IShaderVariantSettings, UnityEngine.Rendering +Nodes (2): Logic.Skill, SanaeDivine_F4_KILL_Skill ### Community 1080 - "Community 1080" Cohesion: 0.67 -Nodes (2): ColorSpaceUtils, UnityEngine.Rendering +Nodes (2): Logic.Skill, SanaeMoveSkill ### Community 1081 - "Community 1081" Cohesion: 0.67 -Nodes (2): IVolume, UnityEngine.Rendering +Nodes (2): Logic.Skill, SanaeNineContinueSkill ### Community 1082 - "Community 1082" Cohesion: 0.67 -Nodes (2): ShaderOptions, UnityEngine.Rendering.Universal +Nodes (2): Logic.Skill, SanaeNineSkill ### Community 1083 - "Community 1083" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Nodes (2): Logic.Skill, SanaeWindSkill ### Community 1084 - "Community 1084" Cohesion: 0.67 -Nodes (2): RenderPipelineConverterContainer, UnityEditor.Rendering.Universal +Nodes (2): Logic.Skill, SanaeWindXSkill ### Community 1085 - "Community 1085" Cohesion: 0.67 -Nodes (2): DecalProjectorEditor, UnityEditor.Rendering.Universal +Nodes (2): Logic.Skill, SatoriAttackBoomSkill ### Community 1086 - "Community 1086" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI +Nodes (2): Logic.Skill, SatoriAttackSkill ### Community 1087 - "Community 1087" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalBlockFields +Nodes (2): Logic.Skill, SatoriBanSkill ### Community 1088 - "Community 1088" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalFields +Nodes (2): Logic.Skill, SatoriSeeSkill ### Community 1089 - "Community 1089" Cohesion: 0.67 -Nodes (2): Property, UnityEditor.Rendering.Universal +Nodes (2): Logic.Skill, SatsujinkiSkill ### Community 1090 - "Community 1090" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructFields +Nodes (2): Logic.Skill, ScarletKoakumaSkill ### Community 1091 - "Community 1091" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructs +Nodes (2): Logic.Skill, ScarletMistRealTimeVampireDebuffSkill ### Community 1092 - "Community 1092" Cohesion: 0.67 -Nodes (2): Light2D, UnityEngine.Rendering.Universal +Nodes (2): Logic.Skill, ScarletMistRealTimeVampireSkill ### Community 1093 - "Community 1093" Cohesion: 0.67 -Nodes (2): IRenderPass2D, UnityEngine.Rendering.Universal +Nodes (2): Logic.Skill, ScoutProSkill ### Community 1094 - "Community 1094" Cohesion: 0.67 -Nodes (2): StencilStateData, UnityEngine.Rendering.Universal +Nodes (2): Logic.Skill, ScoutSkill ### Community 1095 - "Community 1095" Cohesion: 0.67 -Nodes (2): DecalShaderPassNames, UnityEngine.Rendering.Universal +Nodes (2): Logic.Skill, ShenlanSkill ### Community 1096 - "Community 1096" Cohesion: 0.67 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (2): Logic.Skill, SkillBanBombSkill ### Community 1097 - "Community 1097" Cohesion: 0.67 -Nodes (2): ShaderInput, UnityEngine.Rendering.Universal +Nodes (2): Logic.Skill, SkillBanSkill ### Community 1098 - "Community 1098" Cohesion: 0.67 -Nodes (2): CommonStrings, UnityEditor.Build.Utilities +Nodes (2): Logic.Skill, SkillBase ### Community 1099 - "Community 1099" Cohesion: 0.67 -Nodes (2): ContextData, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SneakSkill ### Community 1100 - "Community 1100" Cohesion: 0.67 -Nodes (2): IMaterialSlotHasValue, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SpeedUpSkill ### Community 1101 - "Community 1101" Cohesion: 0.67 -Nodes (2): ICanChangeShaderGUI, UnityEditor.Graphing +Nodes (2): Logic.Skill, SplashSkill ### Community 1102 - "Community 1102" Cohesion: 0.67 -Nodes (2): IGroupItem, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, StaticSkill ### Community 1103 - "Community 1103" Cohesion: 0.67 -Nodes (2): AbstractMaterialNode0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Logic.Skill, StiffSkill ### Community 1104 - "Community 1104" Cohesion: 0.67 -Nodes (2): Edge0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Logic.Skill, StompSkill ### Community 1105 - "Community 1105" Cohesion: 0.67 -Nodes (2): GraphData0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Logic.Skill, SuperDashSkill ### Community 1106 - "Community 1106" Cohesion: 0.67 -Nodes (2): GroupData0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Logic.Skill, SuperHideSkill ### Community 1107 - "Community 1107" Cohesion: 0.67 -Nodes (2): IMasterNode1, UnityEditor.ShaderGraph.Legacy +Nodes (2): Logic.Skill, SurpriseSkill ### Community 1108 - "Community 1108" Cohesion: 0.67 -Nodes (2): ShaderInput0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Logic.Skill, SuwakoAttackAllySkill ### Community 1109 - "Community 1109" Cohesion: 0.67 -Nodes (2): SlotReference0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Logic.Skill, SuwakoAttackProSkill ### Community 1110 - "Community 1110" Cohesion: 0.67 -Nodes (2): StickyNoteData0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Logic.Skill, SuwakoAttackSkill ### Community 1111 - "Community 1111" Cohesion: 0.67 -Nodes (1): UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SuwakoCombineSkill ### Community 1112 - "Community 1112" Cohesion: 0.67 -Nodes (2): IRectInterface, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SuwakoFullmapSkill ### Community 1113 - "Community 1113" Cohesion: 0.67 -Nodes (2): FieldCondition, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SuwakoHebiAttackSkill ### Community 1114 - "Community 1114" Cohesion: 0.67 -Nodes (2): AdditionalCommandDescriptor, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SuwakoHebiCombineSkill ### Community 1115 - "Community 1115" Cohesion: 0.67 -Nodes (2): FieldDescriptor, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SuwakoHebiSkill ### Community 1116 - "Community 1116" Cohesion: 0.67 -Nodes (1): UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SuwakoHebiSplitSkill ### Community 1117 - "Community 1117" Cohesion: 0.67 -Nodes (1): UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SuwakoMoveSkill ### Community 1118 - "Community 1118" Cohesion: 0.67 -Nodes (2): BlockFields, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SuwakoSplitSkill ### Community 1119 - "Community 1119" Cohesion: 0.67 -Nodes (2): FieldDependencies, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SwapSkill ### Community 1120 - "Community 1120" Cohesion: 0.67 -Nodes (2): Fields, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, TaiChiSkill ### Community 1121 - "Community 1121" Cohesion: 0.67 -Nodes (2): StructFields, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, TenguBuffSkill ### Community 1122 - "Community 1122" Cohesion: 0.67 -Nodes (2): Structs, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, TewiFrenchAttackSkill ### Community 1123 - "Community 1123" Cohesion: 0.67 -Nodes (2): BuiltInFields, UnityEditor.Rendering.BuiltIn.ShaderGraph +Nodes (2): Logic.Skill, TewiFrenchBuffSkill ### Community 1124 - "Community 1124" Cohesion: 0.67 -Nodes (2): BuiltInStructFields, UnityEditor.Rendering.BuiltIn.ShaderGraph +Nodes (2): Logic.Skill, TewiFrenchDieSkill ### Community 1125 - "Community 1125" Cohesion: 0.67 -Nodes (2): BuiltInStructs, UnityEditor.Rendering.BuiltIn.ShaderGraph +Nodes (2): Logic.Skill, TewiFrenchKillSkill ### Community 1126 - "Community 1126" Cohesion: 0.67 -Nodes (2): IConditional, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, TewiFrenchSightSkill ### Community 1127 - "Community 1127" Cohesion: 0.67 -Nodes (2): IRequiresData, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, ThirdEyeSkill ### Community 1128 - "Community 1128" Cohesion: 0.67 -Nodes (2): TypeMapping, UnityEditor.Graphing.Util +Nodes (2): Logic.Skill, TreatAsHeroSkill ### Community 1129 - "Community 1129" Cohesion: 0.67 -Nodes (2): EnumInfo, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, TrioSkill ### Community 1130 - "Community 1130" Cohesion: 0.67 -Nodes (2): IRequiredSetting, UnityEngine.Rendering +Nodes (2): Logic.Skill, UndeadSkill ### Community 1131 - "Community 1131" Cohesion: 0.67 -Nodes (2): PRSIRequiredSetting, UnityEngine.Rendering +Nodes (2): Logic.Skill, UniqueSkill ### Community 1132 - "Community 1132" Cohesion: 0.67 -Nodes (2): PixelShaderNodeTests, UnityEditor.ShaderGraph.UnitTests +Nodes (2): Logic.Skill, UtsuhoBaseSkill ### Community 1133 - "Community 1133" Cohesion: 0.67 -Nodes (2): ITestAdaptor, UnityEditor.TestTools.TestRunner.Api +Nodes (2): Logic.Skill, UtsuhoBoneMakerSkill ### Community 1134 - "Community 1134" Cohesion: 0.67 -Nodes (2): TestRunProgress, UnityEditor.TestTools.TestRunner.Api +Nodes (2): Logic.Skill, UtsuhoDelayActSkill ### Community 1135 - "Community 1135" Cohesion: 0.67 -Nodes (2): RunFinishedData, UnityEditor.TestTools.TestRunner.Api.Analytics +Nodes (2): Logic.Skill, UtsuhoRadiationSkill ### Community 1136 - "Community 1136" Cohesion: 0.67 -Nodes (2): TestTreeData, UnityEditor.TestTools.TestRunner.Api.Analytics +Nodes (2): Logic.Skill, UtsuhoReadyMoveSkill ### Community 1137 - "Community 1137" Cohesion: 0.67 -Nodes (2): IRunData, UnityEditor.TestTools.TestRunner.CommandLineTest +Nodes (2): Logic.Skill, UtsuhoReadyMoveSuperSkill ### Community 1138 - "Community 1138" Cohesion: 0.67 -Nodes (2): RenderingOptions, UnityEditor.TestTools.TestRunner.GUI +Nodes (2): Logic.Skill, VampireProSkill ### Community 1139 - "Community 1139" Cohesion: 0.67 -Nodes (2): RunProgress, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): Logic.Skill, VampireSkill ### Community 1140 - "Community 1140" Cohesion: 0.67 -Nodes (2): TaskInfo, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): Logic.Skill, WaterDefenseSkill ### Community 1141 - "Community 1141" Cohesion: 0.67 -Nodes (2): TestProgress, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): Logic.Skill, WaterMoveSkill ### Community 1142 - "Community 1142" Cohesion: 0.67 -Nodes (2): ISceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene +Nodes (2): Logic.Skill, WindGodSkill ### Community 1143 - "Community 1143" Cohesion: 0.67 -Nodes (2): IEditorAssembliesProxy, UnityEditor.TestTools.TestRunner +Nodes (2): Logic.Skill, WindPriestessSkill ### Community 1144 - "Community 1144" Cohesion: 0.67 -Nodes (2): ITestListCacheData, UnityEditor.TestTools.TestRunner +Nodes (2): Logic.Skill, YuugiDashProSkill ### Community 1145 - "Community 1145" Cohesion: 0.67 -Nodes (2): TestRunData, UnityEditor.TestRunner.UnityTestProtocol +Nodes (2): Logic.Skill, YuugiDashSkill ### Community 1146 - "Community 1146" Cohesion: 0.67 -Nodes (2): BuildSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): Logic.Skill, YuugiMovePlusSkill ### Community 1147 - "Community 1147" Cohesion: 0.67 -Nodes (2): PlayerSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): Logic.Skill, YuugiMoveSkill ### Community 1148 - "Community 1148" Cohesion: 0.67 -Nodes (2): PlayerSystemInfo, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): Logic.Skill, YuugiPushSkill ### Community 1149 - "Community 1149" Cohesion: 0.67 -Nodes (2): QualitySettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): TH1_Logic.MatchConfig, WikiManager ### Community 1150 - "Community 1150" Cohesion: 0.67 -Nodes (2): ScreenSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): IUIData, TH1_UI.Core ### Community 1151 - "Community 1151" Cohesion: 0.67 -Nodes (2): EnumerableTestState, UnityEngine.TestTools +Nodes (2): TH1_UI.Core, UIResourceName ### Community 1152 - "Community 1152" Cohesion: 0.67 -Nodes (2): FeatureFlags, UnityEngine.TestRunner.NUnitExtensions.Runner +Nodes (2): MemoryPack, MemoryPackCode ### Community 1153 - "Community 1153" Cohesion: 0.67 -Nodes (2): RestoreTestContextAfterDomainReload, UnityEngine.TestRunner.NUnitExtensions.Runner +Nodes (2): MemoryPack.Internal, PreserveAttribute ### Community 1154 - "Community 1154" Cohesion: 0.67 -Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, UnityWorkItemDataHolder +Nodes (2): NugetForUnity, NuspecContentFile ### Community 1155 - "Community 1155" Cohesion: 0.67 -Nodes (2): PlayerConnectionMessageIds, UnityEngine.TestRunner.TestLaunchers +Nodes (2): NugetForUnity, OnLoadNugetPackageRestorer ### Community 1156 - "Community 1156" Cohesion: 0.67 -Nodes (2): RemoteTestData, UnityEngine.TestRunner.TestLaunchers +Nodes (2): NugetForUnity.Models, NugetFrameworkGroup ### Community 1157 - "Community 1157" Cohesion: 0.67 -Nodes (2): RemoteTestResultData, UnityEngine.TestRunner.TestLaunchers +Nodes (2): NugetForUnity.Models, SerializableNugetPackage ### Community 1158 - "Community 1158" Cohesion: 0.67 -Nodes (2): RemoteTestResultDataWithTestData, UnityEngine.TestRunner.TestLaunchers +Nodes (2): WindowsDefine, YooAsset.Editor ### Community 1159 - "Community 1159" Cohesion: 0.67 -Nodes (2): IMonoBehaviourTest, UnityEngine.TestTools +Nodes (2): BuildResult, YooAsset.Editor ### Community 1160 - "Community 1160" Cohesion: 0.67 -Nodes (2): TMP_UIStyleManager, TMPro.EditorUtilities +Nodes (2): IContextObject, YooAsset.Editor ### Community 1161 - "Community 1161" Cohesion: 0.67 -Nodes (2): TMP_GlyphPairAdjustmentRecord, TMPro +Nodes (2): CollectAssetInfo, YooAsset.Editor ### Community 1162 - "Community 1162" Cohesion: 0.67 -Nodes (2): CodePoint, TMPro +Nodes (2): CollectCommand, YooAsset.Editor ### Community 1163 - "Community 1163" Cohesion: 0.67 -Nodes (2): TMP_TextElement, TMPro +Nodes (2): RuleDisplayName, YooAsset.Editor ### Community 1164 - "Community 1164" Cohesion: 0.67 -Nodes (2): TMP_TextElement_Legacy, TMPro +Nodes (2): ReportAssetInfo, YooAsset.Editor ### Community 1165 - "Community 1165" Cohesion: 0.67 -Nodes (2): IMenuChecked, UnityEditor.Timeline +Nodes (2): ReportIndependAsset, YooAsset.Editor ### Community 1166 - "Community 1166" Cohesion: 0.67 -Nodes (2): IMenuName, UnityEditor.Timeline +Nodes (2): ReportSummary, YooAsset.Editor ### Community 1167 - "Community 1167" Cohesion: 0.67 -Nodes (2): TimelineShortcutAttribute, UnityEditor.Timeline.Actions +Nodes (2): DebugPackageData, YooAsset ### Community 1168 - "Community 1168" Cohesion: 0.67 -Nodes (2): ItemsGroup, UnityEditor.Timeline +Nodes (2): RemoteDebuggerDefine, YooAsset ### Community 1169 - "Community 1169" Cohesion: 0.67 -Nodes (2): ItemsPerTrack, UnityEditor.Timeline +Nodes (2): ResourceAssist, YooAsset ### Community 1170 - "Community 1170" Cohesion: 0.67 -Nodes (2): TimelineClipGroup, UnityEditor.Timeline +Nodes (2): IEventMessage, UniFramework.Event ### Community 1171 - "Community 1171" Cohesion: 0.67 -Nodes (2): ManipulatorsUtils, UnityEditor.Timeline +Nodes (1): Cysharp.Threading.Tasks ### Community 1172 - "Community 1172" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): SpriteLibraryPropertyString, UnityEditor.U2D.Animation ### Community 1173 - "Community 1173" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): SpriteLibrarySourceAssetPropertyString, UnityEditor.U2D.Animation ### Community 1174 - "Community 1174" Cohesion: 0.67 -Nodes (1): UnityEditor +Nodes (2): ISpriteLibraryCategory, UnityEngine.U2D.Animation ### Community 1175 - "Community 1175" Cohesion: 0.67 -Nodes (1): UnityEditor +Nodes (2): ISpriteLibraryLabel, UnityEngine.U2D.Animation ### Community 1176 - "Community 1176" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): IPaletteProvider, UnityEditor.U2D.Aseprite ### Community 1177 - "Community 1177" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): PhotoshopFile, PsdBlendMode ### Community 1178 - "Community 1178" Cohesion: 0.67 -Nodes (2): UnityEditor.Timeline, WindowConstants +Nodes (2): PhotoshopFile, RleRowLengths ### Community 1179 - "Community 1179" Cohesion: 0.67 -Nodes (2): INotificationOptionProvider, UnityEngine.Timeline +Nodes (2): BlendingRanges, PhotoshopFile ### Community 1180 - "Community 1180" Cohesion: 0.67 -Nodes (2): AnimationTriggers, UnityEngine.UI +Nodes (2): Tooltips, UnityEditor.U2D.PSD ### Community 1181 - "Community 1181" Cohesion: 0.67 -Nodes (1): UnityEngine.UI +Nodes (2): TilePaletteActiveTargetsProperties, UnityEditor.Tilemaps ### Community 1182 - "Community 1182" Cohesion: 0.67 -Nodes (1): UnityEngine.UI +Nodes (2): BurstCompileAttribute, Unity.Burst ### Community 1183 - "Community 1183" Cohesion: 0.67 -Nodes (2): ReflectionMethodsCache, UnityEngine.UI +Nodes (2): ExternalLink, Unity.PlasticSCM.Editor.Help ### Community 1184 - "Community 1184" Cohesion: 0.67 -Nodes (2): BoltStyles, Unity.VisualScripting +Nodes (2): HelpData, Unity.PlasticSCM.Editor.Help ### Community 1185 - "Community 1185" Cohesion: 0.67 -Nodes (2): IAnalysis, Unity.VisualScripting +Nodes (2): HelpFormat, Unity.PlasticSCM.Editor.Help ### Community 1186 - "Community 1186" Cohesion: 0.67 -Nodes (2): ReorderableListStyles, Unity.VisualScripting.ReorderableList +Nodes (2): HelpLink, Unity.PlasticSCM.Editor.Help ### Community 1187 - "Community 1187" Cohesion: 0.67 -Nodes (2): LudiqGraphsEditorUtility, Unity.VisualScripting +Nodes (2): ChangesetFromCollabCommitResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1188 - "Community 1188" Cohesion: 0.67 -Nodes (2): InspectorUtility, Unity.VisualScripting +Nodes (2): CurrentUserAdminCheckResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1189 - "Community 1189" Cohesion: 0.67 -Nodes (2): ListOption, Unity.VisualScripting +Nodes (2): IsCollabProjectMigratedResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1190 - "Community 1190" Cohesion: 0.67 -Nodes (2): LudiqStyles, Unity.VisualScripting +Nodes (2): SubscriptionDetailsResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1191 - "Community 1191" Cohesion: 0.67 -Nodes (2): SharedEditorTextureDictionary, Unity.VisualScripting +Nodes (1): Unity.Collections ### Community 1192 - "Community 1192" Cohesion: 0.67 -Nodes (1): Unity.VisualScripting +Nodes (2): Packages.Rider.Editor, RiderStyles ### Community 1193 - "Community 1193" Cohesion: 0.67 -Nodes (2): ColorPalette, Unity.VisualScripting +Nodes (2): CallbackInitializer, Packages.Rider.Editor.UnitTesting ### Community 1194 - "Community 1194" Cohesion: 0.67 -Nodes (2): IDropdownOption, Unity.VisualScripting +Nodes (2): Packages.Rider.Editor.UnitTesting, TestEvent ### Community 1195 - "Community 1195" Cohesion: 0.67 -Nodes (2): FontCollection, Unity.VisualScripting +Nodes (2): CommandLineParser, Packages.Rider.Editor.Util ### Community 1196 - "Community 1196" Cohesion: 0.67 -Nodes (2): FuzzyGroup, Unity.VisualScripting +Nodes (2): KnownAssemblies, Microsoft.Unity.VisualStudio.Editor ### Community 1197 - "Community 1197" Cohesion: 0.67 -Nodes (2): IconSize, Unity.VisualScripting +Nodes (2): Microsoft.Unity.VisualStudio.Editor, Solution ### Community 1198 - "Community 1198" Cohesion: 0.67 -Nodes (2): CommonLicenses, Unity.VisualScripting +Nodes (2): Microsoft.Unity.VisualStudio.Editor, SolutionProperties ### Community 1199 - "Community 1199" Cohesion: 0.67 -Nodes (2): Licenses, Unity.VisualScripting +Nodes (2): ExceptionEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging ### Community 1200 - "Community 1200" Cohesion: 0.67 -Nodes (2): CommonLicenses, Unity.VisualScripting +Nodes (2): MessageEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging ### Community 1201 - "Community 1201" Cohesion: 0.67 -Nodes (2): CommonLicenses, Unity.VisualScripting +Nodes (2): Microsoft.Unity.VisualStudio.Editor, ProjectProperties ### Community 1202 - "Community 1202" Cohesion: 0.67 -Nodes (2): IPluginLinked, Unity.VisualScripting +Nodes (2): ProbeSubdivisionResult, UnityEngine.Rendering ### Community 1203 - "Community 1203" Cohesion: 0.67 -Nodes (2): ThreadableAssetWrapper, Unity.VisualScripting +Nodes (2): ISerializedRenderPipelineGlobalSettings, UnityEditor.Rendering ### Community 1204 - "Community 1204" Cohesion: 0.67 -Nodes (2): LudiqEditorUtility, Unity.VisualScripting +Nodes (1): UnityEngine.Rendering ### Community 1205 - "Community 1205" Cohesion: 0.67 -Nodes (2): PackageVersionUtility, Unity.VisualScripting +Nodes (2): IAdditionalData, UnityEngine.Rendering ### Community 1206 - "Community 1206" Cohesion: 0.67 -Nodes (2): ISearchResult, Unity.VisualScripting +Nodes (2): IVirtualTexturingEnabledRenderPipeline, UnityEngine.Rendering ### Community 1207 - "Community 1207" Cohesion: 0.67 -Nodes (2): IAboutable, Unity.VisualScripting +Nodes (2): SerializableEnum, UnityEngine.Rendering ### Community 1208 - "Community 1208" Cohesion: 0.67 -Nodes (2): UnitConnectionStyles, Unity.VisualScripting +Nodes (2): UnityEngine.Rendering, XRGraphics ### Community 1209 - "Community 1209" Cohesion: 0.67 -Nodes (2): UnitOptionUtility, Unity.VisualScripting +Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule ### Community 1210 - "Community 1210" Cohesion: 0.67 -Nodes (2): ISpecifiesCloner, Unity.VisualScripting +Nodes (2): IShaderVariantSettings, UnityEngine.Rendering ### Community 1211 - "Community 1211" Cohesion: 0.67 -Nodes (2): INotifyCollectionChanged, Unity.VisualScripting +Nodes (2): ColorSpaceUtils, UnityEngine.Rendering ### Community 1212 - "Community 1212" Cohesion: 0.67 -Nodes (2): IConnection, Unity.VisualScripting +Nodes (2): IVolume, UnityEngine.Rendering ### Community 1213 - "Community 1213" Cohesion: 0.67 -Nodes (2): IDecoratorAttribute, Unity.VisualScripting +Nodes (2): ShaderOptions, UnityEngine.Rendering.Universal ### Community 1214 - "Community 1214" Cohesion: 0.67 -Nodes (2): fsConverterRegistrar, Unity.VisualScripting.FullSerializer +Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 1215 - "Community 1215" Cohesion: 0.67 -Nodes (2): fsTypeCache, Unity.VisualScripting.FullSerializer +Nodes (2): RenderPipelineConverterContainer, UnityEditor.Rendering.Universal ### Community 1216 - "Community 1216" Cohesion: 0.67 -Nodes (2): EditorBindingUtility, Unity.VisualScripting +Nodes (2): DecalProjectorEditor, UnityEditor.Rendering.Universal ### Community 1217 - "Community 1217" Cohesion: 0.67 -Nodes (2): EditorTimeBinding, Unity.VisualScripting +Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI ### Community 1218 - "Community 1218" Cohesion: 0.67 -Nodes (2): IInspectableAttribute, Unity.VisualScripting +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalBlockFields ### Community 1219 - "Community 1219" Cohesion: 0.67 -Nodes (2): EnsureThat, Unity.VisualScripting +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalFields ### Community 1220 - "Community 1220" Cohesion: 0.67 -Nodes (2): ExceptionMessages, Unity.VisualScripting +Nodes (2): Property, UnityEditor.Rendering.Universal ### Community 1221 - "Community 1221" Cohesion: 0.67 -Nodes (2): EventHooks, Unity.VisualScripting +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructFields ### Community 1222 - "Community 1222" Cohesion: 0.67 -Nodes (2): IGraphElementData, Unity.VisualScripting +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructs ### Community 1223 - "Community 1223" Cohesion: 0.67 -Nodes (2): IGraphElementDebugData, Unity.VisualScripting +Nodes (2): Light2D, UnityEngine.Rendering.Universal ### Community 1224 - "Community 1224" Cohesion: 0.67 -Nodes (2): IGraphItem, Unity.VisualScripting +Nodes (2): IRenderPass2D, UnityEngine.Rendering.Universal ### Community 1225 - "Community 1225" Cohesion: 0.67 -Nodes (2): ProfiledSegment, Unity.VisualScripting +Nodes (2): StencilStateData, UnityEngine.Rendering.Universal ### Community 1226 - "Community 1226" Cohesion: 0.67 -Nodes (2): OperatorHandler, Unity.VisualScripting +Nodes (2): DecalShaderPassNames, UnityEngine.Rendering.Universal ### Community 1227 - "Community 1227" Cohesion: 0.67 -Nodes (2): ISerializedPropertyProvider, Unity.VisualScripting +Nodes (1): UnityEngine.Rendering.Universal ### Community 1228 - "Community 1228" Cohesion: 0.67 -Nodes (2): ISingleton, Unity.VisualScripting +Nodes (2): ShaderInput, UnityEngine.Rendering.Universal ### Community 1229 - "Community 1229" Cohesion: 0.67 -Nodes (2): IUnityObjectOwnable, Unity.VisualScripting +Nodes (2): CommonStrings, UnityEditor.Build.Utilities ### Community 1230 - "Community 1230" Cohesion: 0.67 -Nodes (2): IIdentifiable, Unity.VisualScripting +Nodes (2): ContextData, UnityEditor.ShaderGraph ### Community 1231 - "Community 1231" Cohesion: 0.67 -Nodes (2): Unity.VisualScripting, VariableDeclaration +Nodes (2): IMaterialSlotHasValue, UnityEditor.ShaderGraph ### Community 1232 - "Community 1232" Cohesion: 0.67 -Nodes (2): IDefaultValue, Unity.VisualScripting +Nodes (2): ICanChangeShaderGUI, UnityEditor.Graphing ### Community 1233 - "Community 1233" Cohesion: 0.67 -Nodes (2): IMouseEventUnit, Unity.VisualScripting +Nodes (2): IGroupItem, UnityEditor.ShaderGraph ### Community 1234 - "Community 1234" Cohesion: 0.67 -Nodes (2): IUnitPortDefinition, Unity.VisualScripting +Nodes (2): AbstractMaterialNode0, UnityEditor.ShaderGraph.Legacy ### Community 1235 - "Community 1235" Cohesion: 0.67 -Nodes (2): StateEventHooks, Unity.VisualScripting +Nodes (2): Edge0, UnityEditor.ShaderGraph.Legacy ### Community 1236 - "Community 1236" Cohesion: 0.67 -Nodes (0): +Nodes (2): GraphData0, UnityEditor.ShaderGraph.Legacy ### Community 1237 - "Community 1237" Cohesion: 0.67 -Nodes (0): +Nodes (2): GroupData0, UnityEditor.ShaderGraph.Legacy ### Community 1238 - "Community 1238" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): IMasterNode1, UnityEditor.ShaderGraph.Legacy ### Community 1239 - "Community 1239" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): ShaderInput0, UnityEditor.ShaderGraph.Legacy ### Community 1240 - "Community 1240" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): SlotReference0, UnityEditor.ShaderGraph.Legacy ### Community 1241 - "Community 1241" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): StickyNoteData0, UnityEditor.ShaderGraph.Legacy ### Community 1242 - "Community 1242" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (1): UnityEditor.ShaderGraph ### Community 1243 - "Community 1243" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): IRectInterface, UnityEditor.ShaderGraph ### Community 1244 - "Community 1244" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): FieldCondition, UnityEditor.ShaderGraph ### Community 1245 - "Community 1245" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): AdditionalCommandDescriptor, UnityEditor.ShaderGraph ### Community 1246 - "Community 1246" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): FieldDescriptor, UnityEditor.ShaderGraph ### Community 1247 - "Community 1247" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (1): UnityEditor.ShaderGraph ### Community 1248 - "Community 1248" -Cohesion: 1.0 -Nodes (1): GCloud.UQM +Cohesion: 0.67 +Nodes (1): UnityEditor.ShaderGraph ### Community 1249 - "Community 1249" -Cohesion: 1.0 -Nodes (1): Animancer.Examples.StateMachines +Cohesion: 0.67 +Nodes (2): BlockFields, UnityEditor.ShaderGraph ### Community 1250 - "Community 1250" -Cohesion: 1.0 -Nodes (1): Animancer +Cohesion: 0.67 +Nodes (2): FieldDependencies, UnityEditor.ShaderGraph ### Community 1251 - "Community 1251" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): Fields, UnityEditor.ShaderGraph ### Community 1252 - "Community 1252" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): StructFields, UnityEditor.ShaderGraph ### Community 1253 - "Community 1253" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): Structs, UnityEditor.ShaderGraph ### Community 1254 - "Community 1254" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): BuiltInFields, UnityEditor.Rendering.BuiltIn.ShaderGraph ### Community 1255 - "Community 1255" -Cohesion: 1.0 -Nodes (1): ParadoxNotion.Design +Cohesion: 0.67 +Nodes (2): BuiltInStructFields, UnityEditor.Rendering.BuiltIn.ShaderGraph ### Community 1256 - "Community 1256" -Cohesion: 1.0 -Nodes (1): ParadoxNotion +Cohesion: 0.67 +Nodes (2): BuiltInStructs, UnityEditor.Rendering.BuiltIn.ShaderGraph ### Community 1257 - "Community 1257" -Cohesion: 1.0 -Nodes (1): ParadoxNotion +Cohesion: 0.67 +Nodes (2): IConditional, UnityEditor.ShaderGraph ### Community 1258 - "Community 1258" -Cohesion: 1.0 -Nodes (1): NodeCanvas.Framework +Cohesion: 0.67 +Nodes (2): IRequiresData, UnityEditor.ShaderGraph ### Community 1259 - "Community 1259" -Cohesion: 1.0 -Nodes (1): NodeCanvas.Framework.Internal +Cohesion: 0.67 +Nodes (2): TypeMapping, UnityEditor.Graphing.Util ### Community 1260 - "Community 1260" -Cohesion: 1.0 -Nodes (1): NodeCanvas.DialogueTrees +Cohesion: 0.67 +Nodes (2): EnumInfo, UnityEditor.ShaderGraph ### Community 1261 - "Community 1261" -Cohesion: 1.0 -Nodes (1): ViConstValueDefine +Cohesion: 0.67 +Nodes (2): IRequiredSetting, UnityEngine.Rendering ### Community 1262 - "Community 1262" -Cohesion: 1.0 -Nodes (1): TH1_Core.Events +Cohesion: 0.67 +Nodes (2): PRSIRequiredSetting, UnityEngine.Rendering ### Community 1263 - "Community 1263" -Cohesion: 1.0 -Nodes (1): DebugCenter +Cohesion: 0.67 +Nodes (2): PixelShaderNodeTests, UnityEditor.ShaderGraph.UnitTests ### Community 1264 - "Community 1264" -Cohesion: 1.0 -Nodes (1): ViewMaskProperty +Cohesion: 0.67 +Nodes (2): ITestAdaptor, UnityEditor.TestTools.TestRunner.Api ### Community 1265 - "Community 1265" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): TestRunProgress, UnityEditor.TestTools.TestRunner.Api ### Community 1266 - "Community 1266" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): RunFinishedData, UnityEditor.TestTools.TestRunner.Api.Analytics ### Community 1267 - "Community 1267" -Cohesion: 1.0 -Nodes (1): NugetForUnity.Configuration +Cohesion: 0.67 +Nodes (2): TestTreeData, UnityEditor.TestTools.TestRunner.Api.Analytics ### Community 1268 - "Community 1268" -Cohesion: 1.0 -Nodes (1): NugetForUnity.Models +Cohesion: 0.67 +Nodes (2): IRunData, UnityEditor.TestTools.TestRunner.CommandLineTest ### Community 1269 - "Community 1269" -Cohesion: 1.0 -Nodes (1): NugetForUnity.Ui +Cohesion: 0.67 +Nodes (2): RenderingOptions, UnityEditor.TestTools.TestRunner.GUI ### Community 1270 - "Community 1270" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): RunProgress, UnityEditor.TestTools.TestRunner.TestRun ### Community 1271 - "Community 1271" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): TaskInfo, UnityEditor.TestTools.TestRunner.TestRun ### Community 1272 - "Community 1272" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): TestProgress, UnityEditor.TestTools.TestRunner.TestRun ### Community 1273 - "Community 1273" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): ISceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene ### Community 1274 - "Community 1274" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): IEditorAssembliesProxy, UnityEditor.TestTools.TestRunner ### Community 1275 - "Community 1275" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): ITestListCacheData, UnityEditor.TestTools.TestRunner ### Community 1276 - "Community 1276" -Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Cohesion: 0.67 +Nodes (2): TestRunData, UnityEditor.TestRunner.UnityTestProtocol ### Community 1277 - "Community 1277" -Cohesion: 1.0 -Nodes (1): YooAsset +Cohesion: 0.67 +Nodes (2): BuildSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1278 - "Community 1278" -Cohesion: 1.0 -Nodes (1): YooAsset +Cohesion: 0.67 +Nodes (2): PlayerSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1279 - "Community 1279" -Cohesion: 1.0 -Nodes (1): YooAsset +Cohesion: 0.67 +Nodes (2): PlayerSystemInfo, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1280 - "Community 1280" -Cohesion: 1.0 -Nodes (1): StreamingAssetsDefine +Cohesion: 0.67 +Nodes (2): QualitySettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1281 - "Community 1281" -Cohesion: 1.0 -Nodes (1): UnityEditor.U2D.Animation +Cohesion: 0.67 +Nodes (2): ScreenSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1282 - "Community 1282" -Cohesion: 1.0 -Nodes (1): UnityEditor.U2D.Animation.SpriteLibraryEditor +Cohesion: 0.67 +Nodes (2): EnumerableTestState, UnityEngine.TestTools ### Community 1283 - "Community 1283" -Cohesion: 1.0 -Nodes (1): PDNWrapper +Cohesion: 0.67 +Nodes (2): FeatureFlags, UnityEngine.TestRunner.NUnitExtensions.Runner ### Community 1284 - "Community 1284" -Cohesion: 1.0 -Nodes (1): PDNWrapper +Cohesion: 0.67 +Nodes (2): RestoreTestContextAfterDomainReload, UnityEngine.TestRunner.NUnitExtensions.Runner ### Community 1285 - "Community 1285" -Cohesion: 1.0 -Nodes (1): UnityEditor.Tilemaps +Cohesion: 0.67 +Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, UnityWorkItemDataHolder ### Community 1286 - "Community 1286" -Cohesion: 1.0 -Nodes (1): Unity.Burst +Cohesion: 0.67 +Nodes (2): PlayerConnectionMessageIds, UnityEngine.TestRunner.TestLaunchers ### Community 1287 - "Community 1287" -Cohesion: 1.0 -Nodes (1): Unity.Burst +Cohesion: 0.67 +Nodes (2): RemoteTestData, UnityEngine.TestRunner.TestLaunchers ### Community 1288 - "Community 1288" -Cohesion: 1.0 -Nodes (1): Unity.Burst.Intrinsics +Cohesion: 0.67 +Nodes (2): RemoteTestResultData, UnityEngine.TestRunner.TestLaunchers ### Community 1289 - "Community 1289" -Cohesion: 1.0 -Nodes (1): Unity.Burst.Intrinsics +Cohesion: 0.67 +Nodes (2): RemoteTestResultDataWithTestData, UnityEngine.TestRunner.TestLaunchers ### Community 1290 - "Community 1290" -Cohesion: 1.0 -Nodes (1): Unity.Burst.Intrinsics +Cohesion: 0.67 +Nodes (2): IMonoBehaviourTest, UnityEngine.TestTools ### Community 1291 - "Community 1291" -Cohesion: 1.0 -Nodes (1): Unity.PlasticSCM.Editor.UI +Cohesion: 0.67 +Nodes (2): TMP_UIStyleManager, TMPro.EditorUtilities ### Community 1292 - "Community 1292" -Cohesion: 1.0 -Nodes (1): Packages.Rider.Editor +Cohesion: 0.67 +Nodes (2): TMP_GlyphPairAdjustmentRecord, TMPro ### Community 1293 - "Community 1293" -Cohesion: 1.0 -Nodes (1): Packages.Rider.Editor.Debugger +Cohesion: 0.67 +Nodes (2): CodePoint, TMPro ### Community 1294 - "Community 1294" -Cohesion: 1.0 -Nodes (1): Packages.Rider.Editor.ProjectGeneration +Cohesion: 0.67 +Nodes (2): TMP_TextElement, TMPro ### Community 1295 - "Community 1295" -Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor +Cohesion: 0.67 +Nodes (2): TMP_TextElement_Legacy, TMPro ### Community 1296 - "Community 1296" -Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor.Messaging +Cohesion: 0.67 +Nodes (2): IMenuChecked, UnityEditor.Timeline ### Community 1297 - "Community 1297" -Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor +Cohesion: 0.67 +Nodes (2): IMenuName, UnityEditor.Timeline ### Community 1298 - "Community 1298" -Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor.Testing +Cohesion: 0.67 +Nodes (2): TimelineShortcutAttribute, UnityEditor.Timeline.Actions ### Community 1299 - "Community 1299" -Cohesion: 1.0 -Nodes (1): Unity.Mathematics +Cohesion: 0.67 +Nodes (2): ItemsGroup, UnityEditor.Timeline ### Community 1300 - "Community 1300" -Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering +Cohesion: 0.67 +Nodes (2): ItemsPerTrack, UnityEditor.Timeline ### Community 1301 - "Community 1301" -Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering +Cohesion: 0.67 +Nodes (2): TimelineClipGroup, UnityEditor.Timeline ### Community 1302 - "Community 1302" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Cohesion: 0.67 +Nodes (2): ManipulatorsUtils, UnityEditor.Timeline ### Community 1303 - "Community 1303" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Cohesion: 0.67 +Nodes (1): UnityEditor.Timeline ### Community 1304 - "Community 1304" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Cohesion: 0.67 +Nodes (1): UnityEditor.Timeline ### Community 1305 - "Community 1305" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Cohesion: 0.67 +Nodes (1): UnityEditor ### Community 1306 - "Community 1306" -Cohesion: 1.0 -Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule +Cohesion: 0.67 +Nodes (1): UnityEditor ### Community 1307 - "Community 1307" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Cohesion: 0.67 +Nodes (1): UnityEditor.Timeline ### Community 1308 - "Community 1308" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Cohesion: 0.67 +Nodes (1): UnityEditor.Timeline ### Community 1309 - "Community 1309" -Cohesion: 1.0 -Nodes (1): DummyShaderLibrary +Cohesion: 0.67 +Nodes (2): UnityEditor.Timeline, WindowConstants ### Community 1310 - "Community 1310" -Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Cohesion: 0.67 +Nodes (2): INotificationOptionProvider, UnityEngine.Timeline ### Community 1311 - "Community 1311" -Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Cohesion: 0.67 +Nodes (2): AnimationTriggers, UnityEngine.UI ### Community 1312 - "Community 1312" -Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Cohesion: 0.67 +Nodes (1): UnityEngine.UI ### Community 1313 - "Community 1313" -Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Cohesion: 0.67 +Nodes (1): UnityEngine.UI ### Community 1314 - "Community 1314" -Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Cohesion: 0.67 +Nodes (2): ReflectionMethodsCache, UnityEngine.UI ### Community 1315 - "Community 1315" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Cohesion: 0.67 +Nodes (2): BoltStyles, Unity.VisualScripting ### Community 1316 - "Community 1316" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Cohesion: 0.67 +Nodes (2): IAnalysis, Unity.VisualScripting ### Community 1317 - "Community 1317" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal.Internal +Cohesion: 0.67 +Nodes (2): ReorderableListStyles, Unity.VisualScripting.ReorderableList ### Community 1318 - "Community 1318" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Cohesion: 0.67 +Nodes (2): LudiqGraphsEditorUtility, Unity.VisualScripting ### Community 1319 - "Community 1319" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Cohesion: 0.67 +Nodes (2): InspectorUtility, Unity.VisualScripting ### Community 1320 - "Community 1320" -Cohesion: 1.0 -Nodes (1): ShadersDummy +Cohesion: 0.67 +Nodes (2): ListOption, Unity.VisualScripting ### Community 1321 - "Community 1321" -Cohesion: 1.0 -Nodes (1): UnityEditor.Build.Pipeline +Cohesion: 0.67 +Nodes (2): LudiqStyles, Unity.VisualScripting ### Community 1322 - "Community 1322" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Cohesion: 0.67 +Nodes (2): SharedEditorTextureDictionary, Unity.VisualScripting ### Community 1323 - "Community 1323" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (1): Unity.VisualScripting ### Community 1324 - "Community 1324" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): ColorPalette, Unity.VisualScripting ### Community 1325 - "Community 1325" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): IDropdownOption, Unity.VisualScripting ### Community 1326 - "Community 1326" -Cohesion: 1.0 -Nodes (1): UnityEditor.Graphing +Cohesion: 0.67 +Nodes (2): FontCollection, Unity.VisualScripting ### Community 1327 - "Community 1327" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Cohesion: 0.67 +Nodes (2): FuzzyGroup, Unity.VisualScripting ### Community 1328 - "Community 1328" -Cohesion: 1.0 -Nodes (1): UnityEditor.Graphing +Cohesion: 0.67 +Nodes (2): IconSize, Unity.VisualScripting ### Community 1329 - "Community 1329" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): CommonLicenses, Unity.VisualScripting ### Community 1330 - "Community 1330" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): Licenses, Unity.VisualScripting ### Community 1331 - "Community 1331" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): CommonLicenses, Unity.VisualScripting ### Community 1332 - "Community 1332" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Cohesion: 0.67 +Nodes (2): CommonLicenses, Unity.VisualScripting ### Community 1333 - "Community 1333" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Cohesion: 0.67 +Nodes (2): IPluginLinked, Unity.VisualScripting ### Community 1334 - "Community 1334" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Cohesion: 0.67 +Nodes (2): ThreadableAssetWrapper, Unity.VisualScripting ### Community 1335 - "Community 1335" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): LudiqEditorUtility, Unity.VisualScripting ### Community 1336 - "Community 1336" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): PackageVersionUtility, Unity.VisualScripting ### Community 1337 - "Community 1337" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): ISearchResult, Unity.VisualScripting ### Community 1338 - "Community 1338" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): IAboutable, Unity.VisualScripting ### Community 1339 - "Community 1339" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): UnitConnectionStyles, Unity.VisualScripting ### Community 1340 - "Community 1340" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): UnitOptionUtility, Unity.VisualScripting ### Community 1341 - "Community 1341" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): ISpecifiesCloner, Unity.VisualScripting ### Community 1342 - "Community 1342" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): INotifyCollectionChanged, Unity.VisualScripting ### Community 1343 - "Community 1343" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): IConnection, Unity.VisualScripting ### Community 1344 - "Community 1344" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): IDecoratorAttribute, Unity.VisualScripting ### Community 1345 - "Community 1345" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): fsConverterRegistrar, Unity.VisualScripting.FullSerializer ### Community 1346 - "Community 1346" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): fsTypeCache, Unity.VisualScripting.FullSerializer ### Community 1347 - "Community 1347" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): EditorBindingUtility, Unity.VisualScripting ### Community 1348 - "Community 1348" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): EditorTimeBinding, Unity.VisualScripting ### Community 1349 - "Community 1349" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): IInspectableAttribute, Unity.VisualScripting ### Community 1350 - "Community 1350" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): EnsureThat, Unity.VisualScripting ### Community 1351 - "Community 1351" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): ExceptionMessages, Unity.VisualScripting ### Community 1352 - "Community 1352" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Cohesion: 0.67 +Nodes (2): EventHooks, Unity.VisualScripting ### Community 1353 - "Community 1353" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): IGraphElementData, Unity.VisualScripting ### Community 1354 - "Community 1354" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): IGraphElementDebugData, Unity.VisualScripting ### Community 1355 - "Community 1355" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): IGraphItem, Unity.VisualScripting ### Community 1356 - "Community 1356" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): ProfiledSegment, Unity.VisualScripting ### Community 1357 - "Community 1357" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): OperatorHandler, Unity.VisualScripting ### Community 1358 - "Community 1358" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): ISerializedPropertyProvider, Unity.VisualScripting ### Community 1359 - "Community 1359" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (2): ISingleton, Unity.VisualScripting ### Community 1360 - "Community 1360" -Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.HighDefinition +Cohesion: 0.67 +Nodes (2): IUnityObjectOwnable, Unity.VisualScripting ### Community 1361 - "Community 1361" -Cohesion: 1.0 -Nodes (1): UnityEditor.Graphing +Cohesion: 0.67 +Nodes (2): IIdentifiable, Unity.VisualScripting ### Community 1362 - "Community 1362" -Cohesion: 1.0 -Nodes (1): DummyShaderGraphLibrary +Cohesion: 0.67 +Nodes (2): Unity.VisualScripting, VariableDeclaration ### Community 1363 - "Community 1363" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.UnitTests +Cohesion: 0.67 +Nodes (2): IDefaultValue, Unity.VisualScripting ### Community 1364 - "Community 1364" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.UnitTests +Cohesion: 0.67 +Nodes (2): IMouseEventUnit, Unity.VisualScripting ### Community 1365 - "Community 1365" -Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.UnitTests +Cohesion: 0.67 +Nodes (2): IUnitPortDefinition, Unity.VisualScripting ### Community 1366 - "Community 1366" -Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.Api +Cohesion: 0.67 +Nodes (2): StateEventHooks, Unity.VisualScripting ### Community 1367 - "Community 1367" -Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.Api +Cohesion: 0.67 +Nodes (0): ### Community 1368 - "Community 1368" -Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.Api +Cohesion: 0.67 +Nodes (0): ### Community 1369 - "Community 1369" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.CommandLineTest +Nodes (1): Steamworks ### Community 1370 - "Community 1370" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.TestRun +Nodes (1): Steamworks ### Community 1371 - "Community 1371" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (1): Steamworks ### Community 1372 - "Community 1372" Cohesion: 1.0 -Nodes (1): UnityEngine.TestRunner.TestProtocol +Nodes (1): Steamworks ### Community 1373 - "Community 1373" Cohesion: 1.0 -Nodes (1): TMPro.EditorUtilities +Nodes (1): Steamworks ### Community 1374 - "Community 1374" Cohesion: 1.0 -Nodes (1): TMPro +Nodes (1): Steamworks ### Community 1375 - "Community 1375" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline.Actions +Nodes (1): Steamworks ### Community 1376 - "Community 1376" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline.Actions +Nodes (1): Steamworks ### Community 1377 - "Community 1377" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline +Nodes (1): Steamworks ### Community 1378 - "Community 1378" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline +Nodes (1): Steamworks ### Community 1379 - "Community 1379" Cohesion: 1.0 -Nodes (1): UnityEngine.Timeline +Nodes (1): GCloud.UQM ### Community 1380 - "Community 1380" Cohesion: 1.0 -Nodes (1): UnityEngine.EventSystems +Nodes (1): Animancer.Examples.StateMachines ### Community 1381 - "Community 1381" Cohesion: 1.0 -Nodes (1): UnityEngine.EventSystems +Nodes (1): Animancer ### Community 1382 - "Community 1382" Cohesion: 1.0 -Nodes (1): UnityEngine.EventSystems +Nodes (0): ### Community 1383 - "Community 1383" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (0): ### Community 1384 - "Community 1384" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (0): ### Community 1385 - "Community 1385" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (0): ### Community 1386 - "Community 1386" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): ParadoxNotion.Design ### Community 1387 - "Community 1387" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): ParadoxNotion ### Community 1388 - "Community 1388" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.ReorderableList +Nodes (1): ParadoxNotion ### Community 1389 - "Community 1389" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): NodeCanvas.Framework ### Community 1390 - "Community 1390" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): NodeCanvas.Framework.Internal ### Community 1391 - "Community 1391" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): NodeCanvas.DialogueTrees ### Community 1392 - "Community 1392" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): ViConstValueDefine ### Community 1393 - "Community 1393" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): TH1_Core.Events ### Community 1394 - "Community 1394" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): DebugCenter ### Community 1395 - "Community 1395" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): ViewMaskProperty ### Community 1396 - "Community 1396" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (0): ### Community 1397 - "Community 1397" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (0): ### Community 1398 - "Community 1398" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): NugetForUnity.Configuration ### Community 1399 - "Community 1399" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): NugetForUnity.Models ### Community 1400 - "Community 1400" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.FullSerializer +Nodes (1): NugetForUnity.Ui ### Community 1401 - "Community 1401" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset.Editor ### Community 1402 - "Community 1402" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset.Editor ### Community 1403 - "Community 1403" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset.Editor ### Community 1404 - "Community 1404" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset.Editor ### Community 1405 - "Community 1405" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset.Editor ### Community 1406 - "Community 1406" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset.Editor ### Community 1407 - "Community 1407" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset.Editor ### Community 1408 - "Community 1408" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset ### Community 1409 - "Community 1409" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset ### Community 1410 - "Community 1410" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): YooAsset ### Community 1411 - "Community 1411" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): StreamingAssetsDefine ### Community 1412 - "Community 1412" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.U2D.Animation ### Community 1413 - "Community 1413" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.U2D.Animation.SpriteLibraryEditor ### Community 1414 - "Community 1414" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): PDNWrapper ### Community 1415 - "Community 1415" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): PDNWrapper ### Community 1416 - "Community 1416" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.Tilemaps ### Community 1417 - "Community 1417" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.Dependencies.NCalc +Nodes (1): Unity.Burst ### Community 1418 - "Community 1418" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.Dependencies.NCalc +Nodes (1): Unity.Burst ### Community 1419 - "Community 1419" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.Dependencies.NCalc +Nodes (1): Unity.Burst.Intrinsics ### Community 1420 - "Community 1420" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): Unity.Burst.Intrinsics ### Community 1421 - "Community 1421" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): Unity.Burst.Intrinsics ### Community 1422 - "Community 1422" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): Unity.PlasticSCM.Editor.UI ### Community 1423 - "Community 1423" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): Packages.Rider.Editor ### Community 1424 - "Community 1424" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): Packages.Rider.Editor.Debugger ### Community 1425 - "Community 1425" Cohesion: 1.0 -Nodes (0): +Nodes (1): Packages.Rider.Editor.ProjectGeneration ### Community 1426 - "Community 1426" Cohesion: 1.0 -Nodes (0): +Nodes (1): Microsoft.Unity.VisualStudio.Editor ### Community 1427 - "Community 1427" Cohesion: 1.0 -Nodes (0): +Nodes (1): Microsoft.Unity.VisualStudio.Editor.Messaging ### Community 1428 - "Community 1428" Cohesion: 1.0 -Nodes (0): +Nodes (1): Microsoft.Unity.VisualStudio.Editor ### Community 1429 - "Community 1429" Cohesion: 1.0 -Nodes (0): +Nodes (1): Microsoft.Unity.VisualStudio.Editor.Testing ### Community 1430 - "Community 1430" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.Mathematics ### Community 1431 - "Community 1431" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Rendering ### Community 1432 - "Community 1432" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Rendering ### Community 1433 - "Community 1433" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Rendering ### Community 1434 - "Community 1434" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Rendering ### Community 1435 - "Community 1435" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Rendering ### Community 1436 - "Community 1436" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Rendering ### Community 1437 - "Community 1437" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule ### Community 1438 - "Community 1438" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Rendering ### Community 1439 - "Community 1439" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Rendering ### Community 1440 - "Community 1440" Cohesion: 1.0 -Nodes (0): +Nodes (1): DummyShaderLibrary ### Community 1441 - "Community 1441" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Rendering.Universal ### Community 1442 - "Community 1442" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Rendering.Universal ### Community 1443 - "Community 1443" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Rendering.Universal ### Community 1444 - "Community 1444" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Rendering.Universal ### Community 1445 - "Community 1445" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Rendering.Universal ### Community 1446 - "Community 1446" Cohesion: 1.0 -Nodes (2): MemoryPack Serialization, TH1_Data Module +Nodes (1): UnityEngine.Rendering.Universal ### Community 1447 - "Community 1447" Cohesion: 1.0 -Nodes (2): ET Framework Architecture, TH1 Project Overview +Nodes (1): UnityEngine.Rendering.Universal ### Community 1448 - "Community 1448" Cohesion: 1.0 -Nodes (2): BTNodeCanvas AI Module, NodeCanvas Third-Party Library +Nodes (1): UnityEngine.Rendering.Universal.Internal ### Community 1449 - "Community 1449" Cohesion: 1.0 -Nodes (2): Async Timing Design Rationale (Timer Delay for Steam Callbacks), Refresh Lobby Button +Nodes (1): UnityEngine.Rendering.Universal ### Community 1450 - "Community 1450" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Rendering.Universal ### Community 1451 - "Community 1451" Cohesion: 1.0 -Nodes (0): +Nodes (1): ShadersDummy ### Community 1452 - "Community 1452" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Build.Pipeline ### Community 1453 - "Community 1453" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1454 - "Community 1454" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1455 - "Community 1455" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1456 - "Community 1456" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1457 - "Community 1457" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Graphing ### Community 1458 - "Community 1458" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1459 - "Community 1459" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Graphing ### Community 1460 - "Community 1460" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1461 - "Community 1461" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1462 - "Community 1462" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1463 - "Community 1463" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1464 - "Community 1464" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1465 - "Community 1465" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1466 - "Community 1466" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1467 - "Community 1467" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1468 - "Community 1468" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1469 - "Community 1469" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1470 - "Community 1470" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1471 - "Community 1471" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1472 - "Community 1472" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1473 - "Community 1473" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1474 - "Community 1474" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1475 - "Community 1475" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1476 - "Community 1476" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1477 - "Community 1477" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1478 - "Community 1478" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1479 - "Community 1479" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1480 - "Community 1480" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1481 - "Community 1481" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1482 - "Community 1482" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1483 - "Community 1483" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1484 - "Community 1484" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1485 - "Community 1485" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1486 - "Community 1486" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1487 - "Community 1487" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1488 - "Community 1488" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1489 - "Community 1489" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1490 - "Community 1490" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph ### Community 1491 - "Community 1491" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Rendering.HighDefinition ### Community 1492 - "Community 1492" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Graphing ### Community 1493 - "Community 1493" Cohesion: 1.0 -Nodes (0): +Nodes (1): DummyShaderGraphLibrary ### Community 1494 - "Community 1494" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph.UnitTests ### Community 1495 - "Community 1495" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph.UnitTests ### Community 1496 - "Community 1496" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.ShaderGraph.UnitTests ### Community 1497 - "Community 1497" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.TestTools.TestRunner.Api ### Community 1498 - "Community 1498" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.TestTools.TestRunner.Api ### Community 1499 - "Community 1499" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.TestTools.TestRunner.Api ### Community 1500 - "Community 1500" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.TestTools.TestRunner.CommandLineTest ### Community 1501 - "Community 1501" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.TestTools.TestRunner.TestRun ### Community 1502 - "Community 1502" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1503 - "Community 1503" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.TestRunner.TestProtocol ### Community 1504 - "Community 1504" Cohesion: 1.0 -Nodes (0): +Nodes (1): TMPro.EditorUtilities ### Community 1505 - "Community 1505" Cohesion: 1.0 -Nodes (0): +Nodes (1): TMPro ### Community 1506 - "Community 1506" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Timeline.Actions ### Community 1507 - "Community 1507" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Timeline.Actions ### Community 1508 - "Community 1508" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Timeline ### Community 1509 - "Community 1509" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEditor.Timeline ### Community 1510 - "Community 1510" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.Timeline ### Community 1511 - "Community 1511" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.EventSystems ### Community 1512 - "Community 1512" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.EventSystems ### Community 1513 - "Community 1513" Cohesion: 1.0 -Nodes (0): +Nodes (1): UnityEngine.EventSystems ### Community 1514 - "Community 1514" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1515 - "Community 1515" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1516 - "Community 1516" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1517 - "Community 1517" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1518 - "Community 1518" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1519 - "Community 1519" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.ReorderableList ### Community 1520 - "Community 1520" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1521 - "Community 1521" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1522 - "Community 1522" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1523 - "Community 1523" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1524 - "Community 1524" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1525 - "Community 1525" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1526 - "Community 1526" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1527 - "Community 1527" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1528 - "Community 1528" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1529 - "Community 1529" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1530 - "Community 1530" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1531 - "Community 1531" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.FullSerializer ### Community 1532 - "Community 1532" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1533 - "Community 1533" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1534 - "Community 1534" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1535 - "Community 1535" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1536 - "Community 1536" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1537 - "Community 1537" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1538 - "Community 1538" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1539 - "Community 1539" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1540 - "Community 1540" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1541 - "Community 1541" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1542 - "Community 1542" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1543 - "Community 1543" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1544 - "Community 1544" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1545 - "Community 1545" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1546 - "Community 1546" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1547 - "Community 1547" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1548 - "Community 1548" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.Dependencies.NCalc ### Community 1549 - "Community 1549" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.Dependencies.NCalc ### Community 1550 - "Community 1550" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.Dependencies.NCalc ### Community 1551 - "Community 1551" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1552 - "Community 1552" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1553 - "Community 1553" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1554 - "Community 1554" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1555 - "Community 1555" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1556 - "Community 1556" Cohesion: 1.0 @@ -8073,19 +8204,19 @@ Nodes (0): ### Community 1577 - "Community 1577" Cohesion: 1.0 -Nodes (0): +Nodes (2): MemoryPack Serialization, TH1_Data Module ### Community 1578 - "Community 1578" Cohesion: 1.0 -Nodes (0): +Nodes (2): ET Framework Architecture, TH1 Project Overview ### Community 1579 - "Community 1579" Cohesion: 1.0 -Nodes (0): +Nodes (2): BTNodeCanvas AI Module, NodeCanvas Third-Party Library ### Community 1580 - "Community 1580" Cohesion: 1.0 -Nodes (0): +Nodes (2): Async Timing Design Rationale (Timer Delay for Steam Callbacks), Refresh Lobby Button ### Community 1581 - "Community 1581" Cohesion: 1.0 @@ -8605,1027 +8736,1551 @@ Nodes (0): ### Community 1710 - "Community 1710" Cohesion: 1.0 -Nodes (1): TH1_Logic Module +Nodes (0): ### Community 1711 - "Community 1711" Cohesion: 1.0 -Nodes (1): TH1_Renderer Module +Nodes (0): ### Community 1712 - "Community 1712" Cohesion: 1.0 -Nodes (1): TH1_Config Module +Nodes (0): ### Community 1713 - "Community 1713" Cohesion: 1.0 -Nodes (1): TH1_Instance Module +Nodes (0): ### Community 1714 - "Community 1714" Cohesion: 1.0 -Nodes (1): TH1_Presentation Module +Nodes (0): ### Community 1715 - "Community 1715" Cohesion: 1.0 -Nodes (1): TH1_Anim Module +Nodes (0): ### Community 1716 - "Community 1716" Cohesion: 1.0 -Nodes (1): TH1_Audio Module +Nodes (0): ### Community 1717 - "Community 1717" Cohesion: 1.0 -Nodes (1): Lobby Visibility Logic +Nodes (0): ### Community 1718 - "Community 1718" Cohesion: 1.0 -Nodes (1): Code Reviewer Example Subagent +Nodes (0): ### Community 1719 - "Community 1719" Cohesion: 1.0 -Nodes (1): Debugger Example Subagent +Nodes (0): ### Community 1720 - "Community 1720" Cohesion: 1.0 +Nodes (0): + +### Community 1721 - "Community 1721" +Cohesion: 1.0 +Nodes (0): + +### Community 1722 - "Community 1722" +Cohesion: 1.0 +Nodes (0): + +### Community 1723 - "Community 1723" +Cohesion: 1.0 +Nodes (0): + +### Community 1724 - "Community 1724" +Cohesion: 1.0 +Nodes (0): + +### Community 1725 - "Community 1725" +Cohesion: 1.0 +Nodes (0): + +### Community 1726 - "Community 1726" +Cohesion: 1.0 +Nodes (0): + +### Community 1727 - "Community 1727" +Cohesion: 1.0 +Nodes (0): + +### Community 1728 - "Community 1728" +Cohesion: 1.0 +Nodes (0): + +### Community 1729 - "Community 1729" +Cohesion: 1.0 +Nodes (0): + +### Community 1730 - "Community 1730" +Cohesion: 1.0 +Nodes (0): + +### Community 1731 - "Community 1731" +Cohesion: 1.0 +Nodes (0): + +### Community 1732 - "Community 1732" +Cohesion: 1.0 +Nodes (0): + +### Community 1733 - "Community 1733" +Cohesion: 1.0 +Nodes (0): + +### Community 1734 - "Community 1734" +Cohesion: 1.0 +Nodes (0): + +### Community 1735 - "Community 1735" +Cohesion: 1.0 +Nodes (0): + +### Community 1736 - "Community 1736" +Cohesion: 1.0 +Nodes (0): + +### Community 1737 - "Community 1737" +Cohesion: 1.0 +Nodes (0): + +### Community 1738 - "Community 1738" +Cohesion: 1.0 +Nodes (0): + +### Community 1739 - "Community 1739" +Cohesion: 1.0 +Nodes (0): + +### Community 1740 - "Community 1740" +Cohesion: 1.0 +Nodes (0): + +### Community 1741 - "Community 1741" +Cohesion: 1.0 +Nodes (0): + +### Community 1742 - "Community 1742" +Cohesion: 1.0 +Nodes (0): + +### Community 1743 - "Community 1743" +Cohesion: 1.0 +Nodes (0): + +### Community 1744 - "Community 1744" +Cohesion: 1.0 +Nodes (0): + +### Community 1745 - "Community 1745" +Cohesion: 1.0 +Nodes (0): + +### Community 1746 - "Community 1746" +Cohesion: 1.0 +Nodes (0): + +### Community 1747 - "Community 1747" +Cohesion: 1.0 +Nodes (0): + +### Community 1748 - "Community 1748" +Cohesion: 1.0 +Nodes (0): + +### Community 1749 - "Community 1749" +Cohesion: 1.0 +Nodes (0): + +### Community 1750 - "Community 1750" +Cohesion: 1.0 +Nodes (0): + +### Community 1751 - "Community 1751" +Cohesion: 1.0 +Nodes (0): + +### Community 1752 - "Community 1752" +Cohesion: 1.0 +Nodes (0): + +### Community 1753 - "Community 1753" +Cohesion: 1.0 +Nodes (0): + +### Community 1754 - "Community 1754" +Cohesion: 1.0 +Nodes (0): + +### Community 1755 - "Community 1755" +Cohesion: 1.0 +Nodes (0): + +### Community 1756 - "Community 1756" +Cohesion: 1.0 +Nodes (0): + +### Community 1757 - "Community 1757" +Cohesion: 1.0 +Nodes (0): + +### Community 1758 - "Community 1758" +Cohesion: 1.0 +Nodes (0): + +### Community 1759 - "Community 1759" +Cohesion: 1.0 +Nodes (0): + +### Community 1760 - "Community 1760" +Cohesion: 1.0 +Nodes (0): + +### Community 1761 - "Community 1761" +Cohesion: 1.0 +Nodes (0): + +### Community 1762 - "Community 1762" +Cohesion: 1.0 +Nodes (0): + +### Community 1763 - "Community 1763" +Cohesion: 1.0 +Nodes (0): + +### Community 1764 - "Community 1764" +Cohesion: 1.0 +Nodes (0): + +### Community 1765 - "Community 1765" +Cohesion: 1.0 +Nodes (0): + +### Community 1766 - "Community 1766" +Cohesion: 1.0 +Nodes (0): + +### Community 1767 - "Community 1767" +Cohesion: 1.0 +Nodes (0): + +### Community 1768 - "Community 1768" +Cohesion: 1.0 +Nodes (0): + +### Community 1769 - "Community 1769" +Cohesion: 1.0 +Nodes (0): + +### Community 1770 - "Community 1770" +Cohesion: 1.0 +Nodes (0): + +### Community 1771 - "Community 1771" +Cohesion: 1.0 +Nodes (0): + +### Community 1772 - "Community 1772" +Cohesion: 1.0 +Nodes (0): + +### Community 1773 - "Community 1773" +Cohesion: 1.0 +Nodes (0): + +### Community 1774 - "Community 1774" +Cohesion: 1.0 +Nodes (0): + +### Community 1775 - "Community 1775" +Cohesion: 1.0 +Nodes (0): + +### Community 1776 - "Community 1776" +Cohesion: 1.0 +Nodes (0): + +### Community 1777 - "Community 1777" +Cohesion: 1.0 +Nodes (0): + +### Community 1778 - "Community 1778" +Cohesion: 1.0 +Nodes (0): + +### Community 1779 - "Community 1779" +Cohesion: 1.0 +Nodes (0): + +### Community 1780 - "Community 1780" +Cohesion: 1.0 +Nodes (0): + +### Community 1781 - "Community 1781" +Cohesion: 1.0 +Nodes (0): + +### Community 1782 - "Community 1782" +Cohesion: 1.0 +Nodes (0): + +### Community 1783 - "Community 1783" +Cohesion: 1.0 +Nodes (0): + +### Community 1784 - "Community 1784" +Cohesion: 1.0 +Nodes (0): + +### Community 1785 - "Community 1785" +Cohesion: 1.0 +Nodes (0): + +### Community 1786 - "Community 1786" +Cohesion: 1.0 +Nodes (0): + +### Community 1787 - "Community 1787" +Cohesion: 1.0 +Nodes (0): + +### Community 1788 - "Community 1788" +Cohesion: 1.0 +Nodes (0): + +### Community 1789 - "Community 1789" +Cohesion: 1.0 +Nodes (0): + +### Community 1790 - "Community 1790" +Cohesion: 1.0 +Nodes (0): + +### Community 1791 - "Community 1791" +Cohesion: 1.0 +Nodes (0): + +### Community 1792 - "Community 1792" +Cohesion: 1.0 +Nodes (0): + +### Community 1793 - "Community 1793" +Cohesion: 1.0 +Nodes (0): + +### Community 1794 - "Community 1794" +Cohesion: 1.0 +Nodes (0): + +### Community 1795 - "Community 1795" +Cohesion: 1.0 +Nodes (0): + +### Community 1796 - "Community 1796" +Cohesion: 1.0 +Nodes (0): + +### Community 1797 - "Community 1797" +Cohesion: 1.0 +Nodes (0): + +### Community 1798 - "Community 1798" +Cohesion: 1.0 +Nodes (0): + +### Community 1799 - "Community 1799" +Cohesion: 1.0 +Nodes (0): + +### Community 1800 - "Community 1800" +Cohesion: 1.0 +Nodes (0): + +### Community 1801 - "Community 1801" +Cohesion: 1.0 +Nodes (0): + +### Community 1802 - "Community 1802" +Cohesion: 1.0 +Nodes (0): + +### Community 1803 - "Community 1803" +Cohesion: 1.0 +Nodes (0): + +### Community 1804 - "Community 1804" +Cohesion: 1.0 +Nodes (0): + +### Community 1805 - "Community 1805" +Cohesion: 1.0 +Nodes (0): + +### Community 1806 - "Community 1806" +Cohesion: 1.0 +Nodes (0): + +### Community 1807 - "Community 1807" +Cohesion: 1.0 +Nodes (0): + +### Community 1808 - "Community 1808" +Cohesion: 1.0 +Nodes (0): + +### Community 1809 - "Community 1809" +Cohesion: 1.0 +Nodes (0): + +### Community 1810 - "Community 1810" +Cohesion: 1.0 +Nodes (0): + +### Community 1811 - "Community 1811" +Cohesion: 1.0 +Nodes (0): + +### Community 1812 - "Community 1812" +Cohesion: 1.0 +Nodes (0): + +### Community 1813 - "Community 1813" +Cohesion: 1.0 +Nodes (0): + +### Community 1814 - "Community 1814" +Cohesion: 1.0 +Nodes (0): + +### Community 1815 - "Community 1815" +Cohesion: 1.0 +Nodes (0): + +### Community 1816 - "Community 1816" +Cohesion: 1.0 +Nodes (0): + +### Community 1817 - "Community 1817" +Cohesion: 1.0 +Nodes (0): + +### Community 1818 - "Community 1818" +Cohesion: 1.0 +Nodes (0): + +### Community 1819 - "Community 1819" +Cohesion: 1.0 +Nodes (0): + +### Community 1820 - "Community 1820" +Cohesion: 1.0 +Nodes (0): + +### Community 1821 - "Community 1821" +Cohesion: 1.0 +Nodes (0): + +### Community 1822 - "Community 1822" +Cohesion: 1.0 +Nodes (0): + +### Community 1823 - "Community 1823" +Cohesion: 1.0 +Nodes (0): + +### Community 1824 - "Community 1824" +Cohesion: 1.0 +Nodes (0): + +### Community 1825 - "Community 1825" +Cohesion: 1.0 +Nodes (0): + +### Community 1826 - "Community 1826" +Cohesion: 1.0 +Nodes (0): + +### Community 1827 - "Community 1827" +Cohesion: 1.0 +Nodes (0): + +### Community 1828 - "Community 1828" +Cohesion: 1.0 +Nodes (0): + +### Community 1829 - "Community 1829" +Cohesion: 1.0 +Nodes (0): + +### Community 1830 - "Community 1830" +Cohesion: 1.0 +Nodes (0): + +### Community 1831 - "Community 1831" +Cohesion: 1.0 +Nodes (0): + +### Community 1832 - "Community 1832" +Cohesion: 1.0 +Nodes (0): + +### Community 1833 - "Community 1833" +Cohesion: 1.0 +Nodes (0): + +### Community 1834 - "Community 1834" +Cohesion: 1.0 +Nodes (0): + +### Community 1835 - "Community 1835" +Cohesion: 1.0 +Nodes (0): + +### Community 1836 - "Community 1836" +Cohesion: 1.0 +Nodes (0): + +### Community 1837 - "Community 1837" +Cohesion: 1.0 +Nodes (0): + +### Community 1838 - "Community 1838" +Cohesion: 1.0 +Nodes (0): + +### Community 1839 - "Community 1839" +Cohesion: 1.0 +Nodes (0): + +### Community 1840 - "Community 1840" +Cohesion: 1.0 +Nodes (0): + +### Community 1841 - "Community 1841" +Cohesion: 1.0 +Nodes (1): TH1_Logic Module + +### Community 1842 - "Community 1842" +Cohesion: 1.0 +Nodes (1): TH1_Renderer Module + +### Community 1843 - "Community 1843" +Cohesion: 1.0 +Nodes (1): TH1_Config Module + +### Community 1844 - "Community 1844" +Cohesion: 1.0 +Nodes (1): TH1_Instance Module + +### Community 1845 - "Community 1845" +Cohesion: 1.0 +Nodes (1): TH1_Presentation Module + +### Community 1846 - "Community 1846" +Cohesion: 1.0 +Nodes (1): TH1_Anim Module + +### Community 1847 - "Community 1847" +Cohesion: 1.0 +Nodes (1): TH1_Audio Module + +### Community 1848 - "Community 1848" +Cohesion: 1.0 +Nodes (1): Lobby Visibility Logic + +### Community 1849 - "Community 1849" +Cohesion: 1.0 +Nodes (1): Code Reviewer Example Subagent + +### Community 1850 - "Community 1850" +Cohesion: 1.0 +Nodes (1): Debugger Example Subagent + +### Community 1851 - "Community 1851" +Cohesion: 1.0 Nodes (1): Data Scientist Example Subagent ## Knowledge Gaps - **9376 isolated node(s):** `Steamworks`, `Steamworks`, `CallbackIdentityAttribute`, `Steamworks`, `SteamParamStringArray` (+9371 more) These have ≤1 connection - possible missing edges or undocumented components. -- **Thin community `Community 1238`** (2 nodes): `SteamCallbacks.cs`, `Steamworks` +- **Thin community `Community 1369`** (2 nodes): `SteamCallbacks.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1239`** (2 nodes): `SteamEnums.cs`, `Steamworks` +- **Thin community `Community 1370`** (2 nodes): `SteamEnums.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1240`** (2 nodes): `SteamStructs.cs`, `Steamworks` +- **Thin community `Community 1371`** (2 nodes): `SteamStructs.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1241`** (2 nodes): `SteamAPIWarningMessageHook_t.cs`, `Steamworks` +- **Thin community `Community 1372`** (2 nodes): `SteamAPIWarningMessageHook_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1242`** (2 nodes): `SteamAPI_CheckCallbackRegistered_t.cs`, `Steamworks` +- **Thin community `Community 1373`** (2 nodes): `SteamAPI_CheckCallbackRegistered_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1243`** (2 nodes): `SteamInputActionEventCallbackPointer.cs`, `Steamworks` +- **Thin community `Community 1374`** (2 nodes): `SteamInputActionEventCallbackPointer.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1244`** (2 nodes): `SteamInputActionEvent_t.cs`, `Steamworks` +- **Thin community `Community 1375`** (2 nodes): `SteamInputActionEvent_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1245`** (2 nodes): `FSteamNetworkingSocketsDebugOutput.cs`, `Steamworks` +- **Thin community `Community 1376`** (2 nodes): `FSteamNetworkingSocketsDebugOutput.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1246`** (2 nodes): `SteamNetworkingConfigValue_t.cs`, `Steamworks` +- **Thin community `Community 1377`** (2 nodes): `SteamNetworkingConfigValue_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1247`** (2 nodes): `SteamNetworkingErrMsg.cs`, `Steamworks` +- **Thin community `Community 1378`** (2 nodes): `SteamNetworkingErrMsg.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1248`** (2 nodes): `UQMDefine.cs`, `GCloud.UQM` +- **Thin community `Community 1379`** (2 nodes): `UQMDefine.cs`, `GCloud.UQM` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1249`** (2 nodes): `CharacterStatePriority.cs`, `Animancer.Examples.StateMachines` +- **Thin community `Community 1380`** (2 nodes): `CharacterStatePriority.cs`, `Animancer.Examples.StateMachines` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1250`** (2 nodes): `FadeMode.cs`, `Animancer` +- **Thin community `Community 1381`** (2 nodes): `FadeMode.cs`, `Animancer` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1251`** (2 nodes): `CrashSightMobileAgent.h`, `GCloud()` +- **Thin community `Community 1382`** (2 nodes): `CrashSightMobileAgent.h`, `GCloud()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1252`** (2 nodes): `CSLogger.h`, `UQM_EXPORT()` +- **Thin community `Community 1383`** (2 nodes): `CSLogger.h`, `UQM_EXPORT()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1253`** (2 nodes): `UQMError.h`, `UQMError()` +- **Thin community `Community 1384`** (2 nodes): `UQMError.h`, `UQMError()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1254`** (2 nodes): `UQMUtils.h`, `UQMUtils()` +- **Thin community `Community 1385`** (2 nodes): `UQMUtils.h`, `UQMUtils()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1255`** (2 nodes): `InspectedFieldInfo.cs`, `ParadoxNotion.Design` +- **Thin community `Community 1386`** (2 nodes): `InspectedFieldInfo.cs`, `ParadoxNotion.Design` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1256`** (2 nodes): `Delegates.cs`, `ParadoxNotion` +- **Thin community `Community 1387`** (2 nodes): `Delegates.cs`, `ParadoxNotion` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1257`** (2 nodes): `Enums.cs`, `ParadoxNotion` +- **Thin community `Community 1388`** (2 nodes): `Enums.cs`, `ParadoxNotion` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1258`** (2 nodes): `Status.cs`, `NodeCanvas.Framework` +- **Thin community `Community 1389`** (2 nodes): `Status.cs`, `NodeCanvas.Framework` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1259`** (2 nodes): `GraphLoadData.cs`, `NodeCanvas.Framework.Internal` +- **Thin community `Community 1390`** (2 nodes): `GraphLoadData.cs`, `NodeCanvas.Framework.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1260`** (2 nodes): `Locales.cs`, `NodeCanvas.DialogueTrees` +- **Thin community `Community 1391`** (2 nodes): `Locales.cs`, `NodeCanvas.DialogueTrees` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1261`** (2 nodes): `ViConstValueDefine.cs`, `ViConstValueDefine` +- **Thin community `Community 1392`** (2 nodes): `ViConstValueDefine.cs`, `ViConstValueDefine` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1262`** (2 nodes): `UIEvents.cs`, `TH1_Core.Events` +- **Thin community `Community 1393`** (2 nodes): `UIEvents.cs`, `TH1_Core.Events` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1263`** (2 nodes): `DebugCenter.cs`, `DebugCenter` +- **Thin community `Community 1394`** (2 nodes): `DebugCenter.cs`, `DebugCenter` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1264`** (2 nodes): `ViewMaskProperty.cs`, `ViewMaskProperty` +- **Thin community `Community 1395`** (2 nodes): `ViewMaskProperty.cs`, `ViewMaskProperty` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1265`** (2 nodes): `Il2CppCodeRegistration.cpp`, `s_Il2CppCodegenRegistration()` +- **Thin community `Community 1396`** (2 nodes): `Il2CppCodeRegistration.cpp`, `s_Il2CppCodegenRegistration()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1266`** (2 nodes): `UnityEngine.GridModule.cpp`, `GridLayout_DoNothing_mA280987BF98D257023D46C2C01902FC82EE6A00A()` +- **Thin community `Community 1397`** (2 nodes): `UnityEngine.GridModule.cpp`, `GridLayout_DoNothing_mA280987BF98D257023D46C2C01902FC82EE6A00A()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1267`** (2 nodes): `PackageInstallLocation.cs`, `NugetForUnity.Configuration` +- **Thin community `Community 1398`** (2 nodes): `PackageInstallLocation.cs`, `NugetForUnity.Configuration` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1268`** (2 nodes): `RepositoryType.cs`, `NugetForUnity.Models` +- **Thin community `Community 1399`** (2 nodes): `RepositoryType.cs`, `NugetForUnity.Models` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1269`** (2 nodes): `NugetWindowTab.cs`, `NugetForUnity.Ui` +- **Thin community `Community 1400`** (2 nodes): `NugetWindowTab.cs`, `NugetForUnity.Ui` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1270`** (2 nodes): `EBuildinFileCopyOption.cs`, `YooAsset.Editor` +- **Thin community `Community 1401`** (2 nodes): `EBuildinFileCopyOption.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1271`** (2 nodes): `EBuildMode.cs`, `YooAsset.Editor` +- **Thin community `Community 1402`** (2 nodes): `EBuildMode.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1272`** (2 nodes): `EBuildPipeline.cs`, `YooAsset.Editor` +- **Thin community `Community 1403`** (2 nodes): `EBuildPipeline.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1273`** (2 nodes): `ECompressOption.cs`, `YooAsset.Editor` +- **Thin community `Community 1404`** (2 nodes): `ECompressOption.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1274`** (2 nodes): `EFileNameStyle.cs`, `YooAsset.Editor` +- **Thin community `Community 1405`** (2 nodes): `EFileNameStyle.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1275`** (2 nodes): `ErrorCode.cs`, `YooAsset.Editor` +- **Thin community `Community 1406`** (2 nodes): `ErrorCode.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1276`** (2 nodes): `ECollectorType.cs`, `YooAsset.Editor` +- **Thin community `Community 1407`** (2 nodes): `ECollectorType.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1277`** (2 nodes): `EVerifyLevel.cs`, `YooAsset` +- **Thin community `Community 1408`** (2 nodes): `EVerifyLevel.cs`, `YooAsset` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1278`** (2 nodes): `EVerifyResult.cs`, `YooAsset` +- **Thin community `Community 1409`** (2 nodes): `EVerifyResult.cs`, `YooAsset` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1279`** (2 nodes): `EOperationStatus.cs`, `YooAsset` +- **Thin community `Community 1410`** (2 nodes): `EOperationStatus.cs`, `YooAsset` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1280`** (2 nodes): `StreamingAssetsDefine.cs`, `StreamingAssetsDefine` +- **Thin community `Community 1411`** (2 nodes): `StreamingAssetsDefine.cs`, `StreamingAssetsDefine` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1281`** (2 nodes): `SkinningEnums.cs`, `UnityEditor.U2D.Animation` +- **Thin community `Community 1412`** (2 nodes): `SkinningEnums.cs`, `UnityEditor.U2D.Animation` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1282`** (2 nodes): `DragAndDropData.cs`, `UnityEditor.U2D.Animation.SpriteLibraryEditor` +- **Thin community `Community 1413`** (2 nodes): `DragAndDropData.cs`, `UnityEditor.U2D.Animation.SpriteLibraryEditor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1283`** (2 nodes): `Enums.cs`, `PDNWrapper` +- **Thin community `Community 1414`** (2 nodes): `Enums.cs`, `PDNWrapper` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1284`** (2 nodes): `Size.cs`, `PDNWrapper` +- **Thin community `Community 1415`** (2 nodes): `Size.cs`, `PDNWrapper` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1285`** (2 nodes): `TileDragAndDropHoverData.cs`, `UnityEditor.Tilemaps` +- **Thin community `Community 1416`** (2 nodes): `TileDragAndDropHoverData.cs`, `UnityEditor.Tilemaps` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1286`** (2 nodes): `Unity.Burst`, `BurstExecutionEnvironment.cs` +- **Thin community `Community 1417`** (2 nodes): `Unity.Burst`, `BurstExecutionEnvironment.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1287`** (2 nodes): `DiagnosticId.cs`, `Unity.Burst` +- **Thin community `Community 1418`** (2 nodes): `DiagnosticId.cs`, `Unity.Burst` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1288`** (2 nodes): `v128.cs`, `Unity.Burst.Intrinsics` +- **Thin community `Community 1419`** (2 nodes): `v128.cs`, `Unity.Burst.Intrinsics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1289`** (2 nodes): `v256.cs`, `Unity.Burst.Intrinsics` +- **Thin community `Community 1420`** (2 nodes): `v256.cs`, `Unity.Burst.Intrinsics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1290`** (2 nodes): `v64.cs`, `Unity.Burst.Intrinsics` +- **Thin community `Community 1421`** (2 nodes): `v64.cs`, `Unity.Burst.Intrinsics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1291`** (2 nodes): `ResponseType.cs`, `Unity.PlasticSCM.Editor.UI` +- **Thin community `Community 1422`** (2 nodes): `ResponseType.cs`, `Unity.PlasticSCM.Editor.UI` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1292`** (2 nodes): `LoggingLevel.cs`, `Packages.Rider.Editor` +- **Thin community `Community 1423`** (2 nodes): `LoggingLevel.cs`, `Packages.Rider.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1293`** (2 nodes): `Il2CppDebugSupport.cs`, `Packages.Rider.Editor.Debugger` +- **Thin community `Community 1424`** (2 nodes): `Il2CppDebugSupport.cs`, `Packages.Rider.Editor.Debugger` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1294`** (2 nodes): `ProjectGenerationFlag.cs`, `Packages.Rider.Editor.ProjectGeneration` +- **Thin community `Community 1425`** (2 nodes): `ProjectGenerationFlag.cs`, `Packages.Rider.Editor.ProjectGeneration` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1295`** (2 nodes): `VersionPair.cs`, `Microsoft.Unity.VisualStudio.Editor` +- **Thin community `Community 1426`** (2 nodes): `VersionPair.cs`, `Microsoft.Unity.VisualStudio.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1296`** (2 nodes): `MessageType.cs`, `Microsoft.Unity.VisualStudio.Editor.Messaging` +- **Thin community `Community 1427`** (2 nodes): `MessageType.cs`, `Microsoft.Unity.VisualStudio.Editor.Messaging` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1297`** (2 nodes): `ProjectGenerationFlag.cs`, `Microsoft.Unity.VisualStudio.Editor` +- **Thin community `Community 1428`** (2 nodes): `ProjectGenerationFlag.cs`, `Microsoft.Unity.VisualStudio.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1298`** (2 nodes): `TestStatusAdaptor.cs`, `Microsoft.Unity.VisualStudio.Editor.Testing` +- **Thin community `Community 1429`** (2 nodes): `TestStatusAdaptor.cs`, `Microsoft.Unity.VisualStudio.Editor.Testing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1299`** (2 nodes): `math_unity_conversion.cs`, `Unity.Mathematics` +- **Thin community `Community 1430`** (2 nodes): `math_unity_conversion.cs`, `Unity.Mathematics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1300`** (2 nodes): `EditorPrefBool.cs`, `UnityEditor.Rendering` +- **Thin community `Community 1431`** (2 nodes): `EditorPrefBool.cs`, `UnityEditor.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1301`** (2 nodes): `MaterialHeaderScopeItem.cs`, `UnityEditor.Rendering` +- **Thin community `Community 1432`** (2 nodes): `MaterialHeaderScopeItem.cs`, `UnityEditor.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1302`** (2 nodes): `CommonStructs.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1433`** (2 nodes): `CommonStructs.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1303`** (2 nodes): `CoreProfileId.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1434`** (2 nodes): `CoreProfileId.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1304`** (2 nodes): `ShaderVariablesProbeVolumes.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1435`** (2 nodes): `ShaderVariablesProbeVolumes.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1305`** (2 nodes): `HDROutputDefines.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1436`** (2 nodes): `HDROutputDefines.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1306`** (2 nodes): `RenderGraphProfileId.cs`, `UnityEngine.Experimental.Rendering.RenderGraphModule` +- **Thin community `Community 1437`** (2 nodes): `RenderGraphProfileId.cs`, `UnityEngine.Experimental.Rendering.RenderGraphModule` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1307`** (2 nodes): `DepthBits.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1438`** (2 nodes): `DepthBits.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1308`** (2 nodes): `MSAASamples.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1439`** (2 nodes): `MSAASamples.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1309`** (2 nodes): `DummyShaderLibrary.cs`, `DummyShaderLibrary` +- **Thin community `Community 1440`** (2 nodes): `DummyShaderLibrary.cs`, `DummyShaderLibrary` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1310`** (2 nodes): `UpgradeCommon.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1441`** (2 nodes): `UpgradeCommon.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1311`** (2 nodes): `ConverterItemDescriptor.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1442`** (2 nodes): `ConverterItemDescriptor.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1312`** (2 nodes): `ConverterItemInfo.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1443`** (2 nodes): `ConverterItemInfo.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1313`** (2 nodes): `RunItemContext.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1444`** (2 nodes): `RunItemContext.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1314`** (2 nodes): `DecalMeshBiasTypeEnum.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1445`** (2 nodes): `DecalMeshBiasTypeEnum.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1315`** (2 nodes): `IntermediateTextureMode.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1446`** (2 nodes): `IntermediateTextureMode.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1316`** (2 nodes): `SampleCount.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1447`** (2 nodes): `SampleCount.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1317`** (2 nodes): `StencilUsage.cs`, `UnityEngine.Rendering.Universal.Internal` +- **Thin community `Community 1448`** (2 nodes): `StencilUsage.cs`, `UnityEngine.Rendering.Universal.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1318`** (2 nodes): `Light2DBlendStyle.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1449`** (2 nodes): `Light2DBlendStyle.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1319`** (2 nodes): `DebugViewEnums.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1450`** (2 nodes): `DebugViewEnums.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1320`** (2 nodes): `Shaders.cs`, `ShadersDummy` +- **Thin community `Community 1451`** (2 nodes): `Shaders.cs`, `ShadersDummy` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1321`** (2 nodes): `ReturnCode.cs`, `UnityEditor.Build.Pipeline` +- **Thin community `Community 1452`** (2 nodes): `ReturnCode.cs`, `UnityEditor.Build.Pipeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1322`** (2 nodes): `Precision.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1453`** (2 nodes): `Precision.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1323`** (2 nodes): `IMaterialGraphAsset.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1454`** (2 nodes): `IMaterialGraphAsset.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1324`** (2 nodes): `ParentGroupChange.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1455`** (2 nodes): `ParentGroupChange.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1325`** (2 nodes): `PreviewMode.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1456`** (2 nodes): `PreviewMode.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1326`** (2 nodes): `SlotType.cs`, `UnityEditor.Graphing` +- **Thin community `Community 1457`** (2 nodes): `SlotType.cs`, `UnityEditor.Graphing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1327`** (2 nodes): `PositionSource.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1458`** (2 nodes): `PositionSource.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1328`** (2 nodes): `DrawState.cs`, `UnityEditor.Graphing` +- **Thin community `Community 1459`** (2 nodes): `DrawState.cs`, `UnityEditor.Graphing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1329`** (2 nodes): `FunctionMultiInput.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1460`** (2 nodes): `FunctionMultiInput.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1330`** (2 nodes): `NormalMapSpace.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1461`** (2 nodes): `NormalMapSpace.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1331`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendMode.cs` +- **Thin community `Community 1462`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendMode.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1332`** (2 nodes): `UvChannel.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1463`** (2 nodes): `UvChannel.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1333`** (2 nodes): `GraphCode.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1464`** (2 nodes): `GraphCode.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1334`** (2 nodes): `OutputMetadata.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1465`** (2 nodes): `OutputMetadata.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1335`** (2 nodes): `ConditionalField.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1466`** (2 nodes): `ConditionalField.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1336`** (2 nodes): `DropdownEntry.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1467`** (2 nodes): `DropdownEntry.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1337`** (2 nodes): `FieldDependency.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1468`** (2 nodes): `FieldDependency.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1338`** (2 nodes): `KeywordEntry.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1469`** (2 nodes): `KeywordEntry.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1339`** (2 nodes): `KernelDescriptor.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1470`** (2 nodes): `KernelDescriptor.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1340`** (2 nodes): `StencilDescriptor.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1471`** (2 nodes): `StencilDescriptor.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1341`** (2 nodes): `StructDescriptor.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1472`** (2 nodes): `StructDescriptor.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1342`** (2 nodes): `UnityEditor.ShaderGraph`, `Blend.cs` +- **Thin community `Community 1473`** (2 nodes): `UnityEditor.ShaderGraph`, `Blend.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1343`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendOp.cs` +- **Thin community `Community 1474`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendOp.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1344`** (2 nodes): `Cull.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1475`** (2 nodes): `Cull.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1345`** (2 nodes): `DisableBatching.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1476`** (2 nodes): `DisableBatching.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1346`** (2 nodes): `IncludeLocation.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1477`** (2 nodes): `IncludeLocation.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1347`** (2 nodes): `KeywordDefinition.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1478`** (2 nodes): `KeywordDefinition.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1348`** (2 nodes): `KeywordScope.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1479`** (2 nodes): `KeywordScope.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1349`** (2 nodes): `KeywordShaderStage.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1480`** (2 nodes): `KeywordShaderStage.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1350`** (2 nodes): `KeywordType.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1481`** (2 nodes): `KeywordType.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1351`** (2 nodes): `NormalDropOffSpace.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1482`** (2 nodes): `NormalDropOffSpace.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1352`** (2 nodes): `PropertyType.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1483`** (2 nodes): `PropertyType.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1353`** (2 nodes): `RenderQueue.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1484`** (2 nodes): `RenderQueue.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1354`** (2 nodes): `RenderType.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1485`** (2 nodes): `RenderType.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1355`** (2 nodes): `ShaderValueType.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1486`** (2 nodes): `ShaderValueType.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1356`** (2 nodes): `StructFieldOptions.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1487`** (2 nodes): `StructFieldOptions.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1357`** (2 nodes): `ZTest.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1488`** (2 nodes): `ZTest.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1358`** (2 nodes): `ZWrite.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1489`** (2 nodes): `ZWrite.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1359`** (2 nodes): `MatrixNames.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1490`** (2 nodes): `MatrixNames.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1360`** (2 nodes): `FullscreenShaderPass.cs`, `UnityEngine.Rendering.HighDefinition` +- **Thin community `Community 1491`** (2 nodes): `FullscreenShaderPass.cs`, `UnityEngine.Rendering.HighDefinition` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1361`** (2 nodes): `CreateSerializableGraph.cs`, `UnityEditor.Graphing` +- **Thin community `Community 1492`** (2 nodes): `CreateSerializableGraph.cs`, `UnityEditor.Graphing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1362`** (2 nodes): `DummyShaderGraphLibrary.cs`, `DummyShaderGraphLibrary` +- **Thin community `Community 1493`** (2 nodes): `DummyShaderGraphLibrary.cs`, `DummyShaderGraphLibrary` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1363`** (2 nodes): `PropertyChunkTests.cs`, `UnityEditor.ShaderGraph.UnitTests` +- **Thin community `Community 1494`** (2 nodes): `PropertyChunkTests.cs`, `UnityEditor.ShaderGraph.UnitTests` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1364`** (2 nodes): `PropertyGeneratorTests.cs`, `UnityEditor.ShaderGraph.UnitTests` +- **Thin community `Community 1495`** (2 nodes): `PropertyGeneratorTests.cs`, `UnityEditor.ShaderGraph.UnitTests` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1365`** (2 nodes): `PropertyNodeTests.cs`, `UnityEditor.ShaderGraph.UnitTests` +- **Thin community `Community 1496`** (2 nodes): `PropertyNodeTests.cs`, `UnityEditor.ShaderGraph.UnitTests` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1366`** (2 nodes): `RunState.cs`, `UnityEditor.TestTools.TestRunner.Api` +- **Thin community `Community 1497`** (2 nodes): `RunState.cs`, `UnityEditor.TestTools.TestRunner.Api` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1367`** (2 nodes): `TestMode.cs`, `UnityEditor.TestTools.TestRunner.Api` +- **Thin community `Community 1498`** (2 nodes): `TestMode.cs`, `UnityEditor.TestTools.TestRunner.Api` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1368`** (2 nodes): `TestStatus.cs`, `UnityEditor.TestTools.TestRunner.Api` +- **Thin community `Community 1499`** (2 nodes): `TestStatus.cs`, `UnityEditor.TestTools.TestRunner.Api` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1369`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.CommandLineTest` +- **Thin community `Community 1500`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.CommandLineTest` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1370`** (2 nodes): `TaskMode.cs`, `UnityEditor.TestTools.TestRunner.TestRun` +- **Thin community `Community 1501`** (2 nodes): `TaskMode.cs`, `UnityEditor.TestTools.TestRunner.TestRun` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1371`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.UnityTestProtocol` +- **Thin community `Community 1502`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.UnityTestProtocol` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1372`** (2 nodes): `TestState.cs`, `UnityEngine.TestRunner.TestProtocol` +- **Thin community `Community 1503`** (2 nodes): `TestState.cs`, `UnityEngine.TestRunner.TestProtocol` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1373`** (2 nodes): `TMPro_FontPlugin.cs`, `TMPro.EditorUtilities` +- **Thin community `Community 1504`** (2 nodes): `TMPro_FontPlugin.cs`, `TMPro.EditorUtilities` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1374`** (2 nodes): `TMP_LineInfo.cs`, `TMPro` +- **Thin community `Community 1505`** (2 nodes): `TMP_LineInfo.cs`, `TMPro` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1375`** (2 nodes): `UnityEditor.Timeline.Actions`, `ActionContext.cs` +- **Thin community `Community 1506`** (2 nodes): `UnityEditor.Timeline.Actions`, `ActionContext.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1376`** (2 nodes): `MenuItemActionBase.cs`, `UnityEditor.Timeline.Actions` +- **Thin community `Community 1507`** (2 nodes): `MenuItemActionBase.cs`, `UnityEditor.Timeline.Actions` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1377`** (2 nodes): `PlacementValidity.cs`, `UnityEditor.Timeline` +- **Thin community `Community 1508`** (2 nodes): `PlacementValidity.cs`, `UnityEditor.Timeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1378`** (2 nodes): `TimeReferenceMode.cs`, `UnityEditor.Timeline` +- **Thin community `Community 1509`** (2 nodes): `TimeReferenceMode.cs`, `UnityEditor.Timeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1379`** (2 nodes): `NotificationFlags.cs`, `UnityEngine.Timeline` +- **Thin community `Community 1510`** (2 nodes): `NotificationFlags.cs`, `UnityEngine.Timeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1380`** (2 nodes): `EventHandle.cs`, `UnityEngine.EventSystems` +- **Thin community `Community 1511`** (2 nodes): `EventHandle.cs`, `UnityEngine.EventSystems` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1381`** (2 nodes): `EventTriggerType.cs`, `UnityEngine.EventSystems` +- **Thin community `Community 1512`** (2 nodes): `EventTriggerType.cs`, `UnityEngine.EventSystems` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1382`** (2 nodes): `MoveDirection.cs`, `UnityEngine.EventSystems` +- **Thin community `Community 1513`** (2 nodes): `MoveDirection.cs`, `UnityEngine.EventSystems` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1383`** (2 nodes): `SemanticLabel.cs`, `Unity.VisualScripting` +- **Thin community `Community 1514`** (2 nodes): `SemanticLabel.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1384`** (2 nodes): `Unity.VisualScripting`, `AlignOperation.cs` +- **Thin community `Community 1515`** (2 nodes): `Unity.VisualScripting`, `AlignOperation.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1385`** (2 nodes): `CanvasControlScheme.cs`, `Unity.VisualScripting` +- **Thin community `Community 1516`** (2 nodes): `CanvasControlScheme.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1386`** (2 nodes): `DistributeOperation.cs`, `Unity.VisualScripting` +- **Thin community `Community 1517`** (2 nodes): `DistributeOperation.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1387`** (2 nodes): `GraphContextMenuItem.cs`, `Unity.VisualScripting` +- **Thin community `Community 1518`** (2 nodes): `GraphContextMenuItem.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1388`** (2 nodes): `ReorderableListFlags.cs`, `Unity.VisualScripting.ReorderableList` +- **Thin community `Community 1519`** (2 nodes): `ReorderableListFlags.cs`, `Unity.VisualScripting.ReorderableList` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1389`** (2 nodes): `InspectorBlock.cs`, `Unity.VisualScripting` +- **Thin community `Community 1520`** (2 nodes): `InspectorBlock.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1390`** (2 nodes): `Edge.cs`, `Unity.VisualScripting` +- **Thin community `Community 1521`** (2 nodes): `Edge.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1391`** (2 nodes): `SkinnedColor.cs`, `Unity.VisualScripting` +- **Thin community `Community 1522`** (2 nodes): `SkinnedColor.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1392`** (2 nodes): `FontWeight.cs`, `Unity.VisualScripting` +- **Thin community `Community 1523`** (2 nodes): `FontWeight.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1393`** (2 nodes): `ParameterStringMode.cs`, `Unity.VisualScripting` +- **Thin community `Community 1524`** (2 nodes): `ParameterStringMode.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1394`** (2 nodes): `CreateTextureOptions.cs`, `Unity.VisualScripting` +- **Thin community `Community 1525`** (2 nodes): `CreateTextureOptions.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1395`** (2 nodes): `WarningLevel.cs`, `Unity.VisualScripting` +- **Thin community `Community 1526`** (2 nodes): `WarningLevel.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1396`** (2 nodes): `NodeColor.cs`, `Unity.VisualScripting` +- **Thin community `Community 1527`** (2 nodes): `NodeColor.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1397`** (2 nodes): `NodeShape.cs`, `Unity.VisualScripting` +- **Thin community `Community 1528`** (2 nodes): `NodeShape.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1398`** (2 nodes): `SidebarAnchor.cs`, `Unity.VisualScripting` +- **Thin community `Community 1529`** (2 nodes): `SidebarAnchor.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1399`** (2 nodes): `StateRevealCondition.cs`, `Unity.VisualScripting` +- **Thin community `Community 1530`** (2 nodes): `StateRevealCondition.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1400`** (2 nodes): `fsMemberSerialization.cs`, `Unity.VisualScripting.FullSerializer` +- **Thin community `Community 1531`** (2 nodes): `fsMemberSerialization.cs`, `Unity.VisualScripting.FullSerializer` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1401`** (2 nodes): `Typeset.cs`, `Unity.VisualScripting` +- **Thin community `Community 1532`** (2 nodes): `Typeset.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1402`** (2 nodes): `EmptyEventArgs.cs`, `Unity.VisualScripting` +- **Thin community `Community 1533`** (2 nodes): `EmptyEventArgs.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1403`** (2 nodes): `GraphSource.cs`, `Unity.VisualScripting` +- **Thin community `Community 1534`** (2 nodes): `GraphSource.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1404`** (2 nodes): `MouseButton.cs`, `Unity.VisualScripting` +- **Thin community `Community 1535`** (2 nodes): `MouseButton.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1405`** (2 nodes): `PressState.cs`, `Unity.VisualScripting` +- **Thin community `Community 1536`** (2 nodes): `PressState.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1406`** (2 nodes): `Unity.VisualScripting`, `ActionDirection.cs` +- **Thin community `Community 1537`** (2 nodes): `Unity.VisualScripting`, `ActionDirection.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1407`** (2 nodes): `TypeNameDetail.cs`, `Unity.VisualScripting` +- **Thin community `Community 1538`** (2 nodes): `TypeNameDetail.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1408`** (2 nodes): `TypeQualifier.cs`, `Unity.VisualScripting` +- **Thin community `Community 1539`** (2 nodes): `TypeQualifier.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1409`** (2 nodes): `TypesMatching.cs`, `Unity.VisualScripting` +- **Thin community `Community 1540`** (2 nodes): `TypesMatching.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1410`** (2 nodes): `Unity.VisualScripting`, `BinaryOperator.cs` +- **Thin community `Community 1541`** (2 nodes): `Unity.VisualScripting`, `BinaryOperator.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1411`** (2 nodes): `UnaryOperator.cs`, `Unity.VisualScripting` +- **Thin community `Community 1542`** (2 nodes): `UnaryOperator.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1412`** (2 nodes): `Unity.VisualScripting`, `Action_5.cs` +- **Thin community `Community 1543`** (2 nodes): `Unity.VisualScripting`, `Action_5.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1413`** (2 nodes): `Unity.VisualScripting`, `Action_6.cs` +- **Thin community `Community 1544`** (2 nodes): `Unity.VisualScripting`, `Action_6.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1414`** (2 nodes): `Func_5.cs`, `Unity.VisualScripting` +- **Thin community `Community 1545`** (2 nodes): `Func_5.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1415`** (2 nodes): `Func_6.cs`, `Unity.VisualScripting` +- **Thin community `Community 1546`** (2 nodes): `Func_6.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1416`** (2 nodes): `VariableKind.cs`, `Unity.VisualScripting` +- **Thin community `Community 1547`** (2 nodes): `VariableKind.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1417`** (2 nodes): `EvaluateFunctionHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` +- **Thin community `Community 1548`** (2 nodes): `EvaluateFunctionHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1418`** (2 nodes): `EvaluateParameterHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` +- **Thin community `Community 1549`** (2 nodes): `EvaluateParameterHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1419`** (2 nodes): `EvaluationOption.cs`, `Unity.VisualScripting.Dependencies.NCalc` +- **Thin community `Community 1550`** (2 nodes): `EvaluationOption.cs`, `Unity.VisualScripting.Dependencies.NCalc` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1420`** (2 nodes): `CustomEventArgs.cs`, `Unity.VisualScripting` +- **Thin community `Community 1551`** (2 nodes): `CustomEventArgs.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1421`** (2 nodes): `ScriptGraphContainerType.cs`, `Unity.VisualScripting` +- **Thin community `Community 1552`** (2 nodes): `ScriptGraphContainerType.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1422`** (2 nodes): `StateEnterReason.cs`, `Unity.VisualScripting` +- **Thin community `Community 1553`** (2 nodes): `StateEnterReason.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1423`** (2 nodes): `StateExitReason.cs`, `Unity.VisualScripting` +- **Thin community `Community 1554`** (2 nodes): `StateExitReason.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1424`** (2 nodes): `StateGraphContainerType.cs`, `Unity.VisualScripting` +- **Thin community `Community 1555`** (2 nodes): `StateGraphContainerType.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1425`** (2 nodes): `isteamapps.h`, `ISteamApps()` +- **Thin community `Community 1556`** (2 nodes): `isteamapps.h`, `ISteamApps()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1426`** (2 nodes): `isteamappticket.h`, `ISteamAppTicket()` +- **Thin community `Community 1557`** (2 nodes): `isteamappticket.h`, `ISteamAppTicket()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1427`** (2 nodes): `isteamcontroller.h`, `ISteamController()` +- **Thin community `Community 1558`** (2 nodes): `isteamcontroller.h`, `ISteamController()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1428`** (2 nodes): `isteamgamecoordinator.h`, `ISteamGameCoordinator()` +- **Thin community `Community 1559`** (2 nodes): `isteamgamecoordinator.h`, `ISteamGameCoordinator()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1429`** (2 nodes): `isteamgameserverstats.h`, `ISteamGameServerStats()` +- **Thin community `Community 1560`** (2 nodes): `isteamgameserverstats.h`, `ISteamGameServerStats()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1430`** (2 nodes): `isteamhtmlsurface.h`, `ISteamHTMLSurface()` +- **Thin community `Community 1561`** (2 nodes): `isteamhtmlsurface.h`, `ISteamHTMLSurface()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1431`** (2 nodes): `isteamhttp.h`, `ISteamHTTP()` +- **Thin community `Community 1562`** (2 nodes): `isteamhttp.h`, `ISteamHTTP()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1432`** (2 nodes): `isteammusicremote.h`, `ISteamMusicRemote()` +- **Thin community `Community 1563`** (2 nodes): `isteammusicremote.h`, `ISteamMusicRemote()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1433`** (2 nodes): `isteamnetworking.h`, `ISteamNetworking()` +- **Thin community `Community 1564`** (2 nodes): `isteamnetworking.h`, `ISteamNetworking()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1434`** (2 nodes): `isteamparentalsettings.h`, `ISteamParentalSettings()` +- **Thin community `Community 1565`** (2 nodes): `isteamparentalsettings.h`, `ISteamParentalSettings()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1435`** (2 nodes): `isteamremoteplay.h`, `ISteamRemotePlay()` +- **Thin community `Community 1566`** (2 nodes): `isteamremoteplay.h`, `ISteamRemotePlay()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1436`** (2 nodes): `isteamremotestorage.h`, `ISteamRemoteStorage()` +- **Thin community `Community 1567`** (2 nodes): `isteamremotestorage.h`, `ISteamRemoteStorage()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1437`** (2 nodes): `isteamscreenshots.h`, `ISteamScreenshots()` +- **Thin community `Community 1568`** (2 nodes): `isteamscreenshots.h`, `ISteamScreenshots()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1438`** (2 nodes): `isteamtimeline.h`, `ISteamTimeline()` +- **Thin community `Community 1569`** (2 nodes): `isteamtimeline.h`, `ISteamTimeline()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1439`** (2 nodes): `isteamugc.h`, `ISteamUGC()` +- **Thin community `Community 1570`** (2 nodes): `isteamugc.h`, `ISteamUGC()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1440`** (2 nodes): `isteamuserstats.h`, `ISteamUserStats()` +- **Thin community `Community 1571`** (2 nodes): `isteamuserstats.h`, `ISteamUserStats()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1441`** (2 nodes): `isteamutils.h`, `ISteamUtils()` +- **Thin community `Community 1572`** (2 nodes): `isteamutils.h`, `ISteamUtils()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1442`** (2 nodes): `isteamvideo.h`, `ISteamVideo()` +- **Thin community `Community 1573`** (2 nodes): `isteamvideo.h`, `ISteamVideo()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1443`** (2 nodes): `steamhttpenums.h`, `BIsHTTPStatusSuccess()` +- **Thin community `Community 1574`** (2 nodes): `steamhttpenums.h`, `BIsHTTPStatusSuccess()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1444`** (2 nodes): `steamnetworkingfakeip.h`, `ISteamNetworkingFakeUDPPort()` +- **Thin community `Community 1575`** (2 nodes): `steamnetworkingfakeip.h`, `ISteamNetworkingFakeUDPPort()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1445`** (2 nodes): `ServerBrowserMenu.h`, `ServerBrowserMenuData_t()` +- **Thin community `Community 1576`** (2 nodes): `ServerBrowserMenu.h`, `ServerBrowserMenuData_t()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1446`** (2 nodes): `MemoryPack Serialization`, `TH1_Data Module` +- **Thin community `Community 1577`** (2 nodes): `MemoryPack Serialization`, `TH1_Data Module` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1447`** (2 nodes): `ET Framework Architecture`, `TH1 Project Overview` +- **Thin community `Community 1578`** (2 nodes): `ET Framework Architecture`, `TH1 Project Overview` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1448`** (2 nodes): `BTNodeCanvas AI Module`, `NodeCanvas Third-Party Library` +- **Thin community `Community 1579`** (2 nodes): `BTNodeCanvas AI Module`, `NodeCanvas Third-Party Library` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1449`** (2 nodes): `Async Timing Design Rationale (Timer Delay for Steam Callbacks)`, `Refresh Lobby Button` +- **Thin community `Community 1580`** (2 nodes): `Async Timing Design Rationale (Timer Delay for Steam Callbacks)`, `Refresh Lobby Button` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1450`** (1 nodes): `check_bytes.ps1` +- **Thin community `Community 1581`** (1 nodes): `check_bytes.ps1` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1451`** (1 nodes): `coreml_provider_factory.h` +- **Thin community `Community 1582`** (1 nodes): `coreml_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1452`** (1 nodes): `cpu_provider_factory.h` +- **Thin community `Community 1583`** (1 nodes): `cpu_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1453`** (1 nodes): `onnxruntime_c_api.h` +- **Thin community `Community 1584`** (1 nodes): `onnxruntime_c_api.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1454`** (1 nodes): `coreml_provider_factory.h` +- **Thin community `Community 1585`** (1 nodes): `coreml_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1455`** (1 nodes): `cpu_provider_factory.h` +- **Thin community `Community 1586`** (1 nodes): `cpu_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1456`** (1 nodes): `onnxruntime_c_api.h` +- **Thin community `Community 1587`** (1 nodes): `onnxruntime_c_api.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1457`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1588`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1458`** (1 nodes): `ExampleInput.cs` +- **Thin community `Community 1589`** (1 nodes): `ExampleInput.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1459`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1590`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1460`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1591`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1461`** (1 nodes): `CrashSight.h` +- **Thin community `Community 1592`** (1 nodes): `CrashSight.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1462`** (1 nodes): `CrashSightConfig.h` +- **Thin community `Community 1593`** (1 nodes): `CrashSightConfig.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1463`** (1 nodes): `CrashSightLog.h` +- **Thin community `Community 1594`** (1 nodes): `CrashSightLog.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1464`** (1 nodes): `UQMUnityBridge.h` +- **Thin community `Community 1595`** (1 nodes): `UQMUnityBridge.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1465`** (1 nodes): `UQMUnityExtra.h` +- **Thin community `Community 1596`** (1 nodes): `UQMUnityExtra.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1466`** (1 nodes): `cJSON.h` +- **Thin community `Community 1597`** (1 nodes): `cJSON.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1467`** (1 nodes): `CrashSightBridge.h` +- **Thin community `Community 1598`** (1 nodes): `CrashSightBridge.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1468`** (1 nodes): `CrashSightCore.h` +- **Thin community `Community 1599`** (1 nodes): `CrashSightCore.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1469`** (1 nodes): `UQM.h` +- **Thin community `Community 1600`** (1 nodes): `UQM.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1470`** (1 nodes): `UQMCrashDelegate.h` +- **Thin community `Community 1601`** (1 nodes): `UQMCrashDelegate.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1471`** (1 nodes): `UQMMacroExpand.h` +- **Thin community `Community 1602`** (1 nodes): `UQMMacroExpand.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1472`** (1 nodes): `UQMRename.h` +- **Thin community `Community 1603`** (1 nodes): `UQMRename.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1473`** (1 nodes): `UQMSingleton.h` +- **Thin community `Community 1604`** (1 nodes): `UQMSingleton.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1474`** (1 nodes): `UQMSynthesizeSingleton.h` +- **Thin community `Community 1605`** (1 nodes): `UQMSynthesizeSingleton.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1475`** (1 nodes): `UQMThread.h` +- **Thin community `Community 1606`** (1 nodes): `UQMThread.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1476`** (1 nodes): `UQMUtilsIOS.h` +- **Thin community `Community 1607`** (1 nodes): `UQMUtilsIOS.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1477`** (1 nodes): `CrashSightPlugin.h` +- **Thin community `Community 1608`** (1 nodes): `CrashSightPlugin.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1478`** (1 nodes): `ConfigManager.cs` +- **Thin community `Community 1609`** (1 nodes): `ConfigManager.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1479`** (1 nodes): `OssStatisticEditorWindow.cs` +- **Thin community `Community 1610`** (1 nodes): `OssStatisticEditorWindow.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1480`** (1 nodes): `RinIndianAttackSkill.cs` +- **Thin community `Community 1611`** (1 nodes): `RinIndianAttackSkill.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1481`** (1 nodes): `0iqegxo6esls0.lump.cpp` +- **Thin community `Community 1612`** (1 nodes): `0iqegxo6esls0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1482`** (1 nodes): `2kwu9gc6m8kw0.lump.cpp` +- **Thin community `Community 1613`** (1 nodes): `2kwu9gc6m8kw0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1483`** (1 nodes): `2kwu9gc6m8kw1.lump.cpp` +- **Thin community `Community 1614`** (1 nodes): `2kwu9gc6m8kw1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1484`** (1 nodes): `2kwu9gc6m8kw2.lump.cpp` +- **Thin community `Community 1615`** (1 nodes): `2kwu9gc6m8kw2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1485`** (1 nodes): `3x4pmbhvzyuf0.lump.cpp` +- **Thin community `Community 1616`** (1 nodes): `3x4pmbhvzyuf0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1486`** (1 nodes): `5hhsyfcnzb210.lump.cpp` +- **Thin community `Community 1617`** (1 nodes): `5hhsyfcnzb210.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1487`** (1 nodes): `5p9c7v2nynqk0.lump.cpp` +- **Thin community `Community 1618`** (1 nodes): `5p9c7v2nynqk0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1488`** (1 nodes): `5p9c7v2nynqk1.lump.cpp` +- **Thin community `Community 1619`** (1 nodes): `5p9c7v2nynqk1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1489`** (1 nodes): `5p9c7v2nynqk2.lump.cpp` +- **Thin community `Community 1620`** (1 nodes): `5p9c7v2nynqk2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1490`** (1 nodes): `6o34in2l8rrv0.lump.cpp` +- **Thin community `Community 1621`** (1 nodes): `6o34in2l8rrv0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1491`** (1 nodes): `7warj6bswxrg0.lump.cpp` +- **Thin community `Community 1622`** (1 nodes): `7warj6bswxrg0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1492`** (1 nodes): `8nxcc2n25nlz0.lump.cpp` +- **Thin community `Community 1623`** (1 nodes): `8nxcc2n25nlz0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1493`** (1 nodes): `8nxcc2n25nlz1.lump.cpp` +- **Thin community `Community 1624`** (1 nodes): `8nxcc2n25nlz1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1494`** (1 nodes): `8nxcc2n25nlz3.lump.cpp` +- **Thin community `Community 1625`** (1 nodes): `8nxcc2n25nlz3.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1495`** (1 nodes): `8nxcc2n25nlz5.lump.cpp` +- **Thin community `Community 1626`** (1 nodes): `8nxcc2n25nlz5.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1496`** (1 nodes): `8nxcc2n25nlz6.lump.cpp` +- **Thin community `Community 1627`** (1 nodes): `8nxcc2n25nlz6.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1497`** (1 nodes): `aa25cvijmvtz0.lump.cpp` +- **Thin community `Community 1628`** (1 nodes): `aa25cvijmvtz0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1498`** (1 nodes): `aph4t7urv62q0.lump.cpp` +- **Thin community `Community 1629`** (1 nodes): `aph4t7urv62q0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1499`** (1 nodes): `c7wjplgqhb730.lump.cpp` +- **Thin community `Community 1630`** (1 nodes): `c7wjplgqhb730.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1500`** (1 nodes): `du1ifjkad8u20.lump.cpp` +- **Thin community `Community 1631`** (1 nodes): `du1ifjkad8u20.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1501`** (1 nodes): `frp36j0bzhcl0.lump.cpp` +- **Thin community `Community 1632`** (1 nodes): `frp36j0bzhcl0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1502`** (1 nodes): `gci9mavuzsif0.lump.cpp` +- **Thin community `Community 1633`** (1 nodes): `gci9mavuzsif0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1503`** (1 nodes): `gci9mavuzsif1.lump.cpp` +- **Thin community `Community 1634`** (1 nodes): `gci9mavuzsif1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1504`** (1 nodes): `gci9mavuzsif2.lump.cpp` +- **Thin community `Community 1635`** (1 nodes): `gci9mavuzsif2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1505`** (1 nodes): `h12u4769ee920.lump.cpp` +- **Thin community `Community 1636`** (1 nodes): `h12u4769ee920.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1506`** (1 nodes): `hnsqfnhwtr8b0.lump.cpp` +- **Thin community `Community 1637`** (1 nodes): `hnsqfnhwtr8b0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1507`** (1 nodes): `kweoh0cgfd7l0.lump.cpp` +- **Thin community `Community 1638`** (1 nodes): `kweoh0cgfd7l0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1508`** (1 nodes): `l3gr0ukoom4l0.lump.cpp` +- **Thin community `Community 1639`** (1 nodes): `l3gr0ukoom4l0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1509`** (1 nodes): `lshg3z6kujix0.lump.cpp` +- **Thin community `Community 1640`** (1 nodes): `lshg3z6kujix0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1510`** (1 nodes): `mlfcke35y3aj0.lump.cpp` +- **Thin community `Community 1641`** (1 nodes): `mlfcke35y3aj0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1511`** (1 nodes): `mqxaeabd9jgu0.lump.cpp` +- **Thin community `Community 1642`** (1 nodes): `mqxaeabd9jgu0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1512`** (1 nodes): `ofdh7oh0w14o0.lump.cpp` +- **Thin community `Community 1643`** (1 nodes): `ofdh7oh0w14o0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1513`** (1 nodes): `ofdh7oh0w14o1.lump.cpp` +- **Thin community `Community 1644`** (1 nodes): `ofdh7oh0w14o1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1514`** (1 nodes): `pmys4wb7278v0.lump.cpp` +- **Thin community `Community 1645`** (1 nodes): `pmys4wb7278v0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1515`** (1 nodes): `pmys4wb7278v2.lump.cpp` +- **Thin community `Community 1646`** (1 nodes): `pmys4wb7278v2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1516`** (1 nodes): `pmys4wb7278v3.lump.cpp` +- **Thin community `Community 1647`** (1 nodes): `pmys4wb7278v3.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1517`** (1 nodes): `sacg86krannt0.lump.cpp` +- **Thin community `Community 1648`** (1 nodes): `sacg86krannt0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1518`** (1 nodes): `sacg86krannt2.lump.cpp` +- **Thin community `Community 1649`** (1 nodes): `sacg86krannt2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1519`** (1 nodes): `tuyelf43fcbx0.lump.cpp` +- **Thin community `Community 1650`** (1 nodes): `tuyelf43fcbx0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1520`** (1 nodes): `u6vyk88q0htu0.lump.cpp` +- **Thin community `Community 1651`** (1 nodes): `u6vyk88q0htu0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1521`** (1 nodes): `xkvmqqdfkyn00.lump.cpp` +- **Thin community `Community 1652`** (1 nodes): `xkvmqqdfkyn00.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1522`** (1 nodes): `xqblf1g4lodu0.lump.cpp` +- **Thin community `Community 1653`** (1 nodes): `xqblf1g4lodu0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1523`** (1 nodes): `xqblf1g4lodu1.lump.cpp` +- **Thin community `Community 1654`** (1 nodes): `xqblf1g4lodu1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1524`** (1 nodes): `xqblf1g4lodu2.lump.cpp` +- **Thin community `Community 1655`** (1 nodes): `xqblf1g4lodu2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1525`** (1 nodes): `y5anjml1lrqv0.lump.cpp` +- **Thin community `Community 1656`** (1 nodes): `y5anjml1lrqv0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1526`** (1 nodes): `zhnvl0j1zghh0.lump.cpp` +- **Thin community `Community 1657`** (1 nodes): `zhnvl0j1zghh0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1527`** (1 nodes): `zhnvl0j1zghh1.lump.cpp` +- **Thin community `Community 1658`** (1 nodes): `zhnvl0j1zghh1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1528`** (1 nodes): `zhnvl0j1zghh2.lump.cpp` +- **Thin community `Community 1659`** (1 nodes): `zhnvl0j1zghh2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1529`** (1 nodes): `Animancer.Examples_CodeGen.c` +- **Thin community `Community 1660`** (1 nodes): `Animancer.Examples_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1530`** (1 nodes): `Animancer.FSM_CodeGen.c` +- **Thin community `Community 1661`** (1 nodes): `Animancer.FSM_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1531`** (1 nodes): `Animancer_CodeGen.c` +- **Thin community `Community 1662`** (1 nodes): `Animancer_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1532`** (1 nodes): `Assembly-CSharp-firstpass_CodeGen.c` +- **Thin community `Community 1663`** (1 nodes): `Assembly-CSharp-firstpass_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1533`** (1 nodes): `Assembly-CSharp_CodeGen.c` +- **Thin community `Community 1664`** (1 nodes): `Assembly-CSharp_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1534`** (1 nodes): `com.rlabrecque.steamworks.net_CodeGen.c` +- **Thin community `Community 1665`** (1 nodes): `com.rlabrecque.steamworks.net_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1535`** (1 nodes): `CommandLine_CodeGen.c` +- **Thin community `Community 1666`** (1 nodes): `CommandLine_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1536`** (1 nodes): `ICSharpCode.SharpZipLib_CodeGen.c` +- **Thin community `Community 1667`** (1 nodes): `ICSharpCode.SharpZipLib_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1537`** (1 nodes): `ICSharpCode.SharpZipLib__3.cpp` +- **Thin community `Community 1668`** (1 nodes): `ICSharpCode.SharpZipLib__3.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1538`** (1 nodes): `Il2CppCCalculateFieldValues.cpp` +- **Thin community `Community 1669`** (1 nodes): `Il2CppCCalculateFieldValues.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1539`** (1 nodes): `Il2CppCCalculateFieldValues1.cpp` +- **Thin community `Community 1670`** (1 nodes): `Il2CppCCalculateFieldValues1.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1540`** (1 nodes): `Il2CppCCalculateFieldValues2.cpp` +- **Thin community `Community 1671`** (1 nodes): `Il2CppCCalculateFieldValues2.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1541`** (1 nodes): `Il2CppCCalculateFieldValues3.cpp` +- **Thin community `Community 1672`** (1 nodes): `Il2CppCCalculateFieldValues3.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1542`** (1 nodes): `Il2CppCCalculateFieldValues4.cpp` +- **Thin community `Community 1673`** (1 nodes): `Il2CppCCalculateFieldValues4.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1543`** (1 nodes): `Il2CppCCalculateFieldValues5.cpp` +- **Thin community `Community 1674`** (1 nodes): `Il2CppCCalculateFieldValues5.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1544`** (1 nodes): `Il2CppCCalculateTypeValues1.cpp` +- **Thin community `Community 1675`** (1 nodes): `Il2CppCCalculateTypeValues1.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1545`** (1 nodes): `Il2CppCCalculateTypeValues2.cpp` +- **Thin community `Community 1676`** (1 nodes): `Il2CppCCalculateTypeValues2.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1546`** (1 nodes): `Il2CppCCalculateTypeValues3.cpp` +- **Thin community `Community 1677`** (1 nodes): `Il2CppCCalculateTypeValues3.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1547`** (1 nodes): `Il2CppCCFieldValuesTable.cpp` +- **Thin community `Community 1678`** (1 nodes): `Il2CppCCFieldValuesTable.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1548`** (1 nodes): `Il2CppCCTypeValuesTable.cpp` +- **Thin community `Community 1679`** (1 nodes): `Il2CppCCTypeValuesTable.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1549`** (1 nodes): `Il2CppGenericAdjustorThunkTable.c` +- **Thin community `Community 1680`** (1 nodes): `Il2CppGenericAdjustorThunkTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1550`** (1 nodes): `Il2CppGenericClassTable.c` +- **Thin community `Community 1681`** (1 nodes): `Il2CppGenericClassTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1551`** (1 nodes): `Il2CppGenericInstDefinitions.c` +- **Thin community `Community 1682`** (1 nodes): `Il2CppGenericInstDefinitions.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1552`** (1 nodes): `Il2CppGenericMethodDefinitions.c` +- **Thin community `Community 1683`** (1 nodes): `Il2CppGenericMethodDefinitions.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1553`** (1 nodes): `Il2CppGenericMethodPointerTable.c` +- **Thin community `Community 1684`** (1 nodes): `Il2CppGenericMethodPointerTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1554`** (1 nodes): `Il2CppGenericMethodTable.c` +- **Thin community `Community 1685`** (1 nodes): `Il2CppGenericMethodTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1555`** (1 nodes): `Il2CppMetadataRegistration.c` +- **Thin community `Community 1686`** (1 nodes): `Il2CppMetadataRegistration.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1556`** (1 nodes): `Il2CppMetadataUsage.c` +- **Thin community `Community 1687`** (1 nodes): `Il2CppMetadataUsage.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1557`** (1 nodes): `Il2CppReversePInvokeWrapperTable.cpp` +- **Thin community `Community 1688`** (1 nodes): `Il2CppReversePInvokeWrapperTable.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1558`** (1 nodes): `Il2CppRgctxTable.c` +- **Thin community `Community 1689`** (1 nodes): `Il2CppRgctxTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1559`** (1 nodes): `Il2CppTypeDefinitions.c` +- **Thin community `Community 1690`** (1 nodes): `Il2CppTypeDefinitions.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1560`** (1 nodes): `MemoryPack_CodeGen.c` +- **Thin community `Community 1691`** (1 nodes): `MemoryPack_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1561`** (1 nodes): `Microsoft.ML.OnnxRuntime_CodeGen.c` +- **Thin community `Community 1692`** (1 nodes): `Microsoft.ML.OnnxRuntime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1562`** (1 nodes): `MongoDB.Bson_CodeGen.c` +- **Thin community `Community 1693`** (1 nodes): `MongoDB.Bson_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1563`** (1 nodes): `Mono.Security_CodeGen.c` +- **Thin community `Community 1694`** (1 nodes): `Mono.Security_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1564`** (1 nodes): `mscorlib_CodeGen.c` +- **Thin community `Community 1695`** (1 nodes): `mscorlib_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1565`** (1 nodes): `NLog_CodeGen.c` +- **Thin community `Community 1696`** (1 nodes): `NLog_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1566`** (1 nodes): `NodeCanvas_CodeGen.c` +- **Thin community `Community 1697`** (1 nodes): `NodeCanvas_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1567`** (1 nodes): `OPS.Obfuscator_CodeGen.c` +- **Thin community `Community 1698`** (1 nodes): `OPS.Obfuscator_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1568`** (1 nodes): `ParadoxNotion_CodeGen.c` +- **Thin community `Community 1699`** (1 nodes): `ParadoxNotion_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1569`** (1 nodes): `System.Configuration_CodeGen.c` +- **Thin community `Community 1700`** (1 nodes): `System.Configuration_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1570`** (1 nodes): `System.Core_CodeGen.c` +- **Thin community `Community 1701`** (1 nodes): `System.Core_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1571`** (1 nodes): `System.Data_CodeGen.c` +- **Thin community `Community 1702`** (1 nodes): `System.Data_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1572`** (1 nodes): `System.IO.Compression_CodeGen.c` +- **Thin community `Community 1703`** (1 nodes): `System.IO.Compression_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1573`** (1 nodes): `System.Net.Http_CodeGen.c` +- **Thin community `Community 1704`** (1 nodes): `System.Net.Http_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1574`** (1 nodes): `System.Numerics_CodeGen.c` +- **Thin community `Community 1705`** (1 nodes): `System.Numerics_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1575`** (1 nodes): `System.Runtime.CompilerServices.Unsafe_CodeGen.c` +- **Thin community `Community 1706`** (1 nodes): `System.Runtime.CompilerServices.Unsafe_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1576`** (1 nodes): `System.Transactions_CodeGen.c` +- **Thin community `Community 1707`** (1 nodes): `System.Transactions_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1577`** (1 nodes): `System.Xml_CodeGen.c` +- **Thin community `Community 1708`** (1 nodes): `System.Xml_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1578`** (1 nodes): `System_CodeGen.c` +- **Thin community `Community 1709`** (1 nodes): `System_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1579`** (1 nodes): `Unity.2D.Animation.Runtime_CodeGen.c` +- **Thin community `Community 1710`** (1 nodes): `Unity.2D.Animation.Runtime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1580`** (1 nodes): `Unity.Burst.Unsafe_CodeGen.c` +- **Thin community `Community 1711`** (1 nodes): `Unity.Burst.Unsafe_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1581`** (1 nodes): `Unity.Burst_CodeGen.c` +- **Thin community `Community 1712`** (1 nodes): `Unity.Burst_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1582`** (1 nodes): `Unity.Collections.LowLevel.ILSupport_CodeGen.c` +- **Thin community `Community 1713`** (1 nodes): `Unity.Collections.LowLevel.ILSupport_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1583`** (1 nodes): `Unity.Collections_CodeGen.c` +- **Thin community `Community 1714`** (1 nodes): `Unity.Collections_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1584`** (1 nodes): `Unity.InternalAPIEngineBridge.001_CodeGen.c` +- **Thin community `Community 1715`** (1 nodes): `Unity.InternalAPIEngineBridge.001_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1585`** (1 nodes): `Unity.Mathematics_CodeGen.c` +- **Thin community `Community 1716`** (1 nodes): `Unity.Mathematics_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1586`** (1 nodes): `Unity.RenderPipeline.Universal.ShaderLibrary_CodeGen.c` +- **Thin community `Community 1717`** (1 nodes): `Unity.RenderPipeline.Universal.ShaderLibrary_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1587`** (1 nodes): `Unity.RenderPipelines.Core.Runtime_CodeGen.c` +- **Thin community `Community 1718`** (1 nodes): `Unity.RenderPipelines.Core.Runtime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1588`** (1 nodes): `Unity.RenderPipelines.Universal.Runtime_CodeGen.c` +- **Thin community `Community 1719`** (1 nodes): `Unity.RenderPipelines.Universal.Runtime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1589`** (1 nodes): `Unity.TextMeshPro_CodeGen.c` +- **Thin community `Community 1720`** (1 nodes): `Unity.TextMeshPro_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1590`** (1 nodes): `UnityEngine.AIModule_CodeGen.c` +- **Thin community `Community 1721`** (1 nodes): `UnityEngine.AIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1591`** (1 nodes): `UnityEngine.AndroidJNIModule_CodeGen.c` +- **Thin community `Community 1722`** (1 nodes): `UnityEngine.AndroidJNIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1592`** (1 nodes): `UnityEngine.AnimationModule_CodeGen.c` +- **Thin community `Community 1723`** (1 nodes): `UnityEngine.AnimationModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1593`** (1 nodes): `UnityEngine.AssetBundleModule_CodeGen.c` +- **Thin community `Community 1724`** (1 nodes): `UnityEngine.AssetBundleModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1594`** (1 nodes): `UnityEngine.AudioModule_CodeGen.c` +- **Thin community `Community 1725`** (1 nodes): `UnityEngine.AudioModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1595`** (1 nodes): `UnityEngine.CoreModule_CodeGen.c` +- **Thin community `Community 1726`** (1 nodes): `UnityEngine.CoreModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1596`** (1 nodes): `UnityEngine.DirectorModule_CodeGen.c` +- **Thin community `Community 1727`** (1 nodes): `UnityEngine.DirectorModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1597`** (1 nodes): `UnityEngine.GridModule_CodeGen.c` +- **Thin community `Community 1728`** (1 nodes): `UnityEngine.GridModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1598`** (1 nodes): `UnityEngine.IMGUIModule_CodeGen.c` +- **Thin community `Community 1729`** (1 nodes): `UnityEngine.IMGUIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1599`** (1 nodes): `UnityEngine.InputLegacyModule_CodeGen.c` +- **Thin community `Community 1730`** (1 nodes): `UnityEngine.InputLegacyModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1600`** (1 nodes): `UnityEngine.InputModule_CodeGen.c` +- **Thin community `Community 1731`** (1 nodes): `UnityEngine.InputModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1601`** (1 nodes): `UnityEngine.JSONSerializeModule_CodeGen.c` +- **Thin community `Community 1732`** (1 nodes): `UnityEngine.JSONSerializeModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1602`** (1 nodes): `UnityEngine.ParticleSystemModule_CodeGen.c` +- **Thin community `Community 1733`** (1 nodes): `UnityEngine.ParticleSystemModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1603`** (1 nodes): `UnityEngine.Physics2DModule_CodeGen.c` +- **Thin community `Community 1734`** (1 nodes): `UnityEngine.Physics2DModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1604`** (1 nodes): `UnityEngine.PhysicsModule_CodeGen.c` +- **Thin community `Community 1735`** (1 nodes): `UnityEngine.PhysicsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1605`** (1 nodes): `UnityEngine.PropertiesModule_CodeGen.c` +- **Thin community `Community 1736`** (1 nodes): `UnityEngine.PropertiesModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1606`** (1 nodes): `UnityEngine.SharedInternalsModule_CodeGen.c` +- **Thin community `Community 1737`** (1 nodes): `UnityEngine.SharedInternalsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1607`** (1 nodes): `UnityEngine.SpriteMaskModule_CodeGen.c` +- **Thin community `Community 1738`** (1 nodes): `UnityEngine.SpriteMaskModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1608`** (1 nodes): `UnityEngine.SpriteShapeModule.cpp` +- **Thin community `Community 1739`** (1 nodes): `UnityEngine.SpriteShapeModule.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1609`** (1 nodes): `UnityEngine.SpriteShapeModule_CodeGen.c` +- **Thin community `Community 1740`** (1 nodes): `UnityEngine.SpriteShapeModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1610`** (1 nodes): `UnityEngine.SubsystemsModule_CodeGen.c` +- **Thin community `Community 1741`** (1 nodes): `UnityEngine.SubsystemsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1611`** (1 nodes): `UnityEngine.TerrainModule_CodeGen.c` +- **Thin community `Community 1742`** (1 nodes): `UnityEngine.TerrainModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1612`** (1 nodes): `UnityEngine.TextCoreFontEngineModule_CodeGen.c` +- **Thin community `Community 1743`** (1 nodes): `UnityEngine.TextCoreFontEngineModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1613`** (1 nodes): `UnityEngine.TextCoreTextEngineModule_CodeGen.c` +- **Thin community `Community 1744`** (1 nodes): `UnityEngine.TextCoreTextEngineModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1614`** (1 nodes): `UnityEngine.TextRenderingModule_CodeGen.c` +- **Thin community `Community 1745`** (1 nodes): `UnityEngine.TextRenderingModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1615`** (1 nodes): `UnityEngine.TilemapModule_CodeGen.c` +- **Thin community `Community 1746`** (1 nodes): `UnityEngine.TilemapModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1616`** (1 nodes): `UnityEngine.UIElementsModule_CodeGen.c` +- **Thin community `Community 1747`** (1 nodes): `UnityEngine.UIElementsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1617`** (1 nodes): `UnityEngine.UIModule_CodeGen.c` +- **Thin community `Community 1748`** (1 nodes): `UnityEngine.UIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1618`** (1 nodes): `UnityEngine.UI_CodeGen.c` +- **Thin community `Community 1749`** (1 nodes): `UnityEngine.UI_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1619`** (1 nodes): `UnityEngine.UnityAnalyticsModule_CodeGen.c` +- **Thin community `Community 1750`** (1 nodes): `UnityEngine.UnityAnalyticsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1620`** (1 nodes): `UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c` +- **Thin community `Community 1751`** (1 nodes): `UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1621`** (1 nodes): `UnityEngine.UnityWebRequestModule_CodeGen.c` +- **Thin community `Community 1752`** (1 nodes): `UnityEngine.UnityWebRequestModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1622`** (1 nodes): `UnityEngine.VFXModule_CodeGen.c` +- **Thin community `Community 1753`** (1 nodes): `UnityEngine.VFXModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1623`** (1 nodes): `UnityEngine.VideoModule_CodeGen.c` +- **Thin community `Community 1754`** (1 nodes): `UnityEngine.VideoModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1624`** (1 nodes): `UnityEngine.VRModule_CodeGen.c` +- **Thin community `Community 1755`** (1 nodes): `UnityEngine.VRModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1625`** (1 nodes): `UnityEngine.XRModule_CodeGen.c` +- **Thin community `Community 1756`** (1 nodes): `UnityEngine.XRModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1626`** (1 nodes): `UnityEngine_CodeGen.c` +- **Thin community `Community 1757`** (1 nodes): `UnityEngine_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1627`** (1 nodes): `YooAsset_CodeGen.c` +- **Thin community `Community 1758`** (1 nodes): `YooAsset_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1628`** (1 nodes): `__Generated_CodeGen.c` +- **Thin community `Community 1759`** (1 nodes): `__Generated_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1629`** (1 nodes): `pch-c-10256095421914793858.cpp` +- **Thin community `Community 1760`** (1 nodes): `pch-c-10256095421914793858.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1630`** (1 nodes): `pch-c-13433379115825167417.cpp` +- **Thin community `Community 1761`** (1 nodes): `pch-c-13433379115825167417.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1631`** (1 nodes): `pch-cpp-12811492739455714243.cpp` +- **Thin community `Community 1762`** (1 nodes): `pch-cpp-12811492739455714243.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1632`** (1 nodes): `pch-cpp-16603789281455124026.cpp` +- **Thin community `Community 1763`** (1 nodes): `pch-cpp-16603789281455124026.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1633`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1764`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1634`** (1 nodes): `_InternalVisibleTo.cs` +- **Thin community `Community 1765`** (1 nodes): `_InternalVisibleTo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1635`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1766`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1636`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1767`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1637`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1768`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1638`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1769`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1639`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1770`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1640`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1771`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1641`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1772`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1642`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1773`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1643`** (1 nodes): `TexturePlatformSettingsModel.cs` +- **Thin community `Community 1774`** (1 nodes): `TexturePlatformSettingsModel.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1644`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1775`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1645`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1776`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1646`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1777`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1647`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1778`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1648`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1779`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1649`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1780`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1650`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1781`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1651`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1782`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1652`** (1 nodes): `TexturePlatformSettingsModal.cs` +- **Thin community `Community 1783`** (1 nodes): `TexturePlatformSettingsModal.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1653`** (1 nodes): `TextureSettingsGUI.cs` +- **Thin community `Community 1784`** (1 nodes): `TextureSettingsGUI.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1654`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1785`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1655`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1786`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1656`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1787`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1657`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1788`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1658`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1789`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1659`** (1 nodes): `BurstLoader.cs` +- **Thin community `Community 1790`** (1 nodes): `BurstLoader.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1660`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1791`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1661`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1792`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1662`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1793`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1663`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1794`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1664`** (1 nodes): `main.mm` +- **Thin community `Community 1795`** (1 nodes): `main.mm` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1665`** (1 nodes): `BStrHolder.h` +- **Thin community `Community 1796`** (1 nodes): `BStrHolder.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1666`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1797`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1667`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1798`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1668`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1799`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1669`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1800`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1670`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1801`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1671`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1802`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1672`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1803`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1673`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1804`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1674`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1805`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1675`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1806`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1676`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1807`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1677`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1808`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1678`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1809`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1679`** (1 nodes): `GlyphInfoDrawer.cs` +- **Thin community `Community 1810`** (1 nodes): `GlyphInfoDrawer.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1680`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1811`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1681`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1812`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1682`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1813`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1683`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1814`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1684`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1815`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1685`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1816`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1686`** (1 nodes): `InvocationInspector.cs` +- **Thin community `Community 1817`** (1 nodes): `InvocationInspector.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1687`** (1 nodes): `MemberInvocationInspector.cs` +- **Thin community `Community 1818`** (1 nodes): `MemberInvocationInspector.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1688`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1819`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1689`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1820`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1690`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1821`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1691`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1822`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1692`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1823`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1693`** (1 nodes): `glmdebug.h` +- **Thin community `Community 1824`** (1 nodes): `glmdebug.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1694`** (1 nodes): `glmgrcocoa.mm` +- **Thin community `Community 1825`** (1 nodes): `glmgrcocoa.mm` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1695`** (1 nodes): `glmgrext.h` +- **Thin community `Community 1826`** (1 nodes): `glmgrext.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1696`** (1 nodes): `isteamdualsense.h` +- **Thin community `Community 1827`** (1 nodes): `isteamdualsense.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1697`** (1 nodes): `steamencryptedappticket.h` +- **Thin community `Community 1828`** (1 nodes): `steamencryptedappticket.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1698`** (1 nodes): `steamps3params.h` +- **Thin community `Community 1829`** (1 nodes): `steamps3params.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1699`** (1 nodes): `steamuniverse.h` +- **Thin community `Community 1830`** (1 nodes): `steamuniverse.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1700`** (1 nodes): `steam_api_internal.h` +- **Thin community `Community 1831`** (1 nodes): `steam_api_internal.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1701`** (1 nodes): `BaseMenu.cpp` +- **Thin community `Community 1832`** (1 nodes): `BaseMenu.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1702`** (1 nodes): `musicplayer.h` +- **Thin community `Community 1833`** (1 nodes): `musicplayer.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1703`** (1 nodes): `SimpleProtobuf.h` +- **Thin community `Community 1834`** (1 nodes): `SimpleProtobuf.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1704`** (1 nodes): `SpaceWarRes.h` +- **Thin community `Community 1835`** (1 nodes): `SpaceWarRes.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1705`** (1 nodes): `stdafx.cpp` +- **Thin community `Community 1836`** (1 nodes): `stdafx.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1706`** (1 nodes): `stdafx_ps3.h` +- **Thin community `Community 1837`** (1 nodes): `stdafx_ps3.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1707`** (1 nodes): `glew.h` +- **Thin community `Community 1838`** (1 nodes): `glew.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1708`** (1 nodes): `glxew.h` +- **Thin community `Community 1839`** (1 nodes): `glxew.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1709`** (1 nodes): `wglew.h` +- **Thin community `Community 1840`** (1 nodes): `wglew.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1710`** (1 nodes): `TH1_Logic Module` +- **Thin community `Community 1841`** (1 nodes): `TH1_Logic Module` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1711`** (1 nodes): `TH1_Renderer Module` +- **Thin community `Community 1842`** (1 nodes): `TH1_Renderer Module` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1712`** (1 nodes): `TH1_Config Module` +- **Thin community `Community 1843`** (1 nodes): `TH1_Config Module` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1713`** (1 nodes): `TH1_Instance Module` +- **Thin community `Community 1844`** (1 nodes): `TH1_Instance Module` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1714`** (1 nodes): `TH1_Presentation Module` +- **Thin community `Community 1845`** (1 nodes): `TH1_Presentation Module` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1715`** (1 nodes): `TH1_Anim Module` +- **Thin community `Community 1846`** (1 nodes): `TH1_Anim Module` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1716`** (1 nodes): `TH1_Audio Module` +- **Thin community `Community 1847`** (1 nodes): `TH1_Audio Module` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1717`** (1 nodes): `Lobby Visibility Logic` +- **Thin community `Community 1848`** (1 nodes): `Lobby Visibility Logic` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1718`** (1 nodes): `Code Reviewer Example Subagent` +- **Thin community `Community 1849`** (1 nodes): `Code Reviewer Example Subagent` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1719`** (1 nodes): `Debugger Example Subagent` +- **Thin community `Community 1850`** (1 nodes): `Debugger Example Subagent` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1720`** (1 nodes): `Data Scientist Example Subagent` +- **Thin community `Community 1851`** (1 nodes): `Data Scientist Example Subagent` Too small to be a meaningful cluster - may be noise or needs more connections extracted. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `NullCheck` connect `Community 2` to `Community 0`, `Community 1`, `Community 3`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 26`, `Community 27`, `Community 28`, `Community 29`, `Community 30`, `Community 31`, `Community 32`, `Community 33`, `Community 35`, `Community 36`, `Community 38`, `Community 39`, `Community 40`, `Community 41`, `Community 42`, `Community 43`, `Community 44`, `Community 45`, `Community 46`, `Community 48`, `Community 49`, `Community 50`, `Community 51`, `Community 52`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 61`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 71`, `Community 72`, `Community 73`, `Community 74`, `Community 75`, `Community 76`, `Community 77`, `Community 78`, `Community 79`, `Community 80`, `Community 81`, `Community 82`, `Community 83`, `Community 85`, `Community 87`, `Community 89`, `Community 90`, `Community 91`, `Community 99`, `Community 126`, `Community 159`, `Community 247`?** - _High betweenness centrality (0.525) - this node is a cross-community bridge._ -- **Why does `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` connect `Community 10` to `Community 1`, `Community 2`, `Community 3`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 26`, `Community 27`, `Community 28`, `Community 29`, `Community 30`, `Community 31`, `Community 32`, `Community 33`, `Community 35`, `Community 36`, `Community 38`, `Community 39`, `Community 44`, `Community 45`, `Community 46`, `Community 48`, `Community 49`, `Community 50`, `Community 51`, `Community 52`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 61`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 71`, `Community 72`, `Community 73`, `Community 74`, `Community 75`, `Community 77`, `Community 79`, `Community 81`, `Community 82`, `Community 83`, `Community 85`, `Community 87`, `Community 90`, `Community 91`, `Community 99`?** - _High betweenness centrality (0.046) - this node is a cross-community bridge._ -- **Why does `NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B()` connect `Community 8` to `Community 1`, `Community 2`, `Community 3`, `Community 6`, `Community 7`, `Community 9`, `Community 12`, `Community 16`, `Community 19`, `Community 22`, `Community 23`, `Community 26`, `Community 28`, `Community 29`, `Community 32`, `Community 33`, `Community 39`, `Community 44`, `Community 51`, `Community 52`, `Community 60`, `Community 71`, `Community 87`?** - _High betweenness centrality (0.014) - this node is a cross-community bridge._ +- **Why does `NullCheck` connect `Community 0` to `Community 1`, `Community 3`, `Community 4`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 25`, `Community 26`, `Community 27`, `Community 30`, `Community 31`, `Community 32`, `Community 33`, `Community 34`, `Community 35`, `Community 36`, `Community 37`, `Community 38`, `Community 40`, `Community 42`, `Community 43`, `Community 44`, `Community 45`, `Community 46`, `Community 48`, `Community 49`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 72`, `Community 73`, `Community 74`, `Community 75`, `Community 76`, `Community 77`, `Community 78`, `Community 79`, `Community 81`, `Community 82`, `Community 83`, `Community 84`, `Community 85`, `Community 86`, `Community 87`, `Community 88`, `Community 89`, `Community 92`, `Community 126`, `Community 168`, `Community 269`?** + _High betweenness centrality (0.514) - this node is a cross-community bridge._ +- **Why does `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` connect `Community 8` to `Community 0`, `Community 3`, `Community 5`, `Community 6`, `Community 7`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 25`, `Community 27`, `Community 30`, `Community 31`, `Community 32`, `Community 33`, `Community 34`, `Community 35`, `Community 36`, `Community 37`, `Community 38`, `Community 40`, `Community 42`, `Community 43`, `Community 44`, `Community 45`, `Community 46`, `Community 48`, `Community 49`, `Community 50`, `Community 51`, `Community 52`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 68`, `Community 70`, `Community 72`, `Community 73`, `Community 74`, `Community 76`, `Community 77`, `Community 78`, `Community 79`, `Community 81`, `Community 82`, `Community 83`, `Community 84`, `Community 85`, `Community 86`, `Community 88`, `Community 89`, `Community 92`?** + _High betweenness centrality (0.040) - this node is a cross-community bridge._ +- **Why does `Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57()` connect `Community 4` to `Community 0`, `Community 3`, `Community 7`, `Community 8`, `Community 14`, `Community 15`, `Community 21`, `Community 27`, `Community 33`, `Community 34`, `Community 38`, `Community 43`, `Community 46`, `Community 48`, `Community 50`, `Community 55`, `Community 56`, `Community 66`, `Community 70`, `Community 77`?** + _High betweenness centrality (0.018) - this node is a cross-community bridge._ - **Are the 86143 inferred relationships involving `NullCheck` (e.g. with `AnimancerComponent_set_Animator_m6D48D5AFEC5608F1982DDAF26C3512CFE72F2A8D()` and `AnimancerComponent_get_IsPlayableInitialized_mB5A207CBB483E0F77C65DB4AB7615F282E91CD30()`) actually correct?** _`NullCheck` has 86143 INFERRED edges - model-reasoned connections that need verification._ - **Are the 9047 inferred relationships involving `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` (e.g. with `UnitySourceGeneratedAssemblyMonoScriptTypes_v1__ctor_mE65AE524188091311A3CFBD98187D9F5EC00D8E3()` and `FastComparer__ctor_m651D576617C3EE91A72F9B695130EFBECE6F5DD0()`) actually correct?** diff --git a/Unity/graphify-out/graph.json b/Unity/graphify-out/graph.json index c5f2de6ed..5916b8c26 100644 Binary files a/Unity/graphify-out/graph.json and b/Unity/graphify-out/graph.json differ diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index 94709e2c5..f75dfee33 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,12 +1,12 @@ # Graph Report - C:\TH1\TH1 (2026-05-28) ## Corpus Check -- 9287 files · ~94,358,835 words +- 9287 files · ~94,353,258 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 575542 nodes · 1380525 edges · 1987 communities detected -- Extraction: 68% EXTRACTED · 32% INFERRED · 0% AMBIGUOUS · INFERRED: 447097 edges (avg confidence: 0.8) +- 575545 nodes · 1380542 edges · 2024 communities detected +- Extraction: 68% EXTRACTED · 32% INFERRED · 0% AMBIGUOUS · INFERRED: 447103 edges (avg confidence: 0.8) - Token cost: 0 input · 0 output ## Community Hubs (Navigation) @@ -1997,6 +1997,43 @@ - [[_COMMUNITY_Community 1984|Community 1984]] - [[_COMMUNITY_Community 1985|Community 1985]] - [[_COMMUNITY_Community 1986|Community 1986]] +- [[_COMMUNITY_Community 1987|Community 1987]] +- [[_COMMUNITY_Community 1988|Community 1988]] +- [[_COMMUNITY_Community 1989|Community 1989]] +- [[_COMMUNITY_Community 1990|Community 1990]] +- [[_COMMUNITY_Community 1991|Community 1991]] +- [[_COMMUNITY_Community 1992|Community 1992]] +- [[_COMMUNITY_Community 1993|Community 1993]] +- [[_COMMUNITY_Community 1994|Community 1994]] +- [[_COMMUNITY_Community 1995|Community 1995]] +- [[_COMMUNITY_Community 1996|Community 1996]] +- [[_COMMUNITY_Community 1997|Community 1997]] +- [[_COMMUNITY_Community 1998|Community 1998]] +- [[_COMMUNITY_Community 1999|Community 1999]] +- [[_COMMUNITY_Community 2000|Community 2000]] +- [[_COMMUNITY_Community 2001|Community 2001]] +- [[_COMMUNITY_Community 2002|Community 2002]] +- [[_COMMUNITY_Community 2003|Community 2003]] +- [[_COMMUNITY_Community 2004|Community 2004]] +- [[_COMMUNITY_Community 2005|Community 2005]] +- [[_COMMUNITY_Community 2006|Community 2006]] +- [[_COMMUNITY_Community 2007|Community 2007]] +- [[_COMMUNITY_Community 2008|Community 2008]] +- [[_COMMUNITY_Community 2009|Community 2009]] +- [[_COMMUNITY_Community 2010|Community 2010]] +- [[_COMMUNITY_Community 2011|Community 2011]] +- [[_COMMUNITY_Community 2012|Community 2012]] +- [[_COMMUNITY_Community 2013|Community 2013]] +- [[_COMMUNITY_Community 2014|Community 2014]] +- [[_COMMUNITY_Community 2015|Community 2015]] +- [[_COMMUNITY_Community 2016|Community 2016]] +- [[_COMMUNITY_Community 2017|Community 2017]] +- [[_COMMUNITY_Community 2018|Community 2018]] +- [[_COMMUNITY_Community 2019|Community 2019]] +- [[_COMMUNITY_Community 2020|Community 2020]] +- [[_COMMUNITY_Community 2021|Community 2021]] +- [[_COMMUNITY_Community 2022|Community 2022]] +- [[_COMMUNITY_Community 2023|Community 2023]] ## God Nodes (most connected - your core abstractions) 1. `NullCheck` - 86148 edges @@ -2011,8 +2048,6 @@ 10. `InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162()` - 3168 edges ## Surprising Connections (you probably didn't know these) -- `InitNav()` --calls--> `Init()` [INFERRED] - C:\TH1\TH1\Share\Libs\RecastDll\Source\InvokeHelper.cpp → C:\TH1\TH1\Unity\sdk\steamworksexample\StarField.cpp - `detail()` --calls--> `operator()` [INFERRED] C:\TH1\TH1\Unity\Assets\Packages\Microsoft.ML.OnnxRuntime.1.16.3\runtimes\ios\native\onnxruntime.xcframework\ios-arm64_x86_64-simulator\onnxruntime.framework\Headers\onnxruntime_cxx_api.h → C:\TH1\TH1\Unity\sdk\public\steam\steamclientpublic.h - `UnitySourceGeneratedAssemblyMonoScriptTypes_v1__ctor_mE65AE524188091311A3CFBD98187D9F5EC00D8E3()` --calls--> `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` [INFERRED] @@ -2021,244 +2056,246 @@ C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\Animancer.cpp → C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\UnityEngine.CoreModule__4.cpp - `AnimancerComponent_Animancer_IAnimancerComponent_get_gameObject_m8C2AD2B15045B58DE37F540CA3BA6B42F0E02660()` --calls--> `Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B()` [INFERRED] C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\Animancer.cpp → C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\UnityEngine.CoreModule__4.cpp +- `Key_IndexOf_m24CC1E533BE090C8E38D4F62746AD0E1C047D723()` --calls--> `NullCheck` [INFERRED] + C:\TH1\TH1\Unity\Library\Bee\artifacts\WinPlayerBuildProgram\il2cppOutput\cpp\Animancer.cpp → C:\TH1\TH1\Unity\Library\PackageCache\com.unity.visualscripting@1.9.4\Runtime\VisualScripting.Flow\Framework\Nulls\NullCheck.cs ## Communities ### Community 0 - "Community 0" Cohesion: 0.0 -Nodes (64394): AnimancerEvent_get_CurrentState_mE8E313D5B0D8BE0D33BAF3F90CCACC40D7187757_inline(), AnimancerNode_get_FadeSpeed_mA8510DDC870DBE7539463970CE9A3B4D2796A1B6_inline(), AnimancerNode_get_Root_m93B6EB9E73B0E65C10C6CD74021B39CE8401A49C_inline(), AnimancerNode_get_Weight_m1996F1556C5703F8C1B4C202D9F2D33069127463_inline(), AnimancerNode_set_FadeSpeed_m773BA27E0B100B0E19044313E255B8B2D56CCAC4_inline(), AnimancerPlayable_get_States_mCD52E8178FA3B03B9726F7E0878FCBF8B72B9975_inline(), AnimancerState_get_IsPlaying_m8ED11EC134ECDFCD7D8E9F41EFD3938411C7226A_inline(), AnimancerTransition_1_get_Events_m78D8BAE802A98F774D15AFE46B1F8E0D22549E9A() (+64386 more) +Nodes (14674): AboutablePage, Styles, Unity.VisualScripting, Absolute, Absolute, Unity.VisualScripting, AbstractMaterialNode, AbstractMaterialNode (+14666 more) ### Community 1 - "Community 1" Cohesion: 0.0 -Nodes (14316): AboutablePage, Styles, Unity.VisualScripting, Absolute, AbsoluteNode, UnityEditor.ShaderGraph, AbstractMaterialGraphTests, TestableMNode (+14308 more) +Nodes (36697): List_1_Clear_m059AC18FEA5690B2C704ECB038500E96E8411EF3_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline() (+36689 more) ### Community 2 - "Community 2" Cohesion: 0.0 -Nodes (31782): List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), HashCode_Combine_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_m4ACF71EFA41042F2FDF0F9EB8EE7971029562D99(), UnitFullType_GetHashCode_mEA29FDC1942116789945749DE102DF8472C534C9(), UnitFullType_GetHashCode_mEA29FDC1942116789945749DE102DF8472C534C9_AdjustorThunk(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline(), FontEngine_SetMarshallingArraySize_TisIl2CppFullySharedGenericAny_m709179C42C5D880CD0F66B2D47840D4CCD52D816_gshared(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138() (+31774 more) +Nodes (27828): AnimancerTransitionAssetBase_get_IsValid_mB4C59A3B3264A0DC1DC65E3325D555C2A86AAB89(), AnimancerNode_CreatePlayable_m90200C0DFDFA10A6363F710CEF146EA2ADC83B38(), AnimancerNode_ToString_mD81CEE0BC93088FC2103378D52759577AECC9477(), AnimancerState_CreatePlayable_mB3ACBA81D01DF1A05FBB6AD9AC834740911C25AC(), AnimancerState_set_Clip_m0AFB0390035762603AAF4D1CAB53468FC4C4CA41(), AnimancerState_set_MainObject_mC61B56FA56F57323D78779106852BBB65D182D15(), AnimancerUtilities_GatherFromAsset_m59973A7B45FFE4B677331302724735CB71697BB7(), AnimancerUtilities_GatherFromTracks_mA4A0A89FC99BAB7065098C0733BA2CA7AD7A6B74() (+27820 more) ### Community 3 - "Community 3" Cohesion: 0.0 -Nodes (0): +Nodes (27103): CartesianMixerState_AppendParameter_mDDFF2159409DBEFC5FE37EB8F583311504B54737(), DirectionalMixerState_AppendParameter_m6922ADE519D29B2FC01546CAF311FA3D90156615(), MixerState_AppendDetails_m9B33313721825F29CEDB015BB122BD1FEAACDFA6(), MixerState_GetDisplayKey_m93A0E9A6667935267884AB742BCA6C93145320EB(), AnimancerComponent_Evaluate_m7289639CC159F72E7D58D8BD1AF940DA454B4D32(), AnimancerEvent_AppendDetails_mB7D8BE4013CD2C1B574A0465F1261079E61B9AEE(), AnimancerEvent_ToString_mFD1D4B2A068B1EDAEF011F9D14AACD7125E34936(), AnimancerLayer_AppendDetails_m89AFE7861D09BA8C62B8952ECE05F8CDCB5D07A7() (+27095 more) ### Community 4 - "Community 4" Cohesion: 0.0 -Nodes (17746): Empire_Equals_m36ECFE9283B332C99A513F4088A8F1784B61665E(), Empire_Equals_m36ECFE9283B332C99A513F4088A8F1784B61665E_AdjustorThunk(), UnitFullType_Equals_m97DCFA03FBBAF98473B6EB44CA8AE9FC5A52EFDC(), UnitFullType_Equals_m97DCFA03FBBAF98473B6EB44CA8AE9FC5A52EFDC_AdjustorThunk(), ViVector3_Equals_m690B15824C397692CE5EED0FA194016C4C020356(), ViVector3_Equals_m690B15824C397692CE5EED0FA194016C4C020356_AdjustorThunk(), CSteamID_Equals_m77EE4FA4CBC76E814C384F9E8969E8229DB5F65F(), CSteamID_Equals_m77EE4FA4CBC76E814C384F9E8969E8229DB5F65F_AdjustorThunk() (+17738 more) +Nodes (0): ### Community 5 - "Community 5" Cohesion: 0.0 -Nodes (13502): ArraySegment_1_get_Array_m1747D6AEF82ECC2FC8BF82E0085F87625B873290_inline(), ArraySegment_1_get_Array_m2DBA02EABF9E0C3B44C58659B338872ACD6D73E1_inline(), ArraySegment_1_get_Array_m5B8145321CE390962D9E060CB1D71B5D8864F1D1_inline(), ArraySegment_1_get_Array_m66D80077530F32FBCF09E33171A7CB1F6D1EAF7D_inline(), ArraySegment_1_get_Array_m6FE5C7903751CF31CCA0FE65705B037B8B2E2C7C_inline(), ArraySegment_1_get_Array_m81A40345E7A687B5042C27645F5D56FD579429ED_inline(), ArraySegment_1_get_Array_m85F374406C1E34FDEFA7F160336A247891AF8105_inline(), ArraySegment_1_get_Array_m9AB4BA95DD23AB6FD46CC0AF95E4A0B1E8A6A071_inline() (+13494 more) +Nodes (19678): Sequence_AssertNormalizedTimes_mF10ED038769E25B5B1B3339F20CA038168035EE2(), cfo_dbp_mA18E2B65EAA8EF2DBB03A5DC49B39F1DCEB74F17(), cfo_fxk_m7C02951B8E2885E57ED40988095CDC33F2758A87(), cfo_kqh_m9517739D2D3452F145AB7BB9349144AD69617F5A(), ViStringSerialize_PrintTo_m82682015304D5AE0299D33F5FD404B17BFAFB13F(), U3CU3Ec_U3C_cctorU3Eb__96_0_mF001476D08FF58CC68298A33F2AC98E8843F88A2(), Array_LastIndexOf_TisAnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03_mB344519D889842090BDC761E8554B092E4D0A93A_gshared(), Array_LastIndexOf_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_m9142B9F9C83016FBC233A35FBE69991373F7B8B9_gshared() (+19670 more) ### Community 6 - "Community 6" Cohesion: 0.0 -Nodes (10594): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), DelegateState__ctor_mDD5278B33FD519B95B51AE33D6481009357F0C9C(), DelegateState_get_CanEnterState_mE0B1940DC98D5C01A1FE5BE3468A5D340B55EA4C(), DelegateState_get_CanExitState_m0908AD6A342ECCC3C3D27A360145433E457F534C(), DelegateState_OnEnterState_m3BC881A29399C345B88031258C80C8C2F8C90B1C(), DelegateState_OnExitState_mF8FBA5B03C9860985C0C2D5F5378A5D248C88B1C(), Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(), State__ctor_m76B9B9B55CDA4BE0B2FB575D16718DBE851A1FF4() (+10586 more) +Nodes (17062): ClipTransitionSequence_Apply_m2AF26F06F0ACB9ECE44BE0FC2B260730D7EDC1D3(), DirectionalAnimationSet8_GetDirectionName_m99F846A5396B2618469B9FCD292F023EE8242423(), DirectionalAnimationSet_GetDirectionName_mB737FB2A1AFA67D5538113CAEF9A6DA96341C1FA(), NamedAnimancerComponent_OnEnable_mB8F99797D2310A6FAF41056ECFA5B4826ACC7930(), SoloAnimation__ctor_mA06DA0C075953851A6D80AE03F7AC5BC70149C74(), SpriteRendererTextureSwap__ctor_m3F8F87B6DB3791FA12F76170588E7AE5074FE2FC(), SpriteRendererTextureSwap_LateUpdate_mB5DF77294B0FFE40AC543758333CD70AA523A8EE(), SpriteRendererTextureSwap_TrySwapTexture_mC59F3FBF33FE24AAFB3F777EE07F6070F70015C5() (+17054 more) ### Community 7 - "Community 7" Cohesion: 0.0 -Nodes (11565): AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m07B1968ADD8E11FDD8FC35F78D0AD1E19DFF2BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m45FC770F3613E37DBED5982944504D45B0D8DBFB_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m76FF7CAA649CEFFF377F3CDD59D6BB2DA1083BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m9E9CF620A0C9BF97705EDB41F6EBBD12013726BC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mC4F1F19A11E9A6769A2B8FED9DA7BDE71E38AF7F_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mCAF4912F692C728426BC1DD0FAA3ACF50C0C18FC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mD68D9CE32DF5A44E06ED6912EF841CCF685A3B64_gshared(), AsyncGPUReadback_RequestIntoNativeSlice_TisIl2CppFullySharedGenericStruct_m2495F6B08EE33A6DDF62D22E7D84DD0C87E7B1CA_gshared() (+11557 more) +Nodes (14610): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), DelegateState__ctor_mDD5278B33FD519B95B51AE33D6481009357F0C9C(), DelegateState_get_CanEnterState_mE0B1940DC98D5C01A1FE5BE3468A5D340B55EA4C(), DelegateState_get_CanExitState_m0908AD6A342ECCC3C3D27A360145433E457F534C(), DelegateState_OnEnterState_m3BC881A29399C345B88031258C80C8C2F8C90B1C(), DelegateState_OnExitState_mF8FBA5B03C9860985C0C2D5F5378A5D248C88B1C(), Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(), State__ctor_m76B9B9B55CDA4BE0B2FB575D16718DBE851A1FF4() (+14602 more) ### Community 8 - "Community 8" Cohesion: 0.0 -Nodes (12060): DontAllowFade__ctor_m533802D5DC3A7A1BB7444049EBF16CDFD08B824E(), ExitEvent__ctor_m6BE8C1994D6C90917D903A7174230EE88FD3A7F3(), AnimancerNode_RecreatePlayable_m1A0D747B77B96A001A3561BEA04CE616CEE130AA(), AnimancerNode_RequireUpdate_mCD83C817E4FBB68D90537D32E3422FFE37A837FA(), AnimancerPlayable_CancelPreUpdate_m307B7893AE9268A83A3C46531A1713C80026FC7E(), DelayedPause__ctor_m0832C4DA8F1AD95094A36EF55D94EE961A88F28F(), EventDispatcher__ctor_m7E7EA9F08ED16545B6F77F3F4A8C3BD1C9B418A6(), Key__ctor_m2576627738004155CCD8EBDB34A4F8C5C85AB291() (+12052 more) +Nodes (14384): Array_InternalArray__Insert_TisAccelerationEvent_tA2256FB99C2ACE6C0D05BDED1D3EF05DB5181E68_mF38D3833A75DCFB2B69E7A91725A29E9F82E3891_gshared(), Array_InternalArray__Insert_TisAlbedoDebugValidationPresetData_tCCFD994474750370F3F5AAEE6312FDF5F06C106B_mE5B8D435C12149F5449FC3A0D684163E3B4D9960_gshared(), Array_InternalArray__Insert_TisAllocToFree_tC46982856CB8220A92BB724F5FB75CCCD09C67D8_m25D3661E6B43FC96861944901CC9BEF93D90231A_gshared(), Array_InternalArray__Insert_TisAllocToUpdate_tD0221D0ABC5378DDE5AAB1DAA219C337E562B512_mB5720E7BBC60EFF178F389BE98A84994DF71F2D2_gshared(), Array_InternalArray__Insert_TisAnimancerEvent_tFD0D7B09BB7C21DB92DB3DC5F51AEF510383A6E2_mEAAD0197FE70E4D733806361CDA2EDFF869A98D2_gshared(), Array_InternalArray__Insert_TisAnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03_m600B9FB3E06C0E8AF19F993604ED8123D7E1DA28_gshared(), Array_InternalArray__Insert_TisAppId_t_tEDCDD5747BB4D932D7C0D2DC9245ADB4ACBA421F_m4743101AF4546685151CC3FF4A7D9540B0DDC4CE_gshared(), Array_InternalArray__Insert_TisArchiveFileInfo_t051019338FB580F17B7DA49693024E09572EF9CC_mFBE8629DE15A198F9B63722BC6FBB5244B2A251A_gshared() (+14376 more) ### Community 9 - "Community 9" Cohesion: 0.0 -Nodes (11433): jje_fyf_m7D64BB442678AB9798CBC704586096ED9FE5C493(), jje_jmh_m1074F5EDC2D720190B10A2C12F62EEB7C12B310E(), U3CU3Ec_bxd_m93DA3D3C05F17BD0BB2118716CFB1220F68589C3(), U3CU3Ec_U3CCalculateLegionMergeStrategyU3Eb__96_0_mFBB3897C227379DA1A960118B80B7010196B792D(), U3CU3Ec_U3CCalculateLegionStrategyU3Eb__94_0_mE8D3E92366655880EA8950345369667204A4FCBD(), U3CU3Ec_U3CCalculateLegionStrategyU3Eb__94_1_m58C8447C845ABA1047504C848466263CA8A18716(), U3CU3Ec_llz_m520D7579C6D3AEB3414DFDB79A9A54A9BB8190D0(), U3CU3Ec_po_mC082DE31BCE4C95182DBFF82A06C39CED08D0CA1() (+11425 more) +Nodes (14117): Action_1__ctor_m352C88C0080092E4462B504026030C6C4786DFDE(), Disposable_AcquireContent_mFAB7242FAD69588B23C93B0CB1F37E538F52451A(), Disposable__ctor_m4DE0705D6774DC8FC787B1C3A76F5C1C9833DEDE(), U3CU3Ec_U3CAcquireContentU3Eb__3_0_m54647822F4DD88B78E2C634C3045FE491CB1071D(), Component_GetComponent_TisLayoutElement_tB1F24CC11AF4AA87015C8D8EE06D22349C5BF40A_mBEDAB0EBAEF4ADA5377B97FC2318DE8020F2D639(), Component_GetComponent_TisVerticalLayoutGroup_t06B5E51FC8051BF2009E6494876FBB9F3E5320B8_mAC986122994FA401969C9C3D1E463D0181FA836C(), LayoutGroup_get_padding_m91ABA3C588704717EDC82E72BA6D1B82711FE83C_inline(), sv_cwe_m5BEC960F2685B0E57607C3953C80B66C42FD0E1F() (+14109 more) ### Community 10 - "Community 10" Cohesion: 0.0 -Nodes (11405): AnimatedFloat__ctor_m9829E6F999428AE61A5292E34A73492B019961D7(), AnimatedProperty_2__ctor_mD406E9F3666D88FEA411F139D6CEB9C75EB5B147(), ClipTransitionSequence_Apply_m2AF26F06F0ACB9ECE44BE0FC2B260730D7EDC1D3(), SoloAnimation__ctor_mA06DA0C075953851A6D80AE03F7AC5BC70149C74(), SpriteRendererTextureSwap__ctor_m3F8F87B6DB3791FA12F76170588E7AE5074FE2FC(), AnimancerComponent_Evaluate_m21265FCAA55F94111F3C37FA640C4A8414573FE9(), AnimancerComponent_get_Playable_mA5FBA6B0CFD2E6837FB2C4856BE3C771A9B365DD(), AnimancerComponent_op_Implicit_mA8D5BE536434D5B44751400F08DBEB60ADFC6699() (+11397 more) +Nodes (13187): AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m07B1968ADD8E11FDD8FC35F78D0AD1E19DFF2BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m45FC770F3613E37DBED5982944504D45B0D8DBFB_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m76FF7CAA649CEFFF377F3CDD59D6BB2DA1083BA0_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_m9E9CF620A0C9BF97705EDB41F6EBBD12013726BC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mC4F1F19A11E9A6769A2B8FED9DA7BDE71E38AF7F_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mCAF4912F692C728426BC1DD0FAA3ACF50C0C18FC_gshared(), AsyncGPUReadback_RequestIntoNativeArray_TisIl2CppFullySharedGenericStruct_mD68D9CE32DF5A44E06ED6912EF841CCF685A3B64_gshared(), AsyncGPUReadback_RequestIntoNativeSlice_TisIl2CppFullySharedGenericStruct_m2495F6B08EE33A6DDF62D22E7D84DD0C87E7B1CA_gshared() (+13179 more) ### Community 11 - "Community 11" Cohesion: 0.0 -Nodes (9000): ReadOnlySequence_1_get_Start_m55503E294901DBF9C74BE99C7CEC7A7171B19368_gshared_inline(), ReadOnlySequence_1_get_Start_mE0805A72F54483F7BACEA389357B365B599F9E97_gshared_inline(), ReadOnlySpan_1__ctor_m0FC0B92549C2968E80B5F75A85F28B96DBFCFD63_inline(), ReadOnlySpan_1_Slice_mC8B7C665F49384744642F03EA355239F0E4AF966_gshared_inline(), ReadOnlySpan_1_Slice_mEB3D3A427170FC5A0AB734619D4792C299697C89_gshared_inline(), Array_Empty_TisBFloat16_t01010688FDE3210A5FCA718A043DBE329F33B0BF_m949D7E159ADC3B2AE06198C0DE1ED5986D26F30C_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline() (+8992 more) +Nodes (12131): DontAllowFade__ctor_m533802D5DC3A7A1BB7444049EBF16CDFD08B824E(), ExitEvent__ctor_m6BE8C1994D6C90917D903A7174230EE88FD3A7F3(), ManualMixerState_Initialize_m540E4EBEC88D78848D9098D9C22459D7FFDB77E4(), MixerState_SetChild_mB53D3FC5945C1F8E690444FC23E7A3720B60B27F(), AnimancerNode_RecreatePlayable_m1A0D747B77B96A001A3561BEA04CE616CEE130AA(), AnimancerNode_RequireUpdate_mCD83C817E4FBB68D90537D32E3422FFE37A837FA(), DelayedPause__ctor_m0832C4DA8F1AD95094A36EF55D94EE961A88F28F(), EventDispatcher__ctor_m7E7EA9F08ED16545B6F77F3F4A8C3BD1C9B418A6() (+12123 more) ### Community 12 - "Community 12" Cohesion: 0.0 -Nodes (8400): ExampleInput_get_SpaceHold_m5462056899742B828DCF278ABD6BE64CC358A52A(), Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline(), Color32_op_Implicit_m47CBB138122B400E0B1F4BFD7C30A6C2C00FCA3E_inline(), Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline(), Color__ctor_mCD6889CDE39F18704CD6EA8E2EFBFA48BA3E13B0_inline(), Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline(), Color_get_green_mEB001F2CD8C68C6BBAEF9101990B779D3AA2A6EF_inline(), Color_get_red_mA2E53E7173FDC97E68E335049AB0FAAEE43A844D_inline() (+8392 more) +Nodes (10078): TaskCompletionSource_1_SetCanceled_m094D37FCDE8D0431163D8998A9000CA96CADBB45_gshared(), TaskCompletionSource_1_SetException_m58C4BD8A0F4F1FAA417EC05E2EDC79F0D6C5ADB7_gshared(), TaskCompletionSource_1_SetException_mD00D9D5CDCB6918F2C2AC03B1E88468BCCB3E0A8_gshared(), TaskCompletionSource_1_SetResult_m20A3A9EACC332D8ECC8AA9E690B90E6C56835CED_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m45AA23B38ECE6B28D89D0E72F41C33D1B7A0023A_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m9C23B628D687A4A080B37C12F33BF81CDC3FBA2C_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mB8B25E983E8492E65BD4449CAC4570EC7D37B12E_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mCB358AADC3D56D4A6DC8F1F34B2E803EB38D0782_gshared() (+10070 more) ### Community 13 - "Community 13" Cohesion: 0.0 -Nodes (7447): ArraySegment_1__ctor_m179787F84EADF7A298F0AC23DF288DC07F5290AF_gshared(), ArraySegment_1__ctor_m44E7B5ACE67A4561D17BF3BD32C641C90C4193AD_gshared(), ArraySegment_1__ctor_m45C4AEF4DB462CAAACE7EF30F8E4ABAA29366245_gshared(), ArraySegment_1__ctor_m737B29457EC2092A2366FB2845DC8820E9C482FA_gshared(), ArraySegment_1__ctor_mE5BB513ADFF12B95D6D60FEB9D3E979F32D2F65B_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m45AA23B38ECE6B28D89D0E72F41C33D1B7A0023A_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m9C23B628D687A4A080B37C12F33BF81CDC3FBA2C_gshared(), ArraySegment_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mB8B25E983E8492E65BD4449CAC4570EC7D37B12E_gshared() (+7439 more) +Nodes (8230): ReadOnlyCollection_1_Contains_m08F053377062A13D3F105E6F58E5D02489A8BD66(), ReadOnlyCollection_1_Contains_m08F053377062A13D3F105E6F58E5D02489A8BD66_gshared(), ReadOnlyCollection_1_Contains_m095D718795464C6D06D9D3E2C58F7C46262340EF(), ReadOnlyCollection_1_Contains_m095D718795464C6D06D9D3E2C58F7C46262340EF_gshared(), ReadOnlyCollection_1_Contains_m1099806682D86CEF3C728FE8433AFB5A856C3D18(), ReadOnlyCollection_1_Contains_m1099806682D86CEF3C728FE8433AFB5A856C3D18_gshared(), ReadOnlyCollection_1_Contains_m214708698A141F252DC734FE38974A9624E78EC4(), ReadOnlyCollection_1_Contains_m214708698A141F252DC734FE38974A9624E78EC4_gshared() (+8222 more) ### Community 14 - "Community 14" Cohesion: 0.0 -Nodes (6807): servernetadr_t_GetHashCode_m86013D4C132D08B530A44753C7BA6B0E9FEF58F4(), servernetadr_t_GetHashCode_m86013D4C132D08B530A44753C7BA6B0E9FEF58F4_AdjustorThunk(), LowLevelList_1_get_Item_m4A0F25A4B5A0BBD4AD5C423C0B474765E3F65596_gshared(), LowLevelList_1_get_Item_mE1B6F0331605C882D5552283F3E039DAB1CFE249_gshared(), LowLevelList_1_set_Item_m43802D3D871A9B9E33879921E12CC84BADF9D917_gshared(), LowLevelList_1_set_Item_m9F37196A2E5D41B987A97C7BA6F3FCE0A7DF96FD_gshared(), Nullable_1_GetHashCode_m17AAF4452771A7C90F57EC64440B88CAC178B082_gshared(), Nullable_1_GetHashCode_mD93BBB27DA4B62EDF63C8F4F35A12FFFC6AE3CEE_gshared() (+6799 more) +Nodes (7438): ExampleInput_get_SpaceHold_m5462056899742B828DCF278ABD6BE64CC358A52A(), fa_bcl_mDF19D910AC6CB333D9F05F26F5F05E85233AEC52(), fa_gfr_mDBD6818E0679FC7AD4B427F8C9F15883F84DD07E(), fa_ivm_m0B4A990C360E87E65780E3258092368CD22D04CB(), Dictionary_2_get_Item_m8BC0336FB095877BA0AC6E7768E184D30142F652(), Dictionary_2_set_Item_m4E4257F20728070B9AE4442D417B909D0605FCD5(), Enumerator_Dispose_mAC7F9AFF0482CB285B2ADB09625FD46CCE89C2E9(), Enumerator_Dispose_mDE3356126A2FC7AF47AA95CFEEC5A1309667F0B9() (+7430 more) ### Community 15 - "Community 15" Cohesion: 0.0 -Nodes (6177): Curve_CalculateWeight_mDCDA17A2450343FF7052CD41E87E1A2089CBA223(), Action_1__ctor_m352C88C0080092E4462B504026030C6C4786DFDE(), Disposable_AcquireContent_mFAB7242FAD69588B23C93B0CB1F37E538F52451A(), Disposable__ctor_m4DE0705D6774DC8FC787B1C3A76F5C1C9833DEDE(), ObstacleTreadmill_get_Slope_m81800874C50F625E51BCD8A5D547C25D2D3D2642(), OrbitControls_OnDrawGizmosSelected_mC5E85C1ABD6834FE4E9AE9F5C4959BB5EBFC4643(), U3CU3Ec_U3CAcquireContentU3Eb__3_0_m54647822F4DD88B78E2C634C3045FE491CB1071D(), bae_frj_m1D2B6B9CD906B924E10FBA0DD549C56518F1696B() (+6169 more) +Nodes (6132): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), AnimancerEvent_get_CurrentState_mE8E313D5B0D8BE0D33BAF3F90CCACC40D7187757_inline(), AnimancerLayer_get_CommandCount_m59A5957C7DB7E574CAC3EF8DEA1200585276772A_inline(), AnimancerLayer_get_CurrentState_mBE9E219D94516C430237703D8B4A5DE184116C3E_inline(), AnimancerNode_get_FadeSpeed_mA8510DDC870DBE7539463970CE9A3B4D2796A1B6_inline(), AnimancerNode_get_Index_mE0DF69950BF6E0BD21617437EADF360A30C1680C_inline(), AnimancerNode_get_Root_m93B6EB9E73B0E65C10C6CD74021B39CE8401A49C_inline(), AnimancerNode_get_Speed_mF329FD7BF54B33FE62153BA759BEDC74B8AAACF3_inline() (+6124 more) ### Community 16 - "Community 16" Cohesion: 0.0 -Nodes (5683): ReferenceEqualityComparer_GetHashCode_mA7F13434B33F3039C39E013E2BEB65F96D54A76D(), ContinuationResultTaskFromResultTask_2__ctor_m0512A7D95C233D8033ABE3EB1C6E3A56057DFBD8(), ContinuationResultTaskFromResultTask_2__ctor_m079D3C89A3AD9AE833E6599A958A4F55DFF535D2(), ContinuationResultTaskFromResultTask_2__ctor_m0D736DC6A9F4525F3F85B36375CBACF72A75C375(), ContinuationResultTaskFromResultTask_2__ctor_m1FD0508ABB3FDC2A436161BF0DFF0435AB52D453(), ContinuationResultTaskFromResultTask_2__ctor_m36D3EABEE8ADC062D90F1936A357E5BA93395818(), ContinuationResultTaskFromResultTask_2__ctor_m373282F76A4588C44B069041ACF914E4141996BF(), ContinuationResultTaskFromResultTask_2__ctor_m46B5DA20F0E5DBE461879CBB74A894F9DFCE3FC3() (+5675 more) +Nodes (5910): bag_dcd_mECF6155A089DACDF676025CC555400F5D3F0E2D9(), jje_dtn_m001D9BC3C1D0CA3865C5C35A4BA22C23F000684B(), jje_gfn_m520CC66CF2B649C2DF0E5719F6122A0BF1DCB1BB(), jje_jmi_mF03039D649E66E0E2F1508491849C6D3BAF31474(), jje_liy_mBB99B36A832BFBE7CED65AC5249BBFC5854BA982(), jje_yi_m84316F2C04E3FA8EFCEC3002238686FB57FD88B2(), Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), APIDispatchDelegate__ctor_m6C9EA42DEC67B63ED4ADCC03A4052128842F5BC5() (+5902 more) ### Community 17 - "Community 17" Cohesion: 0.0 -Nodes (5068): U3CU3Ec_kxs_m4069DF1C5DDE759C35CA2CE93422CC05FF991E47(), FixedStringMethods_ComputeHashCode_TisIl2CppFullySharedGenericStruct_mB6493676FFCDAB4AD0FA6FB82564500A8286403C_gshared(), NativeList_1_AddRange_m5469007F99D38C73CAF59B7F3A2A20BDA7605288_gshared(), NativeList_1_get_Length_mBCE0D52E1FEFC40B5CFEE2F41B493C7FF6A07FA7_gshared(), NativeList_1_InsertRangeWithBeginEnd_m6C08CC6FCE0C86D983776D77B196EAF0FA4FB020_gshared(), NativeList_1_RemoveAt_mEDD020DF08725F529B5AA06F652196FD3B6ABC92_gshared(), NativeList_1_RemoveAtSwapBack_m3BAA4B8DC92D6A907E4B8570A4919F0C0B2211B7_gshared(), NativeList_1_RemoveRangeSwapBack_mC915D35A96C41DB035F4D0FCEF77143963205A4E_gshared() (+5060 more) +Nodes (4477): AddrofIntrinsics_AddrOf_TisIl2CppFullySharedGenericAny_m5BD9D07EF2F193BD1D209D91D3E6D993D40435F6_gshared(), AddrofIntrinsics_AddrOf_TisRuntimeObject_m26881CDB13AAC26B23F4C487BF5461CC7BBFB6EF_gshared(), AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718_mB3FA48E0C3F931F2C543835EBBAB90078A1D6911() (+4469 more) ### Community 18 - "Community 18" Cohesion: 0.0 -Nodes (5635): AllYCounterSkillFormatter__ctor_m6AB3E4CCCB7594B2B99183B67EBABA3C612AD860(), AllYCounterSkillFormatter_Deserialize_m052EE207F21240B74FE727761B38EA7FF4D54DEF(), AllYCounterSkillFormatter_Serialize_m30416CA2C7B0D3035E0BA16B43A3449F596C4DA9(), AllYTranSportSkillFormatter__ctor_m50530EECC38B18AE56E3F7934E587E65513A8442(), AllYTranSportSkillFormatter_Deserialize_mC37151BC56C5B0AD46D43D146FF8194811364517(), AllYTranSportSkillFormatter_Serialize_m4B443A9BFE6127DD1DF9D8364A770E6338834CB3(), ArrayFormatter_1__ctor_m1F89951DD8633FFCC1C1C08A4A29C4C9AE5F562F(), ArrayFormatter_1__ctor_m43BBF210FFA429C3830B367ECC751E440C70D1F6() (+5627 more) +Nodes (5531): DecimalSerializer_Serialize_m127DB2CFD977E7BF516387D1069DD6A69CF0F228(), RepresentationConverter_ToDecimal_mEFCEDB9B1267CDE8D5FF4495D7F6E5D7AD147B5F(), RepresentationConverter_ToDouble_m066DF58D13A3F58A02B98C14BF73BA7EB1A48E3E(), RepresentationConverter_ToInt32_m97422425B38795B22177A03489AD45F2A34E7B09(), RepresentationConverter_ToInt64_mEC148B66C1605343130BB00DABD7631867A87F70(), JsonConvert_ToString_mD84B6DA64E2095D3AB54E53F61F137E9C752707C(), BsonInt64_ToDecimal_mF52CC16D1EF09F4C2BA796ADBAEF52487CB970D6(), Decimal__cctor_m3B13EC53441FFFB01B2DD8DF586EB3472523C5BA() (+5523 more) ### Community 19 - "Community 19" Cohesion: 0.0 -Nodes (4838): PolymorphicAttribute__ctor_m0BB581101F89070100B28A601AB7199519ABBCC5(), MultilingualFieldAttribute__ctor_m6798E1E78CCA80AFD13606E0734F99501F5E4AF5(), EmbeddedAttribute__ctor_m68CAD82666F0FF415043D7DC217986AA2D3133D1(), NullableAttribute__ctor_mA329224BEC75C65B8E9B5D81D7F5E769E22790E2(), NullableContextAttribute__ctor_m3F94BA00FB614574AC19D78E61DC0CA0AE15FCAC(), UsageAttribute__ctor_m802D31C3F757DF295A0016E479D8CD2B1923B9D0(), ComputeBuffer_BeginWrite_TisIl2CppFullySharedGenericStruct_m64E369E270A3B785F518547B718040DD556A73AD_gshared(), Contract_EnsuresOnThrow_TisRuntimeObject_m19124F8798C1C42ADD0A80B888F84F2F729AEAB7_gshared() (+4830 more) +Nodes (1266): AbstractMaterialGraphTests, TestableMNode, UnityEditor.ShaderGraph.UnitTests, AnimancerUtilities_Wrap_m1F43DDCC9F8591CDEA8960139DD5ADCDD61082E0(), Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline(), Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_inline(), ViAssisstant_IntInf_m1FDDDD13E68E206BD66372A6FDFE73963286AC48(), ViAssisstant_IntSup_m01D7B73F36B5501BEED900CF3103F6EB617B77DE() (+1258 more) ### Community 20 - "Community 20" Cohesion: 0.0 -Nodes (5374): Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), ArrayHelper_Empty_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_m14EBD7FCECD3BD84BB7AB607C59AC28273298395_inline(), AsyncIteratorMethodBuilder_AwaitOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m97FC0EDCCE567EA93BA65A44A7049AC22A1172A4(), AsyncIteratorMethodBuilder_AwaitOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m97FC0EDCCE567EA93BA65A44A7049AC22A1172A4_AdjustorThunk(), AsyncIteratorMethodBuilder_AwaitUnsafeOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m66ECE8870C19BFEDB416842F8521623C0C65FED9(), AsyncIteratorMethodBuilder_AwaitUnsafeOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m66ECE8870C19BFEDB416842F8521623C0C65FED9_AdjustorThunk(), AsyncIteratorMethodBuilder_MoveNext_TisIl2CppFullySharedGenericAny_m7931F9D0117C508EE44DB6ECF7C0C943B6863AC0_AdjustorThunk(), AsyncIteratorMethodBuilder_MoveNext_TisIl2CppFullySharedGenericAny_m7931F9D0117C508EE44DB6ECF7C0C943B6863AC0_inline() (+5366 more) +Nodes (5655): AllYCounterSkillFormatter__ctor_m6AB3E4CCCB7594B2B99183B67EBABA3C612AD860(), AllYCounterSkillFormatter_Deserialize_m052EE207F21240B74FE727761B38EA7FF4D54DEF(), AllYCounterSkillFormatter_Serialize_m30416CA2C7B0D3035E0BA16B43A3449F596C4DA9(), AllYTranSportSkillFormatter__ctor_m50530EECC38B18AE56E3F7934E587E65513A8442(), AllYTranSportSkillFormatter_Deserialize_mC37151BC56C5B0AD46D43D146FF8194811364517(), AllYTranSportSkillFormatter_Serialize_m4B443A9BFE6127DD1DF9D8364A770E6338834CB3(), ArrayFormatter_1__ctor_m1F89951DD8633FFCC1C1C08A4A29C4C9AE5F562F(), ArrayFormatter_1__ctor_m43BBF210FFA429C3830B367ECC751E440C70D1F6() (+5647 more) ### Community 21 - "Community 21" Cohesion: 0.0 -Nodes (3697): AllocatorHandle_get_Value_m24A0A3E433794106E43E9140CC2BB55493C8F30F_inline(), AllocatorManager_AllocateBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mF60FCB48EFFCF4058983D8A61953A90D240206B2_gshared(), AllocatorManager_CreateAllocator_TisIl2CppFullySharedGenericStruct_mB4F41AC6CCD167F35B0272A4F38196E32A364C03_gshared(), AllocatorManager_DestroyAllocator_TisIl2CppFullySharedGenericStruct_mBB46F1DC9D6AC1889886DD0B5DB327AB990498B5_gshared(), AllocatorManager_Free_TisIl2CppFullySharedGenericStruct_mDBB8A012EA9B6286BBF754ABC553D87E29E2084C_gshared(), AllocatorManager_FreeBlock_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mB883369C2E1D3F28BFE59C63AF0075570A928971_gshared(), AllocatorManager_UnmanagedUnregister_TisIl2CppFullySharedGenericStruct_mA531B69E183CA56C8BC7D2DD419333CA5E2DC004_gshared(), AllocatorManager_Unregister_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_mB8321A6BD18AF456ABC30E251B65EDA0381ECE93_gshared() (+3689 more) +Nodes (5375): UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_mF5FF85F4C57B299E380CF84FDFAC28D2A77F06AE(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_m2BE2470D8C93AFF745AA294C1F157F07A98CB5D8(), ggz__ctor_mC548542924B36C7733F10DE290BACFA8B9739DFD(), ggz_NextBytes_m278233F1789EB22F0B077398057AF1600195BA59(), jje_jmj_mA485430AD37E74A539F95BAD4F4F014EF4DCC4BF(), jje_mlf_m4124E69B43B745ECB03259AA201154DE87DBDF40(), cg_ezr_m0036B0266C872A9EA6B18BBAAD4AFD03EE4C0327(), cg_jiy_m6E01242634831B730BC36D22C334EBD333F8207E() (+5367 more) ### Community 22 - "Community 22" Cohesion: 0.0 -Nodes (4722): AnimancerPlayable_Evaluate_m50B69F25DC93E6A64FD6D85CAD213156EEBD0B20(), AnimancerPlayable_Evaluate_m868C701E76EE3280B0085F0D063B75FDC98B0595(), AnimancerPlayable_get_IsValid_m1D469E2995826A7D0079F9BF9150D4CB158B3CDF(), AnimancerPlayable_get_UpdateMode_mA09454B9BDE03B7AF58365A52729B046A70F4215(), AnimancerPlayable_set_UpdateMode_m883A1EBC7409D2D920725ACBE1C2E2FDB3E847F2(), OrbitControls_Awake_m5C4AC16D80B243FF6FF23A87C7021FC57E2E1455(), TransformResetter_Awake_m69CFFFE535C396BC546711F97D0710B5EAFBC920(), fn_bhj_mD41ECAE4168EB3D8DC7454481E6F6A2E2ACEF045() (+4714 more) +Nodes (3618): MonoTlsProviderFactory_GetProvider_m8684E3A1AFB043FA00DEC4BCF95F8B288C136936(), MonoTlsSettings_Clone_mC4F9A27889ADD0B275018B32BCDA67C30865EA7D(), MonoTlsSettings_CopyDefaultSettings_m4B0A3E8B7D106FA7F0D243FB2A0A4B115CD21942(), String_TrimStart_m210863A5E84BC22EC0487A1543D3680979DD87EE(), Math_Max_m12FB4E1302123ADB441E3A7BDF52E8404DDE53A2(), Math_Max_m670CC45E68892199F0ED53A131DAB78A953389BB(), Math_Max_m8CA8DA82E6369E8477818CB2C8C83ADDA7B4CEFD(), Math_Min_m1B6A7DBB8BBF41DE5E09DAAA47913DE1A3168B88() (+3610 more) ### Community 23 - "Community 23" Cohesion: 0.0 -Nodes (3495): DataSet_1_RegisterUpdate_mA73DB834887ABB724CE2E2543B69ADE2D60AA444_gshared(), ZipEntry_get_DateTime_mC6EB8B16673C5BA759EF40E1C85E91EE702EBE4C(), MonoTlsSettings_CopyDefaultSettings_m4B0A3E8B7D106FA7F0D243FB2A0A4B115CD21942(), TaskToApm_End_mDFB29EEE501409834D464F4C249A535723B7E6ED(), CryptoStream_EndWrite_mA68470A2CBD4FB1206BF30812E7EAA1D1FC4B0C5(), BufferedStream_EndWrite_m97561E80E838C260487886B84EDC8CEAA7FC8832(), Math_Max_m12FB4E1302123ADB441E3A7BDF52E8404DDE53A2(), Math_Max_m6612C5AE2D40056418765878E8787E4828D2ADD7() (+3487 more) +Nodes (4832): Array_InternalArray__get_Item_TisAccelerationEvent_tA2256FB99C2ACE6C0D05BDED1D3EF05DB5181E68_mEC4BAF0DFCF52221B3F6626EA60E2838CF698593(), Array_InternalArray__get_Item_TisAnimancerEvent_tFD0D7B09BB7C21DB92DB3DC5F51AEF510383A6E2_m55AE498601F1F36F1759906BDB2D650B3D3C1F52(), Array_InternalArray__get_Item_TisAnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03_m066792325C018423FC1740C37C00D551CB574A3E(), Array_InternalArray__get_Item_TisAppId_t_tEDCDD5747BB4D932D7C0D2DC9245ADB4ACBA421F_m28BABE60A294312ED061016FF527F787934A6359(), Array_InternalArray__get_Item_TisArchiveFileInfo_t051019338FB580F17B7DA49693024E09572EF9CC_mCB5C85BB13515B3586504D43A9F0801F05FE281E(), Array_InternalArray__get_Item_TisArchiveHandle_tECB0188191D0D3519C85970E537865D8F0E49CAA_mA8FD0FC76B52017A9C03F1062D0401D294DFD3A5(), Array_InternalArray__get_Item_TisAsyncGPUReadbackRequest_t6A735D3E0F1DEF8F43EBD0E6FE550FAE564519C7_mE005C1FB38B6D09B6CF04B1EE02BDF059FAC0A37(), Array_InternalArray__get_Item_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_m5803906032467756117FD3125CA4243C7B1FD4F1() (+4824 more) ### Community 24 - "Community 24" Cohesion: 0.0 -Nodes (1020): AnimancerUtilities_Wrap_m1F43DDCC9F8591CDEA8960139DD5ADCDD61082E0(), Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline(), ViAssisstant_IntInf_m1FDDDD13E68E206BD66372A6FDFE73963286AC48(), ViAssisstant_IntSup_m01D7B73F36B5501BEED900CF3103F6EB617B77DE(), ViMath2D_CaculateAngle_m68F1DC7E73BF46B4F75C9B6FE5FEB0C232C0F127(), ViMath2D_Rotate_m65A649472D92AAE814096E6C58FF7032E736F479(), ViMath2D_Rotate_mCDD0B57046EA2D46190A710166D6F617159490CC(), ViMathDefine_Asin_mF8A1D7D32BDE863864F9BADC6FAFC4AACF090372() (+1012 more) +Nodes (4061): UsageAttribute__ctor_m802D31C3F757DF295A0016E479D8CD2B1923B9D0(), Contract_EnsuresOnThrow_TisRuntimeObject_m19124F8798C1C42ADD0A80B888F84F2F729AEAB7_gshared(), Contract_EnsuresOnThrow_TisRuntimeObject_m91E64FA6BDE5589ECCAB2B2ECF68A7AF8B1DF2F2_gshared(), Contract_Requires_TisRuntimeObject_m3D1EB51CB1E7A30DB811F4EBA939171C648ACB79_gshared(), Contract_Requires_TisRuntimeObject_m46DA15C6B834C645330543A940D4DE4476945E6F_gshared(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_inline(), Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline() (+4053 more) ### Community 25 - "Community 25" Cohesion: 0.0 -Nodes (5426): ArraySortHelper_1_BinarySearch_m07E77AE5F025761CFC1EFF940733C99F13F654EB_gshared(), ArraySortHelper_1_BinarySearch_m0BCE6EC3BE95132C034E9626C43F2A2FAED04D3B_gshared(), ArraySortHelper_1_BinarySearch_m2E2CDF934D38871D8986995661CB1D62071A5CB6_gshared(), ArraySortHelper_1_BinarySearch_m2F04ACEEAC9A3195EF97DA8703640035B24AC1A5_gshared(), ArraySortHelper_1_BinarySearch_m315E2B25213727CCFDEAC95743F382D00A2C66E5_gshared(), ArraySortHelper_1_BinarySearch_m31FF9BB3CA599A5B4279B8C152629FA796203D20_gshared(), ArraySortHelper_1_BinarySearch_m3237E149FCC78B4A3CA769DE9A2073D34C46BA5A_gshared(), ArraySortHelper_1_BinarySearch_m384CB8DC9FC270B9F4B13C64D56F420AEF48028F_gshared() (+5418 more) +Nodes (4014): U3CU3Ec_ipy_m1A25E25933F7A7B66619274CEED66A516BD92295(), FixedStringMethods_ComputeHashCode_TisIl2CppFullySharedGenericStruct_mB6493676FFCDAB4AD0FA6FB82564500A8286403C_gshared(), UnsafeList_1_InsertRangeWithBeginEnd_mFB76DC3407CA799EC64AE8F1BFE765A91D458998_gshared(), BaseField_1_set_value_mFF8AF2EBC466397306C6AFAB5234084DF742E525_gshared(), DefaultComparer_1_Compare_m394F7F49471D14333A96E4D1609FF38B351FC316_gshared(), Action_1_Invoke_m211AB6C2AA7326F6BFC8338EC888360A219AFF41_inline(), Action_1_Invoke_m3C60C84018CAD36C0EC956A14935394A7DD116C6_inline(), Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline() (+4006 more) ### Community 26 - "Community 26" Cohesion: 0.0 -Nodes (4242): MemoryPackWriter_GetFormatter_TisRuntimeObject_m9B8C4A824D9887DC830BD762110EA0640B534D06_inline(), MemoryPackWriter_WriteValue_TisRuntimeObject_mB4E581518534D750D3596987C811645BC400B9F0_gshared_inline(), Unsafe_AsRef_TisRuntimeObject_m9A724F6CCF7AF3758C2D485093F994B33AA9BA03_inline(), GameObject_AddComponent_TisMeshFilter_t6D1CE2473A1E45AC73013400585A1163BF66B2F5_mEAB8177A64DF1A50BB7996ACEEEADCD65358AC94(), GameObject_AddComponent_TisMeshRenderer_t4B7747212F0B88244BB7790C61AE124BFC15BAAE_mCDD3E77673305199F52C772AE8C7952F3864740D(), GhostMaterialReplace_Invoke_mE667EE164F3628FAC247BA0BAA4ED7A62A205778_inline(), List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_inline(), Object_Instantiate_TisMesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4_mCB63EA96E3A7048C1CD837AD0CAF59AA9200DBE8() (+4234 more) +Nodes (4863): ArraySortHelper_1_BinarySearch_m1296F869887BAA094737E7FB15C30D9557BE15EE_gshared(), ArraySortHelper_1_BinarySearch_m168795B38A7F5A86067BBF74EDE5ACC0833E0B04_gshared(), ArraySortHelper_1_BinarySearch_m299FC43B204F2C7B3A863FAFBC9734A74215D369_gshared(), ArraySortHelper_1_BinarySearch_m36557CC97B6F48196A2F31B0D198D65A54BB5F92_gshared(), ArraySortHelper_1_BinarySearch_m3C33208AB2C96B590EE37D79F53440308528AB42_gshared(), ArraySortHelper_1_BinarySearch_m401D9B1544580A0F687663A03757AD603D3AB110_gshared(), ArraySortHelper_1_BinarySearch_m4FC9245C00BFA15DCBACB72C9F7192EC1BB54FA9_gshared(), ArraySortHelper_1_BinarySearch_m55186848FC034CE2363EACA0B461A07B3A7678CF_gshared() (+4855 more) ### Community 27 - "Community 27" Cohesion: 0.0 -Nodes (4298): RepresentationConverter_ToDecimal_mEFCEDB9B1267CDE8D5FF4495D7F6E5D7AD147B5F(), RepresentationConverter_ToDouble_m066DF58D13A3F58A02B98C14BF73BA7EB1A48E3E(), RepresentationConverter_ToInt32_m97422425B38795B22177A03489AD45F2A34E7B09(), RepresentationConverter_ToInt64_mEC148B66C1605343130BB00DABD7631867A87F70(), BsonInt64_ToDecimal_mF52CC16D1EF09F4C2BA796ADBAEF52487CB970D6(), Delegate_Clone_m8B21D18E314730820FF59DF786DD02BFF1D750C6(), Decimal__cctor_m3B13EC53441FFFB01B2DD8DF586EB3472523C5BA(), Decimal__ctor_m6DDFD6E3A7A8CDEB1BADF8E09A8D8E1BDA9497A9() (+4290 more) +Nodes (0): ### Community 28 - "Community 28" Cohesion: 0.0 -Nodes (0): +Nodes (3383): AnimancerTransitionAssetBase__ctor_m8B042983702448B0C59777089D5D8F37DFA54E13(), AnimancerPlayable_get_Disposables_m4ECF320723FEE796F592ECAEC218835814CA1372(), List_1__ctor_mB4C51AD04BB1308274A370FED1FA4A1651C5766F(), ValueAnimation_1_Start_mCC85B391FD32BEAF30ECD78E3C74A8D16E437212_gshared(), AnimationDataSet_2_Add_m0791FFD5600773A8FBAEDC9D71F203C2D77DDC0A(), AnimationDataSet_2_Add_m13512086BF5255CF2B7AE572383752C7A970F75F(), AnimationDataSet_2_Add_m34BC010174C74AFF4B52A0278D53F4F602CA7E7C(), AnimationDataSet_2_Add_m3B8112BC15048263B03E5DF4CB7976964D3DC74B() (+3375 more) ### Community 29 - "Community 29" Cohesion: 0.0 -Nodes (1334): AchievementConditionBase, AroundBuildingsConditionCondition, AroundCityGridsConditionCondition, AroundEnemyUnitsConditionCondition, AroundSelfUnitsConditionCondition, AroundWondersConditionCondition, BuildWonderConditionCondition, Logic.Achievement (+1326 more) +Nodes (3695): NativeList_1_CheckIndexInRange_m1AD11CF2F507F007C5AAD437D7CAD59C04B12238_gshared(), NativeList_1_CheckIndexInRange_m200159303CBD51B208138C8824ABE9B1FBD5F5F8_gshared(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(), DynamicArray_1_get_Item_m5B1DBAB0205422DC339E985CCEBD396137011912(), DynamicArray_1_get_Item_m7109F100EE5DC9FAC5D38BEADCD4D8CB66DA3E6C(), DynamicArray_1_get_Item_m7DDF1E462D1484149A4D812CAD717F816205FD44(), DynamicArray_1_get_Item_mF3E6225CDFD0CD64C4DC1289DB12E97049574C31() (+3687 more) ### Community 30 - "Community 30" Cohesion: 0.0 -Nodes (3677): Nullable_1_GetHashCode_m22A932B19518EC693006CF81F92B7937FB32B25D_gshared(), ObjectEqualityComparer_1_GetHashCode_m4EF06EF9D6102986E59CDE8D75F1D7AFA139B089_gshared(), DeferredDisposableLifetime_1__cctor_m90B2B8374560F9E6622D41DE5FD4D4F696B7D45C_gshared(), Dictionary_2_Resize_mFF8FBD0339D8E0ACEEBABFFC01653B6BA711F3CE_gshared(), ArraySegment_1_get_Array_m0A37BDEA0523B09288F812B98E20D333AC5E8ACD_inline(), ArraySegment_1_get_Array_m12259026D885142F80E08F7D6B6A1C5E027049AD_inline(), ArraySegment_1_get_Array_m1B2E5117440374B71BEA40B0A51E356CE60CBAF0_inline(), ArraySegment_1_get_Array_m1E527B0219936D6E63F60F321794D4A41AE9FA96_inline() (+3669 more) +Nodes (3548): ExecutionContext_RunInternal_TisIl2CppFullySharedGenericAny_m0654CA6A62C1B204AD3CB00D5E05D892FD23466D_gshared(), FontEngine_GenericListToMarshallingArray_TisIl2CppFullySharedGenericAny_mC8265A55C3641B79D32DAC3686E5C1F1B46EFAD8_gshared(), FontEngine_SetMarshallingArraySize_TisIl2CppFullySharedGenericAny_m709179C42C5D880CD0F66B2D47840D4CCD52D816_gshared(), HttpWebRequest_RunWithTimeout_TisIl2CppFullySharedGenericAny_m660D24F9959DA6C5A2E77B06A7C6E1358DFFDF43_gshared(), Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4(), AggregateException_get_InnerExceptions_m3044DE61416F827389F2975C67AC1AD89EA050A5_inline(), Nullable_1__ctor_m117BE9EF6DBC76B088B52AFB80634B9195D384A1(), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline() (+3540 more) ### Community 31 - "Community 31" Cohesion: 0.0 -Nodes (4200): UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_mF5FF85F4C57B299E380CF84FDFAC28D2A77F06AE(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_m2BE2470D8C93AFF745AA294C1F157F07A98CB5D8(), cg_ezr_m0036B0266C872A9EA6B18BBAAD4AFD03EE4C0327(), cg_jiy_m6E01242634831B730BC36D22C334EBD333F8207E(), cg_vy_m58F451A442BC2F6015E8E9021E9FA50DF62872A5(), AICalculatorData__cctor_m8C4BA51A96069E1D463FB176F3140FF55EFF609F(), UIOutsideModView__cctor_mB67925DE0A6169145BA0E3D5732127119C6FFFD5(), UnitySourceGeneratedAssemblyMonoScriptTypes_v1_Get_mC7CA174A23290C34424DF6D2733D5E64B92E5977() (+4192 more) +Nodes (1135): AnimancerJob, Animancer, AnimatedProperty, ClearMenuItems(), PopSelectedItem(), PushSelectedItem(), Render(), RunFrame() (+1127 more) ### Community 32 - "Community 32" Cohesion: 0.0 -Nodes (3983): MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline() (+3975 more) +Nodes (3054): MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_ReadString_m248B8D8707EE134F8F3A2BD37DE3576C28CD0D55_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline(), MemoryPackReader_TryReadCollectionHeader_m4C7FF4723026CC89738F84AA42F9480C2410F5C3_inline() (+3046 more) ### Community 33 - "Community 33" Cohesion: 0.0 -Nodes (3196): GenericEqualityComparer_1_Equals_mDAE0592D08D683686D58DAD0F7288E652029C2B0_gshared(), GenericEqualityComparer_1_IndexOf_mA5EEAD14F61D2B0336A9BEC9EA6B411121BB0666_gshared(), GenericEqualityComparer_1_LastIndexOf_m83B81A900BF129A62B195AA6E327BF27DB78C2F1_gshared(), Mutex__ctor_mB6957EA81D1263FD9D5601E2C15BED94B442E24C(), FileIOPermission__cctor_mC95E58D4A5951E6DB51B6F3406E491A3BFA1E11A(), Path_GetInvalidFileNameChars_m398C2B0D1FF5A9CC06287509C1CFF5D7552D08CB(), DateTime_AddMinutes_m8B24125F1100B23A1D9D9361A2745577062E0D91(), DateTime_AddMinutes_m8B24125F1100B23A1D9D9361A2745577062E0D91_AdjustorThunk() (+3188 more) +Nodes (2092): ek_bbo_m1C9A4510171D9DB1E0BF2225FA58C723C0C7032E(), hqc_kis_m796631785A0FA4DD291731F50F40D0CFEC958136(), ikv_kpp_mA130EABC080C56352C63633D8F5AE0F8E1BC0EAA(), ct_bbd_m5B14CDA1E46E0EB80E9A0FAC978175E95D3D545A(), zs_kwq_m7025AA13284F7FF8873439ED775D34E328E94954(), CallResult__ctor_m26E58342D0D5B5BC02A277BAF7B7B80B24F6942F(), AssemblyName_get_Name_m7899B9B3F289EEBAF62AEAB51D1CA91DA92C4E6A_inline(), Lazy_1_get_Value_m18AC972B52BF9A0317482A228D72A65F80ADD9E2() (+2084 more) ### Community 34 - "Community 34" Cohesion: 0.0 -Nodes (3564): FixedList_CheckResize_TisIl2CppFullySharedGenericStruct_TisIl2CppFullySharedGenericStruct_mC90171B3DF72CFE64806D57818F7F5BED5463406_gshared(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(), DynamicArray_1_get_Item_m5B1DBAB0205422DC339E985CCEBD396137011912(), DynamicArray_1_get_Item_m7109F100EE5DC9FAC5D38BEADCD4D8CB66DA3E6C(), DynamicArray_1_get_Item_m7DDF1E462D1484149A4D812CAD717F816205FD44(), DynamicArray_1_get_Item_mF3E6225CDFD0CD64C4DC1289DB12E97049574C31(), Enumerator__ctor_m01484E68645864FD93A5A123FD2F3D0D367B839B() (+3556 more) +Nodes (3075): BsonDocumentWrapper_Create_TisIl2CppFullySharedGenericAny_m9DBD701370EC3E8967700417D4056E7FA58D5575_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m52B7469ED8C326A6C2ADE2F403A2321F0E42FCD6_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m748C759F111B147DCE620BC72991590AFA2FF664_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_m83A3AB5A99BE4DFB62F54E475DC826D2592B8CF0_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_mE98FFEF3EC0E124FCE58E0D51D9315733F31B385_gshared(), BsonSerializer_Deserialize_TisIl2CppFullySharedGenericAny_mFB745D362662F504A961C69E1A0053274FEFB99D_gshared(), Avx2_EmulatedGather_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m916056C6D56ED56A8C621B65387940440621885B_gshared(), Avx2_EmulatedGather_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9A1DADAD9E0F3273D16A73D963070B45A72D049C_gshared() (+3067 more) ### Community 35 - "Community 35" Cohesion: 0.0 -Nodes (3126): Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), AnimancerLayer_get_CommandCount_m59A5957C7DB7E574CAC3EF8DEA1200585276772A_inline(), AnimancerLayer_get_CurrentState_mBE9E219D94516C430237703D8B4A5DE184116C3E_inline(), AnimancerNode_get_Index_mE0DF69950BF6E0BD21617437EADF360A30C1680C_inline(), AnimancerNode_get_Speed_mF329FD7BF54B33FE62153BA759BEDC74B8AAACF3_inline(), AnimancerNode_get_TargetWeight_mCE67B7E71E8E02FC26230BCD7A99D7679EFD62F6_inline(), AnimancerPlayable_get_Current_mCC9E0799CE34E6FE7D40744F72AB6961C0B1A024_inline(), AnimancerPlayable_get_DefaultFadeDuration_m1099E80F36FA9BC3A9E377904F6BD67505818DAA_inline() (+3118 more) +Nodes (2989): Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), ArrayHelper_Empty_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_m14EBD7FCECD3BD84BB7AB607C59AC28273298395_inline(), AsyncHelpers_ForEachItemSequentially_TisIl2CppFullySharedGenericAny_m60C317CD1F381BF298BF4203B28B647A32E8A19A_gshared(), AsyncIteratorMethodBuilder_AwaitOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m97FC0EDCCE567EA93BA65A44A7049AC22A1172A4(), AsyncIteratorMethodBuilder_AwaitOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m97FC0EDCCE567EA93BA65A44A7049AC22A1172A4_AdjustorThunk(), AsyncIteratorMethodBuilder_AwaitUnsafeOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m66ECE8870C19BFEDB416842F8521623C0C65FED9(), AsyncIteratorMethodBuilder_AwaitUnsafeOnCompleted_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m66ECE8870C19BFEDB416842F8521623C0C65FED9_AdjustorThunk(), AsyncIteratorMethodBuilder_MoveNext_TisIl2CppFullySharedGenericAny_m7931F9D0117C508EE44DB6ECF7C0C943B6863AC0_AdjustorThunk() (+2981 more) ### Community 36 - "Community 36" Cohesion: 0.0 -Nodes (842): AnimancerJob, Animancer, AnimatedProperty, ClearMenuItems(), PopSelectedItem(), PushSelectedItem(), Render(), RunFrame() (+834 more) +Nodes (3039): ViMathDefine_Log_mEBAFAF982A5880E8591D71883111765EF8DB613C(), Double_IsPositiveInfinity_m2987455D4BE481D4568F1A47120843F2A8A5FFB0_inline(), Math_Log_m5A3BBBF06AB82F25C885812E07D27B473CF43054(), Math_ModF_m0F96CE4FC43C89BECCE17B6EFB51B01D39BD0EBB(), Math_Pow_mEAE651F0858203FBE12B72B6A53951BBD0FB5265(), Math_Truncate_mE66B1AD68C17D27675DE0CB74643374F9EDB649C(), SpriteSkinUtility_GetHash_m3EB3A276AB986508F0E6876045E363B185B60A4D(), BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline() (+3031 more) ### Community 37 - "Community 37" Cohesion: 0.0 -Nodes (2691): WeakReference_1_TryGetTarget_m4982797589731AB705E9C79FA4531331F40410AB_gshared(), WeakReference_get_Target_m35F079478E87A35C388FCFA715FE26352CCE0F45(), OverlappedData_Reset_m375B562F14153784A2FF6BFDC8A710D32BF80073(), SemaphoreSlim__ctor_m4A03DD6613DDA7F8A18DC71DA2515EA45ABFBFDC(), ThreadPool_QueueUserWorkItem_m24B9C1887DBABE1F408E31475AF15B9B9A08854D(), U3CU3Ec_U3Cget_AsyncActiveSemaphoreU3Eb__54_0_mD1665EB3B608DD6FAE2D2B33C49F5030B76735F9(), SafeHandle_Dispose_m4FB5B8A7ED78B90757F1B570D4025F3BA26A39F3(), AsyncVoidMethodBuilder_Create_m13D0B23DD350C14035918384E10AF641E6B9EE67() (+2683 more) +Nodes (2366): hx_hkh_mF0121CF886172A7EA9510A47EE8605529A970CCE(), hx_lrb_m0B55C6F1A7525DBAD39CC2D2E112CFF9771561E7(), Graph_AddNode_TisRuntimeObject_m362DFED92854FBD5FDA3AB422EE44CBDFDBE02AF_gshared(), SpanHelpers_IndexOfAny_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m9D2D736D49303A286F55D3500FB84FA9AC2BCCDF_gshared(), PickListElement_1__ctor_mE52044A95556459E2F962ED3F52565402ECDD24B_gshared(), PickRandomListElement_1__ctor_m0A3710437B7B424E1179CFA7EBD8044FFAE89224_gshared(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline() (+2358 more) ### Community 38 - "Community 38" Cohesion: 0.0 -Nodes (2960): BsonClassMap_RegisterClassMap_TisIl2CppFullySharedGenericAny_mF5B62E633B4F65E6299C8DCB881EC4F03D4B9FF6_gshared(), CollectionExtensions_ToReadOnly_TisParameterExpression_tE8D3A1137422F75D256CBB200EDC82820F240110_m38BDDD59B8317C3114792AF4F226A3C978FDF901(), Expression_Lambda_TisIl2CppFullySharedGenericAny_mBE3C492CB081CEA8FAAF9F3D46AFE6D8DB05EBCA_gshared(), Expression_Lambda_TisRuntimeObject_m208FF8532548F744FDC7715D12012D92B4B9CDC5_gshared(), ExpressionStringBuilder_VisitExpressions_TisRuntimeObject_m46ECBB1D01B23CD1601D737AACE1894E12B8CE59_gshared(), ExpressionStringBuilder_VisitLambda_TisIl2CppFullySharedGenericAny_mBBDEC8F3062D6943C4A3C3118EEC54B5C6FFFDE9_gshared(), ExpressionStringBuilder_VisitLambda_TisRuntimeObject_mE6C003770CD61AD0192E3FFF6763F5974A2FB56C_gshared(), ExpressionVisitor_VisitLambda_TisIl2CppFullySharedGenericAny_m7EFD5AD6E4728F3342FE2EF867AF93590A11C4E6_gshared() (+2952 more) +Nodes (1784): ReflectionExtensions_ToTypeInfo_mC606F798E237871FB423BBB1B5BE203BE1E670B5(), Activator_CreateInstance_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m67168082B56486E52ACE1428D1D092E51E978A2B(), CommandBuffer_SetBufferData_TisIl2CppFullySharedGenericStruct_m14E6204274D0FD89CB6457CE966661D0650A8666_gshared(), CommandBuffer_SetBufferData_TisIl2CppFullySharedGenericStruct_m46409F218741C0D24E21228312B5DA8446D174A8_gshared(), CommandBuffer_SetBufferData_TisIl2CppFullySharedGenericStruct_m51DFEC65C4C610333B2B55F5FBC5441BEA86265F_gshared(), CommandBuffer_SetBufferData_TisIl2CppFullySharedGenericStruct_mBF059314517180FE72340F8EA07CC2D0C9FDE3D7_gshared(), CommonAcl_RemoveAces_TisRuntimeObject_m5E6F74275A301442C8F68C707F8117609BA48190_gshared(), Component_GetComponent_TisIl2CppFullySharedGenericAny_m47CBDD147982125387F078ABBFDAAB92D397A6C2_gshared() (+1776 more) ### Community 39 - "Community 39" Cohesion: 0.0 -Nodes (3067): ViMathDefine_Log_mEBAFAF982A5880E8591D71883111765EF8DB613C(), Double_IsPositiveInfinity_m2987455D4BE481D4568F1A47120843F2A8A5FFB0_inline(), Math_Log_m5A3BBBF06AB82F25C885812E07D27B473CF43054(), Math_ModF_m0F96CE4FC43C89BECCE17B6EFB51B01D39BD0EBB(), Math_Pow_mEAE651F0858203FBE12B72B6A53951BBD0FB5265(), Math_Truncate_mE66B1AD68C17D27675DE0CB74643374F9EDB649C(), BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline() (+3059 more) +Nodes (2445): Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_Empty_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m4C704A5BD884CD9AB780E000CBC880180508C410_inline(), Array_Empty_TisDispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_mF01AA806CE655E3ABAF52F0F9DD7CC113403C7E2_inline(), Array_Empty_TisMatchContext_t04110FFA271D89A23BC1918BE657634A7DC06253_m5BEAA64B8E1A4C758EDEA7D45C3177D7D8A6ADCF_inline(), Array_Empty_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m85A5CFE26D5D127B03744735ED2B5FC30FCB1D59_inline(), Array_Empty_TisResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_m4A75A31A8710E419A3190795539CDBDFACD442F0_inline(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_Empty_TisSequenceConstructPosContext_tDEC4FB1B8F19EFD1AC27C150D561C2D4F6090BA7_mFB24B920EE0386D78A1A170AA290320D2DB507FE_inline() (+2437 more) ### Community 40 - "Community 40" Cohesion: 0.0 -Nodes (2393): ent_esj_m5511EF800B5598003F5751582ED2E8E425F4C9C9(), ent_esk_mEDC09B379500CA113FDF2921EC6CB5D03D0EC69A(), epy_etz_m84B9B9A0B51AF3604812236C248F58E8745C2F7D(), epy_eua_mBC0512B0511A7633DF5A468D2E5B6B515BC95C64(), UIOutsideLibraryView_dlp_mA93EA68992CBFF711860FD0326257A8AD44F226D(), UIOutsideTutorView_eau_m536802AC8EF076B352B73D62745082B0632CEC3E(), UIOutsideWikiView_eax_m109AF737B5E09FEAC1412083E256CAD2AEE97075(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+2385 more) +Nodes (2548): Array_Empty_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m22E209B597C5752567BA3362E9DD1A84F595DC96_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline(), Array_Empty_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m5B415C4745E47108DD9258EBCCB422EFD6B8A0EB_inline(), Array_Empty_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m7E922E24AAEBD664256383832D53DDF17E1F3052_inline() (+2540 more) ### Community 41 - "Community 41" Cohesion: 0.0 -Nodes (2756): ValueAnimation_1_Start_mCC85B391FD32BEAF30ECD78E3C74A8D16E437212_gshared(), AnimationDataSet_2_Add_m0791FFD5600773A8FBAEDC9D71F203C2D77DDC0A(), AnimationDataSet_2_Add_m13512086BF5255CF2B7AE572383752C7A970F75F(), AnimationDataSet_2_Add_m34BC010174C74AFF4B52A0278D53F4F602CA7E7C(), AnimationDataSet_2_Add_m3B8112BC15048263B03E5DF4CB7976964D3DC74B(), AnimationDataSet_2_Add_m404ADEBFC3B0B946E06E5EEA8D5950CDCEC183B8(), AnimationDataSet_2_Add_m421046E26B54D604A9F1A9229604E7DDF6C09BD8(), AnimationDataSet_2_Add_m53C45865FC0A355359D068CFDFA61ABD622865E1() (+2748 more) +Nodes (2564): Nullable_1_GetHashCode_m2AFEAD36F48D2F5DE8ECE59A6D10D73B229DDAC7_gshared(), ObjectEqualityComparer_1_GetHashCode_m2FA84A087493C9A7FFE57B05CCBD5DF9B92CB659_gshared(), Tuple_1_System_Runtime_CompilerServices_ITuple_get_Item_mE5C32575AB304AF08045733C88B662D5E22844BC_gshared(), Tuple_2_System_Runtime_CompilerServices_ITuple_get_Item_m9AF3A9D8F7D1F183485C33CC386E69387F694589_gshared(), Tuple_3_System_Runtime_CompilerServices_ITuple_get_Item_m62BAEDD21F68734854FF640C62F5BC834E26FA7B_gshared(), Tuple_4_System_Runtime_CompilerServices_ITuple_get_Item_m69D95468313E279C2758E6243CAA0FC69E4BD321_gshared(), Tuple_5_System_Runtime_CompilerServices_ITuple_get_Item_mF9767A62C862C01F03EBD6D799922D88DCA75E50_gshared(), Tuple_6_System_Runtime_CompilerServices_ITuple_get_Item_mA345A1E1A10FD4E0559D92E052E52FEF349DB42A_gshared() (+2556 more) ### Community 42 - "Community 42" Cohesion: 0.0 -Nodes (2677): ActionConfirmMessageFormatter__ctor_m42FB3B127CB78F044A19CC2B91A58D39BAF3A26C(), ActionConfirmMessageFormatter_Deserialize_mCAB2E600BE2EFCFD72764280689C6B9345D5BC62(), ActionConfirmMessageFormatter_Serialize_m99C703EF1F09B60A353582C00FE263680DB60C36(), ActionExcuteMessageFormatter__ctor_mE89FD29A88912F13AB306E02ADC045B2FE6325BC(), ActionExcuteMessageFormatter_Deserialize_mCCAEC22AAFC74AE338FE7FFD65D7304E07A27657(), ActionExcuteMessageFormatter_Serialize_m5EA34A8A4E320B95B4AC1CA42A850270EBDA7E44(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+2669 more) +Nodes (1981): ArraySegment_1_get_Array_m0A37BDEA0523B09288F812B98E20D333AC5E8ACD_inline(), ArraySegment_1_get_Array_m12259026D885142F80E08F7D6B6A1C5E027049AD_inline(), ArraySegment_1_get_Array_m1B2E5117440374B71BEA40B0A51E356CE60CBAF0_inline(), ArraySegment_1_get_Array_m1E527B0219936D6E63F60F321794D4A41AE9FA96_inline(), ArraySegment_1_get_Array_m24475EFE270516273D5BD2ED66509B95226F44A5_inline(), ArraySegment_1_get_Array_m24FD23F83EF142F9648C83A31ACCDD6F160C766C_inline(), ArraySegment_1_get_Array_m36D0B3102AA934A99E3996B16BA3359A023ABA9D_inline(), ArraySegment_1_get_Array_m3EC30DFD5EF29FFD45B00323A707799C81586212_inline() (+1973 more) ### Community 43 - "Community 43" Cohesion: 0.0 -Nodes (2350): ix_cjo_m9F3AE0D669DBBDF2A9E0B1C6503984D10BB32362(), AddrofIntrinsics_AddrOf_TisIl2CppFullySharedGenericAny_m5BD9D07EF2F193BD1D209D91D3E6D993D40435F6_gshared(), AddrofIntrinsics_AddrOf_TisRuntimeObject_m26881CDB13AAC26B23F4C487BF5461CC7BBFB6EF_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_m43A019819F71A8FEF183CDF7F4ADB85CD94BE5AB_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t5C65DCA6782B7C9860C859C2F0C07A2C497E822D_m1C5FAEB0CF8A3E4A241317F50757E6EA6B795984_gshared(), AllocatorManager_Allocate_TisAllocatorHandle_t3CA09720B1F89F91A8DDBA95E74C28A1EC3E3148_TisUnsafeList_1_t6C5E84D303190B625F3759C244502E1735453718_mB3FA48E0C3F931F2C543835EBBAB90078A1D6911() (+2342 more) +Nodes (1946): ArraySegment_1_get_Array_m197854ECC37F17B928DF151B9E9B3849D25FD234_inline(), ArraySegment_1_get_Array_m1B023530CEE9F0816934FDDD167983DBB0922B76_inline(), ArraySegment_1_get_Array_m439E978608DF511B0CFF860A230322B2BFB93C2F_inline(), ArraySegment_1_get_Array_m45274C465C129D05C04058E42CC1885331963BC0_inline(), ArraySegment_1_get_Array_m6CF9DE0D4DE8775EFEAF60B8F5C7D983DF08A4A3_inline(), ArraySegment_1_get_Array_m6F863B79EE6D5629D4D1E781EA4E0C4F31C26F42_inline(), ArraySegment_1_get_Array_m71D9FC5B93E089750D7942591BF403D20352BC87_inline(), ArraySegment_1_get_Array_m783565E05F6EE1C494E0D9909B94B3F180AB20AE_inline() (+1938 more) ### Community 44 - "Community 44" Cohesion: 0.0 -Nodes (2214): ScriptableObject_CreateInstance_TisRuntimeObject_mC07BE383F5EF546F4191035A679930852BC19BDA_gshared(), Activator_CreateInstance_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mA5589FEB1272F05337DDA4D3300BE9B8D9700A35(), Activator_CreateInstance_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_m352B21AA96F81D3AAFEC94237A3D01038A0C61D8(), Activator_CreateInstance_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m458B1EE9503B5C407D2E43E2847F41BFAE2CAC26(), Activator_CreateInstance_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m45BD2C80229861B9960B7ADAB7E5208809EDFDBA(), Activator_CreateInstance_TisRectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_m4613E6AAAADEC23A6C5FA5E54E9779F441CE794D(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Activator_CreateInstance_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_m2BACE7A800D707FD2BBBADCAA1E55904A26C17DA() (+2206 more) +Nodes (1048): NullableSerializer_1__ctor_m64C4C49294BE546AAF55DB96EEC7B8F7146B9AC7_gshared(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), BaseField_1_get_labelElement_m18106DF604A4B8BB3BF756C55203248FE7B6825C_inline(), BaseField_1_get_showMixedValue_m1EF27AA5B2600E90F6F266A2D560B2E85C8B254C_inline(), BaseField_1_get_value_m4D3669C5B6D8FC270A658D537E588B0170E8F3C4(), BaseField_1_get_visualInput_m8EBA755E9B8AD281AE3B659323B3E79B7B5D544B(), BaseField_1_set_value_mC59AC8A46301F9E49A641AF48154BBD293B2CB2C(), BasePopupField_2__ctor_mA7D383FABD0FDD9F3997D550F116313C4354209D() (+1040 more) ### Community 45 - "Community 45" Cohesion: 0.0 -Nodes (2416): Array_InternalArray__get_Item_TisAccelerationEvent_tA2256FB99C2ACE6C0D05BDED1D3EF05DB5181E68_mEC4BAF0DFCF52221B3F6626EA60E2838CF698593(), Array_InternalArray__get_Item_TisAnimancerEvent_tFD0D7B09BB7C21DB92DB3DC5F51AEF510383A6E2_m55AE498601F1F36F1759906BDB2D650B3D3C1F52(), Array_InternalArray__get_Item_TisAnimatorClipInfo_t0C913173594C893E36282602F54ABD06AC1CFA03_m066792325C018423FC1740C37C00D551CB574A3E(), Array_InternalArray__get_Item_TisAppId_t_tEDCDD5747BB4D932D7C0D2DC9245ADB4ACBA421F_m28BABE60A294312ED061016FF527F787934A6359(), Array_InternalArray__get_Item_TisArchiveFileInfo_t051019338FB580F17B7DA49693024E09572EF9CC_mCB5C85BB13515B3586504D43A9F0801F05FE281E(), Array_InternalArray__get_Item_TisArchiveHandle_tECB0188191D0D3519C85970E537865D8F0E49CAA_mA8FD0FC76B52017A9C03F1062D0401D294DFD3A5(), Array_InternalArray__get_Item_TisAsyncGPUReadbackRequest_t6A735D3E0F1DEF8F43EBD0E6FE550FAE564519C7_mE005C1FB38B6D09B6CF04B1EE02BDF059FAC0A37(), Array_InternalArray__get_Item_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_m5803906032467756117FD3125CA4243C7B1FD4F1() (+2408 more) +Nodes (19): asfloat(), asint(), asuint(), f32tof16(), min(), select(), Unity.Burst.Intrinsics, F16C (+11 more) ### Community 46 - "Community 46" Cohesion: 0.0 -Nodes (2414): Array_InternalArray__get_Item_TisAlbedoDebugValidationPresetData_tCCFD994474750370F3F5AAEE6312FDF5F06C106B_m6CDEB384BC021E25F866FECD40E8EDEB12521B69(), Array_InternalArray__get_Item_TisAtlasNode_tE1393243E3FBC4D627662BB3BD7D37E36687987A_m6C7C5CF8F04861BD4351932DA0429BD4B989316F(), Array_InternalArray__get_Item_TisAttributeEntry_t646320DFCA1CFF9E19700C8AEBF785FE35BB2A9D_m1EF582803288BB6DF9573F491CAC619DB5838583(), Array_InternalArray__get_Item_TisBlitMaterialData_t8B4CAD38F4F25D16C156FD16BECB34FCA26E4929_mE411E9FD9702E67126454A2C7D5A755899146354(), Array_InternalArray__get_Item_TisBrick_tE6E9230DFDF650A631C116E79FB28F41618C3CE0_m374D5E25964AE1F3DAEAEED17D3FF79563CBE015(), Array_InternalArray__get_Item_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m45621A5D4264E5DBCDCF8CFB6446AD600647E8F5(), Array_InternalArray__get_Item_Tisbucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_m997801734518638ADBC3B40FC893044F80EE7EF4(), Array_InternalArray__get_Item_TisCachedCodeEntryKey_t8A54BDD6E52145D17DB1A2EB0CE0B4D4CB112F31_mC13896CD10D1A3DF212AFF36B276BA65B07BCA70() (+2406 more) +Nodes (1937): ArraySegment_1_get_Array_m1896B96738A2C6D236E8ACCDC37FA1E9FB9E8A2F_inline(), ArraySegment_1_get_Array_m2209FF2DA83FC6294670A626757B7060D2A5E4D8_inline(), ArraySegment_1_get_Array_m264A3366D24FE7843D686F6DE4C76BCE61152D12_inline(), ArraySegment_1_get_Array_m4363EBFD63680D0CC1DB7C48FF3DAC8B73968668_inline(), ArraySegment_1_get_Array_m4D719AF4B0B8518696DEBCB8AE9EB1DAE930FC3C_inline(), ArraySegment_1_get_Array_m5397A754192C48C7212136A27BB5D70F90D8C8EE_inline(), ArraySegment_1_get_Array_m5AF838FB97EA85F51EEE70E6E88E733310A46AC7_inline(), ArraySegment_1_get_Array_m684FA572C1C7BBADD02ECEADD197FF7B7214E0EF_inline() (+1929 more) ### Community 47 - "Community 47" Cohesion: 0.0 -Nodes (1928): ArraySegment_1_get_Array_m1896B96738A2C6D236E8ACCDC37FA1E9FB9E8A2F_inline(), ArraySegment_1_get_Array_m2209FF2DA83FC6294670A626757B7060D2A5E4D8_inline(), ArraySegment_1_get_Array_m264A3366D24FE7843D686F6DE4C76BCE61152D12_inline(), ArraySegment_1_get_Array_m4363EBFD63680D0CC1DB7C48FF3DAC8B73968668_inline(), ArraySegment_1_get_Array_m4D719AF4B0B8518696DEBCB8AE9EB1DAE930FC3C_inline(), ArraySegment_1_get_Array_m5397A754192C48C7212136A27BB5D70F90D8C8EE_inline(), ArraySegment_1_get_Array_m5AF838FB97EA85F51EEE70E6E88E733310A46AC7_inline(), ArraySegment_1_get_Array_m684FA572C1C7BBADD02ECEADD197FF7B7214E0EF_inline() (+1920 more) +Nodes (1881): ArraySegment_1_get_Array_m07FFAA6A1DB7B89225FF621A9D1DE23E4AE9F875_inline(), ArraySegment_1_get_Array_m0AA90934516E40213DD80FA26310ECFA91EFAE4E_inline(), ArraySegment_1_get_Array_m1631D7FA218D88E42A56E375C99EE91AE91C7112_inline(), ArraySegment_1_get_Array_m19F626A6A809CF41373C9DD3B785F2DC8F58E1EB_inline(), ArraySegment_1_get_Array_m2AB994CBEEB979F3D2648B0FCB02A1D8088C3A73_inline(), ArraySegment_1_get_Array_m2E2799862A5EB0D3E20C00C23A7DA4E2A63AAA82_inline(), ArraySegment_1_get_Array_m3692ADC547A67A5D57EF16DBCB101442C9A42C39_inline(), ArraySegment_1_get_Array_m44919767C029CEAB12889D5FFA5E700F5B3C77F8_inline() (+1873 more) ### Community 48 - "Community 48" Cohesion: 0.0 -Nodes (16): asfloat(), asint(), asuint(), f32tof16(), min(), select(), Unity.Burst.Intrinsics, Arm (+8 more) +Nodes (2282): Dictionary_2_Add_mDE4097FB0966AA44FE7FC75CB14C6477E1357358(), Dictionary_2__ctor_m41416548770E408030D2C8C36D80942308EDA36B(), fl_ead_mE94C1BE02DB29BF1C09E9D081B6035149D682432(), hh__cctor_mFBC56256199BF12B58F0D3EBD76E5B3DD0105C33(), ArrayFormatter_1__ctor_m0528101537BC08976DEA8BCD8703BB387022FE55(), ArrayFormatter_1__ctor_m09501C8D979125A3605F4958329660B65BA91749(), ArrayFormatter_1__ctor_m09A1245216793A096404B83DDC47A1C636007366(), ArrayFormatter_1__ctor_m121402522DA7BC4CE99A0C725478A6EDF54F88CA() (+2274 more) ### Community 49 - "Community 49" Cohesion: 0.0 -Nodes (924): MouseEventBase_1_get_currentTarget_mACAF21506F714D1BBFC086B0F7EA5579DCC72714_gshared(), NullableSerializer_1__ctor_m64C4C49294BE546AAF55DB96EEC7B8F7146B9AC7_gshared(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), BaseField_1_get_labelElement_m18106DF604A4B8BB3BF756C55203248FE7B6825C_inline(), BaseField_1_get_showMixedValue_m1EF27AA5B2600E90F6F266A2D560B2E85C8B254C_inline(), BaseField_1_get_value_m4D3669C5B6D8FC270A658D537E588B0170E8F3C4(), BaseField_1_get_visualInput_m8EBA755E9B8AD281AE3B659323B3E79B7B5D544B(), BaseField_1_set_value_mC59AC8A46301F9E49A641AF48154BBD293B2CB2C() (+916 more) +Nodes (2002): UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539(), UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539_AdjustorThunk(), Vector2_op_Addition_m08FDB48B512979D8747CB6AA3EF13F9260DE9D09_inline(), Vector2_op_Multiply_mEB4763B43B68361EF14946C452C0F93105DADD68_inline(), Vector2_op_Multiply_mF7200D562F0063D259C608EA0CB66E244E9811CE_inline(), CSteamID_Equals_m89E4C9BC7F08814FA47BB73FABFCF5F6102021CD(), CSteamID_Equals_m89E4C9BC7F08814FA47BB73FABFCF5F6102021CD_AdjustorThunk(), HSteamNetConnection_Equals_m38B50988A48FFA0F7A05026E62AD8AD4EE85D4A3() (+1994 more) ### Community 50 - "Community 50" Cohesion: 0.0 -Nodes (1279): ControllerState_GetParameterHash_m78B2BB5405D6B1CC86D4A539CC5F0AB3B17977FB(), ek_bbo_m1C9A4510171D9DB1E0BF2225FA58C723C0C7032E(), hqc_kis_m796631785A0FA4DD291731F50F40D0CFEC958136(), zs_kwq_m7025AA13284F7FF8873439ED775D34E328E94954(), CallbackDispatcher_Register_mBFB06FA332CA59D0925760F2C6FD2A29D4D1793F(), CallbackDispatcher_Unregister_m6F046DF4DE963DC8B05F13237AA0339A3F9AD4C7(), CallResult__ctor_m26E58342D0D5B5BC02A277BAF7B7B80B24F6942F(), Dictionary_2_Add_m9E6F5D1C9D4DD76E4A8F7090ACEFAC73FCB8A089() (+1271 more) +Nodes (1780): PolymorphicAttribute__ctor_m0BB581101F89070100B28A601AB7199519ABBCC5(), bcx_MoveNext_mCD25BC1C5053733CC02299EDB800E2707037866F(), MultilingualFieldAttribute__ctor_m6798E1E78CCA80AFD13606E0734F99501F5E4AF5(), UnityAssisstant_GetDeviceId_m9B17FAD67EEB2B6BA63AA493B0D690D1C9090628(), ComputeBuffer_BeginWrite_TisIl2CppFullySharedGenericStruct_m64E369E270A3B785F518547B718040DD556A73AD_gshared(), GameObject_GetComponentAtIndex_TisRuntimeObject_m9A438D0241C3503B2646841F350E8AED74075A9F_gshared(), GameObject_GetComponentInParent_TisIl2CppFullySharedGenericAny_m344119E56640668CC72CE6788872E2E1F6A9848F_gshared(), GameObject_GetComponentInParent_TisRuntimeObject_m940CCA4411B863505A42B98CE5A6CA4DF3AFD867_gshared() (+1772 more) ### Community 51 - "Community 51" Cohesion: 0.0 -Nodes (1974): Array_InternalArray__get_Item_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_mF01CACE82616CAD4135BE2FAC266A923369F3A61(), Array_InternalArray__get_Item_TisContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC_mBB17D60F1712E426F2F0B07792407B20EA2EB501(), Array_InternalArray__get_Item_TisEmptyData_t00356C2BB80236243B9C3C1D0EFBF8837803D27D_m5CB79741155DE9B13ECF8E7DD602CF4145771D33(), Array_InternalArray__get_Item_TisEmptyData_t02ECBE01728C0979248845C107F3FCE871DDC9E3_m7E9E40089766BF5FF69964E44CA568E3006DE68F(), Array_InternalArray__get_Item_TisEmptyData_t1C3D3C071EBD9CF479FFE737CB6E0618C82FE95E_mABD86630C97B4D012AA0CDE2F95C06A6486D45BE(), Array_InternalArray__get_Item_TisEmptyData_t2CB75995D335E22F6BF31D1CB979DB1067C5025E_mDC22F7CC0C93AFADE6C3F59F37F558FFFFFB6A56(), Array_InternalArray__get_Item_TisEmptyData_t3ADF94D95DAB6657C31C89FBD83359BCC8B247EC_mCD14ECE62AA234121B72E8BDF58B1037042B37F4(), Array_InternalArray__get_Item_TisEmptyData_t43DE49ADBBE9CFA603DCA7C5CDC998DE6DC976A1_m16960B324D10C1FFBBA83B79B5D8223F1D54ABC4() (+1966 more) +Nodes (2013): Array_InternalArray__get_Item_TisArraySegment_1_t3DC888623B720A071D69279F1FCB95A109195093_mF01CACE82616CAD4135BE2FAC266A923369F3A61(), Array_InternalArray__get_Item_TisContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC_mBB17D60F1712E426F2F0B07792407B20EA2EB501(), Array_InternalArray__get_Item_TisEmptyData_t00356C2BB80236243B9C3C1D0EFBF8837803D27D_m5CB79741155DE9B13ECF8E7DD602CF4145771D33(), Array_InternalArray__get_Item_TisEmptyData_t02ECBE01728C0979248845C107F3FCE871DDC9E3_m7E9E40089766BF5FF69964E44CA568E3006DE68F(), Array_InternalArray__get_Item_TisEmptyData_t1C3D3C071EBD9CF479FFE737CB6E0618C82FE95E_mABD86630C97B4D012AA0CDE2F95C06A6486D45BE(), Array_InternalArray__get_Item_TisEmptyData_t2CB75995D335E22F6BF31D1CB979DB1067C5025E_mDC22F7CC0C93AFADE6C3F59F37F558FFFFFB6A56(), Array_InternalArray__get_Item_TisEmptyData_t3ADF94D95DAB6657C31C89FBD83359BCC8B247EC_mCD14ECE62AA234121B72E8BDF58B1037042B37F4(), Array_InternalArray__get_Item_TisEmptyData_t43DE49ADBBE9CFA603DCA7C5CDC998DE6DC976A1_m16960B324D10C1FFBBA83B79B5D8223F1D54ABC4() (+2005 more) ### Community 52 - "Community 52" Cohesion: 0.0 -Nodes (2274): bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_mB4B5D68D56D55562A9FD58AC5BEAA147964BDB24() (+2266 more) +Nodes (2275): bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_mB4B5D68D56D55562A9FD58AC5BEAA147964BDB24() (+2267 more) ### Community 53 - "Community 53" Cohesion: 0.0 -Nodes (2266): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_m50A0342BC8634A3558D5B9C1EA2540BD0D283063(), DebuggerProxy__ctor_mA67D2CC3100CC593D967E6BDD5F356113DE48489() (+2258 more) +Nodes (2267): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), DebuggerProxy__ctor_m50A0342BC8634A3558D5B9C1EA2540BD0D283063(), DebuggerProxy__ctor_mA67D2CC3100CC593D967E6BDD5F356113DE48489() (+2259 more) ### Community 54 - "Community 54" Cohesion: 0.0 -Nodes (1869): ArraySegment_1_Equals_m25C8296020D7E6E0B7EF6914CB07629EF0B4727D(), ArraySegment_1_GetHashCode_m2EC1FDAB80FBC952462F357BADDB69CC38AB9AA3(), BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), Bounds_Equals_m615135524315743D29633C33B6C8B16B754266DB_inline(), Bounds_Equals_m93E0B9D24C73E57A6FABB9D312101D48183C88CC_inline(), Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_inline(), Bounds_get_extents_mFE6DC407FCE2341BE2C750CB554055D211281D25_inline(), Bounds_GetHashCode_m59C79B529D33866FE45FEFC0C69FBD3B4AC7E172_inline() (+1861 more) +Nodes (1874): ArraySegment_1_Equals_m25C8296020D7E6E0B7EF6914CB07629EF0B4727D(), ArraySegment_1_GetHashCode_m2EC1FDAB80FBC952462F357BADDB69CC38AB9AA3(), BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), Bounds_Equals_m615135524315743D29633C33B6C8B16B754266DB_inline(), Bounds_Equals_m93E0B9D24C73E57A6FABB9D312101D48183C88CC_inline(), Bounds_get_center_m5B05F81CB835EB6DD8628FDA24B638F477984DC3_inline(), Bounds_get_extents_mFE6DC407FCE2341BE2C750CB554055D211281D25_inline(), Bounds_GetHashCode_m59C79B529D33866FE45FEFC0C69FBD3B4AC7E172_inline() (+1866 more) ### Community 55 - "Community 55" Cohesion: 0.0 -Nodes (1119): Enumerable_Select_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisValueTuple_2_tD9B2DFA658DCD9F80643E0A14F0A6116844CE4A4_m7F7021276F4309AB90077D08A5985F82622BB5BC(), Func_2__ctor_m0EBB3755058A70293727FB0E06A7992D0341A30C(), zw_czk_m16E15EA48A6A429ECCB85ECD660EBBCD6B23E97C(), zw_dbt_mE37D373874F02D6F05CED3FFC8268EEBFE08269C(), zw_nwx_m84657AB37955BD5E1050C2200C7BBBFA075D9C8E(), zw_oew_mFDF30EFD58B355C24DB59A9F247A9182AA5CB02A(), zx__ctor_mF9834087BBBD391E2FB95EB241AE580800BE84F9(), Activator_CreateInstance_TisDefaultKeyGetter_1_tBFAC52555BBFEA1112D9C2E76596CD28686FAD3A_m67168082B56486E52ACE1428D1D092E51E978A2B() (+1111 more) +Nodes (1746): SpanHelpers_CopyTo_TisIl2CppFullySharedGenericAny_mD0A8926B03486D3EDEA2654070EB4791ADA8EDF7_gshared(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4(), Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(), Comparer_1_get_Default_m7B0C8B1667D39869F64400148505FB7B1DF05100(), Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F(), Comparer_1_get_Default_mF0432C77CCC727F33EF733138201216D0B06038D() (+1738 more) ### Community 56 - "Community 56" Cohesion: 0.0 -Nodes (1954): Action_1__ctor_m85C15848977E87A976978E191FF23BE7775A4118(), Action_1__ctor_m86D48E56A74C816F2F8A131EB27B279C757C27FE(), Action_1_Invoke_m5697C0ED1CE04C4561DFFA07BEBB152DFE7DB3E1_inline(), Action_2__ctor_m4EF2E22B17BBCFD4D70776918EF7C9CB1BE41996(), BaseAttribute_get_Default_m94D0085FF0599F4C0E8A99AECA09BA94EF60C2E2_inline(), BaseAttribute_get_Hidden_mCC368F2255941BA1715CA0BED558F82E6F3725C0_inline(), BaseAttribute_get_Max_m0D184E9D2747223B993BFD0B9301852C5DB52919_inline(), BaseAttribute_get_MetaValue_m28E3B7B0E528D9D2DFFC368192A9540CC22F4994_inline() (+1946 more) +Nodes (2018): Action_1__ctor_m85C15848977E87A976978E191FF23BE7775A4118(), Action_1__ctor_m86D48E56A74C816F2F8A131EB27B279C757C27FE(), Action_1_Invoke_m5697C0ED1CE04C4561DFFA07BEBB152DFE7DB3E1_inline(), Action_2__ctor_m4EF2E22B17BBCFD4D70776918EF7C9CB1BE41996(), BaseAttribute_get_Default_m94D0085FF0599F4C0E8A99AECA09BA94EF60C2E2_inline(), BaseAttribute_get_Hidden_mCC368F2255941BA1715CA0BED558F82E6F3725C0_inline(), BaseAttribute_get_Max_m0D184E9D2747223B993BFD0B9301852C5DB52919_inline(), BaseAttribute_get_MetaValue_m28E3B7B0E528D9D2DFFC368192A9540CC22F4994_inline() (+2010 more) ### Community 57 - "Community 57" Cohesion: 0.0 -Nodes (1630): Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), ArrayBuilder_1_Add_mDD45C48FAB10C7E71DCA9471405200E47934BA17(), ArrayBuilder_1_get_Count_mCA377EA906AE8833A2DE64E4FE36A8357857059B_inline(), ArrayBuilder_1_get_Item_mD96AA83499A6A14962A12723E14162A1F175852E(), Enumerator__ctor_m01EBD00AA2094A26D7A06612EBCFDAEB7BDF4F09(), Enumerator__ctor_m0F98614729A5017594BCB5D1D847C1D319913311(), Enumerator__ctor_m4D02C32B485C6B5756A14F13D055DD8301B439EF(), Enumerator__ctor_m9DA60FCFA9D63876BD09F2400D98CF3133BB3128() (+1622 more) +Nodes (1709): Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), ArrayBuilder_1_Add_mDD45C48FAB10C7E71DCA9471405200E47934BA17(), ArrayBuilder_1_get_Count_mCA377EA906AE8833A2DE64E4FE36A8357857059B_inline(), ArrayBuilder_1_get_Item_mD96AA83499A6A14962A12723E14162A1F175852E(), Enumerator__ctor_m01EBD00AA2094A26D7A06612EBCFDAEB7BDF4F09(), Enumerator__ctor_m0F98614729A5017594BCB5D1D847C1D319913311(), Enumerator__ctor_m4D02C32B485C6B5756A14F13D055DD8301B439EF(), Enumerator__ctor_m9DA60FCFA9D63876BD09F2400D98CF3133BB3128() (+1701 more) ### Community 58 - "Community 58" Cohesion: 0.0 -Nodes (1894): Nullable_1_Equals_mC16F757827EDDF94224EBF7D532177F329D60C0E_gshared(), Nullable_1_GetHashCode_m2D0DFE795827DD0BDA5575556169B553AD82E00B_gshared(), Nullable_1_GetHashCode_m981382AEF588E8BF9CFFCEED2F2EDF7700C910FB_gshared(), Nullable_1_ToString_mB002C1CA9B69551459747E7D711C8D130A29ECE0_gshared(), EnumSerializer_1_ConvertDoubleToEnum_m9459FD380ED1C25633247DC260EA1B911EAC55D7_gshared(), GenericComparer_1_Compare_mD9433D9B7DC4703FDD35F310E0DF7089A8F9ED0C_gshared(), AbstractClassSerializer_1__ctor_m64763569A4286907D4A8DC7631E90F55643550F2(), AbstractClassSerializer_1__ctor_m8ED070CF8E187AAAEF691AA192EA3C0FD699FABA() (+1886 more) +Nodes (1726): ViAssisstant_MD5Value_m222097A222F5C92B82A103D740498D6900C2076C(), DeferredDisposableLifetime_1__cctor_m90B2B8374560F9E6622D41DE5FD4D4F696B7D45C_gshared(), ZipConstants__cctor_mB2DC85C348463EA2368C099E27D63CAB516BA21A(), ActivationContext_CreatePartialActivationContext_m7F3168378CFB8913C47FEAB213C0E3D22D838DB5(), ActivationContext_CreatePartialActivationContext_mB642FA603E70C8973D330BF50F0A1CFAE4D3C1E9(), ActivationContext__ctor_m403E3FF1C127B6E71CDEEC56EE701E82A98E0A46(), ActivationContext_Dispose_m02AEE401A5659E0044E82229D7D39B0D332D3B10(), ActivationContext_Dispose_m74C6AA30B91DC94D661A84D64D422DF2535181B9() (+1718 more) ### Community 59 - "Community 59" Cohesion: 0.0 @@ -2266,1839 +2303,1839 @@ Nodes (1999): bool2__ctor_m0585398EF8D5E494781D495CA088BC652BC03061_AdjustorThun ### Community 60 - "Community 60" Cohesion: 0.0 -Nodes (550): AddressablesAsyncExtensions, AsyncOperationHandleConfiguredSource, Cysharp.Threading.Tasks, GetResult(), OnCompleted(), UnsafeOnCompleted(), Cysharp.Threading.Tasks.Linq, UniTaskAsyncEnumerable (+542 more) +Nodes (1675): ArraySegment_1_get_Array_m1747D6AEF82ECC2FC8BF82E0085F87625B873290_inline(), ArraySegment_1_get_Array_m2DBA02EABF9E0C3B44C58659B338872ACD6D73E1_inline(), ArraySegment_1_get_Array_m5B8145321CE390962D9E060CB1D71B5D8864F1D1_inline(), ArraySegment_1_get_Array_m66D80077530F32FBCF09E33171A7CB1F6D1EAF7D_inline(), ArraySegment_1_get_Array_m6FE5C7903751CF31CCA0FE65705B037B8B2E2C7C_inline(), ArraySegment_1_get_Array_m81A40345E7A687B5042C27645F5D56FD579429ED_inline(), ArraySegment_1_get_Array_m85F374406C1E34FDEFA7F160336A247891AF8105_inline(), ArraySegment_1_get_Array_m9AB4BA95DD23AB6FD46CC0AF95E4A0B1E8A6A071_inline() (+1667 more) ### Community 61 - "Community 61" Cohesion: 0.0 -Nodes (1789): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m1F653087085C8A6C95D4284E9C55C18A67B0F532(), math_csum_m6A99E69A84442A729781A97F78B260223DD01D8F_inline() (+1781 more) +Nodes (585): AddressablesAsyncExtensions, AsyncOperationHandleConfiguredSource, Cysharp.Threading.Tasks, GetResult(), OnCompleted(), UnsafeOnCompleted(), Aggregate, Cysharp.Threading.Tasks.Linq (+577 more) ### Community 62 - "Community 62" Cohesion: 0.0 -Nodes (1729): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m028901EE8061A92AB26992ABB3AC361969CE5968(), double2__ctor_m4026FE95F69FAEBD29D7092ADAA1CB845A8E859B_inline() (+1721 more) +Nodes (1459): ConversionHelpers_TryParseEnum_TisIl2CppFullySharedGenericStruct_m390C4040071ADA6A66A161E10FC7B9083380C684_gshared(), Target_Register_TisRuntimeObject_m8D649213D44843C8E54BE9E7295828D511FCCEFE_gshared(), U3CU3Ec__DisplayClass3_0_1_U3CForEachItemSequentiallyU3Eg__InvokeNextU7C0_m37A75EACAFCDBF5C38E1F3C0602963F821540E6E_gshared(), Console_set_OutputEncoding_mA2EA432EE36E80522020FA96AE7E1EF329532A0C(), Interlocked_Decrement_m8C328C0E6824A523B00D2649B55ECB882F105000(), Interlocked_Increment_m12CD643CCD5FCDE95DBC0AB07D09AF696E26F9C0(), FileInfo_get_DirectoryName_mB5EEA9943438C6C0F92767B0B12287A1E75FF1A1(), TimeSpan_FromMilliseconds_mFDCBE9EDA3F6743302C3DD81259AF5D2F00EF775() (+1451 more) ### Community 63 - "Community 63" Cohesion: 0.0 -Nodes (1280): Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_2_Invoke_m5387D08742D6C89CAB31D981C0F63C08D70AB3AD_inline(), Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_inline(), Action_3_Invoke_m399A0EB5E51EFD9B7D25DFE0EB7BF5EC0BE98346_inline(), CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66(), CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mB50EABDE414D7C266411468DE2497738C902B820(), CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mA3E722BB63A92FD6550289D5155483E408E4795B() (+1272 more) +Nodes (1499): ent_esj_m5511EF800B5598003F5751582ED2E8E425F4C9C9(), ent_esk_mEDC09B379500CA113FDF2921EC6CB5D03D0EC69A(), epy_etz_m84B9B9A0B51AF3604812236C248F58E8745C2F7D(), epy_eua_mBC0512B0511A7633DF5A468D2E5B6B515BC95C64(), UIOutsideLibraryView_dlp_mA93EA68992CBFF711860FD0326257A8AD44F226D(), UIOutsideTutorView_eau_m536802AC8EF076B352B73D62745082B0632CEC3E(), UIOutsideWikiView_eax_m109AF737B5E09FEAC1412083E256CAD2AEE97075(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+1491 more) ### Community 64 - "Community 64" Cohesion: 0.0 -Nodes (382): AnimancerTransitionAssetBase__ctor_m8B042983702448B0C59777089D5D8F37DFA54E13(), AnimancerPlayable_get_Disposables_m4ECF320723FEE796F592ECAEC218835814CA1372(), List_1__ctor_mB4C51AD04BB1308274A370FED1FA4A1651C5766F(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_ClosedInstInvoker(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_ClosedStaticInvoker(), Action_10_Invoke_m552DA37591E24B7580B364AA16F58BF24735668A_OpenStaticInvoker(), Action_11_Invoke_mA7CAABDF9FE358CDE4519D366FE8655BB60B3EA8_ClosedInstInvoker(), Action_11_Invoke_mA7CAABDF9FE358CDE4519D366FE8655BB60B3EA8_ClosedStaticInvoker() (+374 more) +Nodes (1370): Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Action_2_Invoke_m5387D08742D6C89CAB31D981C0F63C08D70AB3AD_inline(), Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_inline(), Action_3_Invoke_m399A0EB5E51EFD9B7D25DFE0EB7BF5EC0BE98346_inline(), CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66(), CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mB50EABDE414D7C266411468DE2497738C902B820(), CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mA3E722BB63A92FD6550289D5155483E408E4795B() (+1362 more) ### Community 65 - "Community 65" Cohesion: 0.0 -Nodes (1648): bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m5868EDDBC438498A6A62CD1062B0CE7D8B58509F(), float2__ctor_m3D598E2C2D173DE852F3AB157502968261383C97_inline(), float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline(), float3_get_yzx_mDF6DE39B69C5DE384F74C0D1EC91AA0388E23535_inline() (+1640 more) +Nodes (1789): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m1F653087085C8A6C95D4284E9C55C18A67B0F532(), math_csum_m6A99E69A84442A729781A97F78B260223DD01D8F_inline() (+1781 more) ### Community 66 - "Community 66" Cohesion: 0.0 -Nodes (1681): BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline() (+1673 more) +Nodes (1729): bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x4__ctor_mFF80BAFEBCC3782125A4E5FF26935462C03FFDA8_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m028901EE8061A92AB26992ABB3AC361969CE5968(), double2__ctor_m4026FE95F69FAEBD29D7092ADAA1CB845A8E859B_inline() (+1721 more) ### Community 67 - "Community 67" Cohesion: 0.0 -Nodes (1155): AssetBundle_LoadAllAssetsAsync_TisIl2CppFullySharedGenericAny_mA6A81E1F200BA2CE3BB6815BFF4A464127AA9EBB_gshared(), List_1_Add_m2B5312E60384311F3BD53C9BF13C5E45D1FAB04C_inline(), ProviderBase_CreateHandle_TisRuntimeObject_mDE6391D37AF086187F659628E6CCDA229B7E9C81_gshared(), ProviderBase_get_RefCount_m5081C763FA2C514C06B02B72726AAF0D5E13BF8C_inline(), ProviderBase_set_RefCount_m5AB0D77FFE3D13AF7C0887E34A53384A4F9D18BD_inline(), AsyncInstantiateOperation_1_get_progress_m876C14A179119EC89D15392442D1CB3933A88BBA_gshared(), AssetBundle_AllAssetNames_mA9C87CD2928E1E1F98B4BED8270CD97DC81811E8(), AssetBundle_get_mainAsset_mBB663F2D2D3593437EF1A90F464CBEBF9F3D1F5C() (+1147 more) +Nodes (1651): bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m5868EDDBC438498A6A62CD1062B0CE7D8B58509F(), float2__ctor_m3D598E2C2D173DE852F3AB157502968261383C97_inline(), float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline(), float3_get_yzx_mDF6DE39B69C5DE384F74C0D1EC91AA0388E23535_inline() (+1643 more) ### Community 68 - "Community 68" Cohesion: 0.0 -Nodes (1512): Tuple_1_System_Runtime_CompilerServices_ITuple_get_Item_mE5C32575AB304AF08045733C88B662D5E22844BC_gshared(), Tuple_2_System_Runtime_CompilerServices_ITuple_get_Item_m9AF3A9D8F7D1F183485C33CC386E69387F694589_gshared(), Tuple_3_System_Runtime_CompilerServices_ITuple_get_Item_m62BAEDD21F68734854FF640C62F5BC834E26FA7B_gshared(), Tuple_4_System_Runtime_CompilerServices_ITuple_get_Item_m69D95468313E279C2758E6243CAA0FC69E4BD321_gshared(), Tuple_5_System_Runtime_CompilerServices_ITuple_get_Item_mF9767A62C862C01F03EBD6D799922D88DCA75E50_gshared(), Tuple_6_System_Runtime_CompilerServices_ITuple_get_Item_mA345A1E1A10FD4E0559D92E052E52FEF349DB42A_gshared(), Tuple_7_System_Runtime_CompilerServices_ITuple_get_Item_m9DA587CC2FF0493422306CCA5558A09EF8E4D6B8_gshared(), Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4() (+1504 more) +Nodes (1684): BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline() (+1676 more) ### Community 69 - "Community 69" Cohesion: 0.0 -Nodes (1380): UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539(), UnitFullType_Equals_mA712CFC0E04D488CB61165175E1F1126EF34D539_AdjustorThunk(), jje_dtn_m001D9BC3C1D0CA3865C5C35A4BA22C23F000684B(), jje_gfn_m520CC66CF2B649C2DF0E5719F6122A0BF1DCB1BB(), jje_jmi_mF03039D649E66E0E2F1508491849C6D3BAF31474(), jje_liy_mBB99B36A832BFBE7CED65AC5249BBFC5854BA982(), jje_yi_m84316F2C04E3FA8EFCEC3002238686FB57FD88B2(), Vector2_op_Addition_m08FDB48B512979D8747CB6AA3EF13F9260DE9D09_inline() (+1372 more) +Nodes (193): Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_inline(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenGenericInterface(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenGenericVirtual(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenInst(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenInterface(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenVirtual(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_ClosedInstInvoker(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_ClosedStaticInvoker() (+185 more) ### Community 70 - "Community 70" Cohesion: 0.0 -Nodes (1292): Comparer_1_Create_m00EE8078D32DD1027615F8BA945877AD1BD17FDA_gshared(), Comparer_1_Create_m0673CFD2AA627CD039C944CB44EA26CA60CFBEA7_gshared(), Comparer_1_Create_m07D478E1484B6C858AE9983C6E2A9C4CB579D472_gshared(), Comparer_1_Create_m0B85A595A5363B0F5D36DD8204EA2B6A6CC49A3D_gshared(), Comparer_1_Create_m14D2B25D093529B38AA1AC9C4D28E536CE497B6A_gshared(), Comparer_1_Create_m251F3F161BD124CFCAA5ED681CE92F4AB790ADF0_gshared(), Comparer_1_Create_m25B924092D3FA7A537661F850EE26159C65E60BD_gshared(), Comparer_1_Create_m296F3C32BD52AC0C18304B427D2141C6C10D5EEC_gshared() (+1284 more) +Nodes (1266): Action_1_Invoke_m0E4885731BC5FB5682B2F9AAFE2051895D1E43DE_inline(), Action_1_Invoke_m6BADC1E75837D17C7C206C74AB63B78F8BFCD450_inline(), Action_1_Invoke_m91C72AB142C1ED1618F5B3D9DADCB3CEF510CF54_inline(), Action_1_Invoke_mC3BC9535865C67F9284E97F12F6F49056EDCCAFD_inline(), Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), AnimancerTransition_1_Apply_m81B651D4AAAE7201A0D0930ABD5B06417AB5491E(), AnimancerTransition_1__ctor_m22D29EC4A72525AB18299ACBAF1C5D80FEB643D4(), AnimancerTransition_1_get_State_m42696D0E54362EDA39E8C2FC0BC55A03918AFB14() (+1258 more) ### Community 71 - "Community 71" Cohesion: 0.0 -Nodes (153): Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_inline(), Comparison_1_Invoke_mAB0FCC52E66B67EA06921024538EC6980B73A4B3_OpenInst(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_ClosedInstInvoker(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_ClosedStaticInvoker(), Comparison_1_Invoke_mB760859B20CBCFA0435D3F65B103D432CCAC07F9_OpenStaticInvoker(), ConcurrentBag_1_Clear_m3BD0744A7FD76D4FC4D2FEC6E25716FBFA1AD58B_gshared(), ConcurrentBag_1_CopyFromEachQueueToArray_mABE4A980B0F225F9D7F1673C0E10F64275D0C58E_gshared(), ConcurrentBag_1__ctor_mB6DBC1BBCC2EA6BB05974D235044798AE1297A01_gshared() (+145 more) +Nodes (1232): epv_ett_m912117BDB448D4DF5164E69E7138D329C4FDCEDC(), epw_etv_m12D39ED35E1B3C0C3D1D93B4F81EA259C2A8C586(), epw_Invoke_m1593957ED398150F380E813850C8D5E839C4DE72(), eqq_exv_mBE31A97BE0DF6E4F18CDC84472AEA0DF34F61BCA(), eqq_exy_m03C80D9524ABFDD0345C7125F599BD85C6626D33(), eqq_exz_mE62B2F8069A4D2B5F0E5D45A9C87D438C6BE9712(), eqq_eya_m38D0D4027C70E92CC79C787D20F23A94D9A45643(), eqq_eyb_m78393D1DBC79164AF3A48BC0E010DD0DA943435C() (+1224 more) ### Community 72 - "Community 72" Cohesion: 0.0 -Nodes (1400): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline() (+1392 more) +Nodes (1319): MultilingualItem_irv_mCEB3965F1F95C8A4D286C03C1B8CD60CABE1A8E0(), ViAssisstant_EqualsIgnoreCase_m790C8F6A22EB47C860C70E78786BBF5C15A9F613(), Nullable_1_ToString_mF43168D6369F27A1CF24B882855397CAD50452EA_gshared(), Delegate_Clone_m8B21D18E314730820FF59DF786DD02BFF1D750C6(), Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3(), CancellationTokenSource_CancelAfter_mC81CF6E81C5205DF6C2528B3AC624EF48D3B2B43(), TaskCanceledException__ctor_mFBB9383EBC8A44183E702C0ECBE28E8463E22CD5(), Encoding_Clone_m8100F9273EDC81B327F922B763A8833B44D830ED() (+1311 more) ### Community 73 - "Community 73" Cohesion: 0.0 -Nodes (1375): bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline(), bool4__ctor_m2A59D4A3453F6D4B684BABDF76792A2F28112307_inline() (+1367 more) +Nodes (1407): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline() (+1399 more) ### Community 74 - "Community 74" Cohesion: 0.0 -Nodes (1163): Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_Empty_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m4C704A5BD884CD9AB780E000CBC880180508C410_inline(), Array_Empty_TisDispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_mF01AA806CE655E3ABAF52F0F9DD7CC113403C7E2_inline(), Array_Empty_TisMatchContext_t04110FFA271D89A23BC1918BE657634A7DC06253_m5BEAA64B8E1A4C758EDEA7D45C3177D7D8A6ADCF_inline(), Array_Empty_TisRect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_m85A5CFE26D5D127B03744735ED2B5FC30FCB1D59_inline(), Array_Empty_TisResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_m4A75A31A8710E419A3190795539CDBDFACD442F0_inline(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_Empty_TisSequenceConstructPosContext_tDEC4FB1B8F19EFD1AC27C150D561C2D4F6090BA7_mFB24B920EE0386D78A1A170AA290320D2DB507FE_inline() (+1155 more) +Nodes (1086): MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_m69E5B5290F982D6CDF9FA99A428804D6A999886B_gshared(), MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_mA1682B4144801F8C6F415BECEAEDEE352FD1748C_gshared(), Array_Empty_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m22E209B597C5752567BA3362E9DD1A84F595DC96_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline() (+1078 more) ### Community 75 - "Community 75" Cohesion: 0.0 -Nodes (1075): ArraySegment_1_Equals_m25C8296020D7E6E0B7EF6914CB07629EF0B4727D(), ArraySegment_1_GetHashCode_m2EC1FDAB80FBC952462F357BADDB69CC38AB9AA3(), Comparer_1__ctor_m00E81172381E7AE678362A259D215A7F8436E4FB(), Comparer_1__ctor_m01305909F1440FCE019A10B1883D89CAB12C1BAA(), Comparer_1__ctor_m082E30FD0AC1C4CAFABB346D41B21EAD474D09F3(), Comparer_1__ctor_m08D3B681DFE4B6840AB998E593695A66B8145D57(), Comparer_1__ctor_m0DBDE525377654E019F071A483F84409F74567CB(), Comparer_1__ctor_m0E2B6B77420566D1FD163C4919F363EF011A3C2C() (+1067 more) +Nodes (1371): bool2__ctor_m097D0D586C955D0F4E04DD5D308F0DD17297203D_inline(), bool2x2__ctor_mBF61A98A72F3F78E336CE51465C3F1B7E3D608C0_inline(), bool2x3__ctor_m764CBD692770F80BA4750AB59DD8DCABE125CFC8_inline(), bool2x4__ctor_mB4B21FDC89A7431D0D861A8E489776416B15BD39_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3x2__ctor_mF19AB454C3786E7DEE2F08B8DB3FFCAC0F856C7E_inline(), bool3x3__ctor_mDDEFF4CAD54D09153F0E92F2316A87EFF01846EB_inline(), bool4__ctor_m2A59D4A3453F6D4B684BABDF76792A2F28112307_inline() (+1363 more) ### Community 76 - "Community 76" Cohesion: 0.0 -Nodes (989): MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_m69E5B5290F982D6CDF9FA99A428804D6A999886B_gshared(), MemoryExtensions_EndsWith_TisIl2CppFullySharedGenericAny_mA1682B4144801F8C6F415BECEAEDEE352FD1748C_gshared(), Array_Empty_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_m22E209B597C5752567BA3362E9DD1A84F595DC96_inline(), Array_Empty_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mAB215C445888719BD89809D99C3DBD3135C2B1E7_inline(), Array_Empty_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_mB6CFBB5D8AF33F0BAE72154209AB29B8D52FBCDA_inline(), Array_Empty_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_mE8E5D02C64EF75307894453C9EA96723A9D782DC_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mD1C1362CB74B91496D984B006ADC79B688D9B50D_inline() (+981 more) +Nodes (1130): DataSet_1_HasMappedBufferRange_mF35963F8A8F935B5C3C691804A4EE85500317178_gshared(), Action_1_Invoke_mAD178F36104C15DBB36646715C8C079F015C7994_inline(), Action_2__ctor_m869381D10AD82BD6333A47B462F79C39BA54F235(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), Array_IndexOf_TisBFloat16_t01010688FDE3210A5FCA718A043DBE329F33B0BF_m6A14C72C92481569823279CDB2750BE737BB8653(), Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D(), Array_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m139BCCBB4246249FA99A37FB06D04879944554C7() (+1122 more) ### Community 77 - "Community 77" Cohesion: 0.0 -Nodes (480): Comparer_1__ctor_m12B4B1B50866B60AC980BA05FFB8C1BA9916DC19(), Comparer_1__ctor_m28F0EB491512F955E81E9AABA41F490518F481AE(), Comparer_1__ctor_m290953B68F8980CA3861CAAB2F3A79BC4A83616F(), Comparer_1__ctor_m2F8903704557F0C6358C6784DF30CDB1828C9A6F(), Comparer_1__ctor_m31B214E3CDB7AA1BE4EED771F8FE70DAF043033E(), Comparer_1__ctor_m3353053D092D4FBC9AEFC70AC825209F43417E31(), Comparer_1__ctor_m3AA5AD89BAB268C785B3211C793B9B66D17BCB05(), Comparer_1__ctor_m482F6103C7F8D76C1D68AF2E641D219A7008287C() (+472 more) +Nodes (1045): CompletedFileHandler_Invoke_m76C07D9F40A0547E02EC1C63DF3F4B45AE99CBCF_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_OpenInst(), Deflater__ctor_m8D1FE76A45B522A5322FB2AB408A84613B8A6BF9(), Deflater__ctor_m9EEEB040372E91B1757D4F3CF556064A36DE769D(), Deflater__ctor_mAE6A6FE30D86484351A0DD6C0F6BA0509A0981EF(), Deflater_Deflate_m40F7F94572DEB3C858D91F9D4B5A6692599EFC59(), Deflater_Deflate_m84FD8CDD2D0BBB6236D08081481CDE2AB1F68149() (+1037 more) ### Community 78 - "Community 78" Cohesion: 0.0 -Nodes (986): DataSet_1_HasMappedBufferRange_mF35963F8A8F935B5C3C691804A4EE85500317178_gshared(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), Array_IndexOf_TisBFloat16_t01010688FDE3210A5FCA718A043DBE329F33B0BF_m6A14C72C92481569823279CDB2750BE737BB8653(), Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D(), Array_IndexOf_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m139BCCBB4246249FA99A37FB06D04879944554C7(), Array_IndexOf_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_mF1B61759DE675C8CA16E136A540DACC778476225(), Array_IndexOf_TisFloat16_t93A1665C0ABAA7D64AAB3F67AE80AB2F938E796D_m8558B058D1DF3520D62969709D2ABA71635E5F89() (+978 more) +Nodes (384): AnimatorMessageListener, Unity.VisualScripting, AsyncAwakeTrigger, AsyncTriggerExtensions, Cysharp.Threading.Tasks.Triggers, AsyncStartTrigger, AsyncTriggerExtensions, Cysharp.Threading.Tasks.Triggers (+376 more) ### Community 79 - "Community 79" Cohesion: 0.0 -Nodes (384): AnimatorMessageListener, Unity.VisualScripting, AsyncAwakeTrigger, Cysharp.Threading.Tasks.Triggers, AsyncStartTrigger, Cysharp.Threading.Tasks.Triggers, AsyncTriggerBase, BoltGUI (+376 more) +Nodes (445): AddChildAllocator(), AddSafetyHandle(), Allocate(), AllocateBlock(), AllocatorManager, AreTheSame(), CheckAllocatedSuccessfully(), CheckDelegate() (+437 more) ### Community 80 - "Community 80" Cohesion: 0.0 -Nodes (803): CompletedFileHandler_Invoke_m76C07D9F40A0547E02EC1C63DF3F4B45AE99CBCF_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_inline(), ConfirmOverwriteDelegate_Invoke_m6132ADEC7FAB8EF19A41F84EE46421A2ED8B5F2E_OpenInst(), Deflater__ctor_m8D1FE76A45B522A5322FB2AB408A84613B8A6BF9(), Deflater__ctor_m9EEEB040372E91B1757D4F3CF556064A36DE769D(), Deflater__ctor_mAE6A6FE30D86484351A0DD6C0F6BA0509A0981EF(), Deflater_Deflate_m40F7F94572DEB3C858D91F9D4B5A6692599EFC59(), Deflater_Deflate_m84FD8CDD2D0BBB6236D08081481CDE2AB1F68149() (+795 more) +Nodes (1001): Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(), Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E(), Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33(), ConditionTask_1__ctor_mE731B0FBE83103C26307EAA79DCDC159370B3F0B(), ConditionTask_1_get_agent_mBB48AA6BD5FF743A804C523621CF447B5082E8BA(), Enumerator__ctor_m2DD667605D1D62A7C346404BBDDD45C06317D415(), Enumerator__ctor_m42A94DD7C6CE2C0E9B202F5B06ED156B52F0945C(), Enumerator__ctor_m57AB051DB594AC52C9F864D004EAB5E93560252B() (+993 more) ### Community 81 - "Community 81" Cohesion: 0.0 -Nodes (379): AddChildAllocator(), Allocate(), AllocateBlock(), AllocatorManager, AreTheSame(), CheckAllocatedSuccessfully(), CheckDelegate(), CheckExists() (+371 more) +Nodes (973): ManualResetValueTaskSourceCore_1_SetException_mF7BF08920989E5C2698F01D53613CACD21D541F6_gshared(), RendezvousAwaitable_1_SetCanceled_m15508CEAB693225FC85B8110EF7B8544E05A8A8D_gshared(), RendezvousAwaitable_1_SetException_m46B8F1E0D33252EFA5618CA198F81C9FB7F99F06_gshared(), AsyncTaskMethodBuilder_1_Create_m0DBDD9164C1E94BB8CDBFB011C3AE620B9BBB4B7(), AsyncTaskMethodBuilder_1_Create_m6A59453D00C0143F178809ADFD98C90E8C291ABB(), AsyncTaskMethodBuilder_1_get_Task_m3E4C6AB5A394B6C8E538FB9D262C0C698FFE9970(), AsyncTaskMethodBuilder_1_get_Task_mEA092EC6F1324A9D694CF6056FA8583F2A2BDC89(), AsyncTaskMethodBuilder_1_Start_TisU3CWaitForCompletionU3Ed__15_t9E060FE7291342719C045F76EA67AD067BF74208_m59D61097324759E52596782E30AA09851886C25C() (+965 more) ### Community 82 - "Community 82" Cohesion: 0.0 -Nodes (285): Action_1__ctor_m1840BF5F2B806323FE80ACB6B4B8738B3C70C1EA(), Action_1__ctor_m8277D7C0B02FD31FAAD0AB4307FB95B73319EFEA(), Action_1_Invoke_m9E76E6EE2FAD2E88F47663F5EB53C96E718FD33E_inline(), Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E(), Bad_2__ctor_m7BD9D7A0F124D49AC6E723D0416737ABCEF732E5(), Bad_2_get_Messages_m86B3976FEB4A3A97B15CBDBACBE540730F61AA34_inline(), Bad_2_get_Messages_mC187F60689E4EBF566565214751161D1400502EB_inline(), Enumerable_Any_TisU3CU3Ef__AnonymousType20_3_t58B4C6D3F134199EC3D46A00149B640E2328D4D4_m5AA1F03E4543D6EC207B827CD4E021E52F6DB30B() (+277 more) +Nodes (317): Action_1__ctor_m1840BF5F2B806323FE80ACB6B4B8738B3C70C1EA(), Action_1__ctor_m8277D7C0B02FD31FAAD0AB4307FB95B73319EFEA(), Action_1_Invoke_m9E76E6EE2FAD2E88F47663F5EB53C96E718FD33E_inline(), Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E(), Bad_2__ctor_m7BD9D7A0F124D49AC6E723D0416737ABCEF732E5(), Bad_2_get_Messages_m86B3976FEB4A3A97B15CBDBACBE540730F61AA34_inline(), Bad_2_get_Messages_mC187F60689E4EBF566565214751161D1400502EB_inline(), ConcurrentDictionary_2_set_Item_m050171C2656C2982971EECEA9026CADF5AEF72B1() (+309 more) ### Community 83 - "Community 83" Cohesion: 0.0 -Nodes (890): Action_1__ctor_mA8C3AC97D1F076EA5D1D0C10CEE6BD3E94711501(), Array_Resize_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m848A8FC319792F387E6DF3EC87DF9E9685763375(), Array_Resize_TisHighlightState_tFF5FE9065990F04A37FEC545A0024047F0ABD740_m056A39CD9D80FED713495139C0EC448AF2F83672(), Array_Resize_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6BAA7BD6F22421B894347B1476C37052FAC6C916(), Array_Resize_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m540BB33A026A346B7B0033684BE811ED519B1E33(), Array_Resize_TisMaterialReference_t86DB0799D5C82869D4FF0A4F59624AED6910FD26_m489C12CB47EAA03F917AED6C31CC778FCD467E5C(), Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E(), Array_Resize_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m879C2A54DAFE78F46D1185B50ED527EE182BFB04() (+882 more) +Nodes (898): ActionConfirmMessageFormatter__ctor_m42FB3B127CB78F044A19CC2B91A58D39BAF3A26C(), ActionConfirmMessageFormatter_Deserialize_mCAB2E600BE2EFCFD72764280689C6B9345D5BC62(), ActionConfirmMessageFormatter_Serialize_m99C703EF1F09B60A353582C00FE263680DB60C36(), ActionExcuteMessageFormatter__ctor_mE89FD29A88912F13AB306E02ADC045B2FE6325BC(), ActionExcuteMessageFormatter_Deserialize_mCCAEC22AAFC74AE338FE7FFD65D7304E07A27657(), ActionExcuteMessageFormatter_Serialize_m5EA34A8A4E320B95B4AC1CA42A850270EBDA7E44(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline() (+890 more) ### Community 84 - "Community 84" -Cohesion: 0.0 -Nodes (422): Absolute, Unity.VisualScripting, Add, Unity.VisualScripting, AddDictionaryItem, Unity.VisualScripting, AddListItem, Unity.VisualScripting (+414 more) +Cohesion: 0.01 +Nodes (950): cvl_ggj_m3EF948C095311F5E8BAF0429878AAE6749B52660(), eri__ctor_m33BC1D98F665246152AEF351E11BF9A2F88C0CDA(), eri_jdg_mE4F8880F0698AD0D89187C5A731089C38E09938C(), eri_jdh_m6BC8DC4ED7A7CDCC84502E820537EAEB12EE0DB6(), Action_1__ctor_m0648BF1D399A0A75DC88764D5C2A079C1D58C830(), Action_1__ctor_m0C23244E48022AB5C19509049C8146F31D3FB3AE(), Action_1__ctor_m0DF8E9E9AFB247311DED312A4C1ED04BE41A33B7(), Action_1__ctor_m0EEFDEF46E1133EB662FABC2408D2C91D75765C5() (+942 more) ### Community 85 - "Community 85" Cohesion: 0.0 -Nodes (837): IntPtr__ctor_m20A566609A091311C734617C699E61F545250AC7(), IntPtr__ctor_m20A566609A091311C734617C699E61F545250AC7_AdjustorThunk(), IntPtr_IsNull_m77D4FB137C442917D697E210C859523466B7B2CD(), IntPtr_IsNull_m77D4FB137C442917D697E210C859523466B7B2CD_AdjustorThunk(), RuntimeTypeHandle__ctor_mE16D1E09DB422753FECA96534577156F095DD44B(), RuntimeTypeHandle_GetGenericParameterInfo_m9E864E352D2FC890C0572087A2B708C00A8A5983(), ThreadPoolCallbackWrapper_Enter_m5E47630D6F5CB0B4294FB40A127F8F858D15648C(), NativeEventCalls_CloseEvent_internal_m57C81656144EBA5DEE8A55C09624CED5C338BDE9() (+829 more) +Nodes (599): ActiveInModeAttribute, UnityEditor.Timeline.Actions, Keys, SetAdditionalPropertiesVisibilityAttribute, Styles, UnityEditor.Rendering, AllowsNullAttribute, Unity.VisualScripting (+591 more) ### Community 86 - "Community 86" Cohesion: 0.0 -Nodes (772): PopsicleSetter_Set_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m20F57FD285D02B9E6856CBB2E640E8969E08E537_gshared(), PopsicleSetter_Set_TisIl2CppFullySharedGenericAny_mB58FA71E1F970542C11E978FAA63BCF438CB2E8B_gshared(), PopsicleSetter_Set_TisRuntimeObject_mA510FFB5FFE759899EA890919FD662EBF2870994_gshared(), Tensor_1_get_Item_m10517DD629C25BAAA5762E1BBFAC6EB5DAA5D5B6_gshared(), Tensor_1_set_Item_mCBC310B3F3434AAB18E329B6C03C1BC836A30765_gshared(), Tensor_1_System_Collections_Generic_ICollectionU3CTU3E_Add_mC0C90A5262D50D90C3557276B5F3A9ECD154C5B4_gshared(), Tensor_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m536E9B2F5DCDFBB6F8D218667416EA0EF3DB628A_gshared(), Tensor_1_System_Collections_Generic_IListU3CTU3E_Insert_m78C3C37B19402FDF8381F31CE5F78A1789A74D92_gshared() (+764 more) +Nodes (827): SharedStatic_1__ctor_m57842D87210A109206E3DAFEBD441B46EDBC809E_inline(), SharedStatic_1_GetOrCreatePartiallyUnsafeWithHashCode_TisIl2CppFullySharedGenericAny_m24F755B0C049B8184818666FC2B637100E3C8F74_gshared(), SharedStatic_1_GetOrCreatePartiallyUnsafeWithSubHashCode_TisIl2CppFullySharedGenericAny_mC9E6A2771C5D910CB4871C588BAA15C902291985_gshared(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9C8319715804B003E1E2802B394C514987FE618(), Array_BinarySearch_TisRuntimeObject_m5B818220FAB53B22E61917AC1A8AE36C1B1DA151(), Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m4D53E0E0F90F37AD5DBFD2DC75E52406F90C7ABC_inline(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline() (+819 more) ### Community 87 - "Community 87" -Cohesion: 0.0 -Nodes (739): SharedStatic_1__ctor_m57842D87210A109206E3DAFEBD441B46EDBC809E_inline(), SharedStatic_1_GetOrCreatePartiallyUnsafeWithHashCode_TisIl2CppFullySharedGenericAny_m24F755B0C049B8184818666FC2B637100E3C8F74_gshared(), SharedStatic_1_GetOrCreatePartiallyUnsafeWithSubHashCode_TisIl2CppFullySharedGenericAny_mC9E6A2771C5D910CB4871C588BAA15C902291985_gshared(), Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(), Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9C8319715804B003E1E2802B394C514987FE618(), Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m4D53E0E0F90F37AD5DBFD2DC75E52406F90C7ABC_inline(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_Empty_TisValueTuple_2_tC57529B8C1EE84CA3D138FBE3836C013C6DC40AC_m3A3AFAA43B0D8FF6C08669BEB87B12FE4F6A2B40_inline() (+731 more) +Cohesion: 0.01 +Nodes (642): Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), MemoryExtensions_AsSpan_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_mD28D90ABA16366C6D685D93235779B48F58E3A75_gshared_inline(), MemoryExtensions_AsSpan_TisBigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_mD28D90ABA16366C6D685D93235779B48F58E3A75_inline(), MemoryExtensions_AsSpan_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1E5C1D43E4B2F852CCAF43D40AD05F1484690337_gshared_inline(), MemoryExtensions_AsSpan_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1E5C1D43E4B2F852CCAF43D40AD05F1484690337_inline(), MemoryExtensions_AsSpan_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m53C83BDD1B307C2E6329BD8EE5989206ADF7C2AF_gshared_inline(), MemoryExtensions_AsSpan_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m53C83BDD1B307C2E6329BD8EE5989206ADF7C2AF_inline(), MemoryExtensions_AsSpan_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_m2BBBF8DF011FB3D812509B04EA093C0D6882B862_gshared_inline() (+634 more) ### Community 88 - "Community 88" Cohesion: 0.01 -Nodes (765): eri__ctor_m33BC1D98F665246152AEF351E11BF9A2F88C0CDA(), eri_jdg_mE4F8880F0698AD0D89187C5A731089C38E09938C(), eri_jdh_m6BC8DC4ED7A7CDCC84502E820537EAEB12EE0DB6(), Action_1__ctor_m0648BF1D399A0A75DC88764D5C2A079C1D58C830(), Action_1__ctor_m0C23244E48022AB5C19509049C8146F31D3FB3AE(), Action_1__ctor_m0DF8E9E9AFB247311DED312A4C1ED04BE41A33B7(), Action_1__ctor_m0EEFDEF46E1133EB662FABC2408D2C91D75765C5(), Action_1__ctor_m1BC153B6ED2DF72BDEE5A823C05195836BEC78F3() (+757 more) +Nodes (530): Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m95B7C2BAA1A1E7FF65E4539C686A8F526F77E395(), Array_Empty_TisAttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E_m0F7B255CF739B8C78F6D0663FFFD44753100FCAE_inline(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_Empty_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m44F781E90531F7FCDB12BC4290CD4394A887FC06_inline(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(), Array_Sort_TisKeyValuePair_2_t1F749E064301C7FBDD1C0B79D6C7290359EA8141_mB25A5148E720ABA81B37DEA3086F117F6C6B6496(), Array_Sort_TisKeyValuePair_2_tECFA8C561C082CE87D892A9355E0A1BB44319556_m5F8C06D7B66A4408BA021AF8D573068C195605F7() (+522 more) ### Community 89 - "Community 89" -Cohesion: 0.0 -Nodes (699): ManualResetValueTaskSourceCore_1_SetException_mF7BF08920989E5C2698F01D53613CACD21D541F6_gshared(), RendezvousAwaitable_1_SetCanceled_m15508CEAB693225FC85B8110EF7B8544E05A8A8D_gshared(), RendezvousAwaitable_1_SetException_m46B8F1E0D33252EFA5618CA198F81C9FB7F99F06_gshared(), AsyncTaskMethodBuilder_1_Create_m0DBDD9164C1E94BB8CDBFB011C3AE620B9BBB4B7(), AsyncTaskMethodBuilder_1_Create_m6A59453D00C0143F178809ADFD98C90E8C291ABB(), AsyncTaskMethodBuilder_1_get_Task_m3E4C6AB5A394B6C8E538FB9D262C0C698FFE9970(), AsyncTaskMethodBuilder_1_get_Task_mEA092EC6F1324A9D694CF6056FA8583F2A2BDC89(), AsyncTaskMethodBuilder_1_Start_TisU3CWaitForCompletionU3Ed__15_t9E060FE7291342719C045F76EA67AD067BF74208_m59D61097324759E52596782E30AA09851886C25C() (+691 more) +Cohesion: 0.01 +Nodes (679): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m30F3FBCA7FF6DA6DB48936FF84B26DCA89843B27(), float2__ctor_m037D046BD70923231612C90B14E364EB2BB15BD7_inline() (+671 more) ### Community 90 - "Community 90" -Cohesion: 0.0 -Nodes (624): ens_esi_mCA357BB129C2C876849500F4D6145C4C69CF723E(), epu_etm_mBC48C4F52E9103CDB35DECE12DB04E50566042F4(), epv_ett_m912117BDB448D4DF5164E69E7138D329C4FDCEDC(), epw_etv_m12D39ED35E1B3C0C3D1D93B4F81EA259C2A8C586(), epw_Invoke_m1593957ED398150F380E813850C8D5E839C4DE72(), HashSet_1_Remove_m97303C08928AB7A9364E7908F34670D92348D9DA(), eqq_exv_mBE31A97BE0DF6E4F18CDC84472AEA0DF34F61BCA(), eqq_exy_m03C80D9524ABFDD0345C7125F599BD85C6626D33() (+616 more) +Cohesion: 0.01 +Nodes (635): ArrayFormatter_1__ctor_m00A70A5FFBA123BE7DDDF4E011A63855E58A2227(), ArrayFormatter_1__ctor_m1A45DA23705E3C7AFAD886FF0993A6DF665DD5F5(), ArrayFormatter_1__ctor_m1ED35D6D0C2709E2ABF9B437C167728F0C8378E7(), ArrayFormatter_1__ctor_m6E49FF48ADA69AC45588E328909B1384EADF1B32(), ArrayFormatter_1__ctor_m78AAA598E92BFE7FF927388D880044BA6453FA38(), ArrayFormatter_1__ctor_m9D01DDDD764B4B2832CD9040C206DE8631987DC5(), ArrayFormatter_1__ctor_mB80128A379D516853E3B4746B2EA36BDC41020E1(), ArrayFormatter_1__ctor_mBA500BE2FAE776A0AF09ED37B75B4020A1275127() (+627 more) ### Community 91 - "Community 91" -Cohesion: 0.0 -Nodes (508): ActiveInModeAttribute, UnityEditor.Timeline.Actions, Keys, SetAdditionalPropertiesVisibilityAttribute, Styles, UnityEditor.Rendering, ActionNetData, Logic.AI (+500 more) +Cohesion: 0.01 +Nodes (97): InfiniteRuntimeClip, UnityEngine.Timeline, ITimeControl, UnityEngine.Timeline, RuntimeClipBase, UnityEngine.Timeline, RuntimeElement, TimeControlPlayable (+89 more) ### Community 92 - "Community 92" -Cohesion: 0.01 -Nodes (578): ObjectSecurity_1_AddAccessRule_m6604DC496BFCE9DB0D7324BB113DEA1C5AA3770C_gshared(), ObjectSecurity_1_AddAuditRule_mE563C6D828AAA0B39C9D31199D5FF5A825995F40_gshared(), ObjectSecurity_1__ctor_m58107662D9E88356821A2D1C6E1C73FDA2AE2381_gshared(), ObjectSecurity_1__ctor_m84AC01B8503E5A53F90343B39910613D4F03DEF1_gshared(), ObjectSecurity_1__ctor_mEA56F9BBB395F7C800B427A3E46AB3740578E3A6_gshared(), ObjectSecurity_1__ctor_mEDF0CD54F2C230B7304F17175AB6178A4D5753E4_gshared(), ObjectSecurity_1__ctor_mEE7021BC20249C43B57519FC90572C986B7A85CA_gshared(), ObjectSecurity_1_Persist_m18DA3373BA5FAF5E0E551B671C43E7336F5F59BD_gshared() (+570 more) +Cohesion: 0.0 +Nodes (212): AbsoluteNode, UnityEditor.ShaderGraph, AddNode, UnityEditor.ShaderGraph, AllNode, UnityEditor.ShaderGraph, AndNode, UnityEditor.ShaderGraph (+204 more) ### Community 93 - "Community 93" Cohesion: 0.01 -Nodes (546): ObjectEqualityComparer_1_Equals_m731917E68462131BACE39912907B9DD8E7B8694A_gshared(), ObjectEqualityComparer_1_IndexOf_m410C70AD1B10F3456A721A61CA5ED9DD63BBBBA0_gshared(), ObjectEqualityComparer_1_LastIndexOf_m7456D97867011E7EACA9980A4C3AFFFF78AFA2A0_gshared(), GenericEqualityComparer_1_Equals_mA1ED0D0FEC4DD8AE6B9E688EE01DAB049612D1D4_gshared(), GenericEqualityComparer_1_IndexOf_mF666DA2418355540ED070064E875920A05686EEF_gshared(), GenericEqualityComparer_1_LastIndexOf_m709A87E6F9E6B0E35A1B8E07D19700928C28B0F1_gshared(), Convert_ToString_mF3930B3E8180F7A6B5579751128BC862CE2A324D(), TimeoutException__ctor_mDC4162DC42FD01F72B442951759B90438432A7F5() (+538 more) +Nodes (334): dlGetProcAddress(), GLEW_CONTEXT_ARG_DEF_LIST(), GLEWAPIENTRY(), glewContextIsSupported(), glewGetExtension(), _glewInit_GL_3DFX_tbuffer(), _glewInit_GL_AMD_debug_output(), _glewInit_GL_AMD_draw_buffers_blend() (+326 more) ### Community 94 - "Community 94" Cohesion: 0.01 -Nodes (678): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool4__ctor_mF155096A6E6BF25B97648480B9A5224A22DFFF88_inline(), bool4x2__ctor_mAADAE998CE29CA687864D7394B16CEFCA62B5EB7_inline(), bool4x3__ctor_mF4A64FE5448C6B39B6FEF1FA10F8AB887E7DDF67_inline(), bool4x4__ctor_m3A3AFC7B534067434119A70AEAECFAC98FF9AE26_inline(), DebuggerProxy__ctor_m30F3FBCA7FF6DA6DB48936FF84B26DCA89843B27(), float2__ctor_m037D046BD70923231612C90B14E364EB2BB15BD7_inline() (+670 more) +Nodes (127): ArrayFormatter, ArraySegmentFormatter, DangerousUnmanagedArrayFormatter, MemoryFormatter, MemoryPack, MemoryPack.Formatters, MemoryPackFormatterProvider, MemoryPoolFormatter (+119 more) ### Community 95 - "Community 95" Cohesion: 0.01 -Nodes (631): Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), MemoryExtensions_AsSpan_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1E5C1D43E4B2F852CCAF43D40AD05F1484690337_gshared_inline(), MemoryExtensions_AsSpan_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1E5C1D43E4B2F852CCAF43D40AD05F1484690337_inline(), MemoryExtensions_AsSpan_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m53C83BDD1B307C2E6329BD8EE5989206ADF7C2AF_gshared_inline(), MemoryExtensions_AsSpan_TisBounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_m53C83BDD1B307C2E6329BD8EE5989206ADF7C2AF_inline(), MemoryExtensions_AsSpan_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_m2BBBF8DF011FB3D812509B04EA093C0D6882B862_gshared_inline(), MemoryExtensions_AsSpan_TisBoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_m2BBBF8DF011FB3D812509B04EA093C0D6882B862_inline(), MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mBCE30232D474E79CB7F5C723174D4BC22D93094A_gshared_inline() (+623 more) +Nodes (97): AirborneState, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, BasicCharacterBrain, AsteroidExplosion, BattleEventDefine, EnemyDead, EnemyFireBullet (+89 more) ### Community 96 - "Community 96" -Cohesion: 0.01 -Nodes (609): ArrayFormatter_1__ctor_m00A70A5FFBA123BE7DDDF4E011A63855E58A2227(), ArrayFormatter_1__ctor_m1A45DA23705E3C7AFAD886FF0993A6DF665DD5F5(), ArrayFormatter_1__ctor_m1ED35D6D0C2709E2ABF9B437C167728F0C8378E7(), ArrayFormatter_1__ctor_m6E49FF48ADA69AC45588E328909B1384EADF1B32(), ArrayFormatter_1__ctor_m78AAA598E92BFE7FF927388D880044BA6453FA38(), ArrayFormatter_1__ctor_m9D01DDDD764B4B2832CD9040C206DE8631987DC5(), ArrayFormatter_1__ctor_mB80128A379D516853E3B4746B2EA36BDC41020E1(), ArrayFormatter_1__ctor_mBA500BE2FAE776A0AF09ED37B75B4020A1275127() (+601 more) +Cohesion: 0.02 +Nodes (99): BuiltInBaseShaderGUI, Styles, UnityEditor, UnityEditor.Rendering.BuiltIn.ShaderGraph, BuiltInLitSubTarget, LitBlockMasks, LitIncludes, LitKeywords (+91 more) ### Community 97 - "Community 97" -Cohesion: 0.0 -Nodes (572): Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(), Array_Empty_TisAsyncLogEventInfo_t8A65414C3902B07B5644758409DEFBB9C9C023DF_mE50439C1B1BF67A65FAFEDB0FA7AC2D70D46EF01_inline(), Array_Empty_TisBrickChunkAlloc_t95EB283E186F5DA1E74A8DDE415EB8E7ABFDF51B_m4C704A5BD884CD9AB780E000CBC880180508C410_inline(), Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m6080CA526758F4FA182A066B2780D1761CD36ED5_inline(), Array_Empty_TisDispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_mF01AA806CE655E3ABAF52F0F9DD7CC113403C7E2_inline(), Array_Empty_TisEventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_mAEF379183FDCBD07C651D56777D4AA5A5C969A47_inline(), Array_Empty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m4D53E0E0F90F37AD5DBFD2DC75E52406F90C7ABC_inline(), Array_Empty_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m94E12BB613D748D2EEB9E1ABD961630D2F970385_inline() (+564 more) - -### Community 98 - "Community 98" -Cohesion: 0.01 -Nodes (455): Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m95B7C2BAA1A1E7FF65E4539C686A8F526F77E395(), Array_Empty_TisAttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E_m0F7B255CF739B8C78F6D0663FFFD44753100FCAE_inline(), Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(), Array_Empty_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m44F781E90531F7FCDB12BC4290CD4394A887FC06_inline(), Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline(), Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(), Array_Sort_TisKeyValuePair_2_t1F749E064301C7FBDD1C0B79D6C7290359EA8141_mB25A5148E720ABA81B37DEA3086F117F6C6B6496(), Array_Sort_TisKeyValuePair_2_tECFA8C561C082CE87D892A9355E0A1BB44319556_m5F8C06D7B66A4408BA021AF8D573068C195605F7() (+447 more) - -### Community 99 - "Community 99" -Cohesion: 0.01 -Nodes (486): bbk__ctor_mBA789A37E40CD52124A7FF47E0FB768E023B7B56(), List_1__ctor_m2ABCBA75B5DBE0FE1CFB44DC289E64079D0FFEF4(), List_1__ctor_m7D566B8A25538BEE22F4276471201E96C650C768(), List_1__ctor_mD036D3C5E4B98B749D08C612DD52A981DBA2CF08(), ArrayFormatter_1__ctor_m15C4C078FE5CC517C134B2988E9EA8B26A0B306E(), ArrayFormatter_1__ctor_m173381F8853DD0BFE4D3149070766FC1437A965C(), ArrayFormatter_1__ctor_m24896EE7176041D9E0567691CD032E3BF7F627A3(), ArrayFormatter_1__ctor_m2B07510C30EAF4F9298EAEE41EFE2758839DF5A9() (+478 more) - -### Community 100 - "Community 100" -Cohesion: 0.01 -Nodes (79): Demo_Angle, Diff(), IsBetween(), Lerp(), Normalize(), SameSignAngle(), SetValue(), ViAsynDelegateInterface (+71 more) - -### Community 101 - "Community 101" -Cohesion: 0.01 -Nodes (376): HashSet_1_AddOrGetLocation_m79188A9B4AC92DE527D5551ABD63DD9BE6A52EF8(), HashSet_1_AddOrGetLocation_m8B8D7FB488CFA85B4F69815936C372F46B5BBBF9(), HashSet_1_AddOrGetLocation_mA0916EC015081FB3D77754BFB795C5A91A59CB73(), HashSet_1_AddOrGetLocation_mC0DCFBA5D7CC16CB07FE8761A152DBB95EDE9695(), HashSet_1_AddOrGetLocation_mEF3EA9211FF928B1B31B3A97A741E740BC4E7A0F(), HashSet_1_CheckUniqueAndUnfoundElements_m1FE7B070F6F535246DE7D39D368813B4CBE80B61_gshared(), HashSet_1_CheckUniqueAndUnfoundElements_mB8AC3BF3EE5587D29AAF8913C24308E255AC559B_gshared(), HashSet_1_CheckUniqueAndUnfoundElements_mCFDF85D9CE29B8EF6511522A99173E8F9FDE06B0_gshared() (+368 more) - -### Community 102 - "Community 102" -Cohesion: 0.01 -Nodes (335): dlGetProcAddress(), GLEW_CONTEXT_ARG_DEF_LIST(), GLEWAPIENTRY(), glewContextIsSupported(), glewGetErrorString(), glewGetExtension(), _glewInit_GL_3DFX_tbuffer(), _glewInit_GL_AMD_debug_output() (+327 more) - -### Community 103 - "Community 103" -Cohesion: 0.01 -Nodes (95): AirborneState, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, AttackState, Animancer.Examples.StateMachines, BasicCharacterBrain, Animancer.Examples.AnimatorControllers.GameKit (+87 more) - -### Community 104 - "Community 104" -Cohesion: 0.02 -Nodes (69): ET.Analyzer, Clipper, ClipperBase, ClipperException, ClipperOffset, Equals(), ExtrasClipperLib, GetHashCode() (+61 more) - -### Community 105 - "Community 105" -Cohesion: 0.02 -Nodes (98): BuiltInBaseShaderGUI, Styles, UnityEditor, UnityEditor.Rendering.BuiltIn.ShaderGraph, BuiltInLitSubTarget, LitBlockMasks, LitIncludes, LitKeywords (+90 more) - -### Community 106 - "Community 106" -Cohesion: 0.01 -Nodes (131): BoneInspectorPanelFactory, BoneInspectorPanelUxmlTraits, UnityEditor.U2D.Animation, BoneReparentToolController, BoneReparentToolModel, BoneReparentToolView, CustomUxmlFactory, CustomUxmlTraits (+123 more) - -### Community 107 - "Community 107" Cohesion: 0.01 Nodes (132): Changelog_1_0_0, LudiqCoreChangelog_1_0_0, LudiqGraphsChangelog_1_0_0, Unity.VisualScripting, Changelog_1_0_1, LudiqCoreChangelog_1_0_1, LudiqGraphsChangelog_1_0_1, Unity.VisualScripting (+124 more) -### Community 108 - "Community 108" +### Community 98 - "Community 98" Cohesion: 0.01 Nodes (62): InstanceActionInvoker, Unity.VisualScripting, InstanceActionInvoker, Unity.VisualScripting, InstanceActionInvoker, Unity.VisualScripting, InstanceActionInvoker, Unity.VisualScripting (+54 more) -### Community 109 - "Community 109" -Cohesion: 0.03 -Nodes (42): IPreprocessComputeShaders, IPreprocessShaders, IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, UpdateShaderPrefilteringDataBeforeBuild, ShaderExtensionsTests, UnityEditor.Rendering.Tests.ShaderStripping (+34 more) +### Community 99 - "Community 99" +Cohesion: 0.01 +Nodes (118): BoneInspectorPanelFactory, BoneInspectorPanelUxmlTraits, UnityEditor.U2D.Animation, BoneReparentToolModel, BoneReparentToolView, CustomUxmlFactory, CustomUxmlTraits, UnityEditor.U2D.Animation (+110 more) -### Community 110 - "Community 110" +### Community 100 - "Community 100" Cohesion: 0.02 Nodes (29): CreateDecalProjector, UnityEditor.Rendering.Universal, DefaultControls, DefaultRuntimeFactory, IFactoryControls, UnityEngine.UI, FreeformPathPresets, UnityEditor.Rendering.Universal (+21 more) -### Community 111 - "Community 111" +### Community 101 - "Community 101" +Cohesion: 0.04 +Nodes (28): IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, ShaderPreprocessor, IShaderScriptableStrippingData, IsKeywordEnabled(), IsShaderFeatureEnabled(), IsVolumeFeatureEnabled() (+20 more) + +### Community 102 - "Community 102" +Cohesion: 0.02 +Nodes (12): TH1_UI.Controller.Bottom, UIBottomBottomBarController, TH1_UI.Core, UIBottomManager, TH1_Core.Events, UIEventManagerBinder, TH1_UI.Core, UINotifyManager (+4 more) + +### Community 103 - "Community 103" +Cohesion: 0.03 +Nodes (43): Splice, Geom, LibTessDotNet, Unity.SpriteShape.External, UnityEngine.Rendering.Universal, LibTessDotNet, Mesh, Unity.SpriteShape.External (+35 more) + +### Community 104 - "Community 104" +Cohesion: 0.02 +Nodes (64): Bloom, DownscaleParameter, UnityEngine.Rendering.Universal, ChannelMixer, UnityEngine.Rendering.Universal, ChromaticAberration, UnityEngine.Rendering.Universal, ColorAdjustments (+56 more) + +### Community 105 - "Community 105" Cohesion: 0.04 Nodes (133): BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(), bool3__ctor_m3683F21E6C110670CDDA02E4C1F6E063E936FEE2_inline(), bool3_op_BitwiseAnd_mE44CC5838094A40F1F605A7798994197165A63E1_inline(), bool3_op_LogicalNot_m85C703CC4098B3731505A162957F91C0373548BD_inline(), float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline(), float3_Equals_m4A47BDC70977496712F3BE7DA359E840D99C020A_inline(), float3_get_xxx_mFD7DFB9FF23BB0B3437F12CC35DB3D1E0ADF7B20_inline(), float3_get_xyz_m720A862AA512BE0B0B1089527A43EEF2B6766BEF_inline() (+125 more) -### Community 112 - "Community 112" +### Community 106 - "Community 106" Cohesion: 0.01 Nodes (3): Arm, Neon, Unity.Burst.Intrinsics -### Community 113 - "Community 113" +### Community 107 - "Community 107" Cohesion: 0.02 Nodes (68): IEdge, UnityEditor.Graphing, IEquatable, INugetPackage, NugetForUnity.Models, INugetPackageIdentifier, INugetPackageIdentifier, NugetForUnity.Models (+60 more) -### Community 114 - "Community 114" +### Community 108 - "Community 108" Cohesion: 0.02 Nodes (29): CheckCollision2D, CheckCollision2D_Rigidbody, NodeCanvas.Tasks.Conditions, CheckCollision, CheckCollision_Rigidbody, NodeCanvas.Tasks.Conditions, CheckMouse2D, NodeCanvas.Tasks.Conditions (+21 more) -### Community 115 - "Community 115" +### Community 109 - "Community 109" Cohesion: 0.02 Nodes (51): AnimatorEntryComparer, UnityEngine.Timeline, ColorEqualityComparer, UnityEngine.TestTools.Utils, EventHookComparer, Unity.VisualScripting, Animancer, FastComparer (+43 more) -### Community 116 - "Community 116" +### Community 110 - "Community 110" Cohesion: 0.02 -Nodes (62): Bloom, DownscaleParameter, UnityEngine.Rendering.Universal, ChannelMixer, UnityEngine.Rendering.Universal, ChromaticAberration, UnityEngine.Rendering.Universal, ColorAdjustments (+54 more) +Nodes (64): CollisionEvent2DUnit, Unity.VisualScripting, CollisionEventUnit, Unity.VisualScripting, GameObjectEventUnit, GenericGuiEventUnit, Unity.VisualScripting, IMouseEventUnit (+56 more) -### Community 117 - "Community 117" +### Community 111 - "Community 111" Cohesion: 0.02 -Nodes (41): Collection, IGraphElementCollection, Unity.VisualScripting, IKeyedCollection, INotifyCollectionChanged, IUnitPortCollection, IUnitPortCollection, Unity.VisualScripting (+33 more) +Nodes (37): CancelEventArgs, EventArgs, FunctionArgs, Unity.VisualScripting.Dependencies.NCalc, ICollection, IConnectionCollection, Unity.VisualScripting, IKeyedCollection (+29 more) -### Community 118 - "Community 118" -Cohesion: 0.04 -Nodes (75): BitConverter_DoubleToInt64Bits_m4F42741818550F9956B5FBAF88C051F4DE5B0AE6_inline(), ConstantHelper_GetByteWithAllBitsSet_m38E318296F5FB9BAE51C97C1AE058716CFC889D7_inline(), ConstantHelper_GetDoubleWithAllBitsSet_mF43AF77A6C93B7590B35B20458E80F2BC66AD5F2_inline(), ConstantHelper_GetInt16WithAllBitsSet_m70C5F99E624490970E2D4093FE6E800D1849DDFC_inline(), ConstantHelper_GetInt32WithAllBitsSet_m245101340DDE7277600327D319DF86F1FFEA4FD0_inline(), ConstantHelper_GetInt64WithAllBitsSet_m56A9AB64BA5DDD9ECC99424875824591DEFD5C40_inline(), ConstantHelper_GetSByteWithAllBitsSet_mB6B97526769DCCB7B78CCF446F28AAB0D1B5CAE3_inline(), ConstantHelper_GetSingleWithAllBitsSet_m66FC11C0680F744EB8315278910061C9535818C0_inline() (+67 more) +### Community 112 - "Community 112" +Cohesion: 0.02 +Nodes (54): BuildTestTreeTask, UnityEditor.TestTools.TestRunner.TestRun.Tasks, CleanupConstructDelegatorTask, UnityEditor.TestTools.TestRunner.TestRun.Tasks, CleanUpContext, UnityEditor.TestTools.TestRunner.TestRun.Tasks, ConstructDelegator, UnityEngine.TestTools.NUnitExtensions (+46 more) -### Community 119 - "Community 119" +### Community 113 - "Community 113" +Cohesion: 0.02 +Nodes (36): DebugDisplaySettingsCommon, SettingsPanel, UnityEngine.Rendering.Universal, WidgetFactory, DebugDisplaySettingsLighting, SettingsPanel, Strings, UnityEngine.Rendering.Universal (+28 more) + +### Community 114 - "Community 114" +Cohesion: 0.02 +Nodes (2): ISkill, Logic.Skill + +### Community 115 - "Community 115" Cohesion: 0.02 Nodes (55): BranchListViewItem, Unity.PlasticSCM.Editor.Views.Branches, ChangeCategoryTreeViewItem, Unity.PlasticSCM.Editor.Views.Diff, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer, Unity.PlasticSCM.Editor.Views.IncomingChanges.Gluon, Unity.PlasticSCM.Editor.Views.PendingChanges, ChangelistTreeViewItem (+47 more) -### Community 120 - "Community 120" -Cohesion: 0.03 -Nodes (36): DebugDisplaySettingsCommon, SettingsPanel, UnityEngine.Rendering.Universal, WidgetFactory, DebugDisplaySettingsLighting, SettingsPanel, Strings, UnityEngine.Rendering.Universal (+28 more) +### Community 116 - "Community 116" +Cohesion: 0.04 +Nodes (14): CrashSightAgent, byref(), CrashSightStackTrace, il2cpp_class_from_il2cpp_type(), il2cpp_class_get_declaring_type(), il2cpp_class_get_name(), il2cpp_class_get_namespace(), il2cpp_current_thread_walk_frame_stack() (+6 more) -### Community 121 - "Community 121" +### Community 117 - "Community 117" +Cohesion: 0.04 +Nodes (26): Divide, GenericDivide, Unity.VisualScripting, GenericMultiply, Unity.VisualScripting, Multiply, PixelBlends, UnityEditor.U2D.Aseprite (+18 more) + +### Community 118 - "Community 118" Cohesion: 0.04 Nodes (15): BitAnd(), BitArrayUtilities, BitNot(), BitOr(), IBitArray, UnityEngine.Rendering, BitArrayTests, UnityEngine.Rendering.Tests (+7 more) -### Community 122 - "Community 122" +### Community 119 - "Community 119" +Cohesion: 0.03 +Nodes (11): AchievementConditionBase, AroundBuildingsConditionCondition, AroundCityGridsConditionCondition, AroundEnemyUnitsConditionCondition, AroundSelfUnitsConditionCondition, AroundWondersConditionCondition, BuildWonderConditionCondition, Logic.Achievement (+3 more) + +### Community 120 - "Community 120" Cohesion: 0.03 Nodes (46): ITestInterfaceWithContextDerivation, MyContextObjectClass, TestITestInterfaceWithContextDerivationImplementation, UnityEditor.Build.Pipeline.Tests, IEditorBuildCallbacks, ClusterOutput, IClusterOutput, UnityEditor.Build.Pipeline.Tasks (+38 more) -### Community 123 - "Community 123" +### Community 121 - "Community 121" Cohesion: 0.04 -Nodes (43): Add(), AddNoResize(), AddRange(), AddRangeNoResize(), CompareTo(), Equals(), FixedList128BytesDebugView, FixedList128BytesExtensions (+35 more) +Nodes (35): U3CU3Ec_U3CProcessVFXCameraCommandU3Eb__134_0_mF9ECF2E0BC79FC8FC645C1AE2C5B56A9613F75C7(), Action_1_Invoke_mD56188C7D70AD8DDC18C6875E7D3A9C8DCDE5935_inline(), VFXEventAttribute_CreateEventAttributeWrapper_m8875BE7EF5B016C001E79C5CC228969A98EA846A(), VFXEventAttribute__ctor_m08E26E4F79DA1062FC43501FDFE00B9EF3ED3AE1(), VFXEventAttribute_Dispose_m172293D888316328F19F4C7E03D50CD178E0EB36(), VFXEventAttribute_Finalize_m7922B5B3EF84DB5BE447C5A6F4F6B5F00B3E4AA4(), VFXEventAttribute_Internal_Create_m2ABF5098E27A4F13603C974ECE4819F6257FA157(), VFXEventAttribute_Internal_Destroy_m2D0838414E77C04FBD44CEB8B7F825C0C4EBC30E() (+27 more) -### Community 124 - "Community 124" -Cohesion: 0.03 -Nodes (19): ICollection, IConnectionCollection, Unity.VisualScripting, IKeyedCollection, Unity.VisualScripting, IMergedCollection, Unity.VisualScripting, ISet (+11 more) +### Community 122 - "Community 122" +Cohesion: 0.04 +Nodes (18): AllFadeOutComicActionLogic, AllSlideInUpComicActionLogic, AllSlideOutUpComicActionLogic, ComicAction, ComicActionLogic, ComicActionLogicFactory, FadeInComicActionLogic, FadeOutComicActionLogic (+10 more) -### Community 125 - "Community 125" -Cohesion: 0.06 -Nodes (15): Divide, GenericDivide, Unity.VisualScripting, PixelBlends, UnityEditor.U2D.Aseprite, ScalarDivide, Unity.VisualScripting, TextureTasks (+7 more) - -### Community 126 - "Community 126" +### Community 123 - "Community 123" Cohesion: 0.03 Nodes (3): ILobby, LobbyBase, TH1_Logic.Net -### Community 127 - "Community 127" +### Community 124 - "Community 124" Cohesion: 0.08 Nodes (18): BurstString, BurstStringInternal, EncodeToRaw(), BurstString, BurstStringInternal, GetBlock(), GetExponent(), GetLength() (+10 more) -### Community 128 - "Community 128" +### Community 125 - "Community 125" Cohesion: 0.07 Nodes (46): gettimeofday(), _ibound_(), ikcp_ack_get(), ikcp_ack_push(), ikcp_canlog(), ikcp_check(), ikcp_create(), ikcp_decode16u() (+38 more) -### Community 129 - "Community 129" +### Community 126 - "Community 126" Cohesion: 0.04 Nodes (33): AdditionHandler, Unity.VisualScripting, AndHandler, Unity.VisualScripting, BinaryOperatorHandler, DivisionHandler, Unity.VisualScripting, EqualityHandler (+25 more) -### Community 130 - "Community 130" +### Community 127 - "Community 127" +Cohesion: 0.04 +Nodes (23): IGraphElementCollection, Unity.VisualScripting, IKeyedCollection, INotifyCollectionChanged, IUnitPortCollection, IUnitPortCollection, Unity.VisualScripting, KeyedCollection (+15 more) + +### Community 128 - "Community 128" +Cohesion: 0.04 +Nodes (31): GetApplicationVariable, Unity.VisualScripting, GetGraphVariable, Unity.VisualScripting, GetSavedVariable, Unity.VisualScripting, GetSceneVariable, Unity.VisualScripting (+23 more) + +### Community 129 - "Community 129" Cohesion: 0.04 Nodes (15): FlowDragAndDropUtility, Unity.VisualScripting, FlowStateTransitionWidget, Unity.VisualScripting, ICanvas, Unity.VisualScripting, IDragAndDropHandler, IGraphContextExtension (+7 more) -### Community 131 - "Community 131" +### Community 130 - "Community 130" Cohesion: 0.04 Nodes (31): BaseChunk, CellExtra, UnityEditor.U2D.Aseprite, ColorProfileChunk, UnityEditor.U2D.Aseprite, ExternalFilesChunk, UnityEditor.U2D.Aseprite, IPaletteProvider (+23 more) -### Community 132 - "Community 132" +### Community 131 - "Community 131" Cohesion: 0.05 Nodes (17): Column, IColumnUpdate, ILayerImportColumnField, UICellImportElement, UILayerImportColumn, UnityEditor.U2D.PSD, IsHovered(), UICellLabelElement (+9 more) +### Community 132 - "Community 132" +Cohesion: 0.05 +Nodes (23): BundledAllAssetsProvider, YooAsset, BundledAssetProvider, YooAsset, BundledRawFileProvider, YooAsset, BundledSceneProvider, YooAsset (+15 more) + ### Community 133 - "Community 133" +Cohesion: 0.06 +Nodes (3): ViMath2D, ViMath3D, ViMathDefine + +### Community 134 - "Community 134" +Cohesion: 0.05 +Nodes (19): AdvancedEconomyEnhanceCultureCard, AdvancedEienteiCultureCard, AdvancedHeroEnhanceCultureCard, AdvancedMilitaryEnhanceCultureCard, AdvancedMoriyaCultureCard, AdvancedPalaceOfEarthCultureCard, AdvancedScarletMansionCultureCard, CultureCardBase (+11 more) + +### Community 135 - "Community 135" Cohesion: 0.05 Nodes (32): BoxTool, Styles, UnityEditor.Tilemaps, EraseTool, Styles, UnityEditor.Tilemaps, FillTool, Styles (+24 more) -### Community 134 - "Community 134" +### Community 136 - "Community 136" Cohesion: 0.04 Nodes (24): DefineCollection, Item, UnityEditor.ShaderGraph, IConditional, IncludeDescriptor, UnityEditor.ShaderGraph, Item, KernelCollection (+16 more) -### Community 135 - "Community 135" -Cohesion: 0.08 -Nodes (5): IDrawer, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, PathEditor, UnityEditor.U2D.Common.Path - -### Community 136 - "Community 136" +### Community 137 - "Community 137" Cohesion: 0.11 Nodes (13): TextureGeneration, UnityEditor.U2D.Aseprite, ITextureSettings, TextureAlphaSettings, TextureCubemapSettings, TextureGeneratorHelper, TextureMipmapSettings, TextureNormalSettings (+5 more) -### Community 137 - "Community 137" +### Community 138 - "Community 138" Cohesion: 0.08 Nodes (19): DecodeContext, ImageDecoderPdn, MaskDecodeContext, PaintDotNet.Data.PhotoshopFileType, ApplyPDNMask(), DecodeMaskAlphaRow(), DecodeMaskAlphaRow32(), Execute() (+11 more) -### Community 138 - "Community 138" +### Community 139 - "Community 139" Cohesion: 0.06 Nodes (13): Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(), Action_3_Invoke_mB1AE88F5C5FE161C85EA4A58D5CC535721E01B21_inline(), Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(), AnalyticsSessionInfo_CallIdentityTokenChanged_m1AD21A1840BCB9CB222455F609DBBF7B7B380911(), AnalyticsSessionInfo_CallSessionStateChanged_m6C3C7DD13064E37D7C3AE9411355BCEF77C4664B(), IdentityTokenChanged_Invoke_m22D3DA825F0D6E701D050EFA3D35E84DFAC7F8D9_inline(), IdentityTokenChanged_Invoke_m22D3DA825F0D6E701D050EFA3D35E84DFAC7F8D9_OpenInst(), RemoteConfigSettings_RemoteConfigSettingsUpdated_mA71E7C6CDAF5D349BF0B4880A4D54DF2365EB948() (+5 more) -### Community 139 - "Community 139" -Cohesion: 0.08 -Nodes (20): IBeginDragHandler, ICancelHandler, IDeselectHandler, IDragHandler, IDropHandler, IEndDragHandler, IEventSystemHandler, IInitializePotentialDragHandler (+12 more) - ### Community 140 - "Community 140" -Cohesion: 0.05 -Nodes (3): Arm, Neon, Unity.Burst.Intrinsics +Cohesion: 0.08 +Nodes (8): AnalyticConstant, AnalyticsJsonStorage, AnimationAnalytics, IAnalyticsStorage, IAnimationAnalyticsModel, SkinningModuleAnalyticsModel, UnityAnalyticsStorage, UnityEditor.U2D.Animation ### Community 141 - "Community 141" Cohesion: 0.08 -Nodes (3): Fma, Unity.Burst.Intrinsics, X86 +Nodes (20): IBeginDragHandler, ICancelHandler, IDeselectHandler, IDragHandler, IDropHandler, IEndDragHandler, IEventSystemHandler, IInitializePotentialDragHandler (+12 more) ### Community 142 - "Community 142" Cohesion: 0.05 -Nodes (0): +Nodes (3): Arm, Neon, Unity.Burst.Intrinsics ### Community 143 - "Community 143" +Cohesion: 0.08 +Nodes (3): Fma, Unity.Burst.Intrinsics, X86 + +### Community 144 - "Community 144" +Cohesion: 0.05 +Nodes (0): + +### Community 145 - "Community 145" +Cohesion: 0.07 +Nodes (12): HasCityCountTaskLogic, HasCoinCountTaskLogic, HasExploreCountTaskLogic, HasLevelCityCountTaskLogic, HasUnitCountTaskLogic, OtherDiePlayerTaskLogic, PlayerTaskInfo, PlayerTaskLogicBase (+4 more) + +### Community 146 - "Community 146" Cohesion: 0.06 Nodes (9): ISecondaryTextureDataProvider, ISpriteBoneDataProvider, ISpriteEditorDataProvider, ISpriteMeshDataProvider, ISpriteNameFileIdDataProvider, ISpriteOutlineDataProvider, ISpritePhysicsOutlineDataProvider, ITextureDataProvider (+1 more) -### Community 144 - "Community 144" +### Community 147 - "Community 147" +Cohesion: 0.06 +Nodes (18): BloomConverter, ConvertToTarget(), UnityEditor.Rendering.Universal, ChromaticAberrationConverter, UnityEditor.Rendering.Universal, ColorGradingConverter, UnityEditor.Rendering.Universal, DepthOfFieldConverter (+10 more) + +### Community 148 - "Community 148" Cohesion: 0.06 Nodes (23): BuildSettingsMessage, UnityEditor.TestTools.TestRunner.UnityTestProtocol, EditorVersionMessage, UnityEditor.TestTools.TestRunner.UnityTestProtocol, Message, MessageForRetryRepeat, PlayerSettingsMessage, UnityEditor.TestTools.TestRunner.UnityTestProtocol (+15 more) -### Community 145 - "Community 145" +### Community 149 - "Community 149" Cohesion: 0.06 Nodes (23): Acknowledgement_AqnParser, Unity.VisualScripting, Acknowledgement_DeepCopy, Unity.VisualScripting, Acknowledgement_DotNetZip, Unity.VisualScripting, Acknowledgement_FatcowIcons, Unity.VisualScripting (+15 more) -### Community 146 - "Community 146" +### Community 150 - "Community 150" +Cohesion: 0.06 +Nodes (14): GenericScriptablePath, GenericScriptablePathInspector, IDrawer, HandlesSystem, IHandles, UnityEditor.U2D.Sprites, ScriptableData, Contents (+6 more) + +### Community 151 - "Community 151" Cohesion: 0.09 Nodes (10): ConditionalDrawerInternal, ConditionalDrawerWithAdditionalPropertiesInternal, CoreEditorDrawer, CoreEditorDrawersExtensions, FoldoutGroupDrawerInternal, GroupDrawerInternal, IDrawer, SelectDrawerInternal (+2 more) -### Community 147 - "Community 147" +### Community 152 - "Community 152" +Cohesion: 0.1 +Nodes (3): IUnitDescriptor, UnitDescriptor, Unity.VisualScripting + +### Community 153 - "Community 153" Cohesion: 0.06 Nodes (2): ISpriteMeshView, UnityEditor.U2D.Animation -### Community 148 - "Community 148" -Cohesion: 0.09 -Nodes (15): CancelEventArgs, EventArgs, FunctionArgs, Unity.VisualScripting.Dependencies.NCalc, ListChangedEventArgs, ObservableList, UnityEngine.Rendering, ParameterArgs (+7 more) - -### Community 149 - "Community 149" +### Community 154 - "Community 154" Cohesion: 0.07 Nodes (7): BaseTextureImportPlatformSettings, TextureImporterPlatformUtilities, UnityEditor.U2D.Aseprite, ITexturePlatformSettingsDataProvider, TexturePlatformSettings, UnityEditor.U2D.Aseprite.Common, UnityEditor.U2D.Common -### Community 150 - "Community 150" +### Community 155 - "Community 155" Cohesion: 0.11 Nodes (18): AsmTokenKindProvider, AssertDataDirectiveLength(), BurstDisassembler, Contains(), NextChar(), ParseComment(), ParseDirective(), ParseInstructionOrIdentifierOrRegister() (+10 more) -### Community 151 - "Community 151" +### Community 156 - "Community 156" Cohesion: 0.07 Nodes (28): AddChildTypeAnalyzerRule, AsyncMethodReturnTypeAnalyzerRule, AsyncMethodWithCancelTokenParamAnalyzerRule, AwaitExpressionCancelTokenParamAnalyzerRule, CheckETCancellTokenAfterAwaitAnalyzerRule, ClientClassInServerAnalyzerRule, DisableAccessEntityChildAnalyzerRule, DisableNewAnalyzerRule (+20 more) -### Community 152 - "Community 152" +### Community 157 - "Community 157" Cohesion: 0.07 Nodes (2): ISkeletonView, UnityEditor.U2D.Animation -### Community 153 - "Community 153" +### Community 158 - "Community 158" +Cohesion: 0.14 +Nodes (2): PathEditor, UnityEditor.U2D.Common.Path + +### Community 159 - "Community 159" +Cohesion: 0.07 +Nodes (7): IEditablePath, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, ISelectable, ItemToItemGui, TimelineItemGUI, UnityEditor.Timeline + +### Community 160 - "Community 160" Cohesion: 0.1 Nodes (10): AIConfig, AIConfigCategory, ExcelConfig, ExcelConfigBase, ExcelConfig, GeoDesc, GeoDescCategory, ExcelConfig (+2 more) -### Community 154 - "Community 154" -Cohesion: 0.08 -Nodes (7): IEditablePath, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, ISelectable, ItemToItemGui, TimelineItemGUI, UnityEditor.Timeline - -### Community 155 - "Community 155" -Cohesion: 0.08 -Nodes (19): FuzzyGroupOption, Unity.VisualScripting, FuzzyOption, FavoritesRoot, OnLostFocus(), Root, SearchRoot, Styles (+11 more) - -### Community 156 - "Community 156" +### Community 161 - "Community 161" Cohesion: 0.08 Nodes (10): ConnectionCollection, Unity.VisualScripting, ConnectionCollectionBase, GraphConnectionCollection, Unity.VisualScripting, GraphElementCollection, Unity.VisualScripting, GuidCollection (+2 more) -### Community 157 - "Community 157" -Cohesion: 0.08 -Nodes (14): BuildCallbacks, UnityEditor.Build.Pipeline, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, PostDependencyCallback, UnityEditor.Build.Pipeline.Tasks (+6 more) - -### Community 158 - "Community 158" -Cohesion: 0.17 -Nodes (22): Add-Hit(), Add-LookupValue(), Convert-ObfuscatedText(), ConvertFrom-JsonStringLiteral(), ConvertTo-ObjectArray(), Format-Candidate(), Format-Replacement(), Get-JsonEntries() (+14 more) - -### Community 159 - "Community 159" -Cohesion: 0.08 -Nodes (2): IGUIWrapper, UnityEditor.U2D.Animation - -### Community 160 - "Community 160" -Cohesion: 0.08 -Nodes (3): Arm, Neon, Unity.Burst.Intrinsics - -### Community 161 - "Community 161" -Cohesion: 0.13 -Nodes (24): DFA, DFA14, DFA7, Unity.VisualScripting.Dependencies.NCalc, additiveExpression_return, arguments_return, bitwiseAndExpression_return, bitwiseOrExpression_return (+16 more) - ### Community 162 - "Community 162" -Cohesion: 0.08 -Nodes (7): Matrix2ShaderProperty, UnityEditor.ShaderGraph, Matrix3ShaderProperty, UnityEditor.ShaderGraph, Matrix4ShaderProperty, UnityEditor.ShaderGraph, MatrixShaderProperty +Cohesion: 0.07 +Nodes (12): IAnalyticsIdentifiable, IGraph, Unity.VisualScripting, IGraphElement, Unity.VisualScripting, IGraphItem, IIdentifiable, INotifiedCollectionItem (+4 more) ### Community 163 - "Community 163" -Cohesion: 0.08 -Nodes (0): +Cohesion: 0.07 +Nodes (20): IBranchUnit, Unity.VisualScripting, IEventUnit, IGameObjectEventUnit, Unity.VisualScripting, IGraphNesterElement, INesterState, Unity.VisualScripting (+12 more) ### Community 164 - "Community 164" Cohesion: 0.08 -Nodes (0): +Nodes (14): BuildCallbacks, UnityEditor.Build.Pipeline, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, PostDependencyCallback, UnityEditor.Build.Pipeline.Tasks (+6 more) ### Community 165 - "Community 165" -Cohesion: 0.08 -Nodes (13): GenericVertexSelector, UnityEditor.U2D.Animation, ICircleSelector, UnityEditor.U2D.Animation, IRectSelector, UnityEditor.U2D.Animation, ISelector, RectSelector (+5 more) +Cohesion: 0.17 +Nodes (22): Add-Hit(), Add-LookupValue(), Convert-ObfuscatedText(), ConvertFrom-JsonStringLiteral(), ConvertTo-ObjectArray(), Format-Candidate(), Format-Replacement(), Get-JsonEntries() (+14 more) ### Community 166 - "Community 166" Cohesion: 0.08 -Nodes (3): ITimelinePlaybackControls, TimelinePlaybackControls, UnityEditor.Timeline +Nodes (2): IGUIWrapper, UnityEditor.U2D.Animation ### Community 167 - "Community 167" +Cohesion: 0.08 +Nodes (3): Arm, Neon, Unity.Burst.Intrinsics + +### Community 168 - "Community 168" +Cohesion: 0.09 +Nodes (11): BurstCompiler, ManagedResolverFunction(), BurstRuntime, BurstRuntimeInternal, LoadAdditionalLibrary(), LoadAdditionalLibraryInternal(), PreserveAttribute, Unity.Burst (+3 more) + +### Community 169 - "Community 169" +Cohesion: 0.08 +Nodes (19): ChangesetsTab, Colors, Dialog, DiffPanel, DirectoryConflictResolution, DirectoryConflicts, HexColors, HistoryTab (+11 more) + +### Community 170 - "Community 170" +Cohesion: 0.1 +Nodes (12): Button, IContainer, IValueField, DebugUI, Panel, UnityEngine.Rendering, ProgressBarValue, UnityEngine.Rendering (+4 more) + +### Community 171 - "Community 171" +Cohesion: 0.08 +Nodes (7): Matrix2ShaderProperty, UnityEditor.ShaderGraph, Matrix3ShaderProperty, UnityEditor.ShaderGraph, Matrix4ShaderProperty, UnityEditor.ShaderGraph, MatrixShaderProperty + +### Community 172 - "Community 172" +Cohesion: 0.08 +Nodes (0): + +### Community 173 - "Community 173" +Cohesion: 0.08 +Nodes (0): + +### Community 174 - "Community 174" +Cohesion: 0.08 +Nodes (13): GenericVertexSelector, UnityEditor.U2D.Animation, ICircleSelector, UnityEditor.U2D.Animation, IRectSelector, UnityEditor.U2D.Animation, ISelector, RectSelector (+5 more) + +### Community 175 - "Community 175" +Cohesion: 0.08 +Nodes (3): ITimelinePlaybackControls, TimelinePlaybackControls, UnityEditor.Timeline + +### Community 176 - "Community 176" Cohesion: 0.09 Nodes (10): BoneSelection, UnityEditor.U2D.Animation, IBoneSelection, IndexedSelection, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path, SerializableSelection (+2 more) -### Community 168 - "Community 168" -Cohesion: 0.11 -Nodes (4): ColorProviderFromCode, ColorProviderFromStyleSheet, IColorProvider, UnityEditor.ShaderGraph.Drawing.Colors - -### Community 169 - "Community 169" +### Community 177 - "Community 177" Cohesion: 0.09 Nodes (7): TimelineActiveMode, UnityEditor.Timeline, TimelineDisabledMode, UnityEditor.Timeline, TimelineInactiveMode, UnityEditor.Timeline, TimelineMode -### Community 170 - "Community 170" +### Community 178 - "Community 178" Cohesion: 0.09 Nodes (15): EventUnitWidget, Unity.VisualScripting, GraphInputWidget, Unity.VisualScripting, GraphOutputWidget, Unity.VisualScripting, MissingTypeUnitWidget, Unity.VisualScripting (+7 more) -### Community 171 - "Community 171" +### Community 179 - "Community 179" Cohesion: 0.17 Nodes (2): YooAsset, YooAssets -### Community 172 - "Community 172" +### Community 180 - "Community 180" Cohesion: 0.23 Nodes (4): ContinuationQueue, Cysharp.Threading.Tasks.Internal, LastTimeUpdate(), TimeUpdate() -### Community 173 - "Community 173" +### Community 181 - "Community 181" Cohesion: 0.23 Nodes (4): Cysharp.Threading.Tasks.Internal, LastTimeUpdate(), PlayerLoopRunner, TimeUpdate() -### Community 174 - "Community 174" -Cohesion: 0.15 -Nodes (19): AsNativeArray(), CheckRead(), CheckReadBounds(), CheckWrite(), Clear(), Copy(), CountBits(), Dispose() (+11 more) - -### Community 175 - "Community 175" -Cohesion: 0.09 -Nodes (11): DecalDrawDBufferSystem, UnityEngine.Rendering.Universal, DecalDrawErrorSystem, UnityEngine.Rendering.Universal, DecalDrawSystem, DecalDrawFowardEmissiveSystem, UnityEngine.Rendering.Universal, DecalDrawGBufferSystem (+3 more) - -### Community 176 - "Community 176" -Cohesion: 0.18 -Nodes (20): ActionConfirmMessage, ActionExcuteMessage, BaseMessage, ChangeCivMessage, ChatMessage, ForceUpdateMessage, GameStartMessage, HeartbeatMessage (+12 more) - -### Community 177 - "Community 177" -Cohesion: 0.12 -Nodes (11): Action_1_Invoke_m1AAB217B001E387B4424C54CFB8D5278CFBE4C65_inline(), Action_2_Invoke_mD689727D0B27507C2BBDB452C43EC087E02CE401_inline(), Func_2_Invoke_m67075A0C8A50189A2501B63347177A0748FFE22C_inline(), IntPtr_ToPointer_m1A0612EED3A1C8B8850BE2943CFC42523064B4F6_inline(), NativeInputSystem__cctor_mADBD6616441651B2AFE2AD8AF64D63DF0BA66693(), NativeInputSystem_NotifyBeforeUpdate_m39AE2F1A42BD47200A263AD0EF9EDA5EF4C0042A(), NativeInputSystem_NotifyDeviceDiscovered_m861CCAFB4DD314DB3DC58FBD0398800CF9272C03(), NativeInputSystem_NotifyUpdate_m482599CC17084B0383809F97671530613EA39AD0() (+3 more) - -### Community 178 - "Community 178" -Cohesion: 0.13 -Nodes (11): BitPackFormatterAttribute, BrotliFormatterAttribute, BrotliStringFormatterAttribute, InternStringFormatterAttribute, MemoryPack, MemoryPoolFormatterAttribute, OrdinalIgnoreCaseStringDictionaryFormatter, ReadOnlyMemoryPoolFormatterAttribute (+3 more) - -### Community 179 - "Community 179" -Cohesion: 0.1 -Nodes (9): ClipAction, UnityEditor.Timeline.Actions, IAction, MarkerAction, UnityEditor.Timeline.Actions, TimelineAction, UnityEditor.Timeline.Actions, TrackAction (+1 more) - -### Community 180 - "Community 180" -Cohesion: 0.1 -Nodes (11): GenericModulo, Unity.VisualScripting, Modulo, ScalarModulo, Unity.VisualScripting, Unity.VisualScripting, Vector2Modulo, Unity.VisualScripting (+3 more) - -### Community 181 - "Community 181" -Cohesion: 0.15 -Nodes (8): DictionaryPool, Dispose(), GenericPool, HashSetPool, ListPool, ObjectPool, UnityEngine.Rendering, UnsafeGenericPool - ### Community 182 - "Community 182" -Cohesion: 0.11 -Nodes (14): DecalBlockMasks, DecalColorMasks, DecalData, DecalDefines, DecalIncludes, DecalKeywords, DecalPasses, DecalPragmas (+6 more) +Cohesion: 0.15 +Nodes (3): BurstMenu, Unity.Burst.Editor, SetChecked() ### Community 183 - "Community 183" Cohesion: 0.15 -Nodes (12): ColorControl, ColorRGBAControl, FloatControl, IControl, NormalControl, PositionControl, TangentControl, UnityEditor.ShaderGraph (+4 more) +Nodes (19): AsNativeArray(), CheckRead(), CheckReadBounds(), CheckWrite(), Clear(), Copy(), CountBits(), Dispose() (+11 more) ### Community 184 - "Community 184" -Cohesion: 0.1 -Nodes (13): Description, Unity.VisualScripting, IDescription, IGraphDescription, Unity.VisualScripting, IGraphElementDescription, Unity.VisualScripting, IMachineDescription (+5 more) +Cohesion: 0.11 +Nodes (9): GenericScriptablePath, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, ScriptablePath, ShadowCaster2DShadowCasterShapeTool, ShadowCasterPath, Styles, UnityEditor.Rendering.Universal (+1 more) ### Community 185 - "Community 185" -Cohesion: 0.1 -Nodes (18): GLString, -border, -dealloc, -deleteTexture, -drawAtPoint, -drawWithBounds, -flags, -font (+10 more) +Cohesion: 0.09 +Nodes (11): DecalDrawDBufferSystem, UnityEngine.Rendering.Universal, DecalDrawErrorSystem, UnityEngine.Rendering.Universal, DecalDrawSystem, DecalDrawFowardEmissiveSystem, UnityEngine.Rendering.Universal, DecalDrawGBufferSystem (+3 more) ### Community 186 - "Community 186" -Cohesion: 0.15 -Nodes (9): AppID(), IsMod(), IsP2PFile(), IsShortcut(), IsSteamApp(), IsValid(), ModID(), Steamworks (+1 more) +Cohesion: 0.11 +Nodes (4): ColorProviderFromCode, ColorProviderFromStyleSheet, IColorProvider, UnityEditor.ShaderGraph.Drawing.Colors ### Community 187 - "Community 187" -Cohesion: 0.11 -Nodes (10): Animancer, AnimatedBool, ProcessAnimation(), Animancer, AnimatedFloat, ProcessAnimation(), Animancer, AnimatedInt (+2 more) +Cohesion: 0.18 +Nodes (20): ActionConfirmMessage, ActionExcuteMessage, BaseMessage, ChangeCivMessage, ChatMessage, ForceUpdateMessage, GameStartMessage, HeartbeatMessage (+12 more) ### Community 188 - "Community 188" Cohesion: 0.12 -Nodes (9): ITestRunSettings, ITestSettings, PlayerLauncherTestRunSettings, UnityEditor.TestTools.TestRunner, RunSettings, UnityEditor.TestTools.TestRunner.CommandLineTest, TestSetting, TestSettings (+1 more) +Nodes (11): Action_1_Invoke_m1AAB217B001E387B4424C54CFB8D5278CFBE4C65_inline(), Action_2_Invoke_mD689727D0B27507C2BBDB452C43EC087E02CE401_inline(), Func_2_Invoke_m67075A0C8A50189A2501B63347177A0748FFE22C_inline(), IntPtr_ToPointer_m1A0612EED3A1C8B8850BE2943CFC42523064B4F6_inline(), NativeInputSystem__cctor_mADBD6616441651B2AFE2AD8AF64D63DF0BA66693(), NativeInputSystem_NotifyBeforeUpdate_m39AE2F1A42BD47200A263AD0EF9EDA5EF4C0042A(), NativeInputSystem_NotifyDeviceDiscovered_m861CCAFB4DD314DB3DC58FBD0398800CF9272C03(), NativeInputSystem_NotifyUpdate_m482599CC17084B0383809F97671530613EA39AD0() (+3 more) ### Community 189 - "Community 189" -Cohesion: 0.11 -Nodes (11): InvalidSignatureException, UnityEngine.TestTools.TestRunner, OutOfOrderExpectedLogMessageException, UnityEngine.TestTools.TestRunner, ResultStateException, UnexpectedLogMessageException, UnityEngine.TestTools.TestRunner, UnhandledLogMessageException (+3 more) +Cohesion: 0.13 +Nodes (11): BitPackFormatterAttribute, BrotliFormatterAttribute, BrotliStringFormatterAttribute, InternStringFormatterAttribute, MemoryPack, MemoryPoolFormatterAttribute, OrdinalIgnoreCaseStringDictionaryFormatter, ReadOnlyMemoryPoolFormatterAttribute (+3 more) ### Community 190 - "Community 190" -Cohesion: 0.11 -Nodes (13): ByteInspector, Unity.VisualScripting, DiscreteNumberInspector, IntInspector, Unity.VisualScripting, SbyteInspector, Unity.VisualScripting, ShortInspector (+5 more) +Cohesion: 0.1 +Nodes (9): ClipAction, UnityEditor.Timeline.Actions, IAction, MarkerAction, UnityEditor.Timeline.Actions, TimelineAction, UnityEditor.Timeline.Actions, TrackAction (+1 more) ### Community 191 - "Community 191" -Cohesion: 0.11 -Nodes (2): IWidget, Unity.VisualScripting +Cohesion: 0.18 +Nodes (20): additiveExpression_return, arguments_return, bitwiseAndExpression_return, bitwiseOrExpression_return, bitwiseXOrExpression_return, booleanAndExpression_return, conditionalExpression_return, equalityExpression_return (+12 more) ### Community 192 - "Community 192" -Cohesion: 0.16 -Nodes (10): IGraphAssignable, IGraphElement, IHaveNodeReference, IInvokable, IReflectedWrapper, ISubParametersContainer, ISubTasksContainer, ITaskAssignable (+2 more) +Cohesion: 0.1 +Nodes (11): GenericModulo, Unity.VisualScripting, Modulo, ScalarModulo, Unity.VisualScripting, Unity.VisualScripting, Vector2Modulo, Unity.VisualScripting (+3 more) ### Community 193 - "Community 193" -Cohesion: 0.11 -Nodes (3): CommonLogic, Logic.Common, ICommonLogic +Cohesion: 0.1 +Nodes (4): CarrySkill, Logic.Skill, JunkerOfficerSkill, Logic.Skill ### Community 194 - "Community 194" -Cohesion: 0.12 -Nodes (8): IUniTaskAsyncDisposable, Cysharp.Threading.Tasks, IConnectableUniTaskAsyncEnumerable, IUniTaskAsyncDisposable, IUniTaskAsyncEnumerable, IUniTaskAsyncEnumerator, IUniTaskOrderedAsyncEnumerable, UniTaskAsyncEnumerableExtensions +Cohesion: 0.15 +Nodes (8): DictionaryPool, Dispose(), GenericPool, HashSetPool, ListPool, ObjectPool, UnityEngine.Rendering, UnsafeGenericPool ### Community 195 - "Community 195" -Cohesion: 0.19 -Nodes (7): CollectEmptyNodePositionVisitor, CollectPackNodePositionVisitor, IImagePackNodeVisitor, ImagePackNode, PSDImporterCustomPacker, UnityEditor.U2D.Aseprite.Common, UnityEditor.U2D.Common +Cohesion: 0.15 +Nodes (12): ColorControl, ColorRGBAControl, FloatControl, IControl, NormalControl, PositionControl, TangentControl, UnityEditor.ShaderGraph (+4 more) ### Community 196 - "Community 196" -Cohesion: 0.11 -Nodes (3): Contents, IAngleRangeView, UnityEditor.U2D +Cohesion: 0.1 +Nodes (13): Description, Unity.VisualScripting, IDescription, IGraphDescription, Unity.VisualScripting, IGraphElementDescription, Unity.VisualScripting, IMachineDescription (+5 more) ### Community 197 - "Community 197" -Cohesion: 0.12 -Nodes (3): Bmi1, Unity.Burst.Intrinsics, X86 +Cohesion: 0.1 +Nodes (7): Collection, NonNullableCollection, Unity.VisualScripting, UnitPortDefinitionCollection, Unity.VisualScripting, Unity.VisualScripting, WidgetList ### Community 198 - "Community 198" -Cohesion: 0.11 -Nodes (17): ChangesetsTab, Colors, Dialog, DiffPanel, DirectoryConflictResolution, DirectoryConflicts, HexColors, HistoryTab (+9 more) +Cohesion: 0.1 +Nodes (18): GLString, -border, -dealloc, -deleteTexture, -drawAtPoint, -drawWithBounds, -flags, -font (+10 more) ### Community 199 - "Community 199" -Cohesion: 0.11 -Nodes (2): UIBehaviour, UnityEngine.EventSystems +Cohesion: 0.15 +Nodes (9): AppID(), IsMod(), IsP2PFile(), IsShortcut(), IsSteamApp(), IsValid(), ModID(), Steamworks (+1 more) ### Community 200 - "Community 200" Cohesion: 0.11 -Nodes (9): IPluginLinked, IPluginModule, Unity.VisualScripting, PluginAcknowledgement, Unity.VisualScripting, PluginChangelog, Unity.VisualScripting, PluginDeprecatedSavedVersionLoader (+1 more) +Nodes (10): Animancer, AnimatedBool, ProcessAnimation(), Animancer, AnimatedFloat, ProcessAnimation(), Animancer, AnimatedInt (+2 more) ### Community 201 - "Community 201" -Cohesion: 0.14 -Nodes (7): GraphNest, Unity.VisualScripting, IGraphNest, INesterStateTransition, NesterStateTransition, Unity.VisualScripting, StateTransition +Cohesion: 0.12 +Nodes (9): ITestRunSettings, ITestSettings, PlayerLauncherTestRunSettings, UnityEditor.TestTools.TestRunner, RunSettings, UnityEditor.TestTools.TestRunner.CommandLineTest, TestSetting, TestSettings (+1 more) ### Community 202 - "Community 202" -Cohesion: 0.15 -Nodes (6): Animancer, AssertIndex(), IndexOf(), Insert(), Remove(), RemoveAt() +Cohesion: 0.11 +Nodes (11): InvalidSignatureException, UnityEngine.TestTools.TestRunner, OutOfOrderExpectedLogMessageException, UnityEngine.TestTools.TestRunner, ResultStateException, UnexpectedLogMessageException, UnityEngine.TestTools.TestRunner, UnhandledLogMessageException (+3 more) ### Community 203 - "Community 203" -Cohesion: 0.12 -Nodes (2): ICommonLogic, Logic.Common +Cohesion: 0.11 +Nodes (13): ByteInspector, Unity.VisualScripting, DiscreteNumberInspector, IntInspector, Unity.VisualScripting, SbyteInspector, Unity.VisualScripting, ShortInspector (+5 more) ### Community 204 - "Community 204" -Cohesion: 0.16 -Nodes (5): AssetBundleWebRequest, YooAsset, FileGeneralRequest, YooAsset, IWebRequester +Cohesion: 0.11 +Nodes (2): IWidget, Unity.VisualScripting ### Community 205 - "Community 205" -Cohesion: 0.12 -Nodes (5): DisabledUndo, UnityEditor.U2D.Animation, IUndo, UnityEditor.U2D.Animation, UnityEngineUndo +Cohesion: 0.16 +Nodes (10): IGraphAssignable, IGraphElement, IHaveNodeReference, IInvokable, IReflectedWrapper, ISubParametersContainer, ISubTasksContainer, ITaskAssignable (+2 more) ### Community 206 - "Community 206" -Cohesion: 0.15 -Nodes (9): CheckIndexInRange(), CompareTo(), ElementAt(), Equals(), GetHashCode(), GetUnsafePtr(), MoveNext(), ToString() (+1 more) +Cohesion: 0.11 +Nodes (3): CommonLogic, Logic.Common, ICommonLogic ### Community 207 - "Community 207" Cohesion: 0.12 -Nodes (11): IVFXMultiMeshOutput, VFXAbstractParticleURPLitOutput, UnityEditor.VFX.URP, VFXURPLitMeshOutput, NormalBendingProperties, UnityEditor.VFX.URP, VFXURPLitPlanarPrimitiveOutput, CustomUVInputProperties (+3 more) +Nodes (8): IUniTaskAsyncDisposable, Cysharp.Threading.Tasks, IConnectableUniTaskAsyncEnumerable, IUniTaskAsyncDisposable, IUniTaskAsyncEnumerable, IUniTaskAsyncEnumerator, IUniTaskOrderedAsyncEnumerable, UniTaskAsyncEnumerableExtensions ### Community 208 - "Community 208" -Cohesion: 0.12 -Nodes (7): ActiveFields, KeywordDependentCollection, IRequirements, IRequirementsSet, SetRequirements(), ShaderGraphRequirementsPerKeyword, UnityEditor.ShaderGraph.Internal +Cohesion: 0.11 +Nodes (3): Contents, IAngleRangeView, UnityEditor.U2D ### Community 209 - "Community 209" Cohesion: 0.12 -Nodes (13): Description, GraphDescription, Unity.VisualScripting, GraphElementDescription, Unity.VisualScripting, IGraphDescription, IGraphElementDescription, IMachineDescription (+5 more) +Nodes (3): Bmi1, Unity.Burst.Intrinsics, X86 ### Community 210 - "Community 210" -Cohesion: 0.12 -Nodes (7): GetVariableOption, Unity.VisualScripting, IsVariableDefinedOption, Unity.VisualScripting, SetVariableOption, Unity.VisualScripting, UnifiedVariableUnitOption +Cohesion: 0.11 +Nodes (2): UIBehaviour, UnityEngine.EventSystems ### Community 211 - "Community 211" -Cohesion: 0.12 -Nodes (9): Average, ScalarAverage, Unity.VisualScripting, Unity.VisualScripting, Vector2Average, Unity.VisualScripting, Vector3Average, Unity.VisualScripting (+1 more) +Cohesion: 0.11 +Nodes (9): IPluginLinked, IPluginModule, Unity.VisualScripting, PluginAcknowledgement, Unity.VisualScripting, PluginChangelog, Unity.VisualScripting, PluginDeprecatedSavedVersionLoader (+1 more) ### Community 212 - "Community 212" -Cohesion: 0.12 -Nodes (9): PerSecond, ScalarPerSecond, Unity.VisualScripting, Unity.VisualScripting, Vector2PerSecond, Unity.VisualScripting, Vector3PerSecond, Unity.VisualScripting (+1 more) +Cohesion: 0.11 +Nodes (9): Unity.VisualScripting, WaitForEndOfFrameUnit, Unity.VisualScripting, WaitForNextFrameUnit, Unity.VisualScripting, WaitForSecondsUnit, WaitUnit, Unity.VisualScripting (+1 more) ### Community 213 - "Community 213" -Cohesion: 0.15 -Nodes (10): ControllerState, Animancer, Float1ControllerState, ITransition, Animancer, Float2ControllerState, ITransition, Animancer (+2 more) +Cohesion: 0.14 +Nodes (7): GraphNest, Unity.VisualScripting, IGraphNest, INesterStateTransition, NesterStateTransition, Unity.VisualScripting, StateTransition ### Community 214 - "Community 214" Cohesion: 0.15 -Nodes (7): fsBaseConverter, fsConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer, fsDirectConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer +Nodes (6): Animancer, AssertIndex(), IndexOf(), Insert(), Remove(), RemoveAt() ### Community 215 - "Community 215" -Cohesion: 0.15 -Nodes (7): BuiltinBuildPipeline, YooAsset.Editor, IBuildPipeline, RawFileBuildPipeline, YooAsset.Editor, ScriptableBuildPipeline, YooAsset.Editor +Cohesion: 0.12 +Nodes (2): ICommonLogic, Logic.Common ### Community 216 - "Community 216" -Cohesion: 0.12 -Nodes (3): IEditablePathController, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Cohesion: 0.16 +Nodes (5): AssetBundleWebRequest, YooAsset, FileGeneralRequest, YooAsset, IWebRequester ### Community 217 - "Community 217" -Cohesion: 0.13 -Nodes (7): ClickAction, CreatePointAction, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, SliderAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework +Cohesion: 0.12 +Nodes (5): DisabledUndo, UnityEditor.U2D.Animation, IUndo, UnityEditor.U2D.Animation, UnityEngineUndo ### Community 218 - "Community 218" -Cohesion: 0.17 -Nodes (7): IPSDLayerMappingStrategy, IPSDLayerMappingStrategyComparable, LayerMappingStrategy, LayerMappingUseLayerName, LayerMappingUseLayerNameCaseSensitive, LayerMappingUserLayerID, UnityEditor.U2D.PSD +Cohesion: 0.12 +Nodes (3): GLSystem, IGL, UnityEngine.U2D.Sprites ### Community 219 - "Community 219" Cohesion: 0.12 -Nodes (11): AlphaChannelNames, PhotoshopFile, ImageResource, PhotoshopFile, RawImageResource, PhotoshopFile, ResolutionInfo, PhotoshopFile (+3 more) +Nodes (11): IVFXMultiMeshOutput, VFXAbstractParticleURPLitOutput, UnityEditor.VFX.URP, VFXURPLitMeshOutput, NormalBendingProperties, UnityEditor.VFX.URP, VFXURPLitPlanarPrimitiveOutput, CustomUVInputProperties (+3 more) ### Community 220 - "Community 220" Cohesion: 0.12 -Nodes (11): InfoLayers, PhotoshopFile, LayerId, PhotoshopFile, LayerInfo, LayerSectionInfo, PhotoshopFile, LayerUnicodeName (+3 more) +Nodes (7): ActiveFields, KeywordDependentCollection, IRequirements, IRequirementsSet, SetRequirements(), ShaderGraphRequirementsPerKeyword, UnityEditor.ShaderGraph.Internal ### Community 221 - "Community 221" -Cohesion: 0.13 -Nodes (3): ITexture2D, Texture2DWrapper, UnityEditor.U2D.Sprites +Cohesion: 0.12 +Nodes (13): Description, GraphDescription, Unity.VisualScripting, GraphElementDescription, Unity.VisualScripting, IGraphDescription, IGraphElementDescription, IMachineDescription (+5 more) ### Community 222 - "Community 222" -Cohesion: 0.15 -Nodes (6): BurstRuntime, BurstRuntimeInternal, LoadAdditionalLibrary(), LoadAdditionalLibraryInternal(), PreserveAttribute, Unity.Burst +Cohesion: 0.12 +Nodes (7): GetVariableOption, Unity.VisualScripting, IsVariableDefinedOption, Unity.VisualScripting, SetVariableOption, Unity.VisualScripting, UnifiedVariableUnitOption ### Community 223 - "Community 223" Cohesion: 0.12 -Nodes (3): Arm, Neon, Unity.Burst.Intrinsics +Nodes (9): Average, ScalarAverage, Unity.VisualScripting, Unity.VisualScripting, Vector2Average, Unity.VisualScripting, Vector3Average, Unity.VisualScripting (+1 more) ### Community 224 - "Community 224" -Cohesion: 0.16 -Nodes (7): IBuildContext, IContextObject, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, UnityEditor.Build.Pipeline.Interfaces +Cohesion: 0.12 +Nodes (9): PerSecond, ScalarPerSecond, Unity.VisualScripting, Unity.VisualScripting, Vector2PerSecond, Unity.VisualScripting, Vector3PerSecond, Unity.VisualScripting (+1 more) ### Community 225 - "Community 225" -Cohesion: 0.16 -Nodes (4): IExecuter, UnityEditor.TestTools.TestRunner.CommandLineTest, TestStarter, UnityEditor.TestTools.TestRunner.CommandLineTest +Cohesion: 0.15 +Nodes (10): ControllerState, Animancer, Float1ControllerState, ITransition, Animancer, Float2ControllerState, ITransition, Animancer (+2 more) ### Community 226 - "Community 226" -Cohesion: 0.12 -Nodes (2): IReorderableListAdaptor, Unity.VisualScripting.ReorderableList +Cohesion: 0.15 +Nodes (7): fsBaseConverter, fsConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer, fsDirectConverter, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer ### Community 227 - "Community 227" -Cohesion: 0.12 -Nodes (11): ContinuousNumberInspector, DecimalInspector, Unity.VisualScripting, DoubleInspector, Unity.VisualScripting, FloatInspector, Unity.VisualScripting, LongInspector (+3 more) +Cohesion: 0.15 +Nodes (7): BuiltinBuildPipeline, YooAsset.Editor, IBuildPipeline, RawFileBuildPipeline, YooAsset.Editor, ScriptableBuildPipeline, YooAsset.Editor ### Community 228 - "Community 228" Cohesion: 0.12 -Nodes (5): IGraphElementWidget, Unity.VisualScripting, IUnitPortWidget, Unity.VisualScripting, IWidget +Nodes (3): IEditablePathController, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 229 - "Community 229" -Cohesion: 0.12 -Nodes (11): DecrementHandler, Unity.VisualScripting, IncrementHandler, Unity.VisualScripting, LogicalNegationHandler, Unity.VisualScripting, NumericNegationHandler, Unity.VisualScripting (+3 more) +Cohesion: 0.13 +Nodes (7): ClickAction, CreatePointAction, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, SliderAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework ### Community 230 - "Community 230" -Cohesion: 0.12 -Nodes (11): GlobalEventUnit, OnApplicationFocus, Unity.VisualScripting, OnApplicationLostFocus, Unity.VisualScripting, OnApplicationPause, Unity.VisualScripting, OnApplicationQuit (+3 more) +Cohesion: 0.17 +Nodes (7): IPSDLayerMappingStrategy, IPSDLayerMappingStrategyComparable, LayerMappingStrategy, LayerMappingUseLayerName, LayerMappingUseLayerNameCaseSensitive, LayerMappingUserLayerID, UnityEditor.U2D.PSD ### Community 231 - "Community 231" -Cohesion: 0.13 -Nodes (12): ControlInputDefinition, Unity.VisualScripting, ControlOutputDefinition, Unity.VisualScripting, ControlPortDefinition, IUnitInputPortDefinition, IUnitOutputPortDefinition, Unity.VisualScripting (+4 more) +Cohesion: 0.12 +Nodes (11): AlphaChannelNames, PhotoshopFile, ImageResource, PhotoshopFile, RawImageResource, PhotoshopFile, ResolutionInfo, PhotoshopFile (+3 more) ### Community 232 - "Community 232" Cohesion: 0.12 -Nodes (11): IUnitControlPort, Unity.VisualScripting, IUnitInputPort, Unity.VisualScripting, IUnitInvalidPort, Unity.VisualScripting, IUnitOutputPort, Unity.VisualScripting (+3 more) +Nodes (11): InfoLayers, PhotoshopFile, LayerId, PhotoshopFile, LayerInfo, LayerSectionInfo, PhotoshopFile, LayerUnicodeName (+3 more) ### Community 233 - "Community 233" +Cohesion: 0.13 +Nodes (3): ITexture2D, Texture2DWrapper, UnityEditor.U2D.Sprites + +### Community 234 - "Community 234" +Cohesion: 0.12 +Nodes (3): Arm, Neon, Unity.Burst.Intrinsics + +### Community 235 - "Community 235" +Cohesion: 0.16 +Nodes (7): IBuildContext, IContextObject, IDependencyCallback, IPackingCallback, IScriptsCallback, IWritingCallback, UnityEditor.Build.Pipeline.Interfaces + +### Community 236 - "Community 236" +Cohesion: 0.16 +Nodes (4): IExecuter, UnityEditor.TestTools.TestRunner.CommandLineTest, TestStarter, UnityEditor.TestTools.TestRunner.CommandLineTest + +### Community 237 - "Community 237" +Cohesion: 0.12 +Nodes (2): IReorderableListAdaptor, Unity.VisualScripting.ReorderableList + +### Community 238 - "Community 238" +Cohesion: 0.12 +Nodes (11): ContinuousNumberInspector, DecimalInspector, Unity.VisualScripting, DoubleInspector, Unity.VisualScripting, FloatInspector, Unity.VisualScripting, LongInspector (+3 more) + +### Community 239 - "Community 239" +Cohesion: 0.12 +Nodes (5): IGraphElementWidget, Unity.VisualScripting, IUnitPortWidget, Unity.VisualScripting, IWidget + +### Community 240 - "Community 240" +Cohesion: 0.12 +Nodes (11): DecrementHandler, Unity.VisualScripting, IncrementHandler, Unity.VisualScripting, LogicalNegationHandler, Unity.VisualScripting, NumericNegationHandler, Unity.VisualScripting (+3 more) + +### Community 241 - "Community 241" +Cohesion: 0.12 +Nodes (11): GlobalEventUnit, OnApplicationFocus, Unity.VisualScripting, OnApplicationLostFocus, Unity.VisualScripting, OnApplicationPause, Unity.VisualScripting, OnApplicationQuit (+3 more) + +### Community 242 - "Community 242" +Cohesion: 0.12 +Nodes (11): IApplicationVariableUnit, Unity.VisualScripting, IGraphVariableUnit, Unity.VisualScripting, IObjectVariableUnit, Unity.VisualScripting, ISavedVariableUnit, Unity.VisualScripting (+3 more) + +### Community 243 - "Community 243" +Cohesion: 0.12 +Nodes (11): IUnitControlPort, Unity.VisualScripting, IUnitInputPort, Unity.VisualScripting, IUnitInvalidPort, Unity.VisualScripting, IUnitOutputPort, Unity.VisualScripting (+3 more) + +### Community 244 - "Community 244" Cohesion: 0.12 Nodes (11): IUnitControlPortDefinition, Unity.VisualScripting, IUnitInputPortDefinition, Unity.VisualScripting, IUnitOutputPortDefinition, Unity.VisualScripting, IUnitPortDefinition, IUnitValuePortDefinition (+3 more) -### Community 234 - "Community 234" -Cohesion: 0.14 -Nodes (8): CharacterGroupCache, CharacterPartCache, UnityEditor.U2D.Animation, ICharacterOrder, SpriteCache, TH1Resource, UnityEditor.U2D.Animation, TransformCache - -### Community 235 - "Community 235" -Cohesion: 0.13 -Nodes (14): CatalogEntry, Dependency, DependencyGroup, Deprecation, IndexResponse, NugetForUnity.PackageSource, RegistrationLeafObject, RegistrationPageObject (+6 more) - -### Community 236 - "Community 236" -Cohesion: 0.17 -Nodes (6): EditorPlayModeUpdatePackageVersionOperation, HostPlayModeUpdatePackageVersionOperation, OfflinePlayModeUpdatePackageVersionOperation, UpdatePackageVersionOperation, WebPlayModeUpdatePackageVersionOperation, YooAsset - -### Community 237 - "Community 237" -Cohesion: 0.18 -Nodes (13): BoneVisibilityToolData, UnityEditor.U2D.Animation, CacheObject, SerializableDictionary, CharacterPartMap, MeshMap, MeshPreviewMap, SkeletonMap (+5 more) - -### Community 238 - "Community 238" -Cohesion: 0.13 -Nodes (4): FlexibleMenu, GridPalettesDropdown, MenuItemProvider, UnityEditor.Tilemaps - -### Community 239 - "Community 239" -Cohesion: 0.19 -Nodes (10): IComputeShaderVariantStripper, IComputeShaderVariantStripperScope, IComputeShaderVariantStripperSkipper, IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, IVariantStripper, IVariantStripperScope (+2 more) - -### Community 240 - "Community 240" -Cohesion: 0.13 -Nodes (9): EnterPlayMode, UnityEngine.TestTools, ExitPlayMode, UnityEngine.TestTools, IEditModeTestYieldInstruction, RecompileScripts, UnityEngine.TestTools, UnityEngine.TestTools (+1 more) - -### Community 241 - "Community 241" -Cohesion: 0.13 -Nodes (3): IMoveItemDrawer, IMoveItemMode, UnityEditor.Timeline - -### Community 242 - "Community 242" -Cohesion: 0.14 -Nodes (3): ISequenceState, NullSequenceState, UnityEditor.Timeline - -### Community 243 - "Community 243" -Cohesion: 0.17 -Nodes (4): ITimelinePlaybackControls, TimelinePlaybackControlsImpl, TimelineWindow, UnityEditor.Timeline - -### Community 244 - "Community 244" -Cohesion: 0.15 -Nodes (3): FuzzyOptionTree, Unity.VisualScripting, IFuzzyOptionTree - ### Community 245 - "Community 245" Cohesion: 0.13 -Nodes (7): GetVariableUnitOption, Unity.VisualScripting, IsVariableDefinedUnitOption, Unity.VisualScripting, SetVariableUnitOption, Unity.VisualScripting, VariableUnitOption +Nodes (12): ControlInputDefinition, Unity.VisualScripting, ControlOutputDefinition, Unity.VisualScripting, ControlPortDefinition, IUnitInputPortDefinition, IUnitOutputPortDefinition, Unity.VisualScripting (+4 more) ### Community 246 - "Community 246" Cohesion: 0.13 -Nodes (5): FuzzyOption, Unity.VisualScripting, IFuzzyOption, IUnitOption, Unity.VisualScripting +Nodes (14): CatalogEntry, Dependency, DependencyGroup, Deprecation, IndexResponse, NugetForUnity.PackageSource, RegistrationLeafObject, RegistrationPageObject (+6 more) ### Community 247 - "Community 247" +Cohesion: 0.17 +Nodes (6): EditorPlayModeUpdatePackageVersionOperation, HostPlayModeUpdatePackageVersionOperation, OfflinePlayModeUpdatePackageVersionOperation, UpdatePackageVersionOperation, WebPlayModeUpdatePackageVersionOperation, YooAsset + +### Community 248 - "Community 248" +Cohesion: 0.13 +Nodes (4): FlexibleMenu, GridPalettesDropdown, MenuItemProvider, UnityEditor.Tilemaps + +### Community 249 - "Community 249" +Cohesion: 0.19 +Nodes (10): IComputeShaderVariantStripper, IComputeShaderVariantStripperScope, IComputeShaderVariantStripperSkipper, IShaderVariantStripper, IShaderVariantStripperScope, IShaderVariantStripperSkipper, IVariantStripper, IVariantStripperScope (+2 more) + +### Community 250 - "Community 250" +Cohesion: 0.13 +Nodes (3): IMoveItemDrawer, IMoveItemMode, UnityEditor.Timeline + +### Community 251 - "Community 251" +Cohesion: 0.14 +Nodes (3): ISequenceState, NullSequenceState, UnityEditor.Timeline + +### Community 252 - "Community 252" +Cohesion: 0.17 +Nodes (4): ITimelinePlaybackControls, TimelinePlaybackControlsImpl, TimelineWindow, UnityEditor.Timeline + +### Community 253 - "Community 253" +Cohesion: 0.13 +Nodes (5): FuzzyOption, Unity.VisualScripting, IFuzzyOption, IUnitOption, Unity.VisualScripting + +### Community 254 - "Community 254" +Cohesion: 0.15 +Nodes (3): FuzzyOptionTree, Unity.VisualScripting, IFuzzyOptionTree + +### Community 255 - "Community 255" +Cohesion: 0.13 +Nodes (7): GetVariableUnitOption, Unity.VisualScripting, IsVariableDefinedUnitOption, Unity.VisualScripting, SetVariableUnitOption, Unity.VisualScripting, VariableUnitOption + +### Community 256 - "Community 256" Cohesion: 0.15 Nodes (10): ControlConnection, Unity.VisualScripting, InvalidConnection, Unity.VisualScripting, IUnitConnection, UnitConnection, UnitConnectionDebugData, DebugData (+2 more) -### Community 248 - "Community 248" -Cohesion: 0.16 -Nodes (4): GetConnectionAddressString(), GetQueryAddressString(), Steamworks, ToString() - -### Community 249 - "Community 249" -Cohesion: 0.25 -Nodes (12): byref(), il2cpp_class_from_il2cpp_type(), il2cpp_class_get_declaring_type(), il2cpp_class_get_name(), il2cpp_class_get_namespace(), il2cpp_current_thread_walk_frame_stack(), il2cpp_method_get_class(), il2cpp_method_get_name() (+4 more) - -### Community 250 - "Community 250" +### Community 257 - "Community 257" Cohesion: 0.21 Nodes (11): Animancer.Units, AnimationSpeedAttribute, Animancer.Units, DegreesAttribute, DegreesPerSecondAttribute, MetersAttribute, MetersPerSecondAttribute, MetersPerSecondPerSecondAttribute (+3 more) -### Community 251 - "Community 251" +### Community 258 - "Community 258" +Cohesion: 0.24 +Nodes (2): ActionTask, NodeCanvas.Framework + +### Community 259 - "Community 259" Cohesion: 0.16 Nodes (3): Del(), HasAny(), ViMask -### Community 252 - "Community 252" +### Community 260 - "Community 260" Cohesion: 0.16 Nodes (5): IUnitAtomAnim, TH1_Anim.UnitAtomAnim, UnitAtomAnimBounce, UnitAtomAnimFactory, UnitAtomAnimProjectile -### Community 253 - "Community 253" +### Community 261 - "Community 261" +Cohesion: 0.16 +Nodes (4): TH1_UI.Controller.Interaction, UIOutsideLoadingController, TH1_UI.View.Outside, UIOutsideLoadingView + +### Community 262 - "Community 262" Cohesion: 0.19 Nodes (8): CollectAll, CollectPrefab, CollectScene, CollectShaderVariants, CollectSprite, DefaultFilterRule, YooAsset.Editor, IFilterRule -### Community 254 - "Community 254" +### Community 263 - "Community 263" +Cohesion: 0.25 +Nodes (2): Manipulator, UnityEditor.Timeline + +### Community 264 - "Community 264" Cohesion: 0.14 Nodes (4): BasicPlayableBehaviour, UnityEngine.Timeline, IPlayableAsset, IPlayableBehaviour -### Community 255 - "Community 255" +### Community 265 - "Community 265" Cohesion: 0.14 Nodes (9): AutomaticReflectedInspector, Unity.VisualScripting, GraphGroupInspector, Unity.VisualScripting, ReflectedInspector, StickyNoteInspector, Unity.VisualScripting, UnitInspector (+1 more) -### Community 256 - "Community 256" +### Community 266 - "Community 266" Cohesion: 0.14 Nodes (9): IGraphElementWidget, INodeWidget, Unity.VisualScripting, IStateWidget, Unity.VisualScripting, IUnitConnectionWidget, Unity.VisualScripting, IUnitWidget (+1 more) -### Community 257 - "Community 257" +### Community 267 - "Community 267" Cohesion: 0.15 Nodes (4): Animancer, CreateDrawer(), Drawer, MixerState -### Community 258 - "Community 258" +### Community 268 - "Community 268" Cohesion: 0.15 Nodes (2): IPlayMode, YooAsset -### Community 259 - "Community 259" +### Community 269 - "Community 269" +Cohesion: 0.17 +Nodes (4): IMeshPreviewBehaviour, DefaultPreviewBehaviour, MeshPreviewBehaviour, UnityEditor.U2D.Animation + +### Community 270 - "Community 270" Cohesion: 0.26 Nodes (5): HexagonalRuleTile, UnityEngine, IsometricRuleTile, UnityEngine, RuleTile -### Community 260 - "Community 260" +### Community 271 - "Community 271" Cohesion: 0.27 Nodes (2): BringWindowToFront, Unity.PlasticSCM.Editor.Tool -### Community 261 - "Community 261" +### Community 272 - "Community 272" Cohesion: 0.18 Nodes (2): ScriptableRendererFeature, UnityEngine.Rendering.Universal -### Community 262 - "Community 262" +### Community 273 - "Community 273" Cohesion: 0.15 Nodes (9): ContextFilterableAttribute, NeverAllowedByTargetAttribute, UnityEditor.ShaderGraph, SRPFilterAttribute, UnityEditor.ShaderGraph, SubTargetFilterAttribute, UnityEditor.ShaderGraph, TitleAttribute (+1 more) -### Community 263 - "Community 263" +### Community 274 - "Community 274" +Cohesion: 0.17 +Nodes (2): Texture2DShaderProperty, UnityEditor.ShaderGraph.Internal + +### Community 275 - "Community 275" Cohesion: 0.15 Nodes (7): BlackboardCategoryViewModel, UnityEditor.ShaderGraph.Drawing, InspectorViewModel, UnityEditor.ShaderGraph.Drawing, ISGViewModel, ShaderInputViewModel, UnityEditor.ShaderGraph.Drawing -### Community 264 - "Community 264" +### Community 276 - "Community 276" Cohesion: 0.18 Nodes (8): IdentifierField, IdentifierInput, UnityEditor.ShaderGraph.Drawing, UxmlFactory, UxmlTraits, TextValueField, TextValueFieldTraits, TextValueInput -### Community 265 - "Community 265" +### Community 277 - "Community 277" Cohesion: 0.15 Nodes (12): AddItem, AddTrackMenu, ClipActionSection, ClipEditActionSection, CustomClipActionSection, CustomTimelineActionSection, CustomTrackActionSection, MarkerActionSection (+4 more) -### Community 266 - "Community 266" +### Community 278 - "Community 278" +Cohesion: 0.23 +Nodes (4): ILayoutIgnorer, LayoutElement, OnValidate(), UnityEngine.UI + +### Community 279 - "Community 279" Cohesion: 0.15 Nodes (4): ElementAdderMenuBuilder, Unity.VisualScripting.ReorderableList.Element_Adder_Menu, IElementAdderMenuBuilder, Unity.VisualScripting.ReorderableList.Element_Adder_Menu -### Community 267 - "Community 267" +### Community 280 - "Community 280" Cohesion: 0.15 Nodes (2): IFuzzyOptionTree, Unity.VisualScripting -### Community 268 - "Community 268" +### Community 281 - "Community 281" +Cohesion: 0.23 +Nodes (8): DigCast, DigIndex, DigIndexer, DigMember, DigStaticObject, NoAllocDelegate, NoAllocDig, Unity.VisualScripting + +### Community 282 - "Community 282" Cohesion: 0.19 Nodes (2): Page, Unity.VisualScripting -### Community 269 - "Community 269" -Cohesion: 0.17 -Nodes (2): NonNullableList, Unity.VisualScripting - -### Community 270 - "Community 270" +### Community 283 - "Community 283" Cohesion: 0.15 Nodes (7): IGraphNester, Unity.VisualScripting, IGraphParent, IGraphParentElement, Unity.VisualScripting, IGraphRoot, Unity.VisualScripting -### Community 271 - "Community 271" +### Community 284 - "Community 284" +Cohesion: 0.15 +Nodes (10): IGraphNester, IGraphNesterElement, Unity.VisualScripting, IGraphParentElement, IGraphRoot, IMachine, Unity.VisualScripting, IMacro (+2 more) + +### Community 285 - "Community 285" Cohesion: 0.15 Nodes (9): IGraphElementDebugData, IStateDebugData, Unity.VisualScripting, IStateTransitionDebugData, Unity.VisualScripting, IUnitConnectionDebugData, Unity.VisualScripting, IUnitDebugData (+1 more) -### Community 272 - "Community 272" +### Community 286 - "Community 286" +Cohesion: 0.15 +Nodes (7): EventUnit, GlobalEventUnit, Unity.VisualScripting, MachineEventUnit, Unity.VisualScripting, ManualEventUnit, Unity.VisualScripting + +### Community 287 - "Community 287" Cohesion: 0.23 Nodes (2): LayerUtils, ParadoxNotion -### Community 273 - "Community 273" +### Community 288 - "Community 288" Cohesion: 0.26 Nodes (2): Node, ViPriorityValue -### Community 274 - "Community 274" +### Community 289 - "Community 289" Cohesion: 0.3 Nodes (11): FragmentAttackAllyData, FragmentAttackAndCounterData, FragmentAttackGroundData, FragmentCityExpData, FragmentCityExpUpData, FragmentGridUpdateData, FragmentMoveData, FragmentMoveExplorerData (+3 more) -### Community 275 - "Community 275" +### Community 290 - "Community 290" Cohesion: 0.26 Nodes (10): Action_1_Invoke_m1DDC149E3BDDF7CAA1CCEBDA6D58D6971F126303_inline(), PlayableDirector_ClearReferenceValue_Injected_m9955C0A6558AA830976F3072700092D374A79A8B(), PlayableDirector_ClearReferenceValue_m011DC51A81993B00D95ACC74FD90291363AB534C(), PlayableDirector_GetReferenceValue_Injected_mE46AABB378E696DF9A413D98D24E1AA0A312D106(), PlayableDirector_GetReferenceValue_m635841386147673FFBBEF0CD9DA908337F3C97C8(), PlayableDirector_SendOnPlayableDirectorPause_m1B8EE7CBD23957C664AA417A9261194DFFFADFE1(), PlayableDirector_SendOnPlayableDirectorPlay_m7F75DBA4355DAA92F53AC337BB952069B63081A0(), PlayableDirector_SendOnPlayableDirectorStop_m4E9AEB579B8EA66ECC6FA9BE23BBF7973AB3EDD7() (+2 more) -### Community 276 - "Community 276" +### Community 291 - "Community 291" Cohesion: 0.24 Nodes (3): BaseTool, ITool, UnityEditor.U2D.Animation -### Community 277 - "Community 277" +### Community 292 - "Community 292" Cohesion: 0.17 Nodes (4): ISelection, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path -### Community 278 - "Community 278" +### Community 293 - "Community 293" +Cohesion: 0.24 +Nodes (11): CacheObject, SerializableDictionary, CharacterPartMap, MeshMap, MeshPreviewMap, SkeletonMap, SkinningObject, SpriteMap (+3 more) + +### Community 294 - "Community 294" Cohesion: 0.17 Nodes (6): Placeholder, UnityEditor.Experimental.U2D.Animation.Tests, UnityEditor.Experimental.U2D.Commons.Tests, UnityEditor.Experimental.U2D.PSDImporter.Tests, UnityEditor.U2D.Aseprite.Tests, UnityEngine.U2D.PixelPerfect.Tests -### Community 279 - "Community 279" -Cohesion: 0.18 -Nodes (3): HandlesSystem, IHandles, UnityEditor.U2D.Sprites - -### Community 280 - "Community 280" +### Community 295 - "Community 295" Cohesion: 0.21 Nodes (3): Data, ProgressControlsForMigration, Unity.PlasticSCM.Editor.UI.Progress -### Community 281 - "Community 281" +### Community 296 - "Community 296" Cohesion: 0.17 Nodes (2): CubemapShaderProperty, UnityEditor.ShaderGraph.Internal -### Community 282 - "Community 282" +### Community 297 - "Community 297" Cohesion: 0.17 Nodes (2): Texture2DArrayShaderProperty, UnityEditor.ShaderGraph.Internal -### Community 283 - "Community 283" +### Community 298 - "Community 298" Cohesion: 0.17 Nodes (5): IMayRequireNDCPosition, IMayRequirePixelPosition, IMayRequireScreenPosition, MayRequireScreenPositionExtensions, UnityEditor.ShaderGraph -### Community 284 - "Community 284" +### Community 299 - "Community 299" Cohesion: 0.17 Nodes (2): Target, UnityEditor.ShaderGraph -### Community 285 - "Community 285" -Cohesion: 0.17 -Nodes (6): KeywordDescriptors, Passes, PreviewTarget, StructDescriptors, SubShaders, UnityEditor.ShaderGraph - -### Community 286 - "Community 286" +### Community 300 - "Community 300" Cohesion: 0.17 Nodes (8): BoltCore, Styles, Unity.VisualScripting, BoltFlow, Unity.VisualScripting, BoltState, Unity.VisualScripting, Plugin -### Community 287 - "Community 287" +### Community 301 - "Community 301" Cohesion: 0.18 Nodes (9): FlowGraphData, Unity.VisualScripting, GraphData, IGraphDataAction, UnityEditor.ShaderGraph, IGraphDataWithVariables, IGraphEventListenerData, StateGraphData (+1 more) -### Community 288 - "Community 288" +### Community 302 - "Community 302" Cohesion: 0.18 Nodes (3): fsObjectProcessor, ParadoxNotion.Serialization.FullSerializer, Unity.VisualScripting.FullSerializer -### Community 289 - "Community 289" +### Community 303 - "Community 303" Cohesion: 0.22 Nodes (5): Demo_Provider, ViProvider, ViPtrProvider, ViPtrProviderClass, ViSimpleProvider -### Community 290 - "Community 290" +### Community 304 - "Community 304" Cohesion: 0.18 Nodes (7): EmpireStatisticLimit, EmpireStatisticResult, Logic.Editor, TechStatisticLimit, TechStatisticResult, UnitStatisticLimit, UnitStatisticResult -### Community 291 - "Community 291" +### Community 305 - "Community 305" Cohesion: 0.18 Nodes (7): BuildParameters, BuiltinBuildParameters, YooAsset.Editor, RawFileBuildParameters, YooAsset.Editor, ScriptableBuildParameters, YooAsset.Editor -### Community 292 - "Community 292" +### Community 306 - "Community 306" Cohesion: 0.24 Nodes (6): AddressByFileName, AddressByFolderAndFileName, AddressByGroupAndFileName, AddressDisable, YooAsset.Editor, IAddressRule -### Community 293 - "Community 293" +### Community 307 - "Community 307" Cohesion: 0.18 Nodes (4): CreateDefaultStatus(), YooAsset, HandleBase, YooAsset -### Community 294 - "Community 294" +### Community 308 - "Community 308" Cohesion: 0.18 Nodes (2): UniFramework.Utility, UniTimer -### Community 295 - "Community 295" +### Community 309 - "Community 309" Cohesion: 0.18 Nodes (4): ISelectable, UnityEditor.Rendering.Universal.Path2D, UnityEditor.Timeline, UnityEditor.U2D.Common.Path -### Community 296 - "Community 296" -Cohesion: 0.25 -Nodes (3): SceneViewOpenTilePaletteHelper, SceneViewOpenTilePaletteProperties, UnityEditor.Tilemaps +### Community 310 - "Community 310" +Cohesion: 0.24 +Nodes (3): OpenTilemapInPrefabModeProperties, TilemapPrefabStageHelper, UnityEditor.Tilemaps -### Community 297 - "Community 297" +### Community 311 - "Community 311" Cohesion: 0.27 Nodes (6): GetOrCreatePartiallyUnsafeWithHashCode(), GetOrCreatePartiallyUnsafeWithSubHashCode(), GetOrCreateUnsafe(), PreserveAttribute, SharedStatic, Unity.Burst -### Community 298 - "Community 298" +### Community 312 - "Community 312" Cohesion: 0.36 Nodes (3): IGetSelectedNodes, PendingChangesViewMenu, Unity.PlasticSCM.Editor.Views.PendingChanges -### Community 299 - "Community 299" +### Community 313 - "Community 313" Cohesion: 0.27 Nodes (3): GCAllocRecorder, GcAllocRecorderTest, Unity.Collections.Tests -### Community 300 - "Community 300" +### Community 314 - "Community 314" Cohesion: 0.18 Nodes (2): IAssemblyNameProvider, Microsoft.Unity.VisualStudio.Editor -### Community 301 - "Community 301" +### Community 315 - "Community 315" Cohesion: 0.2 Nodes (5): GUIDProvider, IGUIDGenerator, Microsoft.Unity.VisualStudio.Editor, Packages.Rider.Editor.ProjectGeneration, IGUIDGenerator -### Community 302 - "Community 302" +### Community 316 - "Community 316" Cohesion: 0.2 Nodes (5): Element, GroupElement, IProvider, Styles, UnityEditor.Rendering -### Community 303 - "Community 303" +### Community 317 - "Community 317" Cohesion: 0.22 Nodes (2): SerializedPropertyExtension, UnityEditor.Rendering -### Community 304 - "Community 304" +### Community 318 - "Community 318" Cohesion: 0.18 Nodes (6): AnimationClipUpgrader, IAnimationClip, IAssetPath, IRenderer, ReplaceBindings(), UnityEditor.Rendering -### Community 305 - "Community 305" +### Community 319 - "Community 319" Cohesion: 0.18 Nodes (2): IShaderNodeView, UnityEditor.ShaderGraph -### Community 306 - "Community 306" +### Community 320 - "Community 320" Cohesion: 0.2 Nodes (2): SubTarget, UnityEditor.ShaderGraph -### Community 307 - "Community 307" +### Community 321 - "Community 321" +Cohesion: 0.24 +Nodes (2): AndroidPlatformSetup, UnityEditor.TestTools.TestRunner + +### Community 322 - "Community 322" Cohesion: 0.22 Nodes (6): ILayoutController, ILayoutElement, ILayoutGroup, ILayoutIgnorer, ILayoutSelfController, UnityEngine.UI -### Community 308 - "Community 308" +### Community 323 - "Community 323" Cohesion: 0.18 Nodes (7): FuzzyOptionTreeExtensionProvider, Unity.VisualScripting, XFuzzyOptionTreeExtensionProvider, GraphContextExtensionProvider, Unity.VisualScripting, XCanvasExtensionProvider, MultiDecoratorProvider -### Community 309 - "Community 309" +### Community 324 - "Community 324" Cohesion: 0.18 Nodes (7): ControlInputWidget, Unity.VisualScripting, InvalidInputWidget, Unity.VisualScripting, UnitInputPortWidget, Unity.VisualScripting, ValueInputWidget -### Community 310 - "Community 310" +### Community 325 - "Community 325" Cohesion: 0.2 Nodes (4): NugetForUnity.Ui, ParadoxNotion.Design, Styles, UnityEditor.Timeline.Signals -### Community 311 - "Community 311" +### Community 326 - "Community 326" Cohesion: 0.2 Nodes (9): AddUnitCollectData, CollectData, DamageCollectData, LearnTechCollectData, MatchGameEndCollectData, OnTurnStartCollectData, PlayerGameEndCollectData, TH1_Logic.Collect (+1 more) -### Community 312 - "Community 312" -Cohesion: 0.2 -Nodes (2): IUnitLogic, Logic - -### Community 313 - "Community 313" -Cohesion: 0.2 -Nodes (2): IViewControllerInterface, TH1_UI.Controller.Base - -### Community 314 - "Community 314" -Cohesion: 0.27 -Nodes (2): GameAsyncOperation, YooAsset - -### Community 315 - "Community 315" -Cohesion: 0.33 -Nodes (2): Cysharp.Threading.Tasks.Internal, MinimumQueue - -### Community 316 - "Community 316" -Cohesion: 0.36 -Nodes (2): FABRIK2D, UnityEngine.U2D.IK - -### Community 317 - "Community 317" -Cohesion: 0.24 -Nodes (3): PopulateRuleOverideTileWizard, UnityEditor.Tilemaps, ScriptableWizard - -### Community 318 - "Community 318" -Cohesion: 0.29 -Nodes (8): BurstIntrinsicGetCSRFromManaged(), BurstIntrinsicSetCSRFromManaged(), DoGetCSRTrampoline(), DoSetCSRTrampoline(), getcsr_raw(), setcsr_raw(), Unity.Burst.Intrinsics, X86 - -### Community 319 - "Community 319" -Cohesion: 0.22 -Nodes (3): AssetStatusCache, IAssetStatusCache, Unity.PlasticSCM.Editor.AssetsOverlays.Cache - -### Community 320 - "Community 320" -Cohesion: 0.2 -Nodes (5): IPlasticTimer, IPlasticTimerBuilder, Unity.PlasticSCM.Editor.UI, UnityPlasticTimer, UnityPlasticTimerBuilder - -### Community 321 - "Community 321" -Cohesion: 0.22 -Nodes (4): Discovery, IDiscovery, Microsoft.Unity.VisualStudio.Editor, Packages.Rider.Editor - -### Community 322 - "Community 322" -Cohesion: 0.2 -Nodes (5): IDebugDisplaySettings, UnityEngine.Rendering, IDebugDisplaySettingsData, UnityEngine.Rendering, IDebugDisplaySettingsQuery - -### Community 323 - "Community 323" -Cohesion: 0.2 -Nodes (2): RTHandles, UnityEngine.Rendering - -### Community 324 - "Community 324" -Cohesion: 0.29 -Nodes (2): CoreMatrixUtils, UnityEngine.Rendering - -### Community 325 - "Community 325" -Cohesion: 0.2 -Nodes (7): BuiltInToURP2DConverterContainer, UnityEditor.Rendering.Universal, BuiltInToURPConverterContainer, UnityEditor.Rendering.Universal, RenderPipelineConverterContainer, UnityEditor.Rendering.Universal, UpgradeURP2DAssetsContainer - -### Community 326 - "Community 326" -Cohesion: 0.22 -Nodes (3): DecalProjector, UnityEngine.Rendering.Universal, UpdateDecalVisibility() - ### Community 327 - "Community 327" -Cohesion: 0.22 -Nodes (2): TimelineMode, UnityEditor.Timeline +Cohesion: 0.2 +Nodes (2): KoakumaDevotionSkill, Logic.Skill ### Community 328 - "Community 328" Cohesion: 0.2 -Nodes (2): ExtensibleFuzzyOptionTree, Unity.VisualScripting +Nodes (2): IUnitLogic, Logic ### Community 329 - "Community 329" Cohesion: 0.2 -Nodes (7): BoltCoreManifest, Unity.VisualScripting, BoltFlowManifest, Unity.VisualScripting, BoltStateManifest, Unity.VisualScripting, PluginManifest +Nodes (2): IViewControllerInterface, TH1_UI.Controller.Base ### Community 330 - "Community 330" -Cohesion: 0.2 -Nodes (5): IAboutable, PluginManifest, Unity.VisualScripting, Product, Unity.VisualScripting +Cohesion: 0.27 +Nodes (2): GameAsyncOperation, YooAsset ### Community 331 - "Community 331" -Cohesion: 0.29 -Nodes (3): GraphGroupEditor, Styles, Unity.VisualScripting +Cohesion: 0.33 +Nodes (2): Cysharp.Threading.Tasks.Internal, MinimumQueue ### Community 332 - "Community 332" Cohesion: 0.2 -Nodes (2): IUnitDescriptor, Unity.VisualScripting +Nodes (4): ICacheUndo, UnityEditor.U2D.Animation, UndoScope, UnityEditor.U2D.Animation ### Community 333 - "Community 333" -Cohesion: 0.2 -Nodes (7): GraphElementAnalysis, StateAnalysis, Unity.VisualScripting, StateTransitionAnalysis, Unity.VisualScripting, UnitAnalysis, Unity.VisualScripting +Cohesion: 0.36 +Nodes (2): FABRIK2D, UnityEngine.U2D.IK ### Community 334 - "Community 334" -Cohesion: 0.2 -Nodes (7): BoltCoreConfiguration, Unity.VisualScripting, BoltFlowConfiguration, Unity.VisualScripting, BoltStateConfiguration, Unity.VisualScripting, PluginConfiguration +Cohesion: 0.24 +Nodes (3): PopulateRuleOverideTileWizard, UnityEditor.Tilemaps, ScriptableWizard ### Community 335 - "Community 335" -Cohesion: 0.2 -Nodes (7): ControlOutputWidget, Unity.VisualScripting, InvalidOutputWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, ValueOutputWidget +Cohesion: 0.29 +Nodes (8): BurstIntrinsicGetCSRFromManaged(), BurstIntrinsicSetCSRFromManaged(), DoGetCSRTrampoline(), DoSetCSRTrampoline(), getcsr_raw(), setcsr_raw(), Unity.Burst.Intrinsics, X86 ### Community 336 - "Community 336" -Cohesion: 0.2 -Nodes (7): GraphElementDescription, StateDescription, Unity.VisualScripting, StateTransitionDescription, Unity.VisualScripting, UnitDescription, Unity.VisualScripting +Cohesion: 0.22 +Nodes (3): AssetStatusCache, IAssetStatusCache, Unity.PlasticSCM.Editor.AssetsOverlays.Cache ### Community 337 - "Community 337" -Cohesion: 0.24 -Nodes (2): ApplicationVariables, Unity.VisualScripting +Cohesion: 0.2 +Nodes (5): IPlasticTimer, IPlasticTimerBuilder, Unity.PlasticSCM.Editor.UI, UnityPlasticTimer, UnityPlasticTimerBuilder ### Community 338 - "Community 338" -Cohesion: 0.2 -Nodes (7): CollisionEventUnit, OnCollisionEnter, Unity.VisualScripting, OnCollisionExit, Unity.VisualScripting, OnCollisionStay, Unity.VisualScripting +Cohesion: 0.22 +Nodes (4): Discovery, IDiscovery, Microsoft.Unity.VisualStudio.Editor, Packages.Rider.Editor ### Community 339 - "Community 339" -Cohesion: 0.2 -Nodes (7): OnTriggerEnter, Unity.VisualScripting, OnTriggerExit, Unity.VisualScripting, OnTriggerStay, Unity.VisualScripting, TriggerEventUnit +Cohesion: 0.31 +Nodes (5): INotifyValueChanged, ToolbarRadio, UnityEditor.Rendering.LookDev, UxmlFactory, UxmlTraits ### Community 340 - "Community 340" Cohesion: 0.2 -Nodes (7): CollisionEvent2DUnit, OnCollisionEnter2D, Unity.VisualScripting, OnCollisionExit2D, Unity.VisualScripting, OnCollisionStay2D, Unity.VisualScripting +Nodes (5): IDebugDisplaySettings, UnityEngine.Rendering, IDebugDisplaySettingsData, UnityEngine.Rendering, IDebugDisplaySettingsQuery ### Community 341 - "Community 341" -Cohesion: 0.2 -Nodes (7): OnTriggerEnter2D, Unity.VisualScripting, OnTriggerExit2D, Unity.VisualScripting, OnTriggerStay2D, Unity.VisualScripting, TriggerEvent2DUnit +Cohesion: 0.29 +Nodes (2): DebugUIHandlerIndirectFloatField, UnityEngine.Rendering.UI ### Community 342 - "Community 342" -Cohesion: 0.28 -Nodes (7): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterState, OnValidate(), StateMachine, IOwnedState, StateBehaviour +Cohesion: 0.2 +Nodes (2): RTHandles, UnityEngine.Rendering ### Community 343 - "Community 343" -Cohesion: 0.22 -Nodes (2): GUIStyleUtils, ParadoxNotion +Cohesion: 0.29 +Nodes (2): CoreMatrixUtils, UnityEngine.Rendering ### Community 344 - "Community 344" -Cohesion: 0.22 -Nodes (2): IPlayerLogic, Logic +Cohesion: 0.2 +Nodes (7): BuiltInToURP2DConverterContainer, UnityEditor.Rendering.Universal, BuiltInToURPConverterContainer, UnityEditor.Rendering.Universal, RenderPipelineConverterContainer, UnityEditor.Rendering.Universal, UpgradeURP2DAssetsContainer ### Community 345 - "Community 345" Cohesion: 0.22 -Nodes (5): ISkinningSerializer, SkinningCopyData, SkinningCopySpriteData, SpriteBoneCopyData, UnityEditor.U2D.Animation +Nodes (2): TimelineMode, UnityEditor.Timeline ### Community 346 - "Community 346" -Cohesion: 0.22 -Nodes (2): IUndo, UnityEditor.U2D.Animation +Cohesion: 0.2 +Nodes (2): ExtensibleFuzzyOptionTree, Unity.VisualScripting ### Community 347 - "Community 347" -Cohesion: 0.28 -Nodes (4): DrawBatchDataKey, IShapeEditorFactory, ShapeEditorFactory, UnityEditor.U2D.Sprites +Cohesion: 0.2 +Nodes (5): IAboutable, PluginManifest, Unity.VisualScripting, Product, Unity.VisualScripting ### Community 348 - "Community 348" -Cohesion: 0.33 -Nodes (3): ISerializedCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineSerializedCamera +Cohesion: 0.29 +Nodes (3): GraphGroupEditor, Styles, Unity.VisualScripting ### Community 349 - "Community 349" -Cohesion: 0.22 -Nodes (7): GenericShaderGraphMaterialGUI, ShaderGraphLitGUI, ShaderGraphUnlitGUI, UnityEditor.Rendering.Universal, VFXGenericShaderGraphMaterialGUI, VFXShaderGraphLitGUI, VFXShaderGraphUnlitGUI +Cohesion: 0.2 +Nodes (2): IUnitDescriptor, Unity.VisualScripting ### Community 350 - "Community 350" -Cohesion: 0.22 -Nodes (6): CoreRPHelpURLAttribute, Documentation, UnityEngine.Rendering.ShaderGraph, UnityEngine.Rendering.Universal, URPHelpURLAttribute, DocumentationInfo +Cohesion: 0.2 +Nodes (7): GraphElementAnalysis, StateAnalysis, Unity.VisualScripting, StateTransitionAnalysis, Unity.VisualScripting, UnitAnalysis, Unity.VisualScripting ### Community 351 - "Community 351" -Cohesion: 0.22 -Nodes (8): BuildContent, BundleBuildContent, CustomAssets, UnityEditor.Build.Pipeline, IBuildContent, IBundleBuildContent, ICustomAssets, TestBundleBuildContent +Cohesion: 0.2 +Nodes (7): GraphElementDescription, StateDescription, Unity.VisualScripting, StateTransitionDescription, Unity.VisualScripting, UnitDescription, Unity.VisualScripting ### Community 352 - "Community 352" -Cohesion: 0.25 -Nodes (4): CommandLineOptionSet, UnityEditor.TestRunner.CommandLineParser, ICommandLineOption, UnityEditor.TestRunner.CommandLineParser +Cohesion: 0.2 +Nodes (7): BoltCoreConfiguration, Unity.VisualScripting, BoltFlowConfiguration, Unity.VisualScripting, BoltStateConfiguration, Unity.VisualScripting, PluginConfiguration ### Community 353 - "Community 353" -Cohesion: 0.22 -Nodes (2): ITestRunnerApiMapper, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Cohesion: 0.2 +Nodes (7): ControlOutputWidget, Unity.VisualScripting, InvalidOutputWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, ValueOutputWidget ### Community 354 - "Community 354" -Cohesion: 0.22 -Nodes (5): EditmodeWorkItemFactory, UnityEditor.TestTools.TestRunner, PlaymodeWorkItemFactory, UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory +Cohesion: 0.2 +Nodes (7): BoltCoreManifest, Unity.VisualScripting, BoltFlowManifest, Unity.VisualScripting, BoltStateManifest, Unity.VisualScripting, PluginManifest ### Community 355 - "Community 355" -Cohesion: 0.22 -Nodes (2): TimelineNavigator, UnityEditor.Timeline +Cohesion: 0.24 +Nodes (2): ApplicationVariables, Unity.VisualScripting ### Community 356 - "Community 356" -Cohesion: 0.22 -Nodes (7): AnnotationMarker, Timeline.Samples, INotification, INotificationOptionProvider, Marker, SignalEmitter, UnityEngine.Timeline +Cohesion: 0.2 +Nodes (5): Macro, ScriptGraphAsset, Unity.VisualScripting, StateGraphAsset, Unity.VisualScripting ### Community 357 - "Community 357" -Cohesion: 0.22 -Nodes (3): GraphContextExtension, Unity.VisualScripting, IGraphContextExtension +Cohesion: 0.2 +Nodes (7): CollisionEventUnit, OnCollisionEnter, Unity.VisualScripting, OnCollisionExit, Unity.VisualScripting, OnCollisionStay, Unity.VisualScripting ### Community 358 - "Community 358" -Cohesion: 0.25 -Nodes (5): AccessorInfoStubWriter, Unity.VisualScripting, MemberInfoStubWriter, MethodBaseStubWriter, Unity.VisualScripting +Cohesion: 0.2 +Nodes (7): OnTriggerEnter, Unity.VisualScripting, OnTriggerExit, Unity.VisualScripting, OnTriggerStay, Unity.VisualScripting, TriggerEventUnit ### Community 359 - "Community 359" -Cohesion: 0.22 -Nodes (5): FlowGraphContext, Unity.VisualScripting, GraphContext, StateGraphContext, Unity.VisualScripting +Cohesion: 0.2 +Nodes (7): CollisionEvent2DUnit, OnCollisionEnter2D, Unity.VisualScripting, OnCollisionExit2D, Unity.VisualScripting, OnCollisionStay2D, Unity.VisualScripting ### Community 360 - "Community 360" -Cohesion: 0.22 -Nodes (5): AnyStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, Unity.VisualScripting, StateDescriptor +Cohesion: 0.2 +Nodes (7): OnTriggerEnter2D, Unity.VisualScripting, OnTriggerExit2D, Unity.VisualScripting, OnTriggerStay2D, Unity.VisualScripting, TriggerEvent2DUnit ### Community 361 - "Community 361" -Cohesion: 0.22 -Nodes (3): Cloner, Unity.VisualScripting, ICloner +Cohesion: 0.2 +Nodes (4): INesterState, NesterState, Unity.VisualScripting, State ### Community 362 - "Community 362" -Cohesion: 0.22 -Nodes (7): ControlPortDefinition, Unity.VisualScripting, IUnitControlPortDefinition, IUnitValuePortDefinition, UnitPortDefinition, Unity.VisualScripting, ValuePortDefinition +Cohesion: 0.28 +Nodes (7): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterState, OnValidate(), StateMachine, IOwnedState, StateBehaviour ### Community 363 - "Community 363" Cohesion: 0.22 -Nodes (3): INesterState, NesterState, Unity.VisualScripting +Nodes (2): GUIStyleUtils, ParadoxNotion ### Community 364 - "Community 364" -Cohesion: 0.29 -Nodes (2): ExcelConfig, ExcelConfigBase +Cohesion: 0.22 +Nodes (2): IPlayerLogic, Logic ### Community 365 - "Community 365" -Cohesion: 0.32 -Nodes (2): GCloud.UQM, UQMLog +Cohesion: 0.22 +Nodes (5): ISkinningSerializer, SkinningCopyData, SkinningCopySpriteData, SpriteBoneCopyData, UnityEditor.U2D.Animation ### Community 366 - "Community 366" -Cohesion: 0.25 -Nodes (3): Animancer.Editor, ObjectReference, Serialization +Cohesion: 0.22 +Nodes (2): IUndo, UnityEditor.U2D.Animation ### Community 367 - "Community 367" -Cohesion: 0.29 -Nodes (2): ParadoxNotion, WeakReferenceList +Cohesion: 0.28 +Nodes (4): DrawBatchDataKey, IShapeEditorFactory, ShapeEditorFactory, UnityEditor.U2D.Sprites ### Community 368 - "Community 368" -Cohesion: 0.29 -Nodes (3): INodeReference, NodeCanvas.Framework, NodeReference +Cohesion: 0.33 +Nodes (3): ISerializedCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineSerializedCamera ### Community 369 - "Community 369" -Cohesion: 0.29 -Nodes (5): IFixedSizeMemoryPackable, IMemoryPackable, IMemoryPackFormatterRegister, MemoryPack, RegisterFormatter() +Cohesion: 0.22 +Nodes (7): GenericShaderGraphMaterialGUI, ShaderGraphLitGUI, ShaderGraphUnlitGUI, UnityEditor.Rendering.Universal, VFXGenericShaderGraphMaterialGUI, VFXShaderGraphLitGUI, VFXShaderGraphUnlitGUI ### Community 370 - "Community 370" -Cohesion: 0.29 -Nodes (3): IMemoryPackFormatter, MemoryPack, MemoryPackFormatter +Cohesion: 0.22 +Nodes (8): BuildContent, BundleBuildContent, CustomAssets, UnityEditor.Build.Pipeline, IBuildContent, IBundleBuildContent, ICustomAssets, TestBundleBuildContent ### Community 371 - "Community 371" -Cohesion: 0.25 -Nodes (2): INugetPackageSource, NugetForUnity.PackageSource +Cohesion: 0.22 +Nodes (6): CoreRPHelpURLAttribute, Documentation, UnityEngine.Rendering.ShaderGraph, UnityEngine.Rendering.Universal, URPHelpURLAttribute, DocumentationInfo ### Community 372 - "Community 372" Cohesion: 0.25 -Nodes (2): IWebRequester, YooAsset +Nodes (4): CommandLineOptionSet, UnityEditor.TestRunner.CommandLineParser, ICommandLineOption, UnityEditor.TestRunner.CommandLineParser ### Community 373 - "Community 373" -Cohesion: 0.25 -Nodes (2): IBundleQuery, YooAsset +Cohesion: 0.22 +Nodes (5): EditmodeWorkItemFactory, UnityEditor.TestTools.TestRunner, PlaymodeWorkItemFactory, UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory ### Community 374 - "Community 374" -Cohesion: 0.25 -Nodes (4): ICharacterDataProvider, ICharacterOrder, IMainSkeletonDataProvider, UnityEditor.U2D.Animation +Cohesion: 0.22 +Nodes (2): ITestRunnerApiMapper, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 375 - "Community 375" -Cohesion: 0.25 -Nodes (4): ISelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path +Cohesion: 0.22 +Nodes (2): TimelineNavigator, UnityEditor.Timeline ### Community 376 - "Community 376" -Cohesion: 0.25 -Nodes (3): ITriangulator, Triangulator, UnityEditor.U2D.Animation +Cohesion: 0.22 +Nodes (7): AnnotationMarker, Timeline.Samples, INotification, INotificationOptionProvider, Marker, SignalEmitter, UnityEngine.Timeline ### Community 377 - "Community 377" -Cohesion: 0.25 -Nodes (4): ClickAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework, HoveredControlAction +Cohesion: 0.22 +Nodes (3): GraphContextExtension, Unity.VisualScripting, IGraphContextExtension ### Community 378 - "Community 378" -Cohesion: 0.29 -Nodes (3): AssetDatabaseSystem, IAssetDatabase, UnityEditor.U2D.Sprites +Cohesion: 0.25 +Nodes (5): AccessorInfoStubWriter, Unity.VisualScripting, MemberInfoStubWriter, MethodBaseStubWriter, Unity.VisualScripting ### Community 379 - "Community 379" -Cohesion: 0.25 -Nodes (1): SpriteEditorModuleBase +Cohesion: 0.22 +Nodes (5): FlowGraphContext, Unity.VisualScripting, GraphContext, StateGraphContext, Unity.VisualScripting ### Community 380 - "Community 380" -Cohesion: 0.25 -Nodes (4): GridSelectionToolEditor, UnityEditor.Tilemaps, ICreateHorizontalToolbar, ICreateVerticalToolbar +Cohesion: 0.22 +Nodes (5): AnyStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, Unity.VisualScripting, StateDescriptor ### Community 381 - "Community 381" -Cohesion: 0.25 -Nodes (1): IAssetMenuOperations +Cohesion: 0.22 +Nodes (3): Cloner, Unity.VisualScripting, ICloner ### Community 382 - "Community 382" -Cohesion: 0.39 -Nodes (2): CooldownWindowDelayer, Unity.PlasticSCM.Editor.UI +Cohesion: 0.22 +Nodes (3): INesterUnit, NesterUnit, Unity.VisualScripting ### Community 383 - "Community 383" -Cohesion: 0.25 -Nodes (2): IIncomingChangesTab, Unity.PlasticSCM.Editor.Views.IncomingChanges +Cohesion: 0.22 +Nodes (7): ControlPortDefinition, Unity.VisualScripting, IUnitControlPortDefinition, IUnitValuePortDefinition, UnitPortDefinition, Unity.VisualScripting, ValuePortDefinition ### Community 384 - "Community 384" -Cohesion: 0.25 -Nodes (3): NativeContainderTests_ValidateTypes_JobDebugger, NativeContainerTests_ValidateTypes, NativeContainerTests_ValidateTypesFixture +Cohesion: 0.29 +Nodes (2): ExcelConfig, ExcelConfigBase ### Community 385 - "Community 385" -Cohesion: 0.25 -Nodes (2): IFileIO, Packages.Rider.Editor.ProjectGeneration +Cohesion: 0.32 +Nodes (2): GCloud.UQM, UQMLog ### Community 386 - "Community 386" -Cohesion: 0.36 -Nodes (3): Microsoft.Unity.VisualStudio.Editor.Messaging, State, TcpClient +Cohesion: 0.25 +Nodes (3): Animancer.Editor, ObjectReference, Serialization ### Community 387 - "Community 387" -Cohesion: 0.25 -Nodes (5): ITestResultAdaptor, Microsoft.Unity.VisualStudio.Editor.Testing, TestResultAdaptor, TestResultAdaptorContainer, UnityEditor.TestTools.TestRunner.Api +Cohesion: 0.29 +Nodes (2): ParadoxNotion, WeakReferenceList ### Community 388 - "Community 388" -Cohesion: 0.25 -Nodes (2): ListBufferExtensions, UnityEngine.Rendering +Cohesion: 0.29 +Nodes (3): INodeReference, NodeCanvas.Framework, NodeReference ### Community 389 - "Community 389" -Cohesion: 0.29 -Nodes (3): IVolumeDebugSettings, IVolumeDebugSettings2, UnityEngine.Rendering +Cohesion: 0.25 +Nodes (2): Logic.Skill, PowerUpSkill ### Community 390 - "Community 390" -Cohesion: 0.39 -Nodes (6): SavedBool, SavedFloat, SavedInt, SavedParameter, SavedString, UnityEditor.Rendering.Universal +Cohesion: 0.29 +Nodes (5): IFixedSizeMemoryPackable, IMemoryPackable, IMemoryPackFormatterRegister, MemoryPack, RegisterFormatter() ### Community 391 - "Community 391" -Cohesion: 0.25 -Nodes (3): RenderPipelineGlobalSettingsProvider, UnityEditor.Rendering.Universal, UniversalGlobalSettingsPanelProvider +Cohesion: 0.29 +Nodes (3): IMemoryPackFormatter, MemoryPack, MemoryPackFormatter ### Community 392 - "Community 392" -Cohesion: 0.29 -Nodes (3): Equals(), Identifier(), UnityEngine.Rendering.Universal +Cohesion: 0.25 +Nodes (2): INugetPackageSource, NugetForUnity.PackageSource ### Community 393 - "Community 393" Cohesion: 0.25 -Nodes (7): BuildResults, BundleBuildResults, SerializedFileMetaData, UnityEditor.Build.Pipeline, IBuildResults, IBundleBuildResults, TestBuildResultsBase +Nodes (2): IWebRequester, YooAsset ### Community 394 - "Community 394" Cohesion: 0.25 -Nodes (3): IMaySupportVFX, MaySupportVFXExtensions, UnityEditor.ShaderGraph +Nodes (2): IBundleQuery, YooAsset ### Community 395 - "Community 395" Cohesion: 0.25 -Nodes (2): ITestAdaptorFactory, UnityEditor.TestTools.TestRunner.Api +Nodes (4): ICharacterDataProvider, ICharacterOrder, IMainSkeletonDataProvider, UnityEditor.U2D.Animation ### Community 396 - "Community 396" Cohesion: 0.25 -Nodes (2): IPlatformSetup, UnityEditor.TestTools.TestRunner +Nodes (4): ISelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Animation, UnityEditor.U2D.Common.Path ### Community 397 - "Community 397" Cohesion: 0.25 -Nodes (2): StadiaPlatformSetup, UnityEditor.TestTools.TestRunner +Nodes (3): ITriangulator, Triangulator, UnityEditor.U2D.Animation ### Community 398 - "Community 398" Cohesion: 0.25 -Nodes (2): SwitchPlatformSetup, UnityEditor.TestTools.TestRunner +Nodes (4): ClickAction, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework, HoveredControlAction ### Community 399 - "Community 399" -Cohesion: 0.25 -Nodes (2): ILogScope, UnityEngine.TestTools.Logging +Cohesion: 0.29 +Nodes (3): AssetDatabaseSystem, IAssetDatabase, UnityEditor.U2D.Sprites ### Community 400 - "Community 400" Cohesion: 0.25 -Nodes (3): GetHashCode(), MarkerEditor, UnityEditor.Timeline +Nodes (1): SpriteEditorModuleBase ### Community 401 - "Community 401" Cohesion: 0.25 -Nodes (3): ITrimItemDrawer, ITrimItemMode, UnityEditor.Timeline +Nodes (4): GridSelectionToolEditor, UnityEditor.Tilemaps, ICreateHorizontalToolbar, ICreateVerticalToolbar ### Community 402 - "Community 402" -Cohesion: 0.29 -Nodes (3): SignalEventDrawer, UnityEditor.Timeline.Signals, UnityEventDrawer +Cohesion: 0.25 +Nodes (1): IAssetMenuOperations ### Community 403 - "Community 403" -Cohesion: 0.25 -Nodes (5): AnimationTrackKeyDataSource, UnityEditor.Timeline, BasePropertyKeyDataSource, TrackPropertyCurvesDataSource, UnityEditor.Timeline +Cohesion: 0.39 +Nodes (2): CooldownWindowDelayer, Unity.PlasticSCM.Editor.UI ### Community 404 - "Community 404" -Cohesion: 0.32 -Nodes (3): AnimationPlayableAsset, AnimationPlayableAssetUpgrade, UnityEngine.Timeline +Cohesion: 0.25 +Nodes (2): IIncomingChangesTab, Unity.PlasticSCM.Editor.Views.IncomingChanges ### Community 405 - "Community 405" -Cohesion: 0.36 -Nodes (3): AnimationTrack, AnimationTrackUpgrade, UnityEngine.Timeline +Cohesion: 0.25 +Nodes (3): NativeContainderTests_ValidateTypes_JobDebugger, NativeContainerTests_ValidateTypes, NativeContainerTests_ValidateTypesFixture ### Community 406 - "Community 406" -Cohesion: 0.32 -Nodes (3): Assigner, Unity.VisualScripting, IAssigner +Cohesion: 0.25 +Nodes (2): IFileIO, Packages.Rider.Editor.ProjectGeneration ### Community 407 - "Community 407" -Cohesion: 0.25 -Nodes (2): DragAndDropUtility, Unity.VisualScripting +Cohesion: 0.36 +Nodes (3): Microsoft.Unity.VisualStudio.Editor.Messaging, State, TcpClient ### Community 408 - "Community 408" Cohesion: 0.25 -Nodes (2): IDragAndDropHandler, Unity.VisualScripting +Nodes (5): ITestResultAdaptor, Microsoft.Unity.VisualStudio.Editor.Testing, TestResultAdaptor, TestResultAdaptorContainer, UnityEditor.TestTools.TestRunner.Api ### Community 409 - "Community 409" Cohesion: 0.25 -Nodes (5): GetMemberOption, Unity.VisualScripting, MemberUnitOption, SetMemberOption, Unity.VisualScripting +Nodes (2): ListBufferExtensions, UnityEngine.Rendering ### Community 410 - "Community 410" -Cohesion: 0.25 -Nodes (5): NesterUnitDescriptor, StateUnitDescriptor, Unity.VisualScripting, SuperUnitDescriptor, Unity.VisualScripting +Cohesion: 0.29 +Nodes (3): IVolumeDebugSettings, IVolumeDebugSettings2, UnityEngine.Rendering ### Community 411 - "Community 411" -Cohesion: 0.25 -Nodes (2): ICloner, Unity.VisualScripting +Cohesion: 0.32 +Nodes (2): MaterialQualityUtilities, UnityEngine.Rendering ### Community 412 - "Community 412" -Cohesion: 0.29 -Nodes (3): CFriendsList(), CFriendsListMenu, Show() +Cohesion: 0.39 +Nodes (6): SavedBool, SavedFloat, SavedInt, SavedParameter, SavedString, UnityEditor.Rendering.Universal ### Community 413 - "Community 413" -Cohesion: 0.33 -Nodes (4): IHasKey, IPolymorphic, Animancer, ITransition +Cohesion: 0.25 +Nodes (3): RenderPipelineGlobalSettingsProvider, UnityEditor.Rendering.Universal, UniversalGlobalSettingsPanelProvider ### Community 414 - "Community 414" -Cohesion: 0.33 -Nodes (4): MixerParameterTween, Animancer, MixerParameterTweenFloat, MixerParameterTweenVector2 +Cohesion: 0.29 +Nodes (3): Equals(), Identifier(), UnityEngine.Rendering.Universal ### Community 415 - "Community 415" -Cohesion: 0.33 -Nodes (3): AnimancerTransitionAssetBase, Animancer, AnimancerTransitionAsset +Cohesion: 0.25 +Nodes (7): BuildResults, BundleBuildResults, SerializedFileMetaData, UnityEditor.Build.Pipeline, IBuildResults, IBundleBuildResults, TestBuildResultsBase ### Community 416 - "Community 416" -Cohesion: 0.29 -Nodes (2): Colors, ParadoxNotion.Design +Cohesion: 0.25 +Nodes (3): IMaySupportVFX, MaySupportVFXExtensions, UnityEditor.ShaderGraph ### Community 417 - "Community 417" -Cohesion: 0.29 -Nodes (3): NodeCanvas.Framework.Internal, ReflectedAction, ReflectedActionWrapper +Cohesion: 0.25 +Nodes (3): IColorProvider, NoColors, UnityEditor.ShaderGraph.Drawing.Colors ### Community 418 - "Community 418" -Cohesion: 0.29 -Nodes (3): NodeCanvas.Framework.Internal, ReflectedFunction, ReflectedFunctionWrapper +Cohesion: 0.25 +Nodes (2): ITestAdaptorFactory, UnityEditor.TestTools.TestRunner.Api ### Community 419 - "Community 419" -Cohesion: 0.48 -Nodes (6): EditorSimulateModeParameters, HostPlayModeParameters, InitializeParameters, OfflinePlayModeParameters, WebPlayModeParameters, YooAsset +Cohesion: 0.25 +Nodes (2): IPlatformSetup, UnityEditor.TestTools.TestRunner ### Community 420 - "Community 420" -Cohesion: 0.29 -Nodes (2): CompletedDownloader, YooAsset +Cohesion: 0.25 +Nodes (2): StadiaPlatformSetup, UnityEditor.TestTools.TestRunner ### Community 421 - "Community 421" -Cohesion: 0.29 -Nodes (2): ILogger, YooAsset +Cohesion: 0.25 +Nodes (2): SwitchPlatformSetup, UnityEditor.TestTools.TestRunner ### Community 422 - "Community 422" -Cohesion: 0.29 -Nodes (2): IStateNode, UniFramework.Machine +Cohesion: 0.25 +Nodes (2): ILogScope, UnityEngine.TestTools.Logging ### Community 423 - "Community 423" -Cohesion: 0.29 -Nodes (1): UniFramework.Utility +Cohesion: 0.25 +Nodes (3): GetHashCode(), MarkerEditor, UnityEditor.Timeline ### Community 424 - "Community 424" -Cohesion: 0.29 -Nodes (1): UniFramework.Utility +Cohesion: 0.25 +Nodes (3): ITrimItemDrawer, ITrimItemMode, UnityEditor.Timeline ### Community 425 - "Community 425" Cohesion: 0.29 -Nodes (2): IMeshPreviewBehaviour, UnityEditor.U2D.Animation +Nodes (3): SignalEventDrawer, UnityEditor.Timeline.Signals, UnityEventDrawer ### Community 426 - "Community 426" -Cohesion: 0.29 -Nodes (2): ITriangulator, UnityEditor.U2D.Animation +Cohesion: 0.25 +Nodes (5): AnimationTrackKeyDataSource, UnityEditor.Timeline, BasePropertyKeyDataSource, TrackPropertyCurvesDataSource, UnityEditor.Timeline ### Community 427 - "Community 427" -Cohesion: 0.29 -Nodes (1): UnityEngine.U2D.Animation +Cohesion: 0.32 +Nodes (3): AnimationPlayableAsset, AnimationPlayableAssetUpgrade, UnityEngine.Timeline ### Community 428 - "Community 428" -Cohesion: 0.33 -Nodes (4): SpriteMetaData, SpriteOutline, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD +Cohesion: 0.36 +Nodes (3): AnimationTrack, AnimationTrackUpgrade, UnityEngine.Timeline ### Community 429 - "Community 429" -Cohesion: 0.29 -Nodes (4): TextContent, UnityEditor.U2D.Animation, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD +Cohesion: 0.32 +Nodes (3): Assigner, Unity.VisualScripting, IAssigner ### Community 430 - "Community 430" -Cohesion: 0.29 -Nodes (4): PointRectSelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, RectSelector +Cohesion: 0.25 +Nodes (2): DragAndDropUtility, Unity.VisualScripting ### Community 431 - "Community 431" -Cohesion: 0.33 -Nodes (3): DocumentLoadContext, PaintDotNet.Data.PhotoshopFileType, LoadContext +Cohesion: 0.25 +Nodes (2): IDragAndDropHandler, Unity.VisualScripting ### Community 432 - "Community 432" -Cohesion: 0.33 -Nodes (3): GUIUtilitySystem, IGUIUtility, UnityEditor.U2D.Sprites +Cohesion: 0.25 +Nodes (5): GetMemberOption, Unity.VisualScripting, MemberUnitOption, SetMemberOption, Unity.VisualScripting ### Community 433 - "Community 433" -Cohesion: 0.29 -Nodes (2): TilePaletteDragHandler, UnityEditor.Tilemaps +Cohesion: 0.25 +Nodes (5): NesterUnitDescriptor, StateUnitDescriptor, Unity.VisualScripting, SuperUnitDescriptor, Unity.VisualScripting ### Community 434 - "Community 434" -Cohesion: 0.29 -Nodes (3): BurstDisassembler, Unity.Burst.Editor, WasmAsmTokenKindProvider +Cohesion: 0.25 +Nodes (2): ICloner, Unity.VisualScripting ### Community 435 - "Community 435" Cohesion: 0.29 -Nodes (4): ManagedResolverFunction(), FromIntPtr(), IFunctionPointer, Unity.Burst +Nodes (3): CFriendsList(), CFriendsListMenu, Show() ### Community 436 - "Community 436" -Cohesion: 0.29 -Nodes (2): CheckWorkspaceTreeNodeStatus, Codice +Cohesion: 0.33 +Nodes (4): IHasKey, IPolymorphic, Animancer, ITransition ### Community 437 - "Community 437" -Cohesion: 0.38 -Nodes (2): Unity.PlasticSCM.Editor, VCSPlugin +Cohesion: 0.33 +Nodes (4): MixerParameterTween, Animancer, MixerParameterTweenFloat, MixerParameterTweenVector2 ### Community 438 - "Community 438" -Cohesion: 0.43 -Nodes (2): IsSolved, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer +Cohesion: 0.33 +Nodes (3): AnimancerTransitionAssetBase, Animancer, AnimancerTransitionAsset ### Community 439 - "Community 439" Cohesion: 0.29 -Nodes (2): IGenerator, Packages.Rider.Editor.ProjectGeneration +Nodes (2): Colors, ParadoxNotion.Design ### Community 440 - "Community 440" Cohesion: 0.29 -Nodes (3): IApplyRevertPropertyContextMenuItemProvider, UnityEngine.Rendering, VolumeComponent +Nodes (3): NodeCanvas.Framework.Internal, ReflectedAction, ReflectedActionWrapper ### Community 441 - "Community 441" Cohesion: 0.29 -Nodes (2): RenderPipelineConverter, UnityEditor.Rendering.Universal +Nodes (3): NodeCanvas.Framework.Internal, ReflectedFunction, ReflectedFunctionWrapper ### Community 442 - "Community 442" -Cohesion: 0.29 -Nodes (6): BaseColorProperties, EmissiveColorProperties, SpecularColorProperties, StandardProperties, UnityEditor.VFX.URP, URPLitInputProperties +Cohesion: 0.48 +Nodes (6): IUnitAtomAnimData, TH1_Renderer.UnitAtomAnim, UnitAtomAnimBounceData, UnitAtomAnimCommonData, UnitAtomAnimMoveData, UnitAtomAnimProjectileData ### Community 443 - "Community 443" Cohesion: 0.29 -Nodes (6): BuildDependencyData, ObjectDependencyData, UnityEditor.Build.Pipeline, IDependencyData, IObjectDependencyData, TestDependencyDataBase +Nodes (2): Logic.Skill, PeaceSkill ### Community 444 - "Community 444" Cohesion: 0.29 -Nodes (6): BuildWriteData, BundleWriteData, UnityEditor.Build.Pipeline, IBundleWriteData, IWriteData, TestWriteDataBase +Nodes (2): Logic.Skill, ReisenIllusionProSkill ### Community 445 - "Community 445" Cohesion: 0.29 -Nodes (4): LightmappingShaderProperties, LightmapTextureArrayProperty, UnityEditor.ShaderGraph.Internal, Texture2DArrayShaderProperty +Nodes (2): Logic.Skill, SuperHideSkill ### Community 446 - "Community 446" -Cohesion: 0.29 -Nodes (3): PlatformExtensions, PragmaRenderers, UnityEditor.ShaderGraph +Cohesion: 0.48 +Nodes (6): EditorSimulateModeParameters, HostPlayModeParameters, InitializeParameters, OfflinePlayModeParameters, WebPlayModeParameters, YooAsset ### Community 447 - "Community 447" Cohesion: 0.29 -Nodes (5): BuiltInShaderGraphSaveContext, ShaderGraphMaterialsUpdater, UnityEditor.Rendering.BuiltIn, UnityEditor.Rendering.Universal, UniversalShaderGraphSaveContext +Nodes (2): CompletedDownloader, YooAsset ### Community 448 - "Community 448" Cohesion: 0.29 -Nodes (6): RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSOT, UnityEngine.Rendering +Nodes (2): ILogger, YooAsset ### Community 449 - "Community 449" Cohesion: 0.29 -Nodes (6): PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSOT, UnityEngine.Rendering +Nodes (2): IStateNode, UniFramework.Machine ### Community 450 - "Community 450" Cohesion: 0.29 -Nodes (3): MyExercise_1, MyExercise_1s, MyMath +Nodes (1): UniFramework.Utility ### Community 451 - "Community 451" Cohesion: 0.29 -Nodes (2): ICallbacks, UnityEditor.TestTools.TestRunner.Api +Nodes (1): UniFramework.Utility ### Community 452 - "Community 452" Cohesion: 0.29 -Nodes (3): IgnoreTest, UnityEditor.TestTools.TestRunner.Api, UnityEngine.TestTools +Nodes (2): IMeshPreviewBehaviour, UnityEditor.U2D.Animation ### Community 453 - "Community 453" Cohesion: 0.29 -Nodes (2): ITestRunnerApi, UnityEditor.TestTools.TestRunner.Api +Nodes (2): ITriangulator, UnityEditor.U2D.Animation ### Community 454 - "Community 454" Cohesion: 0.29 -Nodes (2): AnalyticsTestCallback, UnityEditor.TestTools.TestRunner.Api.Analytics +Nodes (1): UnityEngine.U2D.Animation ### Community 455 - "Community 455" -Cohesion: 0.29 -Nodes (5): AttributeFinderBase, PostbuildCleanupAttributeFinder, UnityEditor.TestTools.TestRunner, PrebuildSetupAttributeFinder, UnityEditor.TestTools.TestRunner +Cohesion: 0.33 +Nodes (4): SpriteMetaData, SpriteOutline, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD ### Community 456 - "Community 456" Cohesion: 0.29 -Nodes (2): ITestJobDataHolder, UnityEditor.TestTools.TestRunner.TestRun +Nodes (4): TextContent, UnityEditor.U2D.Animation, UnityEditor.U2D.Aseprite, UnityEditor.U2D.PSD ### Community 457 - "Community 457" Cohesion: 0.29 -Nodes (2): ITestJobRunner, UnityEditor.TestTools.TestRunner.TestRun +Nodes (4): PointRectSelector, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path, RectSelector ### Community 458 - "Community 458" -Cohesion: 0.29 -Nodes (5): AllocatingGCMemoryConstraint, AllocatingGCMemoryResult, UnityEngine.TestTools.Constraints, Constraint, ConstraintResult +Cohesion: 0.33 +Nodes (3): DocumentLoadContext, PaintDotNet.Data.PhotoshopFileType, LoadContext ### Community 459 - "Community 459" -Cohesion: 0.29 -Nodes (3): ITestListener, TestListenerWrapper, UnityEngine.TestTools.TestRunner +Cohesion: 0.33 +Nodes (3): GUIUtilitySystem, IGUIUtility, UnityEditor.U2D.Sprites ### Community 460 - "Community 460" -Cohesion: 0.29 -Nodes (2): ITestRunCallback, UnityEngine.TestRunner +Cohesion: 0.38 +Nodes (2): TilemapEditorToolButton, UnityEditor.Tilemaps ### Community 461 - "Community 461" -Cohesion: 0.38 -Nodes (2): TMP_EditorCoroutine, TMPro.EditorUtilities +Cohesion: 0.29 +Nodes (3): BurstDisassembler, Unity.Burst.Editor, WasmAsmTokenKindProvider ### Community 462 - "Community 462" Cohesion: 0.29 -Nodes (5): TMP_Character, TMPro, TMP_SpriteCharacter, TMPro, TMP_TextElement +Nodes (2): CheckWorkspaceTreeNodeStatus, Codice ### Community 463 - "Community 463" -Cohesion: 0.33 -Nodes (3): HashUtility, Unity.VisualScripting, UnityEngine.Timeline +Cohesion: 0.38 +Nodes (2): Unity.PlasticSCM.Editor, VCSPlugin ### Community 464 - "Community 464" -Cohesion: 0.29 -Nodes (2): RawImage, RawImageTestHook +Cohesion: 0.43 +Nodes (2): IsSolved, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer ### Community 465 - "Community 465" Cohesion: 0.29 -Nodes (5): Analysis, Unity.VisualScripting, IAnalysis, IGraphElementAnalysis, Unity.VisualScripting +Nodes (2): IGenerator, Packages.Rider.Editor.ProjectGeneration ### Community 466 - "Community 466" Cohesion: 0.29 -Nodes (2): IndividualPropertyDrawer, Unity.VisualScripting +Nodes (3): IApplyRevertPropertyContextMenuItemProvider, UnityEngine.Rendering, VolumeComponent ### Community 467 - "Community 467" Cohesion: 0.29 -Nodes (5): LudiqBehaviourEditor, Unity.VisualScripting, LudiqRootObjectEditor, LudiqScriptableObjectEditor, Unity.VisualScripting +Nodes (5): BuiltInShaderGraphSaveContext, ShaderGraphMaterialsUpdater, UnityEditor.Rendering.BuiltIn, UnityEditor.Rendering.Universal, UniversalShaderGraphSaveContext ### Community 468 - "Community 468" Cohesion: 0.29 -Nodes (5): BoltCorePaths, Unity.VisualScripting, BoltFlowPaths, Unity.VisualScripting, PluginPaths +Nodes (6): BaseColorProperties, EmissiveColorProperties, SpecularColorProperties, StandardProperties, UnityEditor.VFX.URP, URPLitInputProperties ### Community 469 - "Community 469" Cohesion: 0.29 -Nodes (5): EditorPrefAttribute, Unity.VisualScripting, PluginConfigurationItemAttribute, ProjectSettingAttribute, Unity.VisualScripting +Nodes (6): BuildDependencyData, ObjectDependencyData, UnityEditor.Build.Pipeline, IDependencyData, IObjectDependencyData, TestDependencyDataBase ### Community 470 - "Community 470" Cohesion: 0.29 -Nodes (5): EventMachineEditor, Unity.VisualScripting, FlowMachineEditor, Unity.VisualScripting, MachineEditor +Nodes (6): BuildWriteData, BundleWriteData, UnityEditor.Build.Pipeline, IBundleWriteData, IWriteData, TestWriteDataBase ### Community 471 - "Community 471" Cohesion: 0.29 -Nodes (5): FlowMachineDescriptor, Unity.VisualScripting, MachineDescriptor, StateMachineDescriptor, Unity.VisualScripting +Nodes (4): LightmappingShaderProperties, LightmapTextureArrayProperty, UnityEditor.ShaderGraph.Internal, Texture2DArrayShaderProperty ### Community 472 - "Community 472" Cohesion: 0.29 -Nodes (5): FlowMacroDescriptor, Unity.VisualScripting, MacroDescriptor, StateMacroDescriptor, Unity.VisualScripting +Nodes (3): PlatformExtensions, PragmaRenderers, UnityEditor.ShaderGraph ### Community 473 - "Community 473" Cohesion: 0.29 -Nodes (5): NesterUnitEditor, StateUnitEditor, Unity.VisualScripting, SuperUnitEditor, Unity.VisualScripting +Nodes (6): RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSO, RequiredSettingsSOI, RequiredSettingsSOT, UnityEngine.Rendering ### Community 474 - "Community 474" Cohesion: 0.29 -Nodes (5): UnitInputPortWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, UnitPortWidget +Nodes (6): PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSO, PRSRequiredSettingsSOI, PRSRequiredSettingsSOT, UnityEngine.Rendering ### Community 475 - "Community 475" Cohesion: 0.29 -Nodes (5): FlowGraphDescriptor, Unity.VisualScripting, GraphDescriptor, StateGraphDescriptor, Unity.VisualScripting +Nodes (3): MyExercise_1, MyExercise_1s, MyMath ### Community 476 - "Community 476" Cohesion: 0.29 -Nodes (5): AnyStateWidget, Unity.VisualScripting, NesterStateWidget, Unity.VisualScripting, StateWidget +Nodes (2): ICallbacks, UnityEditor.TestTools.TestRunner.Api ### Community 477 - "Community 477" Cohesion: 0.29 -Nodes (5): FlowStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, SuperStateDescriptor, Unity.VisualScripting +Nodes (3): IgnoreTest, UnityEditor.TestTools.TestRunner.Api, UnityEngine.TestTools ### Community 478 - "Community 478" Cohesion: 0.29 -Nodes (5): FlowStateEditor, Unity.VisualScripting, NesterStateEditor, SuperStateEditor, Unity.VisualScripting +Nodes (2): ITestRunnerApi, UnityEditor.TestTools.TestRunner.Api ### Community 479 - "Community 479" Cohesion: 0.29 -Nodes (5): GraphElementEditor, StateEditor, Unity.VisualScripting, StateTransitionEditor, Unity.VisualScripting +Nodes (2): AnalyticsTestCallback, UnityEditor.TestTools.TestRunner.Api.Analytics ### Community 480 - "Community 480" Cohesion: 0.29 -Nodes (2): INotifiedCollectionItem, Unity.VisualScripting +Nodes (5): AttributeFinderBase, PostbuildCleanupAttributeFinder, UnityEditor.TestTools.TestRunner, PrebuildSetupAttributeFinder, UnityEditor.TestTools.TestRunner ### Community 481 - "Community 481" Cohesion: 0.29 -Nodes (2): IProxyableNotifyCollectionChanged, Unity.VisualScripting +Nodes (2): ITestJobDataHolder, UnityEditor.TestTools.TestRunner.TestRun ### Community 482 - "Community 482" Cohesion: 0.29 -Nodes (5): InvalidCastException, InvalidConversionException, Unity.VisualScripting, OperatorException, Unity.VisualScripting +Nodes (2): ITestJobRunner, UnityEditor.TestTools.TestRunner.TestRun ### Community 483 - "Community 483" Cohesion: 0.29 -Nodes (5): IGraphData, IGraphDataWithVariables, Unity.VisualScripting, IGraphEventListenerData, Unity.VisualScripting +Nodes (5): AllocatingGCMemoryConstraint, AllocatingGCMemoryResult, UnityEngine.TestTools.Constraints, Constraint, ConstraintResult ### Community 484 - "Community 484" Cohesion: 0.29 -Nodes (5): AmbiguousOperatorException, Unity.VisualScripting, InvalidOperatorException, Unity.VisualScripting, OperatorException +Nodes (2): ITestRunCallback, UnityEngine.TestRunner ### Community 485 - "Community 485" -Cohesion: 0.29 -Nodes (5): InstanceActionInvokerBase, Unity.VisualScripting, InstanceFunctionInvokerBase, Unity.VisualScripting, InstanceInvokerBase +Cohesion: 0.38 +Nodes (2): TMP_EditorCoroutine, TMPro.EditorUtilities ### Community 486 - "Community 486" Cohesion: 0.29 -Nodes (5): StaticActionInvokerBase, Unity.VisualScripting, StaticFunctionInvokerBase, Unity.VisualScripting, StaticInvokerBase +Nodes (2): SetLinkID(), TMPro ### Community 487 - "Community 487" Cohesion: 0.29 -Nodes (5): SelectOnInteger, Unity.VisualScripting, SelectOnString, Unity.VisualScripting, SelectUnit +Nodes (5): TMP_Character, TMPro, TMP_SpriteCharacter, TMPro, TMP_TextElement ### Community 488 - "Community 488" -Cohesion: 0.29 -Nodes (5): SwitchOnInteger, Unity.VisualScripting, SwitchOnString, Unity.VisualScripting, SwitchUnit +Cohesion: 0.33 +Nodes (3): HashUtility, Unity.VisualScripting, UnityEngine.Timeline ### Community 489 - "Community 489" Cohesion: 0.29 -Nodes (5): GetGraphs, GetScriptGraphs, Unity.VisualScripting, GetStateGraphs, Unity.VisualScripting +Nodes (2): RawImage, RawImageTestHook ### Community 490 - "Community 490" Cohesion: 0.29 -Nodes (5): HasGraph, HasScriptGraph, Unity.VisualScripting, HasStateGraph, Unity.VisualScripting +Nodes (5): Analysis, Unity.VisualScripting, IAnalysis, IGraphElementAnalysis, Unity.VisualScripting ### Community 491 - "Community 491" Cohesion: 0.29 -Nodes (5): SetGraph, SetScriptGraph, Unity.VisualScripting, SetStateGraph, Unity.VisualScripting +Nodes (5): EventMachineEditor, Unity.VisualScripting, FlowMachineEditor, Unity.VisualScripting, MachineEditor ### Community 492 - "Community 492" -Cohesion: 0.47 -Nodes (4): Get-GraphifyPython(), Invoke-GraphifyRebuild(), Test-GraphifyPython(), Write-HookLog() +Cohesion: 0.29 +Nodes (2): IndividualPropertyDrawer, Unity.VisualScripting ### Community 493 - "Community 493" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): LudiqBehaviourEditor, Unity.VisualScripting, LudiqRootObjectEditor, LudiqScriptableObjectEditor, Unity.VisualScripting ### Community 494 - "Community 494" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): EditorPrefAttribute, Unity.VisualScripting, PluginConfigurationItemAttribute, ProjectSettingAttribute, Unity.VisualScripting ### Community 495 - "Community 495" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowGraphDescriptor, Unity.VisualScripting, GraphDescriptor, StateGraphDescriptor, Unity.VisualScripting ### Community 496 - "Community 496" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowMachineDescriptor, Unity.VisualScripting, MachineDescriptor, StateMachineDescriptor, Unity.VisualScripting ### Community 497 - "Community 497" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowMacroDescriptor, Unity.VisualScripting, MacroDescriptor, StateMacroDescriptor, Unity.VisualScripting ### Community 498 - "Community 498" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): NesterUnitEditor, StateUnitEditor, Unity.VisualScripting, SuperUnitEditor, Unity.VisualScripting ### Community 499 - "Community 499" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): BoltCorePaths, Unity.VisualScripting, BoltFlowPaths, Unity.VisualScripting, PluginPaths ### Community 500 - "Community 500" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): UnitInputPortWidget, Unity.VisualScripting, UnitOutputPortWidget, Unity.VisualScripting, UnitPortWidget ### Community 501 - "Community 501" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): AnyStateWidget, Unity.VisualScripting, NesterStateWidget, Unity.VisualScripting, StateWidget ### Community 502 - "Community 502" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowStateDescriptor, Unity.VisualScripting, NesterStateDescriptor, SuperStateDescriptor, Unity.VisualScripting ### Community 503 - "Community 503" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): FlowStateEditor, Unity.VisualScripting, NesterStateEditor, SuperStateEditor, Unity.VisualScripting ### Community 504 - "Community 504" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): GraphElementEditor, StateEditor, Unity.VisualScripting, StateTransitionEditor, Unity.VisualScripting ### Community 505 - "Community 505" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): INotifiedCollectionItem, Unity.VisualScripting ### Community 506 - "Community 506" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (2): IProxyableNotifyCollectionChanged, Unity.VisualScripting ### Community 507 - "Community 507" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): InvalidCastException, InvalidConversionException, Unity.VisualScripting, OperatorException, Unity.VisualScripting ### Community 508 - "Community 508" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): IGraphData, IGraphDataWithVariables, Unity.VisualScripting, IGraphEventListenerData, Unity.VisualScripting ### Community 509 - "Community 509" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): AmbiguousOperatorException, Unity.VisualScripting, InvalidOperatorException, Unity.VisualScripting, OperatorException ### Community 510 - "Community 510" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): InstanceActionInvokerBase, Unity.VisualScripting, InstanceFunctionInvokerBase, Unity.VisualScripting, InstanceInvokerBase ### Community 511 - "Community 511" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): StaticActionInvokerBase, Unity.VisualScripting, StaticFunctionInvokerBase, Unity.VisualScripting, StaticInvokerBase ### Community 512 - "Community 512" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): SelectOnInteger, Unity.VisualScripting, SelectOnString, Unity.VisualScripting, SelectUnit ### Community 513 - "Community 513" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): SwitchOnInteger, Unity.VisualScripting, SwitchOnString, Unity.VisualScripting, SwitchUnit ### Community 514 - "Community 514" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): GetGraphs, GetScriptGraphs, Unity.VisualScripting, GetStateGraphs, Unity.VisualScripting ### Community 515 - "Community 515" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): SetGraph, SetScriptGraph, Unity.VisualScripting, SetStateGraph, Unity.VisualScripting ### Community 516 - "Community 516" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.43 +Nodes (2): Round, Unity.VisualScripting ### Community 517 - "Community 517" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.29 +Nodes (5): HasGraph, HasScriptGraph, Unity.VisualScripting, HasStateGraph, Unity.VisualScripting ### Community 518 - "Community 518" -Cohesion: 0.33 -Nodes (1): Steamworks +Cohesion: 0.47 +Nodes (4): Get-GraphifyPython(), Invoke-GraphifyRebuild(), Test-GraphifyPython(), Write-HookLog() ### Community 519 - "Community 519" Cohesion: 0.33 @@ -4158,4135 +4195,4135 @@ Nodes (1): Steamworks ### Community 533 - "Community 533" Cohesion: 0.33 -Nodes (2): CrashSightCallback, CrashSightLogCallback +Nodes (1): Steamworks ### Community 534 - "Community 534" -Cohesion: 0.4 -Nodes (3): Animancer, AnimancerUtilities, ICopyable +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 535 - "Community 535" -Cohesion: 0.4 -Nodes (3): IBlackboard, IGlobalBlackboard, NodeCanvas.Framework +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 536 - "Community 536" Cohesion: 0.33 -Nodes (1): ViActiveValue +Nodes (1): Steamworks ### Community 537 - "Community 537" Cohesion: 0.33 -Nodes (5): CityInfo, MapRecordData, PlayerInfo, TH1_Logic.MatchConfig, UnitInfo +Nodes (1): Steamworks ### Community 538 - "Community 538" Cohesion: 0.33 -Nodes (2): TH1_UI.View.Global, UIGlobalBugReportView +Nodes (1): Steamworks ### Community 539 - "Community 539" Cohesion: 0.33 -Nodes (2): TH1_UI.View.Outside, UIOutsideInvitedView +Nodes (1): Steamworks ### Community 540 - "Community 540" Cohesion: 0.33 -Nodes (2): TH1_UI.View.Top, UITopInvitedView +Nodes (1): Steamworks ### Community 541 - "Community 541" Cohesion: 0.33 -Nodes (3): Cache, MemoryPack.Internal, TypeHelpers +Nodes (1): Steamworks ### Community 542 - "Community 542" -Cohesion: 0.4 -Nodes (4): DisableGroup, EnableGroup, YooAsset.Editor, IActiveRule +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 543 - "Community 543" Cohesion: 0.33 -Nodes (3): Cysharp.Threading.Tasks.Internal, RuntimeHelpersAbstraction, WellKnownNoReferenceContainsType +Nodes (1): Steamworks ### Community 544 - "Community 544" Cohesion: 0.33 -Nodes (3): ShortcutIds, ShortcutUtility, UnityEditor.U2D.Animation +Nodes (1): Steamworks ### Community 545 - "Community 545" Cohesion: 0.33 -Nodes (3): EditablePathUtility, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (1): Steamworks ### Community 546 - "Community 546" Cohesion: 0.33 -Nodes (3): ISnapping, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (1): Steamworks ### Community 547 - "Community 547" Cohesion: 0.33 -Nodes (3): IUndoObject, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (1): Steamworks ### Community 548 - "Community 548" Cohesion: 0.33 -Nodes (4): ISnapping, Snapping, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (1): Steamworks ### Community 549 - "Community 549" Cohesion: 0.33 -Nodes (3): DefaultControl, UnityEditor.Rendering.Universal.Path2D.GUIFramework, UnityEditor.U2D.Common.Path.GUIFramework +Nodes (1): Steamworks ### Community 550 - "Community 550" Cohesion: 0.33 -Nodes (3): IShape, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path +Nodes (1): Steamworks ### Community 551 - "Community 551" -Cohesion: 0.4 -Nodes (4): ArrayDebugView, Dispose(), ResizeIfRequired(), UnityEngine.U2D.Common.UTess +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 552 - "Community 552" -Cohesion: 0.4 -Nodes (4): AnalyticFactory, Analytics, IAnalytics, UnityEditor.U2D.PSD +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 553 - "Community 553" -Cohesion: 0.47 -Nodes (2): ImageDataFactory, PhotoshopFile.Compression +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 554 - "Community 554" Cohesion: 0.33 -Nodes (2): Hint, Unity.Burst.CompilerServices +Nodes (1): Steamworks ### Community 555 - "Community 555" Cohesion: 0.33 -Nodes (3): Popcnt, Unity.Burst.Intrinsics, X86 +Nodes (1): Steamworks ### Community 556 - "Community 556" Cohesion: 0.33 -Nodes (2): SafeDebugReaderProvider, ISymbolReader +Nodes (1): Steamworks ### Community 557 - "Community 557" Cohesion: 0.33 -Nodes (2): ApplicationDataPath, Unity.PlasticSCM.Editor +Nodes (1): Steamworks ### Community 558 - "Community 558" -Cohesion: 0.4 -Nodes (2): QueryVisualElementsExtensions, Unity.PlasticSCM.Editor +Cohesion: 0.33 +Nodes (1): Steamworks ### Community 559 - "Community 559" -Cohesion: 0.4 -Nodes (2): ProjectViewAssetSelection, Unity.PlasticSCM.Editor.AssetMenu +Cohesion: 0.33 +Nodes (2): CrashSightCallback, CrashSightLogCallback ### Community 560 - "Community 560" -Cohesion: 0.33 -Nodes (3): CheckinProgress, Unity.PlasticSCM.Editor.Developer, Unity.PlasticSCM.Editor.Gluon +Cohesion: 0.4 +Nodes (3): Animancer, AnimancerUtilities, ICopyable ### Community 561 - "Community 561" -Cohesion: 0.33 -Nodes (5): Gluon, Installer, Plastic, ToolConstants, Unity.PlasticSCM.Editor.Tool +Cohesion: 0.4 +Nodes (3): IBlackboard, IGlobalBlackboard, NodeCanvas.Framework ### Community 562 - "Community 562" Cohesion: 0.33 -Nodes (2): EditorProgressBar, Unity.PlasticSCM.Editor.UI +Nodes (1): ViActiveValue ### Community 563 - "Community 563" Cohesion: 0.33 -Nodes (5): BranchesColumns, ChangesetsColumns, LocksColumns, Unity.PlasticSCM.Editor.UI, UnityConstants +Nodes (4): DiplomacyChatInfo, DiplomacyStateInfo, FeelingStateInfo, FeelingStrategyInfo ### Community 564 - "Community 564" Cohesion: 0.33 -Nodes (4): CustomEditor, IRemoveAdditionalDataContextualMenu, UnityEditor.Rendering, VolumeComponentEditorAttribute +Nodes (5): CityInfo, MapRecordData, PlayerInfo, TH1_Logic.MatchConfig, UnitInfo ### Community 565 - "Community 565" Cohesion: 0.33 -Nodes (2): ISerializedCamera, UnityEditor.Rendering +Nodes (2): AllYTranSportSkill, Logic.Skill ### Community 566 - "Community 566" -Cohesion: 0.47 -Nodes (3): DebugDisplaySettingsPanel, UnityEngine.Rendering, IDebugDisplaySettingsPanelDisposable +Cohesion: 0.33 +Nodes (2): AttackRangeUpSkill, Logic.Skill ### Community 567 - "Community 567" Cohesion: 0.33 -Nodes (5): GenerateHLSL, HLSLArray, PackingAttribute, SurfaceDataAttributes, UnityEngine.Rendering +Nodes (2): AttackUpSkill, Logic.Skill ### Community 568 - "Community 568" -Cohesion: 0.53 -Nodes (4): Append(), GetFuncHashCode(), GetHashCode(), UnityEngine.Rendering +Cohesion: 0.33 +Nodes (2): AyaMoveAgainSkill, Logic.Skill ### Community 569 - "Community 569" Cohesion: 0.33 -Nodes (2): TileLayoutUtils, UnityEngine.Rendering +Nodes (2): DuoSkill, Logic.Skill ### Community 570 - "Community 570" Cohesion: 0.33 -Nodes (4): DefaultLightingExplorerExtension, LightExplorer, Styles, UnityEditor +Nodes (2): KaguyaFrenchSynergyDebuffSkill, Logic.Skill ### Community 571 - "Community 571" -Cohesion: 0.4 -Nodes (4): IAnalytics, IAnalyticsData, Renderer2DAnalytics, UnityEditor.Rendering.Universal.Analytics +Cohesion: 0.33 +Nodes (2): Logic.Skill, MeilingAttackUpSkill ### Community 572 - "Community 572" Cohesion: 0.33 -Nodes (3): ISerializedLight, UnityEditor.Rendering.Universal, UniversalRenderPipelineSerializedLight +Nodes (2): Logic.Skill, MoveRangeUpSkill ### Community 573 - "Community 573" -Cohesion: 0.47 -Nodes (1): AutoLoadPipelineAsset +Cohesion: 0.33 +Nodes (2): Logic.Skill, QuartetSkill ### Community 574 - "Community 574" -Cohesion: 0.47 -Nodes (2): ShaderGraphShortcuts, UnityEditor.ShaderGraph +Cohesion: 0.33 +Nodes (2): Logic.Skill, TrioSkill ### Community 575 - "Community 575" Cohesion: 0.33 -Nodes (3): IMayRequireBitangent, MayRequireBitangentExtensions, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SanaeDivine_E2_ATK_Skill ### Community 576 - "Community 576" Cohesion: 0.33 -Nodes (3): IMayRequireCameraOpaqueTexture, MayRequireCameraOpaqueTextureExtensions, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SanaeDivine_E4_DEFENSE_Skill ### Community 577 - "Community 577" Cohesion: 0.33 -Nodes (3): IMayRequireDepthTexture, MayRequireDepthTextureExtensions, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SanaeDivine_F2_DEFENSE_Skill ### Community 578 - "Community 578" Cohesion: 0.33 -Nodes (3): IMayRequireFaceSign, IMayRequireFaceSignExtensions, UnityEditor.ShaderGraph +Nodes (2): Logic.Skill, SanaeDivine_F4_ATK_Skill ### Community 579 - "Community 579" Cohesion: 0.33 -Nodes (3): IMayRequireMeshUV, MayRequireMeshUVExtensions, UnityEditor.ShaderGraph +Nodes (3): SpriteCache, TH1Resource, UnityEditor.U2D.Animation ### Community 580 - "Community 580" Cohesion: 0.33 -Nodes (3): IMayRequireNormal, MayRequireNormalExtensions, UnityEditor.ShaderGraph +Nodes (3): Cache, MemoryPack.Internal, TypeHelpers ### Community 581 - "Community 581" -Cohesion: 0.33 -Nodes (3): IMayRequirePosition, MayRequirePositionExtensions, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (4): DisableGroup, EnableGroup, YooAsset.Editor, IActiveRule ### Community 582 - "Community 582" Cohesion: 0.33 -Nodes (3): IMayRequirePositionPredisplacement, MayRequirePositionPredisplacementExtensions, UnityEditor.ShaderGraph +Nodes (3): Cysharp.Threading.Tasks.Internal, RuntimeHelpersAbstraction, WellKnownNoReferenceContainsType ### Community 583 - "Community 583" Cohesion: 0.33 -Nodes (3): IMayRequireTangent, MayRequireTangentExtensions, UnityEditor.ShaderGraph +Nodes (5): BindingData, Contents, ConvertedKeyData, KeyData, UnityEditor.U2D.Animation.Upgrading ### Community 584 - "Community 584" Cohesion: 0.33 -Nodes (3): IMayRequireTime, MayRequireTimeExtensions, UnityEditor.ShaderGraph +Nodes (3): EditablePathUtility, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 585 - "Community 585" Cohesion: 0.33 -Nodes (3): IMayRequireVertexColor, MayRequireVertexColorExtensions, UnityEditor.ShaderGraph +Nodes (3): ISnapping, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 586 - "Community 586" Cohesion: 0.33 -Nodes (3): IMayRequireVertexID, MayRequireVertexIDExtensions, UnityEditor.ShaderGraph +Nodes (3): IUndoObject, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 587 - "Community 587" Cohesion: 0.33 -Nodes (3): IMayRequireVertexSkinning, MayRequireVertexSkinningExtensions, UnityEditor.ShaderGraph +Nodes (3): IShape, UnityEditor.Rendering.Universal.Path2D, UnityEditor.U2D.Common.Path ### Community 588 - "Community 588" -Cohesion: 0.33 -Nodes (3): IMayRequireViewDirection, MayRequireViewDirectionExtensions, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (4): ArrayDebugView, Dispose(), ResizeIfRequired(), UnityEngine.U2D.Common.UTess ### Community 589 - "Community 589" -Cohesion: 0.33 -Nodes (2): NodeExtensions, UnityEditor.Graphing +Cohesion: 0.4 +Nodes (4): AnalyticFactory, Analytics, IAnalytics, UnityEditor.U2D.PSD ### Community 590 - "Community 590" -Cohesion: 0.33 -Nodes (3): AdditionalCommandCollection, Item, UnityEditor.ShaderGraph +Cohesion: 0.47 +Nodes (2): ImageDataFactory, PhotoshopFile.Compression ### Community 591 - "Community 591" Cohesion: 0.33 -Nodes (3): DependencyCollection, Item, UnityEditor.ShaderGraph +Nodes (2): Hint, Unity.Burst.CompilerServices ### Community 592 - "Community 592" Cohesion: 0.33 -Nodes (3): FieldCollection, Item, UnityEditor.ShaderGraph +Nodes (3): Popcnt, Unity.Burst.Intrinsics, X86 ### Community 593 - "Community 593" Cohesion: 0.33 -Nodes (1): UnityEditor.ShaderGraph.Serialization +Nodes (2): SafeDebugReaderProvider, ISymbolReader ### Community 594 - "Community 594" Cohesion: 0.33 -Nodes (2): TestSlot, UnityEditor.ShaderGraph +Nodes (2): ApplicationDataPath, Unity.PlasticSCM.Editor ### Community 595 - "Community 595" -Cohesion: 0.33 -Nodes (3): StringFormatterTests, Tests_2, Tests_2s +Cohesion: 0.4 +Nodes (2): QueryVisualElementsExtensions, Unity.PlasticSCM.Editor ### Community 596 - "Community 596" -Cohesion: 0.33 -Nodes (3): ApplicationPlayingTests, PlayModeTests_7, PlayModeTests_8 +Cohesion: 0.4 +Nodes (2): ProjectViewAssetSelection, Unity.PlasticSCM.Editor.AssetMenu ### Community 597 - "Community 597" Cohesion: 0.33 -Nodes (3): MovementScript, PlayModeTests_9, PlayModeTests_9s +Nodes (3): CheckinProgress, Unity.PlasticSCM.Editor.Developer, Unity.PlasticSCM.Editor.Gluon ### Community 598 - "Community 598" Cohesion: 0.33 -Nodes (2): ICallbacksHolder, UnityEditor.TestTools.TestRunner.Api +Nodes (5): Gluon, Installer, Plastic, ToolConstants, Unity.PlasticSCM.Editor.Tool ### Community 599 - "Community 599" -Cohesion: 0.4 -Nodes (2): EditModeLauncherContextSettings, UnityEditor.TestTools.TestRunner +Cohesion: 0.33 +Nodes (5): BranchesColumns, ChangesetsColumns, LocksColumns, Unity.PlasticSCM.Editor.UI, UnityConstants ### Community 600 - "Community 600" -Cohesion: 0.4 -Nodes (2): DelayedCallback, UnityEditor.TestTools.TestRunner +Cohesion: 0.33 +Nodes (4): CustomEditor, IRemoveAdditionalDataContextualMenu, UnityEditor.Rendering, VolumeComponentEditorAttribute ### Community 601 - "Community 601" Cohesion: 0.33 -Nodes (3): EditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner, IEditorCompilationInterfaceProxy +Nodes (2): ISerializedCamera, UnityEditor.Rendering ### Community 602 - "Community 602" -Cohesion: 0.33 -Nodes (2): IUtpMessageReporter, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Cohesion: 0.47 +Nodes (3): DebugDisplaySettingsPanel, UnityEngine.Rendering, IDebugDisplaySettingsPanelDisposable ### Community 603 - "Community 603" Cohesion: 0.33 -Nodes (3): ITestExecutionContext, UnityEngine.TestRunner.NUnitExtensions.Runner, UnityTestExecutionContext +Nodes (5): GenerateHLSL, HLSLArray, PackingAttribute, SurfaceDataAttributes, UnityEngine.Rendering ### Community 604 - "Community 604" -Cohesion: 0.33 -Nodes (2): SortingLayerHelper, TMPro +Cohesion: 0.53 +Nodes (4): Append(), GetFuncHashCode(), GetHashCode(), UnityEngine.Rendering ### Community 605 - "Community 605" Cohesion: 0.33 -Nodes (4): TMP_Glyph, TMP_Sprite, TMPro, TMP_TextElement_Legacy +Nodes (2): TileLayoutUtils, UnityEngine.Rendering ### Community 606 - "Community 606" -Cohesion: 0.4 -Nodes (2): TimelineAssetViewModel, UnityEditor.Timeline +Cohesion: 0.33 +Nodes (4): DefaultLightingExplorerExtension, LightExplorer, Styles, UnityEditor ### Community 607 - "Community 607" Cohesion: 0.4 -Nodes (3): TimelineClip, TimelineClipUpgrade, UnityEngine.Timeline +Nodes (4): IAnalytics, IAnalyticsData, Renderer2DAnalytics, UnityEditor.Rendering.Universal.Analytics ### Community 608 - "Community 608" Cohesion: 0.33 -Nodes (3): IInterval, RuntimeElement, UnityEngine.Timeline +Nodes (3): ISerializedLight, UnityEditor.Rendering.Universal, UniversalRenderPipelineSerializedLight ### Community 609 - "Community 609" -Cohesion: 0.4 -Nodes (3): AbstractEventData, BaseEventData, UnityEngine.EventSystems +Cohesion: 0.47 +Nodes (1): AutoLoadPipelineAsset ### Community 610 - "Community 610" -Cohesion: 0.33 -Nodes (3): IMeshModifier, IVertexModifier, UnityEngine.UI +Cohesion: 0.47 +Nodes (2): ShaderGraphShortcuts, UnityEditor.ShaderGraph ### Community 611 - "Community 611" Cohesion: 0.33 -Nodes (2): IndividualEditor, Unity.VisualScripting +Nodes (3): IMayRequireBitangent, MayRequireBitangentExtensions, UnityEditor.ShaderGraph ### Community 612 - "Community 612" Cohesion: 0.33 -Nodes (2): IFuzzyOption, Unity.VisualScripting +Nodes (3): IMayRequireCameraOpaqueTexture, MayRequireCameraOpaqueTextureExtensions, UnityEditor.ShaderGraph ### Community 613 - "Community 613" Cohesion: 0.33 -Nodes (3): CastMetadata, Unity.VisualScripting, ProxyMetadata +Nodes (3): IMayRequireDepthTexture, MayRequireDepthTextureExtensions, UnityEditor.ShaderGraph ### Community 614 - "Community 614" Cohesion: 0.33 -Nodes (3): CustomEventDescriptor, Unity.VisualScripting, EventUnitDescriptor +Nodes (3): IMayRequireFaceSign, IMayRequireFaceSignExtensions, UnityEditor.ShaderGraph ### Community 615 - "Community 615" Cohesion: 0.33 -Nodes (3): NesterStateTransitionDescriptor, Unity.VisualScripting, StateTransitionDescriptor +Nodes (3): IMayRequireMeshUV, MayRequireMeshUVExtensions, UnityEditor.ShaderGraph ### Community 616 - "Community 616" Cohesion: 0.33 -Nodes (3): FieldsCloner, Unity.VisualScripting, ReflectedCloner +Nodes (3): IMayRequireNormal, MayRequireNormalExtensions, UnityEditor.ShaderGraph ### Community 617 - "Community 617" Cohesion: 0.33 -Nodes (2): GradientCloner, Unity.VisualScripting +Nodes (3): IMayRequirePosition, MayRequirePositionExtensions, UnityEditor.ShaderGraph ### Community 618 - "Community 618" Cohesion: 0.33 -Nodes (3): IEventMachine, Unity.VisualScripting, IMachine +Nodes (3): IMayRequirePositionPredisplacement, MayRequirePositionPredisplacementExtensions, UnityEditor.ShaderGraph ### Community 619 - "Community 619" Cohesion: 0.33 -Nodes (2): IGraphEventHandler, Unity.VisualScripting +Nodes (3): IMayRequireTangent, MayRequireTangentExtensions, UnityEditor.ShaderGraph ### Community 620 - "Community 620" Cohesion: 0.33 -Nodes (2): PlatformUtility, Unity.VisualScripting +Nodes (3): IMayRequireTime, MayRequireTimeExtensions, UnityEditor.ShaderGraph ### Community 621 - "Community 621" Cohesion: 0.33 -Nodes (3): EqualityComparer, MemberInfoComparer, Unity.VisualScripting +Nodes (3): IMayRequireVertexColor, MayRequireVertexColorExtensions, UnityEditor.ShaderGraph ### Community 622 - "Community 622" Cohesion: 0.33 -Nodes (2): IOptimizedAccessor, Unity.VisualScripting +Nodes (3): IMayRequireVertexID, MayRequireVertexIDExtensions, UnityEditor.ShaderGraph ### Community 623 - "Community 623" Cohesion: 0.33 -Nodes (2): ReflectionPropertyAccessor, Unity.VisualScripting +Nodes (3): IMayRequireVertexSkinning, MayRequireVertexSkinningExtensions, UnityEditor.ShaderGraph ### Community 624 - "Community 624" Cohesion: 0.33 -Nodes (3): IGettable, Unity.VisualScripting, XGettable +Nodes (3): IMayRequireViewDirection, MayRequireViewDirectionExtensions, UnityEditor.ShaderGraph ### Community 625 - "Community 625" Cohesion: 0.33 -Nodes (0): +Nodes (2): NodeExtensions, UnityEditor.Graphing ### Community 626 - "Community 626" -Cohesion: 0.4 -Nodes (1): Steamworks +Cohesion: 0.33 +Nodes (3): AdditionalCommandCollection, Item, UnityEditor.ShaderGraph ### Community 627 - "Community 627" -Cohesion: 0.4 -Nodes (3): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterParameters +Cohesion: 0.33 +Nodes (3): DependencyCollection, Item, UnityEditor.ShaderGraph ### Community 628 - "Community 628" -Cohesion: 0.4 -Nodes (4): Animancer, DocsURLs, Strings, Tooltips +Cohesion: 0.33 +Nodes (3): FieldCollection, Item, UnityEditor.ShaderGraph ### Community 629 - "Community 629" -Cohesion: 0.4 -Nodes (2): Animancer.FSM, DelegateState +Cohesion: 0.33 +Nodes (5): KeywordDescriptors, Passes, StructDescriptors, SubShaders, UnityEditor.ShaderGraph ### Community 630 - "Community 630" -Cohesion: 0.5 -Nodes (3): Animancer.FSM, CurrentToString(), ToString() +Cohesion: 0.33 +Nodes (1): UnityEditor.ShaderGraph.Serialization ### Community 631 - "Community 631" -Cohesion: 0.5 -Nodes (3): Animancer.FSM, CurrentToString(), ToString() +Cohesion: 0.33 +Nodes (2): TestSlot, UnityEditor.ShaderGraph ### Community 632 - "Community 632" -Cohesion: 0.4 -Nodes (2): ISerializedReflectedInfo, ParadoxNotion.Serialization +Cohesion: 0.33 +Nodes (3): StringFormatterTests, Tests_2, Tests_2s ### Community 633 - "Community 633" -Cohesion: 0.4 -Nodes (2): ITaskSystem, NodeCanvas.Framework +Cohesion: 0.33 +Nodes (3): ApplicationPlayingTests, PlayModeTests_7, PlayModeTests_8 ### Community 634 - "Community 634" -Cohesion: 0.6 -Nodes (2): ViTuple, ViTupleInterface +Cohesion: 0.33 +Nodes (3): MovementScript, PlayModeTests_9, PlayModeTests_9s ### Community 635 - "Community 635" -Cohesion: 0.4 -Nodes (1): ViAccumulateVersion +Cohesion: 0.33 +Nodes (2): ICallbacksHolder, UnityEditor.TestTools.TestRunner.Api ### Community 636 - "Community 636" Cohesion: 0.4 -Nodes (3): BaseCondition, CountryStrategyCondition, NodeCanvas.Tasks.Actions +Nodes (2): EditModeLauncherContextSettings, UnityEditor.TestTools.TestRunner ### Community 637 - "Community 637" Cohesion: 0.4 -Nodes (2): ISequencerTask, TH1_Presentation.Sequencer.Task +Nodes (2): DelayedCallback, UnityEditor.TestTools.TestRunner ### Community 638 - "Community 638" -Cohesion: 0.4 -Nodes (2): IEscClosable, TH1_UI.Controller.Base +Cohesion: 0.33 +Nodes (3): EditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner, IEditorCompilationInterfaceProxy ### Community 639 - "Community 639" -Cohesion: 0.5 -Nodes (4): TwoPaneSplitView, SplitView, UxmlFactory, YooAsset.Editor +Cohesion: 0.33 +Nodes (2): IUtpMessageReporter, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 640 - "Community 640" -Cohesion: 0.4 -Nodes (2): IDecryptionServices, YooAsset +Cohesion: 0.33 +Nodes (3): ITestExecutionContext, UnityEngine.TestRunner.NUnitExtensions.Runner, UnityTestExecutionContext ### Community 641 - "Community 641" -Cohesion: 0.4 -Nodes (2): IDeliveryLoadServices, YooAsset +Cohesion: 0.33 +Nodes (2): SortingLayerHelper, TMPro ### Community 642 - "Community 642" -Cohesion: 0.4 -Nodes (2): IRemoteServices, YooAsset +Cohesion: 0.33 +Nodes (4): TMP_Glyph, TMP_Sprite, TMPro, TMP_TextElement_Legacy ### Community 643 - "Community 643" Cohesion: 0.4 -Nodes (1): Cysharp.Threading.Tasks +Nodes (2): TimelineAssetViewModel, UnityEditor.Timeline ### Community 644 - "Community 644" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks.Internal, Entry +Cohesion: 0.4 +Nodes (3): TimelineClip, TimelineClipUpgrade, UnityEngine.Timeline ### Community 645 - "Community 645" -Cohesion: 0.4 -Nodes (3): CircleVertexSelector, UnityEditor.U2D.Animation, ICircleSelector +Cohesion: 0.33 +Nodes (3): IInterval, RuntimeElement, UnityEngine.Timeline ### Community 646 - "Community 646" Cohesion: 0.4 -Nodes (2): ISpriteLibDataProvider, UnityEditor.U2D.Animation +Nodes (3): AbstractEventData, BaseEventData, UnityEngine.EventSystems ### Community 647 - "Community 647" -Cohesion: 0.4 -Nodes (2): BaseUpgrader, UnityEditor.U2D.Animation.Upgrading +Cohesion: 0.33 +Nodes (3): IMeshModifier, IVertexModifier, UnityEngine.UI ### Community 648 - "Community 648" -Cohesion: 0.4 -Nodes (3): IconUtility, UnityEngine.U2D.Animation, UnityEngine.U2D.IK +Cohesion: 0.33 +Nodes (2): IndividualEditor, Unity.VisualScripting ### Community 649 - "Community 649" -Cohesion: 0.4 -Nodes (2): Aliasing, Unity.Burst.CompilerServices +Cohesion: 0.33 +Nodes (2): IFuzzyOption, Unity.VisualScripting ### Community 650 - "Community 650" -Cohesion: 0.4 -Nodes (2): Loop, Unity.Burst.CompilerServices +Cohesion: 0.33 +Nodes (3): CastMetadata, Unity.VisualScripting, ProxyMetadata ### Community 651 - "Community 651" -Cohesion: 0.4 -Nodes (4): Unity.Burst.Intrinsics, V128DebugView, V256DebugView, V64DebugView +Cohesion: 0.33 +Nodes (3): CustomEventDescriptor, Unity.VisualScripting, EventUnitDescriptor ### Community 652 - "Community 652" -Cohesion: 0.5 -Nodes (2): CloudProjectId, Unity.PlasticSCM.Editor.CollabMigration +Cohesion: 0.33 +Nodes (3): NesterStateTransitionDescriptor, Unity.VisualScripting, StateTransitionDescriptor ### Community 653 - "Community 653" -Cohesion: 0.5 -Nodes (2): IsCurrent, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer +Cohesion: 0.33 +Nodes (3): FieldsCloner, Unity.VisualScripting, ReflectedCloner ### Community 654 - "Community 654" -Cohesion: 0.4 -Nodes (4): CameraUI, Environment, Styles, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (2): GradientCloner, Unity.VisualScripting ### Community 655 - "Community 655" -Cohesion: 0.4 -Nodes (4): CameraUI, Output, Styles, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (3): IEventMachine, Unity.VisualScripting, IMachine ### Community 656 - "Community 656" -Cohesion: 0.4 -Nodes (4): CameraUI, PhysicalCamera, Styles, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (2): IGraphEventHandler, Unity.VisualScripting ### Community 657 - "Community 657" -Cohesion: 0.4 -Nodes (4): CameraUI, Rendering, Styles, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (2): PlatformUtility, Unity.VisualScripting ### Community 658 - "Community 658" -Cohesion: 0.4 -Nodes (2): ISerializedLight, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (3): EqualityComparer, MemberInfoComparer, Unity.VisualScripting ### Community 659 - "Community 659" -Cohesion: 0.4 -Nodes (2): IEnvironmentDisplayer, Style +Cohesion: 0.33 +Nodes (2): IOptimizedAccessor, Unity.VisualScripting ### Community 660 - "Community 660" -Cohesion: 0.4 -Nodes (2): SerializedDataParameter, UnityEditor.Rendering +Cohesion: 0.33 +Nodes (2): ReflectionPropertyAccessor, Unity.VisualScripting ### Community 661 - "Community 661" -Cohesion: 0.4 -Nodes (2): CommandBufferPool, UnityEngine.Rendering +Cohesion: 0.33 +Nodes (3): IGettable, Unity.VisualScripting, XGettable ### Community 662 - "Community 662" -Cohesion: 0.4 -Nodes (4): Environment, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Cohesion: 0.33 +Nodes (1): UnityEditor.ShaderGraph.Serialization ### Community 663 - "Community 663" -Cohesion: 0.4 -Nodes (4): Rendering, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Cohesion: 0.33 +Nodes (0): ### Community 664 - "Community 664" Cohesion: 0.4 -Nodes (2): ComponentUtility, UnityEngine.Rendering.Universal +Nodes (1): Steamworks ### Community 665 - "Community 665" Cohesion: 0.4 -Nodes (2): IWriteOperation, UnityEditor.Build.Pipeline.Interfaces +Nodes (3): Animancer.Examples.AnimatorControllers.GameKit, Animancer.Examples.StateMachines, CharacterParameters ### Community 666 - "Community 666" -Cohesion: 0.5 -Nodes (2): TextureSamplerState, UnityEditor.ShaderGraph +Cohesion: 0.4 +Nodes (4): Animancer, DocsURLs, Strings, Tooltips ### Community 667 - "Community 667" -Cohesion: 0.4 -Nodes (2): IHasCustomDeprecationMessage, UnityEditor.ShaderGraph +Cohesion: 0.5 +Nodes (3): Animancer.FSM, CurrentToString(), ToString() ### Community 668 - "Community 668" -Cohesion: 0.4 -Nodes (2): IInspectable, UnityEditor.ShaderGraph.Drawing +Cohesion: 0.5 +Nodes (3): Animancer.FSM, CurrentToString(), ToString() ### Community 669 - "Community 669" Cohesion: 0.4 -Nodes (2): IPropertyDrawer, UnityEditor.ShaderGraph.Drawing +Nodes (2): ISerializedReflectedInfo, ParadoxNotion.Serialization ### Community 670 - "Community 670" Cohesion: 0.4 -Nodes (2): StackPool, UnityEditor.Graphing +Nodes (2): ITaskSystem, NodeCanvas.Framework ### Community 671 - "Community 671" -Cohesion: 0.5 -Nodes (4): BlockFieldDescriptor, CustomSlotBlockFieldDescriptor, UnityEditor.ShaderGraph, FieldDescriptor +Cohesion: 0.6 +Nodes (2): ViTuple, ViTupleInterface ### Community 672 - "Community 672" Cohesion: 0.4 -Nodes (1): UnityEditor.ShaderGraph.Serialization +Nodes (1): ViAccumulateVersion ### Community 673 - "Community 673" Cohesion: 0.4 -Nodes (2): AssertHelpers, UnityEditor.ShaderGraph +Nodes (3): BaseCondition, CountryStrategyCondition, NodeCanvas.Tasks.Actions ### Community 674 - "Community 674" -Cohesion: 0.5 -Nodes (2): TestRunnerWindowSettings, UnityEditor.TestTools.TestRunner +Cohesion: 0.4 +Nodes (2): ISequencerTask, TH1_Presentation.Sequencer.Task ### Community 675 - "Community 675" Cohesion: 0.4 -Nodes (2): ISettingsBuilder, UnityEditor.TestTools.TestRunner.CommandLineTest +Nodes (2): IEscClosable, TH1_UI.Controller.Base ### Community 676 - "Community 676" -Cohesion: 0.4 -Nodes (3): AssemblyWrapper, EditorAssemblyWrapper, UnityEditor.TestTools.TestRunner +Cohesion: 0.5 +Nodes (4): TwoPaneSplitView, SplitView, UxmlFactory, YooAsset.Editor ### Community 677 - "Community 677" Cohesion: 0.4 -Nodes (2): IEditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner +Nodes (2): IDecryptionServices, YooAsset ### Community 678 - "Community 678" Cohesion: 0.4 -Nodes (2): ITestListCache, UnityEditor.TestTools.TestRunner +Nodes (2): IDeliveryLoadServices, YooAsset ### Community 679 - "Community 679" Cohesion: 0.4 -Nodes (3): IAsyncTestAssemblyBuilder, UnityEngine.TestTools.NUnitExtensions, ITestAssemblyBuilder +Nodes (2): IRemoteServices, YooAsset ### Community 680 - "Community 680" Cohesion: 0.4 -Nodes (3): TestMethodCommand, UnityEngine.TestTools, UnityTestMethodCommand +Nodes (1): Cysharp.Threading.Tasks ### Community 681 - "Community 681" -Cohesion: 0.4 -Nodes (2): IRemoteTestResultDataFactory, UnityEngine.TestRunner.TestLaunchers +Cohesion: 0.5 +Nodes (2): Cysharp.Threading.Tasks.Internal, Entry ### Community 682 - "Community 682" Cohesion: 0.4 -Nodes (3): AssemblyLoadProxy, UnityEngine.TestTools.Utils, IAssemblyLoadProxy +Nodes (3): CircleVertexSelector, UnityEditor.U2D.Animation, ICircleSelector ### Community 683 - "Community 683" Cohesion: 0.4 -Nodes (3): AssemblyWrapper, UnityEngine.TestTools.Utils, IAssemblyWrapper +Nodes (2): ISpriteLibDataProvider, UnityEditor.U2D.Animation ### Community 684 - "Community 684" Cohesion: 0.4 -Nodes (2): TMP_ListPool, TMPro +Nodes (2): BaseUpgrader, UnityEditor.U2D.Animation.Upgrading ### Community 685 - "Community 685" Cohesion: 0.4 -Nodes (3): SpriteDataObject, TexturePacker_JsonArray, TMPro.SpriteAssetUtilities +Nodes (3): IconUtility, UnityEngine.U2D.Animation, UnityEngine.U2D.IK ### Community 686 - "Community 686" Cohesion: 0.4 -Nodes (1): UnityEditor.Timeline +Nodes (2): Aliasing, Unity.Burst.CompilerServices ### Community 687 - "Community 687" Cohesion: 0.4 -Nodes (3): TimelineAssetEditionMode, UnityEditor.Timeline, TimelineInactiveMode +Nodes (2): Loop, Unity.Burst.CompilerServices ### Community 688 - "Community 688" Cohesion: 0.4 -Nodes (3): TimelineAsset, TimelineAssetUpgrade, UnityEngine.Timeline +Nodes (4): Unity.Burst.Intrinsics, V128DebugView, V256DebugView, V64DebugView ### Community 689 - "Community 689" -Cohesion: 0.4 -Nodes (2): IReorderableListDropTarget, Unity.VisualScripting.ReorderableList +Cohesion: 0.5 +Nodes (2): CloudProjectId, Unity.PlasticSCM.Editor.CollabMigration ### Community 690 - "Community 690" -Cohesion: 0.4 -Nodes (2): Plugin, Unity.VisualScripting +Cohesion: 0.5 +Nodes (2): IsCurrent, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer ### Community 691 - "Community 691" Cohesion: 0.4 -Nodes (2): EditorTypeUtility, Unity.VisualScripting +Nodes (4): CameraUI, Environment, Styles, UnityEditor.Rendering ### Community 692 - "Community 692" Cohesion: 0.4 -Nodes (2): ISidebarPanelContent, Unity.VisualScripting +Nodes (4): CameraUI, Output, Styles, UnityEditor.Rendering ### Community 693 - "Community 693" Cohesion: 0.4 -Nodes (1): Unity.VisualScripting +Nodes (4): CameraUI, PhysicalCamera, Styles, UnityEditor.Rendering ### Community 694 - "Community 694" -Cohesion: 0.5 -Nodes (2): FrameDelayedCallback, Unity.VisualScripting +Cohesion: 0.4 +Nodes (4): CameraUI, Rendering, Styles, UnityEditor.Rendering ### Community 695 - "Community 695" Cohesion: 0.4 -Nodes (2): IPoolable, Unity.VisualScripting +Nodes (2): ISerializedLight, UnityEditor.Rendering ### Community 696 - "Community 696" Cohesion: 0.4 -Nodes (1): Unity.VisualScripting +Nodes (2): IEnvironmentDisplayer, Style ### Community 697 - "Community 697" Cohesion: 0.4 -Nodes (2): IOptimizedInvoker, Unity.VisualScripting +Nodes (2): SerializedDataParameter, UnityEditor.Rendering ### Community 698 - "Community 698" Cohesion: 0.4 -Nodes (2): IGizmoDrawer, Unity.VisualScripting +Nodes (2): CommandBufferPool, UnityEngine.Rendering ### Community 699 - "Community 699" Cohesion: 0.4 -Nodes (3): AnalyticsIdentifier, IAnalyticsIdentifiable, Unity.VisualScripting +Nodes (4): Environment, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 700 - "Community 700" Cohesion: 0.4 -Nodes (0): +Nodes (4): Rendering, Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 701 - "Community 701" -Cohesion: 0.5 -Nodes (2): DiagnosticCategories, ET.Analyzer +Cohesion: 0.4 +Nodes (2): ComponentUtility, UnityEngine.Rendering.Universal ### Community 702 - "Community 702" -Cohesion: 0.5 -Nodes (2): DiagnosticIds, ET.Analyzer +Cohesion: 0.4 +Nodes (2): IWriteOperation, UnityEditor.Build.Pipeline.Interfaces ### Community 703 - "Community 703" Cohesion: 0.5 -Nodes (2): Packsize, Steamworks +Nodes (2): TextureSamplerState, UnityEditor.ShaderGraph ### Community 704 - "Community 704" -Cohesion: 0.5 -Nodes (2): Animancer.Examples.FineControl, IInteractable +Cohesion: 0.4 +Nodes (2): IHasCustomDeprecationMessage, UnityEditor.ShaderGraph ### Community 705 - "Community 705" -Cohesion: 0.5 -Nodes (3): Animancer, DefaultFadeValueAttribute, DefaultValueAttribute +Cohesion: 0.4 +Nodes (2): IInspectable, UnityEditor.ShaderGraph.Drawing ### Community 706 - "Community 706" -Cohesion: 0.5 -Nodes (2): Animancer.Editor, ScriptableObjectEditor +Cohesion: 0.4 +Nodes (2): IPropertyDrawer, UnityEditor.ShaderGraph.Drawing ### Community 707 - "Community 707" -Cohesion: 0.5 -Nodes (2): Animancer, IUpdatable +Cohesion: 0.4 +Nodes (2): StackPool, UnityEditor.Graphing ### Community 708 - "Community 708" -Cohesion: 0.67 -Nodes (2): Animancer, AnimancerTransitionAsset +Cohesion: 0.5 +Nodes (4): BlockFieldDescriptor, CustomSlotBlockFieldDescriptor, UnityEditor.ShaderGraph, FieldDescriptor ### Community 709 - "Community 709" -Cohesion: 0.5 -Nodes (2): CanvasCoreExpand, IGraphExporter +Cohesion: 0.4 +Nodes (1): UnityEditor.ShaderGraph.Serialization ### Community 710 - "Community 710" -Cohesion: 0.67 -Nodes (2): IMigratable, ParadoxNotion.Serialization.FullSerializer +Cohesion: 0.4 +Nodes (2): AssertHelpers, UnityEditor.ShaderGraph ### Community 711 - "Community 711" Cohesion: 0.5 -Nodes (3): BBMappingParameter, NodeCanvas.Framework.Internal, BBObjectParameter +Nodes (2): TestRunnerWindowSettings, UnityEditor.TestTools.TestRunner ### Community 712 - "Community 712" -Cohesion: 0.5 -Nodes (3): MultipleChoiceRequestInfo, NodeCanvas.DialogueTrees, SubtitlesRequestInfo +Cohesion: 0.4 +Nodes (2): ISettingsBuilder, UnityEditor.TestTools.TestRunner.CommandLineTest ### Community 713 - "Community 713" -Cohesion: 0.67 -Nodes (3): IDialogueActor, NodeCanvas.DialogueTrees, ProxyDialogueActor +Cohesion: 0.4 +Nodes (3): AssemblyWrapper, EditorAssemblyWrapper, UnityEditor.TestTools.TestRunner ### Community 714 - "Community 714" -Cohesion: 0.5 -Nodes (1): ViDelegateAssisstant +Cohesion: 0.4 +Nodes (2): IEditorCompilationInterfaceProxy, UnityEditor.TestTools.TestRunner ### Community 715 - "Community 715" -Cohesion: 0.5 -Nodes (2): LobbyManager, TH1_Logic.Net +Cohesion: 0.4 +Nodes (2): ITestListCache, UnityEditor.TestTools.TestRunner ### Community 716 - "Community 716" -Cohesion: 0.5 -Nodes (2): AnimCache, TH1Resource +Cohesion: 0.4 +Nodes (3): IAsyncTestAssemblyBuilder, UnityEngine.TestTools.NUnitExtensions, ITestAssemblyBuilder ### Community 717 - "Community 717" -Cohesion: 0.5 -Nodes (2): ResourceCache, TH1Resource +Cohesion: 0.4 +Nodes (3): TestMethodCommand, UnityEngine.TestTools, UnityTestMethodCommand ### Community 718 - "Community 718" -Cohesion: 0.5 -Nodes (3): IsExternalInit, MemoryPack, System.Runtime.CompilerServices +Cohesion: 0.4 +Nodes (2): IRemoteTestResultDataFactory, UnityEngine.TestRunner.TestLaunchers ### Community 719 - "Community 719" -Cohesion: 0.5 -Nodes (2): AssemblyLoader, NugetForUnity.Helper +Cohesion: 0.4 +Nodes (3): AssemblyLoadProxy, UnityEngine.TestTools.Utils, IAssemblyLoadProxy ### Community 720 - "Community 720" -Cohesion: 0.67 -Nodes (3): Compare(), CompareTo(), NugetForUnity.Models +Cohesion: 0.4 +Nodes (3): AssemblyWrapper, UnityEngine.TestTools.Utils, IAssemblyWrapper ### Community 721 - "Community 721" -Cohesion: 0.5 -Nodes (2): HomePageWindow, YooAsset.Editor +Cohesion: 0.4 +Nodes (2): TMP_ListPool, TMPro ### Community 722 - "Community 722" -Cohesion: 0.5 -Nodes (2): IBuildPipeline, YooAsset.Editor +Cohesion: 0.4 +Nodes (3): SpriteDataObject, TexturePacker_JsonArray, TMPro.SpriteAssetUtilities ### Community 723 - "Community 723" -Cohesion: 0.5 -Nodes (2): IBuildTask, YooAsset.Editor +Cohesion: 0.4 +Nodes (1): UnityEditor.Timeline ### Community 724 - "Community 724" -Cohesion: 0.5 -Nodes (2): IActiveRule, YooAsset.Editor +Cohesion: 0.4 +Nodes (3): TimelineAssetEditionMode, UnityEditor.Timeline, TimelineInactiveMode ### Community 725 - "Community 725" -Cohesion: 0.5 -Nodes (2): IAddressRule, YooAsset.Editor +Cohesion: 0.4 +Nodes (3): TimelineAsset, TimelineAssetUpgrade, UnityEngine.Timeline ### Community 726 - "Community 726" -Cohesion: 0.5 -Nodes (2): IFilterRule, YooAsset.Editor +Cohesion: 0.4 +Nodes (2): IReorderableListDropTarget, Unity.VisualScripting.ReorderableList ### Community 727 - "Community 727" -Cohesion: 0.5 -Nodes (2): UIElementsTools, YooAsset.Editor +Cohesion: 0.4 +Nodes (2): Plugin, Unity.VisualScripting ### Community 728 - "Community 728" -Cohesion: 0.5 -Nodes (2): IBuildinQueryServices, YooAsset +Cohesion: 0.4 +Nodes (2): EditorTypeUtility, Unity.VisualScripting ### Community 729 - "Community 729" -Cohesion: 0.5 -Nodes (2): IEncryptionServices, YooAsset +Cohesion: 0.4 +Nodes (2): ISidebarPanelContent, Unity.VisualScripting ### Community 730 - "Community 730" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks, EnumerableAsyncExtensions +Cohesion: 0.4 +Nodes (1): Unity.VisualScripting ### Community 731 - "Community 731" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks, ExceptionExtensions +Cohesion: 0.4 +Nodes (2): IPoolable, Unity.VisualScripting ### Community 732 - "Community 732" -Cohesion: 0.5 -Nodes (2): Cysharp.Threading.Tasks.Linq, UniTaskAsyncEnumerable +Cohesion: 0.4 +Nodes (1): Unity.VisualScripting ### Community 733 - "Community 733" -Cohesion: 0.5 -Nodes (2): IOutlineGenerator, UnityEditor.U2D.Animation +Cohesion: 0.4 +Nodes (2): IOptimizedInvoker, Unity.VisualScripting ### Community 734 - "Community 734" -Cohesion: 0.5 -Nodes (3): IBoneSelection, UnityEditor.U2D.Animation, ITransformSelection +Cohesion: 0.4 +Nodes (2): IGizmoDrawer, Unity.VisualScripting ### Community 735 - "Community 735" -Cohesion: 0.5 -Nodes (3): ControllerEvents, UnityEditor.U2D.Animation.SpriteLibraryEditor, ViewEvents +Cohesion: 0.4 +Nodes (3): AnalyticsIdentifier, IAnalyticsIdentifiable, Unity.VisualScripting ### Community 736 - "Community 736" Cohesion: 0.5 -Nodes (3): IAnimationPreviewable, IPreviewable, UnityEngine.U2D.Common +Nodes (4): DFA, DFA14, DFA7, Unity.VisualScripting.Dependencies.NCalc ### Community 737 - "Community 737" -Cohesion: 0.5 -Nodes (2): Document, PDNWrapper +Cohesion: 0.4 +Nodes (0): ### Community 738 - "Community 738" Cohesion: 0.5 -Nodes (3): RawImageResource, PhotoshopFile, Thumbnail +Nodes (2): DiagnosticIds, ET.Analyzer ### Community 739 - "Community 739" Cohesion: 0.5 -Nodes (3): MouseStyles, TilePaletteMouseCursorUtility, UnityEditor.Tilemaps +Nodes (2): DiagnosticCategories, ET.Analyzer ### Community 740 - "Community 740" Cohesion: 0.5 -Nodes (2): ParentWindow, Unity.PlasticSCM.Editor +Nodes (2): Packsize, Steamworks ### Community 741 - "Community 741" Cohesion: 0.5 -Nodes (2): ProjectWindow, Unity.PlasticSCM.Editor +Nodes (2): Animancer.Examples.FineControl, IInteractable ### Community 742 - "Community 742" Cohesion: 0.5 -Nodes (2): BuildPathDictionary, Unity.PlasticSCM.Editor.AssetsOverlays.Cache +Nodes (3): Animancer, DefaultFadeValueAttribute, DefaultValueAttribute ### Community 743 - "Community 743" Cohesion: 0.5 -Nodes (2): GenericProgress, Unity.PlasticSCM.Editor.Developer +Nodes (2): Animancer.Editor, ScriptableObjectEditor ### Community 744 - "Community 744" Cohesion: 0.5 -Nodes (2): IncomingChangesNotification, Unity.PlasticSCM.Editor.UI.StatusBar +Nodes (2): Animancer, IUpdatable ### Community 745 - "Community 745" -Cohesion: 0.5 -Nodes (2): CreateWorkspaceViewState, Unity.PlasticSCM.Editor.Views.CreateWorkspace +Cohesion: 0.67 +Nodes (2): Animancer, AnimancerTransitionAsset ### Community 746 - "Community 746" Cohesion: 0.5 -Nodes (2): ConflictResolutionState, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer.DirectoryConflicts +Nodes (2): CanvasCoreExpand, IGraphExporter ### Community 747 - "Community 747" -Cohesion: 0.5 -Nodes (2): LaunchCheckinConflictsDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs +Cohesion: 0.67 +Nodes (2): IMigratable, ParadoxNotion.Serialization.FullSerializer ### Community 748 - "Community 748" Cohesion: 0.5 -Nodes (2): LaunchDependenciesDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs +Nodes (3): BBMappingParameter, NodeCanvas.Framework.Internal, BBObjectParameter ### Community 749 - "Community 749" -Cohesion: 0.67 -Nodes (3): Allocate(), CheckAllocationDoesNotExceedCapacity(), Unity.Collections.LowLevel.Unsafe +Cohesion: 0.5 +Nodes (3): MultipleChoiceRequestInfo, NodeCanvas.DialogueTrees, SubtitlesRequestInfo ### Community 750 - "Community 750" -Cohesion: 0.5 -Nodes (2): JetBrains.Rider.Unity.Editor, StartUpMethodExecutor +Cohesion: 0.67 +Nodes (3): IDialogueActor, NodeCanvas.DialogueTrees, ProxyDialogueActor ### Community 751 - "Community 751" Cohesion: 0.5 -Nodes (2): IGUIDGenerator, Packages.Rider.Editor.ProjectGeneration +Nodes (1): ViDelegateAssisstant ### Community 752 - "Community 752" Cohesion: 0.5 -Nodes (3): DoNotNormalizeAttribute, PostNormalizeAttribute, Unity.Mathematics +Nodes (2): LobbyManager, TH1_Logic.Net ### Community 753 - "Community 753" Cohesion: 0.5 -Nodes (2): ICoreRenderPipelinePreferencesProvider, UnityEditor.Rendering +Nodes (2): AnimCache, TH1Resource ### Community 754 - "Community 754" Cohesion: 0.5 -Nodes (3): CameraUI, Styles, UnityEditor.Rendering +Nodes (2): ResourceCache, TH1Resource ### Community 755 - "Community 755" Cohesion: 0.5 -Nodes (3): LightUI, Styles, UnityEditor.Rendering +Nodes (3): IsExternalInit, MemoryPack, System.Runtime.CompilerServices ### Community 756 - "Community 756" Cohesion: 0.5 -Nodes (3): ProbeVolumeUI, Styles, UnityEditor.Rendering +Nodes (2): AssemblyLoader, NugetForUnity.Helper ### Community 757 - "Community 757" -Cohesion: 0.5 -Nodes (3): RenderPipelineGlobalSettingsUI, Styles, UnityEditor.Rendering +Cohesion: 0.67 +Nodes (3): Compare(), CompareTo(), NugetForUnity.Models ### Community 758 - "Community 758" Cohesion: 0.5 -Nodes (2): SwapCollectionExtensions, UnityEngine.Rendering +Nodes (2): HomePageWindow, YooAsset.Editor ### Community 759 - "Community 759" Cohesion: 0.5 -Nodes (3): DebugManager, UIState, UnityEngine.Rendering +Nodes (2): IBuildPipeline, YooAsset.Editor ### Community 760 - "Community 760" Cohesion: 0.5 -Nodes (2): IDebugDisplaySettingsQuery, UnityEngine.Rendering +Nodes (2): IBuildTask, YooAsset.Editor ### Community 761 - "Community 761" Cohesion: 0.5 -Nodes (2): ICloudBackground, UnityEngine.Rendering +Nodes (2): IActiveRule, YooAsset.Editor ### Community 762 - "Community 762" Cohesion: 0.5 -Nodes (2): HaltonSequence, UnityEngine.Rendering +Nodes (2): IAddressRule, YooAsset.Editor ### Community 763 - "Community 763" Cohesion: 0.5 -Nodes (2): UnityEngine.Rendering, XRUtils +Nodes (2): IFilterRule, YooAsset.Editor ### Community 764 - "Community 764" Cohesion: 0.5 -Nodes (1): EditorExampleTest +Nodes (2): UIElementsTools, YooAsset.Editor ### Community 765 - "Community 765" Cohesion: 0.5 -Nodes (1): RuntimeExampleTest +Nodes (2): IBuildinQueryServices, YooAsset ### Community 766 - "Community 766" Cohesion: 0.5 -Nodes (2): ConfigurationTest, UnityEngine.Rendering.Universal.Test +Nodes (2): IEncryptionServices, YooAsset ### Community 767 - "Community 767" Cohesion: 0.5 -Nodes (3): PhysicalCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Nodes (2): Cysharp.Threading.Tasks, EnumerableAsyncExtensions ### Community 768 - "Community 768" Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Nodes (2): Cysharp.Threading.Tasks, ExceptionExtensions ### Community 769 - "Community 769" Cohesion: 0.5 -Nodes (2): BIRPToURPConversionExtensions, PropertyConversions +Nodes (2): Cysharp.Threading.Tasks.Linq, UniTaskAsyncEnumerable ### Community 770 - "Community 770" Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineGlobalSettingsUI +Nodes (2): IOutlineGenerator, UnityEditor.U2D.Animation ### Community 771 - "Community 771" Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI +Nodes (3): IBoneSelection, UnityEditor.U2D.Animation, ITransformSelection ### Community 772 - "Community 772" Cohesion: 0.5 -Nodes (2): NewRendererFeatureDropdownItem, UnityEditor.Rendering.Universal +Nodes (3): ControllerEvents, UnityEditor.U2D.Animation.SpriteLibraryEditor, ViewEvents ### Community 773 - "Community 773" Cohesion: 0.5 -Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineAssetUI +Nodes (3): IAnimationPreviewable, IPreviewable, UnityEngine.U2D.Common ### Community 774 - "Community 774" Cohesion: 0.5 -Nodes (3): VFXSRPSubOutput, UnityEditor.VFX.URP, VFXURPSubOutput +Nodes (2): Document, PDNWrapper ### Community 775 - "Community 775" Cohesion: 0.5 -Nodes (3): IShaderVariantSettings, UnityEngine.Rendering.Universal, UniversalRenderPipelineGlobalSettings +Nodes (3): RawImageResource, PhotoshopFile, Thumbnail ### Community 776 - "Community 776" Cohesion: 0.5 -Nodes (3): UnityEngine.Rendering.Universal, UniversalRenderPipelineVolumeDebugSettings, VolumeDebugSettings +Nodes (3): MouseStyles, TilePaletteMouseCursorUtility, UnityEditor.Tilemaps ### Community 777 - "Community 777" Cohesion: 0.5 -Nodes (2): TileSizeExtensions, UnityEngine.Rendering.Universal +Nodes (2): ParentWindow, Unity.PlasticSCM.Editor ### Community 778 - "Community 778" Cohesion: 0.5 -Nodes (2): IBuildTask, UnityEditor.Build.Pipeline.Interfaces +Nodes (2): ProjectWindow, Unity.PlasticSCM.Editor ### Community 779 - "Community 779" Cohesion: 0.5 -Nodes (3): BuildSpriteData, UnityEditor.Build.Pipeline, IBuildSpriteData +Nodes (2): BuildPathDictionary, Unity.PlasticSCM.Editor.AssetsOverlays.Cache ### Community 780 - "Community 780" Cohesion: 0.5 -Nodes (1): UnityEngine.Build.Pipeline +Nodes (2): GenericProgress, Unity.PlasticSCM.Editor.Developer ### Community 781 - "Community 781" Cohesion: 0.5 -Nodes (3): BuildCacheTestBase, LocalBuildCacheTests, UnityEditor.Build.Pipeline.Tests +Nodes (2): IncomingChangesNotification, Unity.PlasticSCM.Editor.UI.StatusBar ### Community 782 - "Community 782" Cohesion: 0.5 -Nodes (3): SerializableVirtualTexture, SerializableVirtualTextureLayer, UnityEditor.ShaderGraph.Internal +Nodes (2): CreateWorkspaceViewState, Unity.PlasticSCM.Editor.Views.CreateWorkspace ### Community 783 - "Community 783" Cohesion: 0.5 -Nodes (2): IHasDependencies, UnityEditor.ShaderGraph +Nodes (2): ConflictResolutionState, Unity.PlasticSCM.Editor.Views.IncomingChanges.Developer.DirectoryConflicts ### Community 784 - "Community 784" Cohesion: 0.5 -Nodes (2): IGeneratesBodyCode, UnityEditor.ShaderGraph +Nodes (2): LaunchCheckinConflictsDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs ### Community 785 - "Community 785" Cohesion: 0.5 -Nodes (2): IGeneratesFunction, UnityEditor.ShaderGraph +Nodes (2): LaunchDependenciesDialog, Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs ### Community 786 - "Community 786" -Cohesion: 0.5 -Nodes (2): IMayRequireTransform, UnityEditor.ShaderGraph +Cohesion: 0.67 +Nodes (3): Allocate(), CheckAllocationDoesNotExceedCapacity(), Unity.Collections.LowLevel.Unsafe ### Community 787 - "Community 787" Cohesion: 0.5 -Nodes (2): IOnAssetEnabled, UnityEditor.Graphing +Nodes (2): JetBrains.Rider.Unity.Editor, StartUpMethodExecutor ### Community 788 - "Community 788" Cohesion: 0.5 -Nodes (2): ILegacyTarget, UnityEditor.ShaderGraph.Legacy +Nodes (2): IGUIDGenerator, Packages.Rider.Editor.ProjectGeneration ### Community 789 - "Community 789" Cohesion: 0.5 -Nodes (2): IPropertyFromNode, UnityEditor.ShaderGraph +Nodes (3): DoNotNormalizeAttribute, PostNormalizeAttribute, Unity.Mathematics ### Community 790 - "Community 790" Cohesion: 0.5 -Nodes (2): PropertyUtil, UnityEditor.ShaderGraph +Nodes (2): ICoreRenderPipelinePreferencesProvider, UnityEditor.Rendering ### Community 791 - "Community 791" Cohesion: 0.5 -Nodes (2): AbstractMaterialNodeModificationListener, UnityEditor.ShaderGraph.Drawing +Nodes (3): CameraUI, Styles, UnityEditor.Rendering ### Community 792 - "Community 792" Cohesion: 0.5 -Nodes (2): IControlAttribute, UnityEditor.ShaderGraph.Drawing.Controls +Nodes (3): LightUI, Styles, UnityEditor.Rendering ### Community 793 - "Community 793" Cohesion: 0.5 -Nodes (2): ISGViewModel, UnityEditor.ShaderGraph.Drawing +Nodes (3): ProbeVolumeUI, Styles, UnityEditor.Rendering ### Community 794 - "Community 794" Cohesion: 0.5 -Nodes (2): IShaderInputObserver, UnityEditor.ShaderGraph.Drawing +Nodes (3): RenderPipelineGlobalSettingsUI, Styles, UnityEditor.Rendering ### Community 795 - "Community 795" Cohesion: 0.5 -Nodes (2): IHasMetadata, UnityEditor.ShaderGraph +Nodes (2): SwapCollectionExtensions, UnityEngine.Rendering ### Community 796 - "Community 796" Cohesion: 0.5 -Nodes (2): InstancingOptionsExtensions, UnityEditor.ShaderGraph +Nodes (3): DebugManager, UIState, UnityEngine.Rendering ### Community 797 - "Community 797" Cohesion: 0.5 -Nodes (2): ShaderModelExtensions, UnityEditor.ShaderGraph +Nodes (2): IDebugDisplaySettingsQuery, UnityEngine.Rendering ### Community 798 - "Community 798" Cohesion: 0.5 -Nodes (2): FakeJsonObject, UnityEditor.ShaderGraph.Serialization +Nodes (2): ICloudBackground, UnityEngine.Rendering ### Community 799 - "Community 799" Cohesion: 0.5 -Nodes (3): IRequiredSetting, RequiredSettingBase, UnityEngine.Rendering +Nodes (2): HaltonSequence, UnityEngine.Rendering ### Community 800 - "Community 800" Cohesion: 0.5 -Nodes (3): PRSIRequiredSetting, PRSRequiredSettingBase, UnityEngine.Rendering +Nodes (2): UnityEngine.Rendering, XRUtils ### Community 801 - "Community 801" Cohesion: 0.5 -Nodes (2): PlayModeTests_10s, SlowTests +Nodes (1): EditorExampleTest ### Community 802 - "Community 802" Cohesion: 0.5 -Nodes (2): ITestResultAdaptor, UnityEditor.TestTools.TestRunner.Api +Nodes (1): RuntimeExampleTest ### Community 803 - "Community 803" Cohesion: 0.5 -Nodes (2): ResultSummarizer, UnityEditor.TestTools.TestRunner.GUI +Nodes (2): ConfigurationTest, UnityEngine.Rendering.Universal.Test ### Community 804 - "Community 804" Cohesion: 0.5 -Nodes (3): ISceneWrapper, SceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene +Nodes (3): PhysicalCamera, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 805 - "Community 805" Cohesion: 0.5 -Nodes (3): EditorAssembliesProxy, UnityEditor.TestTools.TestRunner, IEditorAssembliesProxy +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 806 - "Community 806" Cohesion: 0.5 -Nodes (2): ITestListProvider, UnityEditor.TestTools.TestRunner +Nodes (2): BIRPToURPConversionExtensions, PropertyConversions ### Community 807 - "Community 807" Cohesion: 0.5 -Nodes (2): ITestSettingsDeserializer, UnityEditor.TestTools.TestRunner +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineGlobalSettingsUI ### Community 808 - "Community 808" Cohesion: 0.5 -Nodes (2): IUtpLogger, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI ### Community 809 - "Community 809" Cohesion: 0.5 -Nodes (2): Is, UnityEngine.TestTools.Constraints +Nodes (2): NewRendererFeatureDropdownItem, UnityEditor.Rendering.Universal ### Community 810 - "Community 810" Cohesion: 0.5 -Nodes (2): ITestSuiteModifier, UnityEngine.TestRunner.NUnitExtensions +Nodes (3): Styles, UnityEditor.Rendering.Universal, UniversalRenderPipelineAssetUI ### Community 811 - "Community 811" Cohesion: 0.5 -Nodes (2): IEnumerableTestMethodCommand, UnityEngine.TestRunner.NUnitExtensions.Runner +Nodes (3): VFXSRPSubOutput, UnityEditor.VFX.URP, VFXURPSubOutput ### Community 812 - "Community 812" Cohesion: 0.5 -Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory +Nodes (3): IShaderVariantSettings, UnityEngine.Rendering.Universal, UniversalRenderPipelineGlobalSettings ### Community 813 - "Community 813" Cohesion: 0.5 -Nodes (2): IPrebuildSetup, UnityEngine.TestTools +Nodes (3): UnityEngine.Rendering.Universal, UniversalRenderPipelineVolumeDebugSettings, VolumeDebugSettings ### Community 814 - "Community 814" Cohesion: 0.5 -Nodes (2): IAssemblyLoadProxy, UnityEngine.TestTools.Utils +Nodes (2): TileSizeExtensions, UnityEngine.Rendering.Universal ### Community 815 - "Community 815" Cohesion: 0.5 -Nodes (2): IScriptingRuntimeProxy, UnityEngine.TestTools.Utils +Nodes (2): IBuildTask, UnityEditor.Build.Pipeline.Interfaces ### Community 816 - "Community 816" Cohesion: 0.5 -Nodes (3): CustomYieldInstruction, MonoBehaviourTest, UnityEngine.TestTools +Nodes (3): BuildSpriteData, UnityEditor.Build.Pipeline, IBuildSpriteData ### Community 817 - "Community 817" Cohesion: 0.5 -Nodes (2): TMP_ResourcesLoader, TMPro.EditorUtilities +Nodes (1): UnityEngine.Build.Pipeline ### Community 818 - "Community 818" Cohesion: 0.5 -Nodes (1): TMPro +Nodes (3): BuildCacheTestBase, LocalBuildCacheTests, UnityEditor.Build.Pipeline.Tests ### Community 819 - "Community 819" Cohesion: 0.5 -Nodes (3): Glyph, TMP_SpriteGlyph, TMPro +Nodes (3): SerializableVirtualTexture, SerializableVirtualTextureLayer, UnityEditor.ShaderGraph.Internal ### Community 820 - "Community 820" Cohesion: 0.5 -Nodes (2): BuiltInPresets, UnityEditor.Timeline +Nodes (2): IHasDependencies, UnityEditor.ShaderGraph ### Community 821 - "Community 821" Cohesion: 0.5 -Nodes (2): ICurvesOwnerInspectorWrapper, UnityEditor.Timeline +Nodes (2): IGeneratesBodyCode, UnityEditor.ShaderGraph ### Community 822 - "Community 822" Cohesion: 0.5 -Nodes (1): UnityEditor.Timeline +Nodes (2): IGeneratesFunction, UnityEditor.ShaderGraph ### Community 823 - "Community 823" Cohesion: 0.5 -Nodes (2): IRowGUI, UnityEditor.Timeline +Nodes (2): IMayRequireTransform, UnityEditor.ShaderGraph ### Community 824 - "Community 824" Cohesion: 0.5 -Nodes (1): UnityEditor.Timeline +Nodes (2): IOnAssetEnabled, UnityEditor.Graphing ### Community 825 - "Community 825" Cohesion: 0.5 -Nodes (2): ISnappable, UnityEditor.Timeline +Nodes (2): ILegacyTarget, UnityEditor.ShaderGraph.Legacy ### Community 826 - "Community 826" -Cohesion: 0.67 -Nodes (3): CloseScope(), Dispose(), UnityEditor +Cohesion: 0.5 +Nodes (2): IPropertyFromNode, UnityEditor.ShaderGraph ### Community 827 - "Community 827" Cohesion: 0.5 -Nodes (2): ILayerable, UnityEngine.Timeline +Nodes (2): PropertyUtil, UnityEditor.ShaderGraph ### Community 828 - "Community 828" Cohesion: 0.5 -Nodes (2): IMarker, UnityEngine.Timeline +Nodes (2): AbstractMaterialNodeModificationListener, UnityEditor.ShaderGraph.Drawing ### Community 829 - "Community 829" Cohesion: 0.5 -Nodes (3): MarkerTrack, SignalTrack, UnityEngine.Timeline +Nodes (2): IControlAttribute, UnityEditor.ShaderGraph.Drawing.Controls ### Community 830 - "Community 830" Cohesion: 0.5 -Nodes (2): IPropertyPreview, UnityEngine.Timeline +Nodes (2): ISGViewModel, UnityEditor.ShaderGraph.Drawing ### Community 831 - "Community 831" Cohesion: 0.5 -Nodes (1): UnityEngine.EventSystems +Nodes (2): IShaderInputObserver, UnityEditor.ShaderGraph.Drawing ### Community 832 - "Community 832" Cohesion: 0.5 -Nodes (1): UnityEngine.UI +Nodes (2): IHasMetadata, UnityEditor.ShaderGraph ### Community 833 - "Community 833" Cohesion: 0.5 -Nodes (2): IGraphicEnabledDisabled, UnityEngine.UI +Nodes (2): InstancingOptionsExtensions, UnityEditor.ShaderGraph ### Community 834 - "Community 834" Cohesion: 0.5 -Nodes (2): IMask, UnityEngine.UI +Nodes (2): ShaderModelExtensions, UnityEditor.ShaderGraph ### Community 835 - "Community 835" Cohesion: 0.5 -Nodes (2): IMaskable, UnityEngine.UI +Nodes (2): FakeJsonObject, UnityEditor.ShaderGraph.Serialization ### Community 836 - "Community 836" Cohesion: 0.5 -Nodes (2): RectangularVertexClipper, UnityEngine.UI +Nodes (3): IRequiredSetting, RequiredSettingBase, UnityEngine.Rendering ### Community 837 - "Community 837" Cohesion: 0.5 -Nodes (3): GraphElementAnalysis, Unity.VisualScripting, IGraphElementAnalysis +Nodes (3): PRSIRequiredSetting, PRSRequiredSettingBase, UnityEngine.Rendering ### Community 838 - "Community 838" Cohesion: 0.5 -Nodes (2): IAnalyser, Unity.VisualScripting +Nodes (2): PlayModeTests_10s, SlowTests ### Community 839 - "Community 839" Cohesion: 0.5 -Nodes (2): IAssigner, Unity.VisualScripting +Nodes (2): ITestResultAdaptor, UnityEditor.TestTools.TestRunner.Api ### Community 840 - "Community 840" Cohesion: 0.5 -Nodes (2): IElementAdderMenu, Unity.VisualScripting.ReorderableList.Element_Adder_Menu +Nodes (2): ResultSummarizer, UnityEditor.TestTools.TestRunner.GUI ### Community 841 - "Community 841" Cohesion: 0.5 -Nodes (2): IDescriptor, Unity.VisualScripting +Nodes (3): ISceneWrapper, SceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene ### Community 842 - "Community 842" Cohesion: 0.5 -Nodes (2): DraggedListItem, Unity.VisualScripting +Nodes (3): EditorAssembliesProxy, UnityEditor.TestTools.TestRunner, IEditorAssembliesProxy ### Community 843 - "Community 843" Cohesion: 0.5 -Nodes (3): DropdownOption, DropdownSeparator, Unity.VisualScripting +Nodes (2): ITestListProvider, UnityEditor.TestTools.TestRunner ### Community 844 - "Community 844" Cohesion: 0.5 -Nodes (1): Unity.VisualScripting +Nodes (2): ITestSettingsDeserializer, UnityEditor.TestTools.TestRunner ### Community 845 - "Community 845" Cohesion: 0.5 -Nodes (2): AotStubWriter, Unity.VisualScripting +Nodes (2): IUtpLogger, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 846 - "Community 846" Cohesion: 0.5 -Nodes (2): TypeExtensions, Unity.VisualScripting +Nodes (2): Is, UnityEngine.TestTools.Constraints ### Community 847 - "Community 847" Cohesion: 0.5 -Nodes (2): EditorTimeUtility, Unity.VisualScripting +Nodes (2): ITestSuiteModifier, UnityEngine.TestRunner.NUnitExtensions ### Community 848 - "Community 848" Cohesion: 0.5 -Nodes (3): AboutPluginsPage, Unity.VisualScripting, ListPage +Nodes (2): IEnumerableTestMethodCommand, UnityEngine.TestRunner.NUnitExtensions.Runner ### Community 849 - "Community 849" Cohesion: 0.5 -Nodes (2): Unity.VisualScripting, XUnitOptionProvider +Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, WorkItemFactory ### Community 850 - "Community 850" Cohesion: 0.5 -Nodes (3): FlowStateTransitionEditor, Unity.VisualScripting, NesterStateTransitionEditor +Nodes (2): IPrebuildSetup, UnityEngine.TestTools ### Community 851 - "Community 851" Cohesion: 0.5 -Nodes (3): fsConfig, fsGlobalConfig, Unity.VisualScripting.FullSerializer +Nodes (2): IAssemblyLoadProxy, UnityEngine.TestTools.Utils ### Community 852 - "Community 852" Cohesion: 0.5 -Nodes (2): EnsureThat, Unity.VisualScripting +Nodes (2): IScriptingRuntimeProxy, UnityEngine.TestTools.Utils ### Community 853 - "Community 853" Cohesion: 0.5 -Nodes (1): Unity.VisualScripting +Nodes (3): CustomYieldInstruction, MonoBehaviourTest, UnityEngine.TestTools ### Community 854 - "Community 854" Cohesion: 0.5 -Nodes (2): DebugUtility, Unity.VisualScripting +Nodes (2): TMP_ResourcesLoader, TMPro.EditorUtilities ### Community 855 - "Community 855" Cohesion: 0.5 -Nodes (2): IGraphParent, Unity.VisualScripting +Nodes (1): TMPro ### Community 856 - "Community 856" Cohesion: 0.5 -Nodes (2): IAotStubbable, Unity.VisualScripting +Nodes (3): Glyph, TMP_SpriteGlyph, TMPro ### Community 857 - "Community 857" Cohesion: 0.5 -Nodes (2): IPrewarmable, Unity.VisualScripting +Nodes (2): BuiltInPresets, UnityEditor.Timeline ### Community 858 - "Community 858" Cohesion: 0.5 -Nodes (3): fsObjectAttribute, SerializationVersionAttribute, Unity.VisualScripting +Nodes (2): ICurvesOwnerInspectorWrapper, UnityEditor.Timeline ### Community 859 - "Community 859" Cohesion: 0.5 -Nodes (3): fsPropertyAttribute, SerializeAsAttribute, Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 860 - "Community 860" Cohesion: 0.5 -Nodes (2): ExceptionUtility, Unity.VisualScripting +Nodes (2): IRowGUI, UnityEditor.Timeline ### Community 861 - "Community 861" Cohesion: 0.5 -Nodes (2): IInitializable, Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 862 - "Community 862" Cohesion: 0.5 -Nodes (3): IUnitConnectionDebugData, UnitConnectionDebugData, Unity.VisualScripting +Nodes (2): ISnappable, UnityEditor.Timeline ### Community 863 - "Community 863" -Cohesion: 0.5 -Nodes (3): IUnitRelation, UnitRelation, Unity.VisualScripting +Cohesion: 0.67 +Nodes (3): CloseScope(), Dispose(), UnityEditor ### Community 864 - "Community 864" Cohesion: 0.5 -Nodes (3): ApplicationException, EvaluationException, Unity.VisualScripting.Dependencies.NCalc +Nodes (2): ILayerable, UnityEngine.Timeline ### Community 865 - "Community 865" Cohesion: 0.5 -Nodes (2): LogicalExpressionVisitor, Unity.VisualScripting.Dependencies.NCalc +Nodes (2): IMarker, UnityEngine.Timeline ### Community 866 - "Community 866" Cohesion: 0.5 -Nodes (3): GLApplication, -sendEvent, -windowWillClose +Nodes (3): MarkerTrack, SignalTrack, UnityEngine.Timeline ### Community 867 - "Community 867" -Cohesion: 0.67 -Nodes (2): PropertyAttribute, Unity.Mathematics.UnityEngine +Cohesion: 0.5 +Nodes (2): IPropertyPreview, UnityEngine.Timeline ### Community 868 - "Community 868" -Cohesion: 0.67 -Nodes (2): AnalyzerGlobalSetting, ET.Analyzer +Cohesion: 0.5 +Nodes (1): UnityEngine.EventSystems ### Community 869 - "Community 869" -Cohesion: 0.67 -Nodes (2): AnalyzeAssembly, ET.Analyzer +Cohesion: 0.5 +Nodes (1): UnityEngine.UI ### Community 870 - "Community 870" -Cohesion: 0.67 -Nodes (2): Definition, ET.Analyzer +Cohesion: 0.5 +Nodes (2): IGraphicEnabledDisabled, UnityEngine.UI ### Community 871 - "Community 871" -Cohesion: 0.67 -Nodes (2): Steamworks, Version +Cohesion: 0.5 +Nodes (2): IMask, UnityEngine.UI ### Community 872 - "Community 872" -Cohesion: 0.67 -Nodes (2): Constants, Steamworks +Cohesion: 0.5 +Nodes (2): IMaskable, UnityEngine.UI ### Community 873 - "Community 873" -Cohesion: 0.67 -Nodes (1): Steamworks +Cohesion: 0.5 +Nodes (2): RectangularVertexClipper, UnityEngine.UI ### Community 874 - "Community 874" -Cohesion: 0.67 -Nodes (1): Steamworks +Cohesion: 0.5 +Nodes (3): GraphElementAnalysis, Unity.VisualScripting, IGraphElementAnalysis ### Community 875 - "Community 875" -Cohesion: 0.67 -Nodes (2): DoNotRenameAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): IAnalyser, Unity.VisualScripting ### Community 876 - "Community 876" -Cohesion: 0.67 -Nodes (2): NotObfuscatedCauseAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): IAssigner, Unity.VisualScripting ### Community 877 - "Community 877" -Cohesion: 0.67 -Nodes (2): ObfuscateAnywayAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): IElementAdderMenu, Unity.VisualScripting.ReorderableList.Element_Adder_Menu ### Community 878 - "Community 878" -Cohesion: 0.67 -Nodes (2): DoNotObfuscateClassAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): IDescriptor, Unity.VisualScripting ### Community 879 - "Community 879" -Cohesion: 0.67 -Nodes (2): DoNotUseClassForFakeCodeAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (2): DraggedListItem, Unity.VisualScripting ### Community 880 - "Community 880" -Cohesion: 0.67 -Nodes (2): DoNotObfuscateMethodBodyAttribute, OPS.Obfuscator.Attribute +Cohesion: 0.5 +Nodes (3): DropdownOption, DropdownSeparator, Unity.VisualScripting ### Community 881 - "Community 881" -Cohesion: 0.67 -Nodes (2): Animancer.Examples.Events, EventUtilities +Cohesion: 0.5 +Nodes (1): Unity.VisualScripting ### Community 882 - "Community 882" -Cohesion: 0.67 -Nodes (2): Animancer.Examples.AnimatorControllers, Animations +Cohesion: 0.5 +Nodes (2): AotStubWriter, Unity.VisualScripting ### Community 883 - "Community 883" -Cohesion: 0.67 -Nodes (2): Animancer, IHasKey +Cohesion: 0.5 +Nodes (2): TypeExtensions, Unity.VisualScripting ### Community 884 - "Community 884" -Cohesion: 0.67 -Nodes (0): +Cohesion: 0.5 +Nodes (2): EditorTimeUtility, Unity.VisualScripting ### Community 885 - "Community 885" -Cohesion: 0.67 -Nodes (2): CanvasCoreExpand, ExpandGraphEditor +Cohesion: 0.5 +Nodes (3): AboutPluginsPage, Unity.VisualScripting, ListPage ### Community 886 - "Community 886" -Cohesion: 0.67 -Nodes (2): IEventData, ParadoxNotion +Cohesion: 0.5 +Nodes (2): Unity.VisualScripting, XUnitOptionProvider ### Community 887 - "Community 887" -Cohesion: 0.67 -Nodes (2): IMissingRecoverable, ParadoxNotion.Serialization +Cohesion: 0.5 +Nodes (3): FlowStateTransitionEditor, Unity.VisualScripting, NesterStateTransitionEditor ### Community 888 - "Community 888" -Cohesion: 0.67 -Nodes (2): ParadoxNotion.Serialization, SerializationPair +Cohesion: 0.5 +Nodes (3): fsConfig, fsGlobalConfig, Unity.VisualScripting.FullSerializer ### Community 889 - "Community 889" -Cohesion: 0.67 -Nodes (2): fsGlobalConfig, ParadoxNotion.Serialization.FullSerializer +Cohesion: 0.5 +Nodes (2): EnsureThat, Unity.VisualScripting ### Community 890 - "Community 890" -Cohesion: 0.67 -Nodes (2): LogTag, NodeCanvas.Framework +Cohesion: 0.5 +Nodes (1): Unity.VisualScripting ### Community 891 - "Community 891" -Cohesion: 0.67 -Nodes (2): NodeCanvas.Framework, VariableSeperator +Cohesion: 0.5 +Nodes (2): DebugUtility, Unity.VisualScripting ### Community 892 - "Community 892" -Cohesion: 0.67 -Nodes (2): AnimPhase, TH1_Anim.Fragments +Cohesion: 0.5 +Nodes (2): IGraphParent, Unity.VisualScripting ### Community 893 - "Community 893" -Cohesion: 0.67 -Nodes (2): FragmentStep, TH1_Anim.Fragments +Cohesion: 0.5 +Nodes (2): IAotStubbable, Unity.VisualScripting ### Community 894 - "Community 894" -Cohesion: 0.67 -Nodes (2): ICityLogic, Logic +Cohesion: 0.5 +Nodes (2): IPrewarmable, Unity.VisualScripting ### Community 895 - "Community 895" -Cohesion: 0.67 -Nodes (2): MatchLevelData, TH1_Logic.MatchConfig +Cohesion: 0.5 +Nodes (3): fsObjectAttribute, SerializationVersionAttribute, Unity.VisualScripting ### Community 896 - "Community 896" -Cohesion: 0.67 -Nodes (2): MemberInfo, TH1_Logic.Net +Cohesion: 0.5 +Nodes (3): fsPropertyAttribute, SerializeAsAttribute, Unity.VisualScripting ### Community 897 - "Community 897" -Cohesion: 0.67 -Nodes (2): OssData, TH1_Logic.Oss +Cohesion: 0.5 +Nodes (2): ExceptionUtility, Unity.VisualScripting ### Community 898 - "Community 898" -Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillOwner +Cohesion: 0.5 +Nodes (2): IInitializable, Unity.VisualScripting ### Community 899 - "Community 899" -Cohesion: 0.67 -Nodes (2): AllYCounterSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): IUnitConnectionDebugData, UnitConnectionDebugData, Unity.VisualScripting ### Community 900 - "Community 900" -Cohesion: 0.67 -Nodes (2): AllYTranSportSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): IUnitRelation, UnitRelation, Unity.VisualScripting ### Community 901 - "Community 901" -Cohesion: 0.67 -Nodes (2): AttackAfterKillSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): ApplicationException, EvaluationException, Unity.VisualScripting.Dependencies.NCalc ### Community 902 - "Community 902" -Cohesion: 0.67 -Nodes (2): AttackGetAttackPointSkill, Logic.Skill +Cohesion: 0.5 +Nodes (2): LogicalExpressionVisitor, Unity.VisualScripting.Dependencies.NCalc ### Community 903 - "Community 903" -Cohesion: 0.67 -Nodes (2): AttackRangeUpSkill, Logic.Skill +Cohesion: 0.5 +Nodes (3): GLApplication, -sendEvent, -windowWillClose ### Community 904 - "Community 904" Cohesion: 0.67 -Nodes (2): AttackUpSkill, Logic.Skill +Nodes (2): PropertyAttribute, Unity.Mathematics.UnityEngine ### Community 905 - "Community 905" Cohesion: 0.67 -Nodes (2): AutoHealSkill, Logic.Skill +Nodes (2): AnalyzerGlobalSetting, ET.Analyzer ### Community 906 - "Community 906" Cohesion: 0.67 -Nodes (2): AyaBuffSkill, Logic.Skill +Nodes (2): AnalyzeAssembly, ET.Analyzer ### Community 907 - "Community 907" Cohesion: 0.67 -Nodes (2): AyaDamageDebuffSkill, Logic.Skill +Nodes (2): Definition, ET.Analyzer ### Community 908 - "Community 908" Cohesion: 0.67 -Nodes (2): AyaMoveAgainBuffSkill, Logic.Skill +Nodes (2): Steamworks, Version ### Community 909 - "Community 909" Cohesion: 0.67 -Nodes (2): AyaMoveAgainSkill, Logic.Skill +Nodes (2): Constants, Steamworks ### Community 910 - "Community 910" Cohesion: 0.67 -Nodes (2): BambooMoveSkill, Logic.Skill +Nodes (1): Steamworks ### Community 911 - "Community 911" Cohesion: 0.67 -Nodes (2): BoneAttackUpSkill, Logic.Skill +Nodes (1): Steamworks ### Community 912 - "Community 912" Cohesion: 0.67 -Nodes (2): BonePileSkill, Logic.Skill +Nodes (2): DoNotRenameAttribute, OPS.Obfuscator.Attribute ### Community 913 - "Community 913" Cohesion: 0.67 -Nodes (2): BoneSacrificeSkill, Logic.Skill +Nodes (2): NotObfuscatedCauseAttribute, OPS.Obfuscator.Attribute ### Community 914 - "Community 914" Cohesion: 0.67 -Nodes (2): CanHideSkill, Logic.Skill +Nodes (2): ObfuscateAnywayAttribute, OPS.Obfuscator.Attribute ### Community 915 - "Community 915" Cohesion: 0.67 -Nodes (2): CantMoveSkill, Logic.Skill +Nodes (2): DoNotObfuscateClassAttribute, OPS.Obfuscator.Attribute ### Community 916 - "Community 916" Cohesion: 0.67 -Nodes (2): CarrySkill, Logic.Skill +Nodes (2): DoNotUseClassForFakeCodeAttribute, OPS.Obfuscator.Attribute ### Community 917 - "Community 917" Cohesion: 0.67 -Nodes (2): CatCartSkill, Logic.Skill +Nodes (2): DoNotObfuscateMethodBodyAttribute, OPS.Obfuscator.Attribute ### Community 918 - "Community 918" Cohesion: 0.67 -Nodes (2): CityStolenSkill, Logic.Skill +Nodes (2): Animancer.Examples.Events, EventUtilities ### Community 919 - "Community 919" Cohesion: 0.67 -Nodes (2): CityTransportSkill, Logic.Skill +Nodes (2): Animancer.Examples.AnimatorControllers, Animations ### Community 920 - "Community 920" Cohesion: 0.67 -Nodes (2): ConvertSkill, Logic.Skill +Nodes (2): Animancer, IHasKey ### Community 921 - "Community 921" Cohesion: 0.67 -Nodes (2): CorpseBuffSkill, Logic.Skill +Nodes (0): ### Community 922 - "Community 922" Cohesion: 0.67 -Nodes (2): CreepSkill, Logic.Skill +Nodes (2): CanvasCoreExpand, ExpandGraphEditor ### Community 923 - "Community 923" Cohesion: 0.67 -Nodes (2): CriticalSkill, Logic.Skill +Nodes (2): IEventData, ParadoxNotion ### Community 924 - "Community 924" Cohesion: 0.67 -Nodes (2): CurseGodSkill, Logic.Skill +Nodes (2): IMissingRecoverable, ParadoxNotion.Serialization ### Community 925 - "Community 925" Cohesion: 0.67 -Nodes (2): DashSkill, Logic.Skill +Nodes (2): ParadoxNotion.Serialization, SerializationPair ### Community 926 - "Community 926" Cohesion: 0.67 -Nodes (2): DieBonePileSkill, Logic.Skill +Nodes (2): fsGlobalConfig, ParadoxNotion.Serialization.FullSerializer ### Community 927 - "Community 927" Cohesion: 0.67 -Nodes (2): DuoSkill, Logic.Skill +Nodes (2): LogTag, NodeCanvas.Framework ### Community 928 - "Community 928" Cohesion: 0.67 -Nodes (2): EirinFrenchAttackSkill, Logic.Skill +Nodes (2): NodeCanvas.Framework, VariableSeperator ### Community 929 - "Community 929" Cohesion: 0.67 -Nodes (2): EirinFrenchBuffSkill, Logic.Skill +Nodes (2): AnimPhase, TH1_Anim.Fragments ### Community 930 - "Community 930" Cohesion: 0.67 -Nodes (2): EirinFrenchKillSkill, Logic.Skill +Nodes (2): FragmentStep, TH1_Anim.Fragments ### Community 931 - "Community 931" Cohesion: 0.67 -Nodes (2): EirinFrenchOverHealSkill, Logic.Skill +Nodes (2): ICityLogic, Logic ### Community 932 - "Community 932" Cohesion: 0.67 -Nodes (2): EirinFrenchSuperAttackSkill, Logic.Skill +Nodes (2): MatchLevelData, TH1_Logic.MatchConfig ### Community 933 - "Community 933" Cohesion: 0.67 -Nodes (2): EscapeProSkill, Logic.Skill +Nodes (2): MemberInfo, TH1_Logic.Net ### Community 934 - "Community 934" Cohesion: 0.67 -Nodes (2): EscapeSkill, Logic.Skill +Nodes (2): OssData, TH1_Logic.Oss ### Community 935 - "Community 935" Cohesion: 0.67 -Nodes (2): EternitySkill, Logic.Skill +Nodes (2): Logic.Skill, SkillOwner ### Community 936 - "Community 936" Cohesion: 0.67 -Nodes (2): FearMakerSkill, Logic.Skill +Nodes (2): AllYCounterSkill, Logic.Skill ### Community 937 - "Community 937" Cohesion: 0.67 -Nodes (2): FlandreAttackSkill, Logic.Skill +Nodes (2): AllYTranSportSkill, Logic.Skill ### Community 938 - "Community 938" Cohesion: 0.67 -Nodes (2): FlandreBuffSkill, Logic.Skill +Nodes (2): AttackAfterKillSkill, Logic.Skill ### Community 939 - "Community 939" Cohesion: 0.67 -Nodes (2): FlandreKillSkill, Logic.Skill +Nodes (2): AttackGetAttackPointSkill, Logic.Skill ### Community 940 - "Community 940" Cohesion: 0.67 -Nodes (2): FlySkill, Logic.Skill +Nodes (2): AttackRangeUpSkill, Logic.Skill ### Community 941 - "Community 941" Cohesion: 0.67 -Nodes (2): ForestDefenseSkill, Logic.Skill +Nodes (2): AttackUpSkill, Logic.Skill ### Community 942 - "Community 942" Cohesion: 0.67 -Nodes (2): ForestStartDashSkill, Logic.Skill +Nodes (2): AutoHealSkill, Logic.Skill ### Community 943 - "Community 943" Cohesion: 0.67 -Nodes (2): FortifySkill, Logic.Skill +Nodes (2): AyaBuffSkill, Logic.Skill ### Community 944 - "Community 944" Cohesion: 0.67 -Nodes (2): GalaxyArrowSkill, Logic.Skill +Nodes (2): AyaDamageDebuffSkill, Logic.Skill ### Community 945 - "Community 945" Cohesion: 0.67 -Nodes (2): GridMomijiPerySkill, Logic.Skill +Nodes (2): AyaMoveAgainBuffSkill, Logic.Skill ### Community 946 - "Community 946" Cohesion: 0.67 -Nodes (2): GridMountainSkill, Logic.Skill +Nodes (2): AyaMoveAgainSkill, Logic.Skill ### Community 947 - "Community 947" Cohesion: 0.67 -Nodes (2): GridRadiationSkill, Logic.Skill +Nodes (2): BambooMoveSkill, Logic.Skill ### Community 948 - "Community 948" Cohesion: 0.67 -Nodes (2): GridSanaeNineContinueDamageSkill, Logic.Skill +Nodes (2): BoneAttackUpSkill, Logic.Skill ### Community 949 - "Community 949" Cohesion: 0.67 -Nodes (2): HealSkill, Logic.Skill +Nodes (2): BonePileSkill, Logic.Skill ### Community 950 - "Community 950" Cohesion: 0.67 -Nodes (2): HideStateSkill, Logic.Skill +Nodes (2): BoneSacrificeSkill, Logic.Skill ### Community 951 - "Community 951" Cohesion: 0.67 -Nodes (2): HouraisanFrenchFakeMoonSkill, Logic.Skill +Nodes (2): CanHideSkill, Logic.Skill ### Community 952 - "Community 952" Cohesion: 0.67 -Nodes (2): HouraisanFrenchWolfMoonSkill, Logic.Skill +Nodes (2): CantMoveSkill, Logic.Skill ### Community 953 - "Community 953" Cohesion: 0.67 -Nodes (2): HouraisanFrenchWolfStartSkill, Logic.Skill +Nodes (2): CarrySkill, Logic.Skill ### Community 954 - "Community 954" Cohesion: 0.67 -Nodes (2): IllusionSkill, Logic.Skill +Nodes (2): CatCartSkill, Logic.Skill ### Community 955 - "Community 955" Cohesion: 0.67 -Nodes (2): InfiltrateSkill, Logic.Skill +Nodes (2): CityStolenSkill, Logic.Skill ### Community 956 - "Community 956" Cohesion: 0.67 -Nodes (2): JunkerOfficerSkill, Logic.Skill +Nodes (2): CityTransportSkill, Logic.Skill ### Community 957 - "Community 957" Cohesion: 0.67 -Nodes (2): KaguyaFrenchAroundSkill, Logic.Skill +Nodes (2): ConvertSkill, Logic.Skill ### Community 958 - "Community 958" Cohesion: 0.67 -Nodes (2): KaguyaFrenchAttackProSkill, Logic.Skill +Nodes (2): CorpseBuffSkill, Logic.Skill ### Community 959 - "Community 959" Cohesion: 0.67 -Nodes (2): KaguyaFrenchAttackSkill, Logic.Skill +Nodes (2): CreepSkill, Logic.Skill ### Community 960 - "Community 960" Cohesion: 0.67 -Nodes (2): KaguyaFrenchCrescentMoonSkill, Logic.Skill +Nodes (2): CriticalSkill, Logic.Skill ### Community 961 - "Community 961" Cohesion: 0.67 -Nodes (2): KaguyaFrenchForeverBuffSkill, Logic.Skill +Nodes (2): CurseGodSkill, Logic.Skill ### Community 962 - "Community 962" Cohesion: 0.67 -Nodes (2): KaguyaFrenchNapoleonicCodeSkill, Logic.Skill +Nodes (2): DashSkill, Logic.Skill ### Community 963 - "Community 963" Cohesion: 0.67 -Nodes (2): KaguyaFrenchNewMoonSkill, Logic.Skill +Nodes (2): DieBonePileSkill, Logic.Skill ### Community 964 - "Community 964" Cohesion: 0.67 -Nodes (2): KaguyaFrenchSynergyDebuffSkill, Logic.Skill +Nodes (2): DuoSkill, Logic.Skill ### Community 965 - "Community 965" Cohesion: 0.67 -Nodes (2): KaguyaFrenchSynergySkill, Logic.Skill +Nodes (2): EirinFrenchAttackSkill, Logic.Skill ### Community 966 - "Community 966" Cohesion: 0.67 -Nodes (2): KanakoBattlefieldProSkill, Logic.Skill +Nodes (2): EirinFrenchBuffSkill, Logic.Skill ### Community 967 - "Community 967" Cohesion: 0.67 -Nodes (2): KanakoBattlefieldSkill, Logic.Skill +Nodes (2): EirinFrenchKillSkill, Logic.Skill ### Community 968 - "Community 968" Cohesion: 0.67 -Nodes (2): KanakoMountainAttackSkill, Logic.Skill +Nodes (2): EirinFrenchOverHealSkill, Logic.Skill ### Community 969 - "Community 969" Cohesion: 0.67 -Nodes (2): KanakoMountainBuffSkill, Logic.Skill +Nodes (2): EirinFrenchSuperAttackSkill, Logic.Skill ### Community 970 - "Community 970" Cohesion: 0.67 -Nodes (2): KanakoMountainSkill, Logic.Skill +Nodes (2): EscapeProSkill, Logic.Skill ### Community 971 - "Community 971" Cohesion: 0.67 -Nodes (2): KanakoSittingSkill, Logic.Skill +Nodes (2): EscapeSkill, Logic.Skill ### Community 972 - "Community 972" Cohesion: 0.67 -Nodes (2): KanakoTechSkill, Logic.Skill +Nodes (2): EternitySkill, Logic.Skill ### Community 973 - "Community 973" Cohesion: 0.67 -Nodes (2): KanakoWarProSkill, Logic.Skill +Nodes (2): FearMakerSkill, Logic.Skill ### Community 974 - "Community 974" Cohesion: 0.67 -Nodes (2): KanakoWarSkill, Logic.Skill +Nodes (2): FlandreAttackSkill, Logic.Skill ### Community 975 - "Community 975" Cohesion: 0.67 -Nodes (2): KanakoWindProSkill, Logic.Skill +Nodes (2): FlandreBuffSkill, Logic.Skill ### Community 976 - "Community 976" Cohesion: 0.67 -Nodes (2): KanakoWindSkill, Logic.Skill +Nodes (2): FlandreKillSkill, Logic.Skill ### Community 977 - "Community 977" Cohesion: 0.67 -Nodes (2): KoakumaDevotionSkill, Logic.Skill +Nodes (2): FlySkill, Logic.Skill ### Community 978 - "Community 978" Cohesion: 0.67 -Nodes (2): KoakumaHeroSkill, Logic.Skill +Nodes (2): ForestDefenseSkill, Logic.Skill ### Community 979 - "Community 979" Cohesion: 0.67 -Nodes (2): KoishiAutoMoveSkill, Logic.Skill +Nodes (2): ForestStartDashSkill, Logic.Skill ### Community 980 - "Community 980" Cohesion: 0.67 -Nodes (2): KoishiAutoSkill, Logic.Skill +Nodes (2): FortifySkill, Logic.Skill ### Community 981 - "Community 981" Cohesion: 0.67 -Nodes (2): KoishiDeathFearSkill, Logic.Skill +Nodes (2): GalaxyArrowSkill, Logic.Skill ### Community 982 - "Community 982" Cohesion: 0.67 -Nodes (2): KoishiRespawnSkill, Logic.Skill +Nodes (2): GridMomijiPerySkill, Logic.Skill ### Community 983 - "Community 983" Cohesion: 0.67 -Nodes (2): KoishiUndeadSkill, Logic.Skill +Nodes (2): GridMountainSkill, Logic.Skill ### Community 984 - "Community 984" Cohesion: 0.67 -Nodes (2): KomeijiFearImmuneSkill, Logic.Skill +Nodes (2): GridRadiationSkill, Logic.Skill ### Community 985 - "Community 985" Cohesion: 0.67 -Nodes (2): KomeijiFearSkill, Logic.Skill +Nodes (2): GridSanaeNineContinueDamageSkill, Logic.Skill ### Community 986 - "Community 986" Cohesion: 0.67 -Nodes (2): KomeijiFearSplashSkill, Logic.Skill +Nodes (2): HealSkill, Logic.Skill ### Community 987 - "Community 987" Cohesion: 0.67 -Nodes (2): KomeijiKnightAddSkill, Logic.Skill +Nodes (2): HideStateSkill, Logic.Skill ### Community 988 - "Community 988" Cohesion: 0.67 -Nodes (2): KomeijiKnightKillSkill, Logic.Skill +Nodes (2): HouraisanFrenchFakeMoonSkill, Logic.Skill ### Community 989 - "Community 989" Cohesion: 0.67 -Nodes (2): KomeijiRiderAddSkill, Logic.Skill +Nodes (2): HouraisanFrenchWolfMoonSkill, Logic.Skill ### Community 990 - "Community 990" Cohesion: 0.67 -Nodes (2): KomeijiRiderKillSkill, Logic.Skill +Nodes (2): HouraisanFrenchWolfStartSkill, Logic.Skill ### Community 991 - "Community 991" Cohesion: 0.67 -Nodes (2): KomeijiRiderTransSkill, Logic.Skill +Nodes (2): IllusionSkill, Logic.Skill ### Community 992 - "Community 992" Cohesion: 0.67 -Nodes (2): LaevatainPreySkill, Logic.Skill +Nodes (2): InfiltrateSkill, Logic.Skill ### Community 993 - "Community 993" Cohesion: 0.67 -Nodes (2): LaevatainSkill, Logic.Skill +Nodes (2): JunkerOfficerSkill, Logic.Skill ### Community 994 - "Community 994" Cohesion: 0.67 -Nodes (2): LandAndWaterSkill, Logic.Skill +Nodes (2): KaguyaFrenchAroundSkill, Logic.Skill ### Community 995 - "Community 995" Cohesion: 0.67 -Nodes (2): LandOnlySkill, Logic.Skill +Nodes (2): KaguyaFrenchAttackProSkill, Logic.Skill ### Community 996 - "Community 996" Cohesion: 0.67 -Nodes (2): Logic.Skill, LuckSkill +Nodes (2): KaguyaFrenchAttackSkill, Logic.Skill ### Community 997 - "Community 997" Cohesion: 0.67 -Nodes (2): Logic.Skill, MahaCorpseBuffSkill +Nodes (2): KaguyaFrenchCrescentMoonSkill, Logic.Skill ### Community 998 - "Community 998" Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingAttackUpSkill +Nodes (2): KaguyaFrenchForeverBuffSkill, Logic.Skill ### Community 999 - "Community 999" Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingCounterSkill +Nodes (2): KaguyaFrenchNapoleonicCodeSkill, Logic.Skill ### Community 1000 - "Community 1000" Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingDuelSkill +Nodes (2): KaguyaFrenchNewMoonSkill, Logic.Skill ### Community 1001 - "Community 1001" Cohesion: 0.67 -Nodes (2): Logic.Skill, MeilingRestSkill +Nodes (2): KaguyaFrenchSynergyDebuffSkill, Logic.Skill ### Community 1002 - "Community 1002" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchBoomSkill +Nodes (2): KaguyaFrenchSynergySkill, Logic.Skill ### Community 1003 - "Community 1003" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchEggSkill +Nodes (2): KanakoBattlefieldProSkill, Logic.Skill ### Community 1004 - "Community 1004" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchEnhanceSkill +Nodes (2): KanakoBattlefieldSkill, Logic.Skill ### Community 1005 - "Community 1005" Cohesion: 0.67 -Nodes (2): Logic.Skill, MokouFrenchReviveSkill +Nodes (2): KanakoMountainAttackSkill, Logic.Skill ### Community 1006 - "Community 1006" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiBuffSkill +Nodes (2): KanakoMountainBuffSkill, Logic.Skill ### Community 1007 - "Community 1007" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiHunterAttackSkill +Nodes (2): KanakoMountainSkill, Logic.Skill ### Community 1008 - "Community 1008" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiHunterSkill +Nodes (2): KanakoSittingSkill, Logic.Skill ### Community 1009 - "Community 1009" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiHuntSkill +Nodes (2): KanakoTechSkill, Logic.Skill ### Community 1010 - "Community 1010" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiKillSkill +Nodes (2): KanakoWarProSkill, Logic.Skill ### Community 1011 - "Community 1011" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiPreySkill +Nodes (2): KanakoWarSkill, Logic.Skill ### Community 1012 - "Community 1012" Cohesion: 0.67 -Nodes (2): Logic.Skill, MomijiSightSkill +Nodes (2): KanakoWindProSkill, Logic.Skill ### Community 1013 - "Community 1013" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoonPrincessSkill +Nodes (2): KanakoWindSkill, Logic.Skill ### Community 1014 - "Community 1014" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoriyaBuffSkill +Nodes (2): KoakumaDevotionSkill, Logic.Skill ### Community 1015 - "Community 1015" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoriyaKnightMoveSkill +Nodes (2): KoakumaHeroSkill, Logic.Skill ### Community 1016 - "Community 1016" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoriyaRoadSkill +Nodes (2): KoishiAutoMoveSkill, Logic.Skill ### Community 1017 - "Community 1017" Cohesion: 0.67 -Nodes (2): Logic.Skill, MountainDefenseSkill +Nodes (2): KoishiAutoSkill, Logic.Skill ### Community 1018 - "Community 1018" Cohesion: 0.67 -Nodes (2): Logic.Skill, MountainGodSkill +Nodes (2): KoishiDeathFearSkill, Logic.Skill ### Community 1019 - "Community 1019" Cohesion: 0.67 -Nodes (2): Logic.Skill, MountainMoveSkill +Nodes (2): KoishiRespawnSkill, Logic.Skill ### Community 1020 - "Community 1020" Cohesion: 0.67 -Nodes (2): Logic.Skill, MoveRangeUpSkill +Nodes (2): KoishiUndeadSkill, Logic.Skill ### Community 1021 - "Community 1021" Cohesion: 0.67 -Nodes (2): Logic.Skill, NoPopulationSkill +Nodes (2): KomeijiFearImmuneSkill, Logic.Skill ### Community 1022 - "Community 1022" Cohesion: 0.67 -Nodes (2): Logic.Skill, NuclearFusionSkill +Nodes (2): KomeijiFearSkill, Logic.Skill ### Community 1023 - "Community 1023" Cohesion: 0.67 -Nodes (2): Logic.Skill, NuclearSkill +Nodes (2): KomeijiFearSplashSkill, Logic.Skill ### Community 1024 - "Community 1024" Cohesion: 0.67 -Nodes (2): Logic.Skill, OceanDefenseSkill +Nodes (2): KomeijiKnightAddSkill, Logic.Skill ### Community 1025 - "Community 1025" Cohesion: 0.67 -Nodes (2): Logic.Skill, OceanMoveSkill +Nodes (2): KomeijiKnightKillSkill, Logic.Skill ### Community 1026 - "Community 1026" Cohesion: 0.67 -Nodes (2): Logic.Skill, OfficerSkill +Nodes (2): KomeijiRiderAddSkill, Logic.Skill ### Community 1027 - "Community 1027" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliEarthSkill +Nodes (2): KomeijiRiderKillSkill, Logic.Skill ### Community 1028 - "Community 1028" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliFireSkill +Nodes (2): KomeijiRiderTransSkill, Logic.Skill ### Community 1029 - "Community 1029" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliMetalSkill +Nodes (2): LaevatainPreySkill, Logic.Skill ### Community 1030 - "Community 1030" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliMoveProSkill +Nodes (2): LaevatainSkill, Logic.Skill ### Community 1031 - "Community 1031" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliMoveSkill +Nodes (2): LandAndWaterSkill, Logic.Skill ### Community 1032 - "Community 1032" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliRestSkill +Nodes (2): LandOnlySkill, Logic.Skill ### Community 1033 - "Community 1033" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliStoneProSkill +Nodes (2): Logic.Skill, LuckSkill ### Community 1034 - "Community 1034" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliStoneSkill +Nodes (2): Logic.Skill, MahaCorpseBuffSkill ### Community 1035 - "Community 1035" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliWaterSkill +Nodes (2): Logic.Skill, MeilingAttackUpSkill ### Community 1036 - "Community 1036" Cohesion: 0.67 -Nodes (2): Logic.Skill, PatchouliWoodSkill +Nodes (2): Logic.Skill, MeilingCounterSkill ### Community 1037 - "Community 1037" Cohesion: 0.67 -Nodes (2): Logic.Skill, PathStompSkill +Nodes (2): Logic.Skill, MeilingDuelSkill ### Community 1038 - "Community 1038" Cohesion: 0.67 -Nodes (2): Logic.Skill, PeaceSkill +Nodes (2): Logic.Skill, MeilingRestSkill ### Community 1039 - "Community 1039" Cohesion: 0.67 -Nodes (2): Logic.Skill, PersistSkill +Nodes (2): Logic.Skill, MokouFrenchBoomSkill ### Community 1040 - "Community 1040" Cohesion: 0.67 -Nodes (2): Logic.Skill, PhilostoneSkill +Nodes (2): Logic.Skill, MokouFrenchEggSkill ### Community 1041 - "Community 1041" Cohesion: 0.67 -Nodes (2): Logic.Skill, PhoenixEggSkill +Nodes (2): Logic.Skill, MokouFrenchEnhanceSkill ### Community 1042 - "Community 1042" Cohesion: 0.67 -Nodes (2): Logic.Skill, PhoenixSkill +Nodes (2): Logic.Skill, MokouFrenchReviveSkill ### Community 1043 - "Community 1043" Cohesion: 0.67 -Nodes (2): Logic.Skill, PoisonedSkill +Nodes (2): Logic.Skill, MomijiBuffSkill ### Community 1044 - "Community 1044" Cohesion: 0.67 -Nodes (2): Logic.Skill, PoorHealthSkill +Nodes (2): Logic.Skill, MomijiHunterAttackSkill ### Community 1045 - "Community 1045" Cohesion: 0.67 -Nodes (2): Logic.Skill, PowerUpSkill +Nodes (2): Logic.Skill, MomijiHunterSkill ### Community 1046 - "Community 1046" Cohesion: 0.67 -Nodes (2): Logic.Skill, QuartetSkill +Nodes (2): Logic.Skill, MomijiHuntSkill ### Community 1047 - "Community 1047" Cohesion: 0.67 -Nodes (2): Logic.Skill, RecycleSkill +Nodes (2): Logic.Skill, MomijiKillSkill ### Community 1048 - "Community 1048" Cohesion: 0.67 -Nodes (2): Logic.Skill, RedMistDefenseSkill +Nodes (2): Logic.Skill, MomijiPreySkill ### Community 1049 - "Community 1049" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenFrenchAttakSkill +Nodes (2): Logic.Skill, MomijiSightSkill ### Community 1050 - "Community 1050" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenFrenchKillSkill +Nodes (2): Logic.Skill, MoonPrincessSkill ### Community 1051 - "Community 1051" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenIllusionProSkill +Nodes (2): Logic.Skill, MoriyaBuffSkill ### Community 1052 - "Community 1052" Cohesion: 0.67 -Nodes (2): Logic.Skill, ReisenIllusionSkill +Nodes (2): Logic.Skill, MoriyaKnightMoveSkill ### Community 1053 - "Community 1053" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaAbsorbSkill +Nodes (2): Logic.Skill, MoriyaRoadSkill ### Community 1054 - "Community 1054" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaAttackSkill +Nodes (2): Logic.Skill, MountainDefenseSkill ### Community 1055 - "Community 1055" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaBuff2Skill +Nodes (2): Logic.Skill, MountainGodSkill ### Community 1056 - "Community 1056" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaBuff3Skill +Nodes (2): Logic.Skill, MountainMoveSkill ### Community 1057 - "Community 1057" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaBuffSkill +Nodes (2): Logic.Skill, MoveRangeUpSkill ### Community 1058 - "Community 1058" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaEgyptianEmpireKillSkill +Nodes (2): Logic.Skill, NoPopulationSkill ### Community 1059 - "Community 1059" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaHelpProSkill +Nodes (2): Logic.Skill, NuclearFusionSkill ### Community 1060 - "Community 1060" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaHelpSkill +Nodes (2): Logic.Skill, NuclearSkill ### Community 1061 - "Community 1061" Cohesion: 0.67 -Nodes (2): Logic.Skill, RemiliaHunterSkill +Nodes (2): Logic.Skill, OceanDefenseSkill ### Community 1062 - "Community 1062" Cohesion: 0.67 -Nodes (2): Logic.Skill, RengesyouControSkill +Nodes (2): Logic.Skill, OceanMoveSkill ### Community 1063 - "Community 1063" Cohesion: 0.67 -Nodes (2): Logic.Skill, RengesyouSkill +Nodes (2): Logic.Skill, OfficerSkill ### Community 1064 - "Community 1064" Cohesion: 0.67 -Nodes (2): Logic.Skill, RinCorpseColletSkill +Nodes (2): Logic.Skill, PatchouliEarthSkill ### Community 1065 - "Community 1065" Cohesion: 0.67 -Nodes (2): Logic.Skill, RinFireSkill +Nodes (2): Logic.Skill, PatchouliFireSkill ### Community 1066 - "Community 1066" Cohesion: 0.67 -Nodes (2): Logic.Skill, RotaLFlamesProSkill +Nodes (2): Logic.Skill, PatchouliMetalSkill ### Community 1067 - "Community 1067" Cohesion: 0.67 -Nodes (2): Logic.Skill, RotaLFlamesSkill +Nodes (2): Logic.Skill, PatchouliMoveProSkill ### Community 1068 - "Community 1068" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaFlyProSkill +Nodes (2): Logic.Skill, PatchouliMoveSkill ### Community 1069 - "Community 1069" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaFlySkill +Nodes (2): Logic.Skill, PatchouliRestSkill ### Community 1070 - "Community 1070" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaGuardSkill +Nodes (2): Logic.Skill, PatchouliStoneProSkill ### Community 1071 - "Community 1071" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaKillSkill +Nodes (2): Logic.Skill, PatchouliStoneSkill ### Community 1072 - "Community 1072" Cohesion: 0.67 -Nodes (2): Logic.Skill, SakuyaTiredSkill +Nodes (2): Logic.Skill, PatchouliWaterSkill ### Community 1073 - "Community 1073" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivineSkill +Nodes (2): Logic.Skill, PatchouliWoodSkill ### Community 1074 - "Community 1074" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E2_ATK_Skill +Nodes (2): Logic.Skill, PathStompSkill ### Community 1075 - "Community 1075" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E2_MOVE_Skill +Nodes (2): Logic.Skill, PeaceSkill ### Community 1076 - "Community 1076" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E3_COUNTER_Skill +Nodes (2): Logic.Skill, PersistSkill ### Community 1077 - "Community 1077" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E3_HP_Skill +Nodes (2): Logic.Skill, PhilostoneSkill ### Community 1078 - "Community 1078" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E4_DEFENSE_Skill +Nodes (2): Logic.Skill, PhoenixEggSkill ### Community 1079 - "Community 1079" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_E4_KILL_Skill +Nodes (2): Logic.Skill, PhoenixSkill ### Community 1080 - "Community 1080" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F2_DEFENSE_Skill +Nodes (2): Logic.Skill, PoisonedSkill ### Community 1081 - "Community 1081" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F2_RESIST_Skill +Nodes (2): Logic.Skill, PoorHealthSkill ### Community 1082 - "Community 1082" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F3_MOVE_Skill +Nodes (2): Logic.Skill, PowerUpSkill ### Community 1083 - "Community 1083" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F3_RESIST_Skill +Nodes (2): Logic.Skill, QuartetSkill ### Community 1084 - "Community 1084" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F4_ATK_Skill +Nodes (2): Logic.Skill, RecycleSkill ### Community 1085 - "Community 1085" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeDivine_F4_KILL_Skill +Nodes (2): Logic.Skill, RedMistDefenseSkill ### Community 1086 - "Community 1086" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeMoveSkill +Nodes (2): Logic.Skill, ReisenFrenchAttakSkill ### Community 1087 - "Community 1087" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeNineContinueSkill +Nodes (2): Logic.Skill, ReisenFrenchKillSkill ### Community 1088 - "Community 1088" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeNineSkill +Nodes (2): Logic.Skill, ReisenIllusionProSkill ### Community 1089 - "Community 1089" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeWindSkill +Nodes (2): Logic.Skill, ReisenIllusionSkill ### Community 1090 - "Community 1090" Cohesion: 0.67 -Nodes (2): Logic.Skill, SanaeWindXSkill +Nodes (2): Logic.Skill, RemiliaAbsorbSkill ### Community 1091 - "Community 1091" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriAttackBoomSkill +Nodes (2): Logic.Skill, RemiliaAttackSkill ### Community 1092 - "Community 1092" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriAttackSkill +Nodes (2): Logic.Skill, RemiliaBuff2Skill ### Community 1093 - "Community 1093" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriBanSkill +Nodes (2): Logic.Skill, RemiliaBuff3Skill ### Community 1094 - "Community 1094" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatoriSeeSkill +Nodes (2): Logic.Skill, RemiliaBuffSkill ### Community 1095 - "Community 1095" Cohesion: 0.67 -Nodes (2): Logic.Skill, SatsujinkiSkill +Nodes (2): Logic.Skill, RemiliaEgyptianEmpireKillSkill ### Community 1096 - "Community 1096" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScarletKoakumaSkill +Nodes (2): Logic.Skill, RemiliaHelpProSkill ### Community 1097 - "Community 1097" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScarletMistRealTimeVampireDebuffSkill +Nodes (2): Logic.Skill, RemiliaHelpSkill ### Community 1098 - "Community 1098" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScarletMistRealTimeVampireSkill +Nodes (2): Logic.Skill, RemiliaHunterSkill ### Community 1099 - "Community 1099" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScoutProSkill +Nodes (2): Logic.Skill, RengesyouControSkill ### Community 1100 - "Community 1100" Cohesion: 0.67 -Nodes (2): Logic.Skill, ScoutSkill +Nodes (2): Logic.Skill, RengesyouSkill ### Community 1101 - "Community 1101" Cohesion: 0.67 -Nodes (2): Logic.Skill, ShenlanSkill +Nodes (2): Logic.Skill, RinCorpseColletSkill ### Community 1102 - "Community 1102" Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillBanBombSkill +Nodes (2): Logic.Skill, RinFireSkill ### Community 1103 - "Community 1103" Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillBanSkill +Nodes (2): Logic.Skill, RotaLFlamesProSkill ### Community 1104 - "Community 1104" Cohesion: 0.67 -Nodes (2): Logic.Skill, SkillBase +Nodes (2): Logic.Skill, RotaLFlamesSkill ### Community 1105 - "Community 1105" Cohesion: 0.67 -Nodes (2): Logic.Skill, SneakSkill +Nodes (2): Logic.Skill, SakuyaFlyProSkill ### Community 1106 - "Community 1106" Cohesion: 0.67 -Nodes (2): Logic.Skill, SpeedUpSkill +Nodes (2): Logic.Skill, SakuyaFlySkill ### Community 1107 - "Community 1107" Cohesion: 0.67 -Nodes (2): Logic.Skill, SplashSkill +Nodes (2): Logic.Skill, SakuyaGuardSkill ### Community 1108 - "Community 1108" Cohesion: 0.67 -Nodes (2): Logic.Skill, StaticSkill +Nodes (2): Logic.Skill, SakuyaKillSkill ### Community 1109 - "Community 1109" Cohesion: 0.67 -Nodes (2): Logic.Skill, StiffSkill +Nodes (2): Logic.Skill, SakuyaTiredSkill ### Community 1110 - "Community 1110" Cohesion: 0.67 -Nodes (2): Logic.Skill, StompSkill +Nodes (2): Logic.Skill, SanaeDivineSkill ### Community 1111 - "Community 1111" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuperDashSkill +Nodes (2): Logic.Skill, SanaeDivine_E2_ATK_Skill ### Community 1112 - "Community 1112" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuperHideSkill +Nodes (2): Logic.Skill, SanaeDivine_E2_MOVE_Skill ### Community 1113 - "Community 1113" Cohesion: 0.67 -Nodes (2): Logic.Skill, SurpriseSkill +Nodes (2): Logic.Skill, SanaeDivine_E3_COUNTER_Skill ### Community 1114 - "Community 1114" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoAttackAllySkill +Nodes (2): Logic.Skill, SanaeDivine_E3_HP_Skill ### Community 1115 - "Community 1115" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoAttackProSkill +Nodes (2): Logic.Skill, SanaeDivine_E4_DEFENSE_Skill ### Community 1116 - "Community 1116" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoAttackSkill +Nodes (2): Logic.Skill, SanaeDivine_E4_KILL_Skill ### Community 1117 - "Community 1117" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoCombineSkill +Nodes (2): Logic.Skill, SanaeDivine_F2_DEFENSE_Skill ### Community 1118 - "Community 1118" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoFullmapSkill +Nodes (2): Logic.Skill, SanaeDivine_F2_RESIST_Skill ### Community 1119 - "Community 1119" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiAttackSkill +Nodes (2): Logic.Skill, SanaeDivine_F3_MOVE_Skill ### Community 1120 - "Community 1120" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiCombineSkill +Nodes (2): Logic.Skill, SanaeDivine_F3_RESIST_Skill ### Community 1121 - "Community 1121" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiSkill +Nodes (2): Logic.Skill, SanaeDivine_F4_ATK_Skill ### Community 1122 - "Community 1122" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoHebiSplitSkill +Nodes (2): Logic.Skill, SanaeDivine_F4_KILL_Skill ### Community 1123 - "Community 1123" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoMoveSkill +Nodes (2): Logic.Skill, SanaeMoveSkill ### Community 1124 - "Community 1124" Cohesion: 0.67 -Nodes (2): Logic.Skill, SuwakoSplitSkill +Nodes (2): Logic.Skill, SanaeNineContinueSkill ### Community 1125 - "Community 1125" Cohesion: 0.67 -Nodes (2): Logic.Skill, SwapSkill +Nodes (2): Logic.Skill, SanaeNineSkill ### Community 1126 - "Community 1126" Cohesion: 0.67 -Nodes (2): Logic.Skill, TaiChiSkill +Nodes (2): Logic.Skill, SanaeWindSkill ### Community 1127 - "Community 1127" Cohesion: 0.67 -Nodes (2): Logic.Skill, TenguBuffSkill +Nodes (2): Logic.Skill, SanaeWindXSkill ### Community 1128 - "Community 1128" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchAttackSkill +Nodes (2): Logic.Skill, SatoriAttackBoomSkill ### Community 1129 - "Community 1129" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchBuffSkill +Nodes (2): Logic.Skill, SatoriAttackSkill ### Community 1130 - "Community 1130" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchDieSkill +Nodes (2): Logic.Skill, SatoriBanSkill ### Community 1131 - "Community 1131" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchKillSkill +Nodes (2): Logic.Skill, SatoriSeeSkill ### Community 1132 - "Community 1132" Cohesion: 0.67 -Nodes (2): Logic.Skill, TewiFrenchSightSkill +Nodes (2): Logic.Skill, SatsujinkiSkill ### Community 1133 - "Community 1133" Cohesion: 0.67 -Nodes (2): Logic.Skill, ThirdEyeSkill +Nodes (2): Logic.Skill, ScarletKoakumaSkill ### Community 1134 - "Community 1134" Cohesion: 0.67 -Nodes (2): Logic.Skill, TreatAsHeroSkill +Nodes (2): Logic.Skill, ScarletMistRealTimeVampireDebuffSkill ### Community 1135 - "Community 1135" Cohesion: 0.67 -Nodes (2): Logic.Skill, TrioSkill +Nodes (2): Logic.Skill, ScarletMistRealTimeVampireSkill ### Community 1136 - "Community 1136" Cohesion: 0.67 -Nodes (2): Logic.Skill, UndeadSkill +Nodes (2): Logic.Skill, ScoutProSkill ### Community 1137 - "Community 1137" Cohesion: 0.67 -Nodes (2): Logic.Skill, UniqueSkill +Nodes (2): Logic.Skill, ScoutSkill ### Community 1138 - "Community 1138" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoBaseSkill +Nodes (2): Logic.Skill, ShenlanSkill ### Community 1139 - "Community 1139" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoBoneMakerSkill +Nodes (2): Logic.Skill, SkillBanBombSkill ### Community 1140 - "Community 1140" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoDelayActSkill +Nodes (2): Logic.Skill, SkillBanSkill ### Community 1141 - "Community 1141" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoRadiationSkill +Nodes (2): Logic.Skill, SkillBase ### Community 1142 - "Community 1142" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoReadyMoveSkill +Nodes (2): Logic.Skill, SneakSkill ### Community 1143 - "Community 1143" Cohesion: 0.67 -Nodes (2): Logic.Skill, UtsuhoReadyMoveSuperSkill +Nodes (2): Logic.Skill, SpeedUpSkill ### Community 1144 - "Community 1144" Cohesion: 0.67 -Nodes (2): Logic.Skill, VampireProSkill +Nodes (2): Logic.Skill, SplashSkill ### Community 1145 - "Community 1145" Cohesion: 0.67 -Nodes (2): Logic.Skill, VampireSkill +Nodes (2): Logic.Skill, StaticSkill ### Community 1146 - "Community 1146" Cohesion: 0.67 -Nodes (2): Logic.Skill, WaterDefenseSkill +Nodes (2): Logic.Skill, StiffSkill ### Community 1147 - "Community 1147" Cohesion: 0.67 -Nodes (2): Logic.Skill, WaterMoveSkill +Nodes (2): Logic.Skill, StompSkill ### Community 1148 - "Community 1148" Cohesion: 0.67 -Nodes (2): Logic.Skill, WindGodSkill +Nodes (2): Logic.Skill, SuperDashSkill ### Community 1149 - "Community 1149" Cohesion: 0.67 -Nodes (2): Logic.Skill, WindPriestessSkill +Nodes (2): Logic.Skill, SuperHideSkill ### Community 1150 - "Community 1150" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiDashProSkill +Nodes (2): Logic.Skill, SurpriseSkill ### Community 1151 - "Community 1151" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiDashSkill +Nodes (2): Logic.Skill, SuwakoAttackAllySkill ### Community 1152 - "Community 1152" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiMovePlusSkill +Nodes (2): Logic.Skill, SuwakoAttackProSkill ### Community 1153 - "Community 1153" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiMoveSkill +Nodes (2): Logic.Skill, SuwakoAttackSkill ### Community 1154 - "Community 1154" Cohesion: 0.67 -Nodes (2): Logic.Skill, YuugiPushSkill +Nodes (2): Logic.Skill, SuwakoCombineSkill ### Community 1155 - "Community 1155" Cohesion: 0.67 -Nodes (2): TH1_Logic.MatchConfig, WikiManager +Nodes (2): Logic.Skill, SuwakoFullmapSkill ### Community 1156 - "Community 1156" Cohesion: 0.67 -Nodes (2): IUIData, TH1_UI.Core +Nodes (2): Logic.Skill, SuwakoHebiAttackSkill ### Community 1157 - "Community 1157" Cohesion: 0.67 -Nodes (2): TH1_UI.Core, UIResourceName +Nodes (2): Logic.Skill, SuwakoHebiCombineSkill ### Community 1158 - "Community 1158" Cohesion: 0.67 -Nodes (2): MemoryPack, MemoryPackCode +Nodes (2): Logic.Skill, SuwakoHebiSkill ### Community 1159 - "Community 1159" Cohesion: 0.67 -Nodes (2): MemoryPack.Internal, PreserveAttribute +Nodes (2): Logic.Skill, SuwakoHebiSplitSkill ### Community 1160 - "Community 1160" Cohesion: 0.67 -Nodes (2): NugetForUnity, NuspecContentFile +Nodes (2): Logic.Skill, SuwakoMoveSkill ### Community 1161 - "Community 1161" Cohesion: 0.67 -Nodes (2): NugetForUnity, OnLoadNugetPackageRestorer +Nodes (2): Logic.Skill, SuwakoSplitSkill ### Community 1162 - "Community 1162" Cohesion: 0.67 -Nodes (2): NugetForUnity.Models, NugetFrameworkGroup +Nodes (2): Logic.Skill, SwapSkill ### Community 1163 - "Community 1163" Cohesion: 0.67 -Nodes (2): NugetForUnity.Models, SerializableNugetPackage +Nodes (2): Logic.Skill, TaiChiSkill ### Community 1164 - "Community 1164" Cohesion: 0.67 -Nodes (2): WindowsDefine, YooAsset.Editor +Nodes (2): Logic.Skill, TenguBuffSkill ### Community 1165 - "Community 1165" Cohesion: 0.67 -Nodes (2): BuildResult, YooAsset.Editor +Nodes (2): Logic.Skill, TewiFrenchAttackSkill ### Community 1166 - "Community 1166" Cohesion: 0.67 -Nodes (2): IContextObject, YooAsset.Editor +Nodes (2): Logic.Skill, TewiFrenchBuffSkill ### Community 1167 - "Community 1167" Cohesion: 0.67 -Nodes (2): CollectAssetInfo, YooAsset.Editor +Nodes (2): Logic.Skill, TewiFrenchDieSkill ### Community 1168 - "Community 1168" Cohesion: 0.67 -Nodes (2): CollectCommand, YooAsset.Editor +Nodes (2): Logic.Skill, TewiFrenchKillSkill ### Community 1169 - "Community 1169" Cohesion: 0.67 -Nodes (2): RuleDisplayName, YooAsset.Editor +Nodes (2): Logic.Skill, TewiFrenchSightSkill ### Community 1170 - "Community 1170" Cohesion: 0.67 -Nodes (2): ReportAssetInfo, YooAsset.Editor +Nodes (2): Logic.Skill, ThirdEyeSkill ### Community 1171 - "Community 1171" Cohesion: 0.67 -Nodes (2): ReportIndependAsset, YooAsset.Editor +Nodes (2): Logic.Skill, TreatAsHeroSkill ### Community 1172 - "Community 1172" Cohesion: 0.67 -Nodes (2): ReportSummary, YooAsset.Editor +Nodes (2): Logic.Skill, TrioSkill ### Community 1173 - "Community 1173" Cohesion: 0.67 -Nodes (2): DebugPackageData, YooAsset +Nodes (2): Logic.Skill, UndeadSkill ### Community 1174 - "Community 1174" Cohesion: 0.67 -Nodes (2): RemoteDebuggerDefine, YooAsset +Nodes (2): Logic.Skill, UniqueSkill ### Community 1175 - "Community 1175" Cohesion: 0.67 -Nodes (2): ResourceAssist, YooAsset +Nodes (2): Logic.Skill, UtsuhoBaseSkill ### Community 1176 - "Community 1176" Cohesion: 0.67 -Nodes (2): IEventMessage, UniFramework.Event +Nodes (2): Logic.Skill, UtsuhoBoneMakerSkill ### Community 1177 - "Community 1177" Cohesion: 0.67 -Nodes (1): Cysharp.Threading.Tasks +Nodes (2): Logic.Skill, UtsuhoDelayActSkill ### Community 1178 - "Community 1178" Cohesion: 0.67 -Nodes (2): SpriteLibraryPropertyString, UnityEditor.U2D.Animation +Nodes (2): Logic.Skill, UtsuhoRadiationSkill ### Community 1179 - "Community 1179" Cohesion: 0.67 -Nodes (2): SpriteLibrarySourceAssetPropertyString, UnityEditor.U2D.Animation +Nodes (2): Logic.Skill, UtsuhoReadyMoveSkill ### Community 1180 - "Community 1180" Cohesion: 0.67 -Nodes (2): ISpriteLibraryCategory, UnityEngine.U2D.Animation +Nodes (2): Logic.Skill, UtsuhoReadyMoveSuperSkill ### Community 1181 - "Community 1181" Cohesion: 0.67 -Nodes (2): ISpriteLibraryLabel, UnityEngine.U2D.Animation +Nodes (2): Logic.Skill, VampireProSkill ### Community 1182 - "Community 1182" Cohesion: 0.67 -Nodes (2): IPaletteProvider, UnityEditor.U2D.Aseprite +Nodes (2): Logic.Skill, VampireSkill ### Community 1183 - "Community 1183" Cohesion: 0.67 -Nodes (2): PhotoshopFile, PsdBlendMode +Nodes (2): Logic.Skill, WaterDefenseSkill ### Community 1184 - "Community 1184" Cohesion: 0.67 -Nodes (2): PhotoshopFile, RleRowLengths +Nodes (2): Logic.Skill, WaterMoveSkill ### Community 1185 - "Community 1185" Cohesion: 0.67 -Nodes (2): BlendingRanges, PhotoshopFile +Nodes (2): Logic.Skill, WindGodSkill ### Community 1186 - "Community 1186" Cohesion: 0.67 -Nodes (2): Tooltips, UnityEditor.U2D.PSD +Nodes (2): Logic.Skill, WindPriestessSkill ### Community 1187 - "Community 1187" Cohesion: 0.67 -Nodes (2): TilePaletteActiveTargetsProperties, UnityEditor.Tilemaps +Nodes (2): Logic.Skill, YuugiDashProSkill ### Community 1188 - "Community 1188" Cohesion: 0.67 -Nodes (2): BurstCompileAttribute, Unity.Burst +Nodes (2): Logic.Skill, YuugiDashSkill ### Community 1189 - "Community 1189" Cohesion: 0.67 -Nodes (2): ExternalLink, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, YuugiMovePlusSkill ### Community 1190 - "Community 1190" Cohesion: 0.67 -Nodes (2): HelpData, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, YuugiMoveSkill ### Community 1191 - "Community 1191" Cohesion: 0.67 -Nodes (2): HelpFormat, Unity.PlasticSCM.Editor.Help +Nodes (2): Logic.Skill, YuugiPushSkill ### Community 1192 - "Community 1192" Cohesion: 0.67 -Nodes (2): HelpLink, Unity.PlasticSCM.Editor.Help +Nodes (2): TH1_Logic.MatchConfig, WikiManager ### Community 1193 - "Community 1193" Cohesion: 0.67 -Nodes (2): ChangesetFromCollabCommitResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): IUIData, TH1_UI.Core ### Community 1194 - "Community 1194" Cohesion: 0.67 -Nodes (2): CurrentUserAdminCheckResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): TH1_UI.Core, UIResourceName ### Community 1195 - "Community 1195" Cohesion: 0.67 -Nodes (2): IsCollabProjectMigratedResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): MemoryPack, MemoryPackCode ### Community 1196 - "Community 1196" Cohesion: 0.67 -Nodes (2): SubscriptionDetailsResponse, Unity.PlasticSCM.Editor.WebApi +Nodes (2): MemoryPack.Internal, PreserveAttribute ### Community 1197 - "Community 1197" Cohesion: 0.67 -Nodes (1): Unity.Collections +Nodes (2): NugetForUnity, NuspecContentFile ### Community 1198 - "Community 1198" Cohesion: 0.67 -Nodes (2): Packages.Rider.Editor, RiderStyles +Nodes (2): NugetForUnity, OnLoadNugetPackageRestorer ### Community 1199 - "Community 1199" Cohesion: 0.67 -Nodes (2): CallbackInitializer, Packages.Rider.Editor.UnitTesting +Nodes (2): NugetForUnity.Models, NugetFrameworkGroup ### Community 1200 - "Community 1200" Cohesion: 0.67 -Nodes (2): Packages.Rider.Editor.UnitTesting, TestEvent +Nodes (2): NugetForUnity.Models, SerializableNugetPackage ### Community 1201 - "Community 1201" Cohesion: 0.67 -Nodes (2): CommandLineParser, Packages.Rider.Editor.Util +Nodes (2): WindowsDefine, YooAsset.Editor ### Community 1202 - "Community 1202" Cohesion: 0.67 -Nodes (2): KnownAssemblies, Microsoft.Unity.VisualStudio.Editor +Nodes (2): BuildResult, YooAsset.Editor ### Community 1203 - "Community 1203" Cohesion: 0.67 -Nodes (2): Microsoft.Unity.VisualStudio.Editor, Solution +Nodes (2): IContextObject, YooAsset.Editor ### Community 1204 - "Community 1204" Cohesion: 0.67 -Nodes (2): Microsoft.Unity.VisualStudio.Editor, SolutionProperties +Nodes (2): CollectAssetInfo, YooAsset.Editor ### Community 1205 - "Community 1205" Cohesion: 0.67 -Nodes (2): ExceptionEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging +Nodes (2): CollectCommand, YooAsset.Editor ### Community 1206 - "Community 1206" Cohesion: 0.67 -Nodes (2): MessageEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging +Nodes (2): RuleDisplayName, YooAsset.Editor ### Community 1207 - "Community 1207" Cohesion: 0.67 -Nodes (2): Microsoft.Unity.VisualStudio.Editor, ProjectProperties +Nodes (2): ReportAssetInfo, YooAsset.Editor ### Community 1208 - "Community 1208" Cohesion: 0.67 -Nodes (2): ProbeSubdivisionResult, UnityEngine.Rendering +Nodes (2): ReportIndependAsset, YooAsset.Editor ### Community 1209 - "Community 1209" Cohesion: 0.67 -Nodes (2): ISerializedRenderPipelineGlobalSettings, UnityEditor.Rendering +Nodes (2): ReportSummary, YooAsset.Editor ### Community 1210 - "Community 1210" Cohesion: 0.67 -Nodes (1): UnityEngine.Rendering +Nodes (2): DebugPackageData, YooAsset ### Community 1211 - "Community 1211" Cohesion: 0.67 -Nodes (2): IAdditionalData, UnityEngine.Rendering +Nodes (2): RemoteDebuggerDefine, YooAsset ### Community 1212 - "Community 1212" Cohesion: 0.67 -Nodes (2): IVirtualTexturingEnabledRenderPipeline, UnityEngine.Rendering +Nodes (2): ResourceAssist, YooAsset ### Community 1213 - "Community 1213" Cohesion: 0.67 -Nodes (2): SerializableEnum, UnityEngine.Rendering +Nodes (2): IEventMessage, UniFramework.Event ### Community 1214 - "Community 1214" Cohesion: 0.67 -Nodes (2): UnityEngine.Rendering, XRGraphics +Nodes (1): Cysharp.Threading.Tasks ### Community 1215 - "Community 1215" Cohesion: 0.67 -Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule +Nodes (2): SpriteLibraryPropertyString, UnityEditor.U2D.Animation ### Community 1216 - "Community 1216" Cohesion: 0.67 -Nodes (2): IShaderVariantSettings, UnityEngine.Rendering +Nodes (2): SpriteLibrarySourceAssetPropertyString, UnityEditor.U2D.Animation ### Community 1217 - "Community 1217" Cohesion: 0.67 -Nodes (2): ColorSpaceUtils, UnityEngine.Rendering +Nodes (2): ISpriteLibraryCategory, UnityEngine.U2D.Animation ### Community 1218 - "Community 1218" Cohesion: 0.67 -Nodes (2): IVolume, UnityEngine.Rendering +Nodes (2): ISpriteLibraryLabel, UnityEngine.U2D.Animation ### Community 1219 - "Community 1219" Cohesion: 0.67 -Nodes (2): ShaderOptions, UnityEngine.Rendering.Universal +Nodes (2): IPaletteProvider, UnityEditor.U2D.Aseprite ### Community 1220 - "Community 1220" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI +Nodes (2): PhotoshopFile, PsdBlendMode ### Community 1221 - "Community 1221" Cohesion: 0.67 -Nodes (2): RenderPipelineConverterContainer, UnityEditor.Rendering.Universal +Nodes (2): PhotoshopFile, RleRowLengths ### Community 1222 - "Community 1222" Cohesion: 0.67 -Nodes (2): DecalProjectorEditor, UnityEditor.Rendering.Universal +Nodes (2): BlendingRanges, PhotoshopFile ### Community 1223 - "Community 1223" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI +Nodes (2): Tooltips, UnityEditor.U2D.PSD ### Community 1224 - "Community 1224" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalBlockFields +Nodes (2): TilePaletteActiveTargetsProperties, UnityEditor.Tilemaps ### Community 1225 - "Community 1225" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalFields +Nodes (2): BurstCompileAttribute, Unity.Burst ### Community 1226 - "Community 1226" Cohesion: 0.67 -Nodes (2): Property, UnityEditor.Rendering.Universal +Nodes (2): ExternalLink, Unity.PlasticSCM.Editor.Help ### Community 1227 - "Community 1227" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructFields +Nodes (2): HelpData, Unity.PlasticSCM.Editor.Help ### Community 1228 - "Community 1228" Cohesion: 0.67 -Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructs +Nodes (2): HelpFormat, Unity.PlasticSCM.Editor.Help ### Community 1229 - "Community 1229" Cohesion: 0.67 -Nodes (2): Light2D, UnityEngine.Rendering.Universal +Nodes (2): HelpLink, Unity.PlasticSCM.Editor.Help ### Community 1230 - "Community 1230" Cohesion: 0.67 -Nodes (2): IRenderPass2D, UnityEngine.Rendering.Universal +Nodes (2): ChangesetFromCollabCommitResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1231 - "Community 1231" Cohesion: 0.67 -Nodes (2): StencilStateData, UnityEngine.Rendering.Universal +Nodes (2): CurrentUserAdminCheckResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1232 - "Community 1232" Cohesion: 0.67 -Nodes (2): DecalShaderPassNames, UnityEngine.Rendering.Universal +Nodes (2): IsCollabProjectMigratedResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1233 - "Community 1233" Cohesion: 0.67 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (2): SubscriptionDetailsResponse, Unity.PlasticSCM.Editor.WebApi ### Community 1234 - "Community 1234" Cohesion: 0.67 -Nodes (2): ShaderInput, UnityEngine.Rendering.Universal +Nodes (1): Unity.Collections ### Community 1235 - "Community 1235" Cohesion: 0.67 -Nodes (2): CommonStrings, UnityEditor.Build.Utilities +Nodes (2): Packages.Rider.Editor, RiderStyles ### Community 1236 - "Community 1236" Cohesion: 0.67 -Nodes (2): ContextData, UnityEditor.ShaderGraph +Nodes (2): CallbackInitializer, Packages.Rider.Editor.UnitTesting ### Community 1237 - "Community 1237" Cohesion: 0.67 -Nodes (2): IMaterialSlotHasValue, UnityEditor.ShaderGraph +Nodes (2): Packages.Rider.Editor.UnitTesting, TestEvent ### Community 1238 - "Community 1238" Cohesion: 0.67 -Nodes (2): ICanChangeShaderGUI, UnityEditor.Graphing +Nodes (2): CommandLineParser, Packages.Rider.Editor.Util ### Community 1239 - "Community 1239" Cohesion: 0.67 -Nodes (2): IGroupItem, UnityEditor.ShaderGraph +Nodes (2): KnownAssemblies, Microsoft.Unity.VisualStudio.Editor ### Community 1240 - "Community 1240" Cohesion: 0.67 -Nodes (2): AbstractMaterialNode0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Microsoft.Unity.VisualStudio.Editor, Solution ### Community 1241 - "Community 1241" Cohesion: 0.67 -Nodes (2): Edge0, UnityEditor.ShaderGraph.Legacy +Nodes (2): Microsoft.Unity.VisualStudio.Editor, SolutionProperties ### Community 1242 - "Community 1242" Cohesion: 0.67 -Nodes (2): GraphData0, UnityEditor.ShaderGraph.Legacy +Nodes (2): ExceptionEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging ### Community 1243 - "Community 1243" Cohesion: 0.67 -Nodes (2): GroupData0, UnityEditor.ShaderGraph.Legacy +Nodes (2): MessageEventArgs, Microsoft.Unity.VisualStudio.Editor.Messaging ### Community 1244 - "Community 1244" Cohesion: 0.67 -Nodes (2): IMasterNode1, UnityEditor.ShaderGraph.Legacy +Nodes (2): Microsoft.Unity.VisualStudio.Editor, ProjectProperties ### Community 1245 - "Community 1245" Cohesion: 0.67 -Nodes (2): ShaderInput0, UnityEditor.ShaderGraph.Legacy +Nodes (2): ProbeSubdivisionResult, UnityEngine.Rendering ### Community 1246 - "Community 1246" Cohesion: 0.67 -Nodes (2): SlotReference0, UnityEditor.ShaderGraph.Legacy +Nodes (2): ISerializedRenderPipelineGlobalSettings, UnityEditor.Rendering ### Community 1247 - "Community 1247" Cohesion: 0.67 -Nodes (2): StickyNoteData0, UnityEditor.ShaderGraph.Legacy +Nodes (1): UnityEngine.Rendering ### Community 1248 - "Community 1248" Cohesion: 0.67 -Nodes (1): UnityEditor.ShaderGraph +Nodes (2): IAdditionalData, UnityEngine.Rendering ### Community 1249 - "Community 1249" Cohesion: 0.67 -Nodes (2): IRectInterface, UnityEditor.ShaderGraph +Nodes (2): IVirtualTexturingEnabledRenderPipeline, UnityEngine.Rendering ### Community 1250 - "Community 1250" Cohesion: 0.67 -Nodes (2): FieldCondition, UnityEditor.ShaderGraph +Nodes (2): SerializableEnum, UnityEngine.Rendering ### Community 1251 - "Community 1251" Cohesion: 0.67 -Nodes (2): AdditionalCommandDescriptor, UnityEditor.ShaderGraph +Nodes (2): UnityEngine.Rendering, XRGraphics ### Community 1252 - "Community 1252" Cohesion: 0.67 -Nodes (2): FieldDescriptor, UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule ### Community 1253 - "Community 1253" Cohesion: 0.67 -Nodes (1): UnityEditor.ShaderGraph +Nodes (2): IShaderVariantSettings, UnityEngine.Rendering ### Community 1254 - "Community 1254" Cohesion: 0.67 -Nodes (1): UnityEditor.ShaderGraph +Nodes (2): ColorSpaceUtils, UnityEngine.Rendering ### Community 1255 - "Community 1255" Cohesion: 0.67 -Nodes (2): BlockFields, UnityEditor.ShaderGraph +Nodes (2): IVolume, UnityEngine.Rendering ### Community 1256 - "Community 1256" Cohesion: 0.67 -Nodes (2): FieldDependencies, UnityEditor.ShaderGraph +Nodes (2): ShaderOptions, UnityEngine.Rendering.Universal ### Community 1257 - "Community 1257" Cohesion: 0.67 -Nodes (2): Fields, UnityEditor.ShaderGraph +Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineCameraUI ### Community 1258 - "Community 1258" Cohesion: 0.67 -Nodes (2): StructFields, UnityEditor.ShaderGraph +Nodes (2): RenderPipelineConverterContainer, UnityEditor.Rendering.Universal ### Community 1259 - "Community 1259" Cohesion: 0.67 -Nodes (2): Structs, UnityEditor.ShaderGraph +Nodes (2): DecalProjectorEditor, UnityEditor.Rendering.Universal ### Community 1260 - "Community 1260" Cohesion: 0.67 -Nodes (2): BuiltInFields, UnityEditor.Rendering.BuiltIn.ShaderGraph +Nodes (2): UnityEditor.Rendering.Universal, UniversalRenderPipelineLightUI ### Community 1261 - "Community 1261" Cohesion: 0.67 -Nodes (2): BuiltInStructFields, UnityEditor.Rendering.BuiltIn.ShaderGraph +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalBlockFields ### Community 1262 - "Community 1262" Cohesion: 0.67 -Nodes (2): BuiltInStructs, UnityEditor.Rendering.BuiltIn.ShaderGraph +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalFields ### Community 1263 - "Community 1263" Cohesion: 0.67 -Nodes (2): IConditional, UnityEditor.ShaderGraph +Nodes (2): Property, UnityEditor.Rendering.Universal ### Community 1264 - "Community 1264" Cohesion: 0.67 -Nodes (2): IRequiresData, UnityEditor.ShaderGraph +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructFields ### Community 1265 - "Community 1265" Cohesion: 0.67 -Nodes (2): TypeMapping, UnityEditor.Graphing.Util +Nodes (2): UnityEditor.Rendering.Universal.ShaderGraph, UniversalStructs ### Community 1266 - "Community 1266" Cohesion: 0.67 -Nodes (2): EnumInfo, UnityEditor.ShaderGraph +Nodes (2): Light2D, UnityEngine.Rendering.Universal ### Community 1267 - "Community 1267" Cohesion: 0.67 -Nodes (2): IRequiredSetting, UnityEngine.Rendering +Nodes (2): IRenderPass2D, UnityEngine.Rendering.Universal ### Community 1268 - "Community 1268" Cohesion: 0.67 -Nodes (2): PRSIRequiredSetting, UnityEngine.Rendering +Nodes (2): StencilStateData, UnityEngine.Rendering.Universal ### Community 1269 - "Community 1269" Cohesion: 0.67 -Nodes (2): PixelShaderNodeTests, UnityEditor.ShaderGraph.UnitTests +Nodes (2): DecalShaderPassNames, UnityEngine.Rendering.Universal ### Community 1270 - "Community 1270" Cohesion: 0.67 -Nodes (2): ITestAdaptor, UnityEditor.TestTools.TestRunner.Api +Nodes (1): UnityEngine.Rendering.Universal ### Community 1271 - "Community 1271" Cohesion: 0.67 -Nodes (2): TestRunProgress, UnityEditor.TestTools.TestRunner.Api +Nodes (2): ShaderInput, UnityEngine.Rendering.Universal ### Community 1272 - "Community 1272" Cohesion: 0.67 -Nodes (2): RunFinishedData, UnityEditor.TestTools.TestRunner.Api.Analytics +Nodes (2): CommonStrings, UnityEditor.Build.Utilities ### Community 1273 - "Community 1273" Cohesion: 0.67 -Nodes (2): TestTreeData, UnityEditor.TestTools.TestRunner.Api.Analytics +Nodes (2): ContextData, UnityEditor.ShaderGraph ### Community 1274 - "Community 1274" Cohesion: 0.67 -Nodes (2): IRunData, UnityEditor.TestTools.TestRunner.CommandLineTest +Nodes (2): IMaterialSlotHasValue, UnityEditor.ShaderGraph ### Community 1275 - "Community 1275" Cohesion: 0.67 -Nodes (2): RenderingOptions, UnityEditor.TestTools.TestRunner.GUI +Nodes (2): ICanChangeShaderGUI, UnityEditor.Graphing ### Community 1276 - "Community 1276" Cohesion: 0.67 -Nodes (2): RunProgress, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): IGroupItem, UnityEditor.ShaderGraph ### Community 1277 - "Community 1277" Cohesion: 0.67 -Nodes (2): TaskInfo, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): AbstractMaterialNode0, UnityEditor.ShaderGraph.Legacy ### Community 1278 - "Community 1278" Cohesion: 0.67 -Nodes (2): TestProgress, UnityEditor.TestTools.TestRunner.TestRun +Nodes (2): Edge0, UnityEditor.ShaderGraph.Legacy ### Community 1279 - "Community 1279" Cohesion: 0.67 -Nodes (2): ISceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene +Nodes (2): GraphData0, UnityEditor.ShaderGraph.Legacy ### Community 1280 - "Community 1280" Cohesion: 0.67 -Nodes (2): IEditorAssembliesProxy, UnityEditor.TestTools.TestRunner +Nodes (2): GroupData0, UnityEditor.ShaderGraph.Legacy ### Community 1281 - "Community 1281" Cohesion: 0.67 -Nodes (2): ITestListCacheData, UnityEditor.TestTools.TestRunner +Nodes (2): IMasterNode1, UnityEditor.ShaderGraph.Legacy ### Community 1282 - "Community 1282" Cohesion: 0.67 -Nodes (2): TestRunData, UnityEditor.TestRunner.UnityTestProtocol +Nodes (2): ShaderInput0, UnityEditor.ShaderGraph.Legacy ### Community 1283 - "Community 1283" Cohesion: 0.67 -Nodes (2): BuildSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): SlotReference0, UnityEditor.ShaderGraph.Legacy ### Community 1284 - "Community 1284" Cohesion: 0.67 -Nodes (2): PlayerSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): StickyNoteData0, UnityEditor.ShaderGraph.Legacy ### Community 1285 - "Community 1285" Cohesion: 0.67 -Nodes (2): PlayerSystemInfo, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (1): UnityEditor.ShaderGraph ### Community 1286 - "Community 1286" Cohesion: 0.67 -Nodes (2): QualitySettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): IRectInterface, UnityEditor.ShaderGraph ### Community 1287 - "Community 1287" Cohesion: 0.67 -Nodes (2): ScreenSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (2): FieldCondition, UnityEditor.ShaderGraph ### Community 1288 - "Community 1288" Cohesion: 0.67 -Nodes (2): EnumerableTestState, UnityEngine.TestTools +Nodes (2): AdditionalCommandDescriptor, UnityEditor.ShaderGraph ### Community 1289 - "Community 1289" Cohesion: 0.67 -Nodes (2): FeatureFlags, UnityEngine.TestRunner.NUnitExtensions.Runner +Nodes (2): FieldDescriptor, UnityEditor.ShaderGraph ### Community 1290 - "Community 1290" Cohesion: 0.67 -Nodes (2): RestoreTestContextAfterDomainReload, UnityEngine.TestRunner.NUnitExtensions.Runner +Nodes (1): UnityEditor.ShaderGraph ### Community 1291 - "Community 1291" Cohesion: 0.67 -Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, UnityWorkItemDataHolder +Nodes (1): UnityEditor.ShaderGraph ### Community 1292 - "Community 1292" Cohesion: 0.67 -Nodes (2): PlayerConnectionMessageIds, UnityEngine.TestRunner.TestLaunchers +Nodes (2): BlockFields, UnityEditor.ShaderGraph ### Community 1293 - "Community 1293" Cohesion: 0.67 -Nodes (2): RemoteTestData, UnityEngine.TestRunner.TestLaunchers +Nodes (2): FieldDependencies, UnityEditor.ShaderGraph ### Community 1294 - "Community 1294" Cohesion: 0.67 -Nodes (2): RemoteTestResultData, UnityEngine.TestRunner.TestLaunchers +Nodes (2): Fields, UnityEditor.ShaderGraph ### Community 1295 - "Community 1295" Cohesion: 0.67 -Nodes (2): RemoteTestResultDataWithTestData, UnityEngine.TestRunner.TestLaunchers +Nodes (2): StructFields, UnityEditor.ShaderGraph ### Community 1296 - "Community 1296" Cohesion: 0.67 -Nodes (2): IMonoBehaviourTest, UnityEngine.TestTools +Nodes (2): Structs, UnityEditor.ShaderGraph ### Community 1297 - "Community 1297" Cohesion: 0.67 -Nodes (2): TMP_UIStyleManager, TMPro.EditorUtilities +Nodes (2): BuiltInFields, UnityEditor.Rendering.BuiltIn.ShaderGraph ### Community 1298 - "Community 1298" Cohesion: 0.67 -Nodes (2): TMP_GlyphPairAdjustmentRecord, TMPro +Nodes (2): BuiltInStructFields, UnityEditor.Rendering.BuiltIn.ShaderGraph ### Community 1299 - "Community 1299" Cohesion: 0.67 -Nodes (2): CodePoint, TMPro +Nodes (2): BuiltInStructs, UnityEditor.Rendering.BuiltIn.ShaderGraph ### Community 1300 - "Community 1300" Cohesion: 0.67 -Nodes (2): TMP_TextElement, TMPro +Nodes (2): IConditional, UnityEditor.ShaderGraph ### Community 1301 - "Community 1301" Cohesion: 0.67 -Nodes (2): TMP_TextElement_Legacy, TMPro +Nodes (2): IRequiresData, UnityEditor.ShaderGraph ### Community 1302 - "Community 1302" Cohesion: 0.67 -Nodes (2): IMenuChecked, UnityEditor.Timeline +Nodes (2): TypeMapping, UnityEditor.Graphing.Util ### Community 1303 - "Community 1303" Cohesion: 0.67 -Nodes (2): IMenuName, UnityEditor.Timeline +Nodes (2): EnumInfo, UnityEditor.ShaderGraph ### Community 1304 - "Community 1304" Cohesion: 0.67 -Nodes (2): TimelineShortcutAttribute, UnityEditor.Timeline.Actions +Nodes (2): IRequiredSetting, UnityEngine.Rendering ### Community 1305 - "Community 1305" Cohesion: 0.67 -Nodes (2): ItemsGroup, UnityEditor.Timeline +Nodes (2): PRSIRequiredSetting, UnityEngine.Rendering ### Community 1306 - "Community 1306" Cohesion: 0.67 -Nodes (2): ItemsPerTrack, UnityEditor.Timeline +Nodes (2): PixelShaderNodeTests, UnityEditor.ShaderGraph.UnitTests ### Community 1307 - "Community 1307" Cohesion: 0.67 -Nodes (2): TimelineClipGroup, UnityEditor.Timeline +Nodes (2): ITestAdaptor, UnityEditor.TestTools.TestRunner.Api ### Community 1308 - "Community 1308" Cohesion: 0.67 -Nodes (2): ManipulatorsUtils, UnityEditor.Timeline +Nodes (2): TestRunProgress, UnityEditor.TestTools.TestRunner.Api ### Community 1309 - "Community 1309" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): RunFinishedData, UnityEditor.TestTools.TestRunner.Api.Analytics ### Community 1310 - "Community 1310" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): TestTreeData, UnityEditor.TestTools.TestRunner.Api.Analytics ### Community 1311 - "Community 1311" Cohesion: 0.67 -Nodes (1): UnityEditor +Nodes (2): IRunData, UnityEditor.TestTools.TestRunner.CommandLineTest ### Community 1312 - "Community 1312" Cohesion: 0.67 -Nodes (1): UnityEditor +Nodes (2): RenderingOptions, UnityEditor.TestTools.TestRunner.GUI ### Community 1313 - "Community 1313" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): RunProgress, UnityEditor.TestTools.TestRunner.TestRun ### Community 1314 - "Community 1314" Cohesion: 0.67 -Nodes (1): UnityEditor.Timeline +Nodes (2): TaskInfo, UnityEditor.TestTools.TestRunner.TestRun ### Community 1315 - "Community 1315" Cohesion: 0.67 -Nodes (2): UnityEditor.Timeline, WindowConstants +Nodes (2): TestProgress, UnityEditor.TestTools.TestRunner.TestRun ### Community 1316 - "Community 1316" Cohesion: 0.67 -Nodes (2): INotificationOptionProvider, UnityEngine.Timeline +Nodes (2): ISceneWrapper, UnityEditor.TestTools.TestRunner.TestRun.Tasks.Scene ### Community 1317 - "Community 1317" Cohesion: 0.67 -Nodes (2): AnimationTriggers, UnityEngine.UI +Nodes (2): IEditorAssembliesProxy, UnityEditor.TestTools.TestRunner ### Community 1318 - "Community 1318" Cohesion: 0.67 -Nodes (1): UnityEngine.UI +Nodes (2): ITestListCacheData, UnityEditor.TestTools.TestRunner ### Community 1319 - "Community 1319" Cohesion: 0.67 -Nodes (1): UnityEngine.UI +Nodes (2): TestRunData, UnityEditor.TestRunner.UnityTestProtocol ### Community 1320 - "Community 1320" Cohesion: 0.67 -Nodes (2): ReflectionMethodsCache, UnityEngine.UI +Nodes (2): BuildSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1321 - "Community 1321" Cohesion: 0.67 -Nodes (2): BoltStyles, Unity.VisualScripting +Nodes (2): PlayerSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1322 - "Community 1322" Cohesion: 0.67 -Nodes (2): IAnalysis, Unity.VisualScripting +Nodes (2): PlayerSystemInfo, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1323 - "Community 1323" Cohesion: 0.67 -Nodes (2): ReorderableListStyles, Unity.VisualScripting.ReorderableList +Nodes (2): QualitySettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1324 - "Community 1324" Cohesion: 0.67 -Nodes (2): LudiqGraphsEditorUtility, Unity.VisualScripting +Nodes (2): ScreenSettings, UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1325 - "Community 1325" Cohesion: 0.67 -Nodes (2): InspectorUtility, Unity.VisualScripting +Nodes (2): EnumerableTestState, UnityEngine.TestTools ### Community 1326 - "Community 1326" Cohesion: 0.67 -Nodes (2): ListOption, Unity.VisualScripting +Nodes (2): FeatureFlags, UnityEngine.TestRunner.NUnitExtensions.Runner ### Community 1327 - "Community 1327" Cohesion: 0.67 -Nodes (2): LudiqStyles, Unity.VisualScripting +Nodes (2): RestoreTestContextAfterDomainReload, UnityEngine.TestRunner.NUnitExtensions.Runner ### Community 1328 - "Community 1328" Cohesion: 0.67 -Nodes (2): SharedEditorTextureDictionary, Unity.VisualScripting +Nodes (2): UnityEngine.TestRunner.NUnitExtensions.Runner, UnityWorkItemDataHolder ### Community 1329 - "Community 1329" Cohesion: 0.67 -Nodes (1): Unity.VisualScripting +Nodes (2): PlayerConnectionMessageIds, UnityEngine.TestRunner.TestLaunchers ### Community 1330 - "Community 1330" Cohesion: 0.67 -Nodes (2): ColorPalette, Unity.VisualScripting +Nodes (2): RemoteTestData, UnityEngine.TestRunner.TestLaunchers ### Community 1331 - "Community 1331" Cohesion: 0.67 -Nodes (2): IDropdownOption, Unity.VisualScripting +Nodes (2): RemoteTestResultData, UnityEngine.TestRunner.TestLaunchers ### Community 1332 - "Community 1332" Cohesion: 0.67 -Nodes (2): FontCollection, Unity.VisualScripting +Nodes (2): RemoteTestResultDataWithTestData, UnityEngine.TestRunner.TestLaunchers ### Community 1333 - "Community 1333" Cohesion: 0.67 -Nodes (2): FuzzyGroup, Unity.VisualScripting +Nodes (2): IMonoBehaviourTest, UnityEngine.TestTools ### Community 1334 - "Community 1334" Cohesion: 0.67 -Nodes (2): IconSize, Unity.VisualScripting +Nodes (2): TMP_UIStyleManager, TMPro.EditorUtilities ### Community 1335 - "Community 1335" Cohesion: 0.67 -Nodes (2): CommonLicenses, Unity.VisualScripting +Nodes (2): TMP_GlyphPairAdjustmentRecord, TMPro ### Community 1336 - "Community 1336" Cohesion: 0.67 -Nodes (2): Licenses, Unity.VisualScripting +Nodes (2): CodePoint, TMPro ### Community 1337 - "Community 1337" Cohesion: 0.67 -Nodes (2): CommonLicenses, Unity.VisualScripting +Nodes (2): TMP_TextElement, TMPro ### Community 1338 - "Community 1338" Cohesion: 0.67 -Nodes (2): CommonLicenses, Unity.VisualScripting +Nodes (2): TMP_TextElement_Legacy, TMPro ### Community 1339 - "Community 1339" Cohesion: 0.67 -Nodes (2): IPluginLinked, Unity.VisualScripting +Nodes (2): IMenuChecked, UnityEditor.Timeline ### Community 1340 - "Community 1340" Cohesion: 0.67 -Nodes (2): ThreadableAssetWrapper, Unity.VisualScripting +Nodes (2): IMenuName, UnityEditor.Timeline ### Community 1341 - "Community 1341" Cohesion: 0.67 -Nodes (2): LudiqEditorUtility, Unity.VisualScripting +Nodes (2): TimelineShortcutAttribute, UnityEditor.Timeline.Actions ### Community 1342 - "Community 1342" Cohesion: 0.67 -Nodes (2): PackageVersionUtility, Unity.VisualScripting +Nodes (2): ItemsGroup, UnityEditor.Timeline ### Community 1343 - "Community 1343" Cohesion: 0.67 -Nodes (2): ISearchResult, Unity.VisualScripting +Nodes (2): ItemsPerTrack, UnityEditor.Timeline ### Community 1344 - "Community 1344" Cohesion: 0.67 -Nodes (2): IAboutable, Unity.VisualScripting +Nodes (2): TimelineClipGroup, UnityEditor.Timeline ### Community 1345 - "Community 1345" Cohesion: 0.67 -Nodes (2): UnitConnectionStyles, Unity.VisualScripting +Nodes (2): ManipulatorsUtils, UnityEditor.Timeline ### Community 1346 - "Community 1346" Cohesion: 0.67 -Nodes (2): UnitOptionUtility, Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 1347 - "Community 1347" Cohesion: 0.67 -Nodes (2): ISpecifiesCloner, Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 1348 - "Community 1348" Cohesion: 0.67 -Nodes (2): INotifyCollectionChanged, Unity.VisualScripting +Nodes (1): UnityEditor ### Community 1349 - "Community 1349" Cohesion: 0.67 -Nodes (2): IConnection, Unity.VisualScripting +Nodes (1): UnityEditor ### Community 1350 - "Community 1350" Cohesion: 0.67 -Nodes (2): IDecoratorAttribute, Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 1351 - "Community 1351" Cohesion: 0.67 -Nodes (2): fsConverterRegistrar, Unity.VisualScripting.FullSerializer +Nodes (1): UnityEditor.Timeline ### Community 1352 - "Community 1352" Cohesion: 0.67 -Nodes (2): fsTypeCache, Unity.VisualScripting.FullSerializer +Nodes (2): UnityEditor.Timeline, WindowConstants ### Community 1353 - "Community 1353" Cohesion: 0.67 -Nodes (2): EditorBindingUtility, Unity.VisualScripting +Nodes (2): INotificationOptionProvider, UnityEngine.Timeline ### Community 1354 - "Community 1354" Cohesion: 0.67 -Nodes (2): EditorTimeBinding, Unity.VisualScripting +Nodes (2): AnimationTriggers, UnityEngine.UI ### Community 1355 - "Community 1355" Cohesion: 0.67 -Nodes (2): IInspectableAttribute, Unity.VisualScripting +Nodes (1): UnityEngine.UI ### Community 1356 - "Community 1356" Cohesion: 0.67 -Nodes (2): EnsureThat, Unity.VisualScripting +Nodes (1): UnityEngine.UI ### Community 1357 - "Community 1357" Cohesion: 0.67 -Nodes (2): ExceptionMessages, Unity.VisualScripting +Nodes (2): ReflectionMethodsCache, UnityEngine.UI ### Community 1358 - "Community 1358" Cohesion: 0.67 -Nodes (2): EventHooks, Unity.VisualScripting +Nodes (2): BoltStyles, Unity.VisualScripting ### Community 1359 - "Community 1359" Cohesion: 0.67 -Nodes (2): IGraphElementData, Unity.VisualScripting +Nodes (2): IAnalysis, Unity.VisualScripting ### Community 1360 - "Community 1360" Cohesion: 0.67 -Nodes (2): IGraphElementDebugData, Unity.VisualScripting +Nodes (2): ReorderableListStyles, Unity.VisualScripting.ReorderableList ### Community 1361 - "Community 1361" Cohesion: 0.67 -Nodes (2): IGraphItem, Unity.VisualScripting +Nodes (2): LudiqGraphsEditorUtility, Unity.VisualScripting ### Community 1362 - "Community 1362" Cohesion: 0.67 -Nodes (2): ProfiledSegment, Unity.VisualScripting +Nodes (2): InspectorUtility, Unity.VisualScripting ### Community 1363 - "Community 1363" Cohesion: 0.67 -Nodes (2): OperatorHandler, Unity.VisualScripting +Nodes (2): ListOption, Unity.VisualScripting ### Community 1364 - "Community 1364" Cohesion: 0.67 -Nodes (2): ISerializedPropertyProvider, Unity.VisualScripting +Nodes (2): LudiqStyles, Unity.VisualScripting ### Community 1365 - "Community 1365" Cohesion: 0.67 -Nodes (2): ISingleton, Unity.VisualScripting +Nodes (2): SharedEditorTextureDictionary, Unity.VisualScripting ### Community 1366 - "Community 1366" Cohesion: 0.67 -Nodes (2): IUnityObjectOwnable, Unity.VisualScripting +Nodes (1): Unity.VisualScripting ### Community 1367 - "Community 1367" Cohesion: 0.67 -Nodes (2): IIdentifiable, Unity.VisualScripting +Nodes (2): ColorPalette, Unity.VisualScripting ### Community 1368 - "Community 1368" Cohesion: 0.67 -Nodes (2): Unity.VisualScripting, VariableDeclaration +Nodes (2): IDropdownOption, Unity.VisualScripting ### Community 1369 - "Community 1369" Cohesion: 0.67 -Nodes (2): IDefaultValue, Unity.VisualScripting +Nodes (2): FontCollection, Unity.VisualScripting ### Community 1370 - "Community 1370" Cohesion: 0.67 -Nodes (2): IMouseEventUnit, Unity.VisualScripting +Nodes (2): FuzzyGroup, Unity.VisualScripting ### Community 1371 - "Community 1371" Cohesion: 0.67 -Nodes (2): IUnitPortDefinition, Unity.VisualScripting +Nodes (2): IconSize, Unity.VisualScripting ### Community 1372 - "Community 1372" Cohesion: 0.67 -Nodes (2): StateEventHooks, Unity.VisualScripting +Nodes (2): CommonLicenses, Unity.VisualScripting ### Community 1373 - "Community 1373" Cohesion: 0.67 -Nodes (0): +Nodes (2): Licenses, Unity.VisualScripting ### Community 1374 - "Community 1374" Cohesion: 0.67 -Nodes (0): +Nodes (2): CommonLicenses, Unity.VisualScripting ### Community 1375 - "Community 1375" -Cohesion: 1.0 -Nodes (1): ETSystemMethodIsInStaticPartialClassRule +Cohesion: 0.67 +Nodes (2): CommonLicenses, Unity.VisualScripting ### Community 1376 - "Community 1376" -Cohesion: 1.0 -Nodes (1): 翻译 Multilingual.xlsx 中 ID 19877, 19878 两条新增条目 - 19877: "AI接管" (UI按钮) - 19878: V0 +Cohesion: 0.67 +Nodes (2): IPluginLinked, Unity.VisualScripting ### Community 1377 - "Community 1377" -Cohesion: 1.0 -Nodes (1): 补充修改:D5 JP (ID=2294) + E4 JP/KR (ID=18752) +Cohesion: 0.67 +Nodes (2): ThreadableAssetWrapper, Unity.VisualScripting ### Community 1378 - "Community 1378" -Cohesion: 1.0 -Nodes (1): 检查 xlsx 的所有 sheet 和真实行数。 +Cohesion: 0.67 +Nodes (2): LudiqEditorUtility, Unity.VisualScripting ### Community 1379 - "Community 1379" -Cohesion: 1.0 -Nodes (1): 把 ID=19871 的 ZH 列以 UTF-8 dump 到文件,避免 cmd 乱码。 +Cohesion: 0.67 +Nodes (2): PackageVersionUtility, Unity.VisualScripting ### Community 1380 - "Community 1380" -Cohesion: 1.0 -Nodes (1): dump 全部 10 条目的 ZH/EN 看格式风格。 +Cohesion: 0.67 +Nodes (2): ISearchResult, Unity.VisualScripting ### Community 1381 - "Community 1381" -Cohesion: 1.0 -Nodes (1): 扫描整个 xlsx 的 EN 列,查找游戏术语已有翻译,确保一致性。 +Cohesion: 0.67 +Nodes (2): IAboutable, Unity.VisualScripting ### Community 1382 - "Community 1382" -Cohesion: 1.0 -Nodes (1): 列出 ID=19871 的所有 **<...>** 标签按出现顺序。 +Cohesion: 0.67 +Nodes (2): UnitConnectionStyles, Unity.VisualScripting ### Community 1383 - "Community 1383" -Cohesion: 1.0 -Nodes (1): 读取 ID=19871 的中文原文以便翻译。 +Cohesion: 0.67 +Nodes (2): UnitOptionUtility, Unity.VisualScripting ### Community 1384 - "Community 1384" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): ISpecifiesCloner, Unity.VisualScripting ### Community 1385 - "Community 1385" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): INotifyCollectionChanged, Unity.VisualScripting ### Community 1386 - "Community 1386" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): IConnection, Unity.VisualScripting ### Community 1387 - "Community 1387" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): IDecoratorAttribute, Unity.VisualScripting ### Community 1388 - "Community 1388" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): fsConverterRegistrar, Unity.VisualScripting.FullSerializer ### Community 1389 - "Community 1389" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): fsTypeCache, Unity.VisualScripting.FullSerializer ### Community 1390 - "Community 1390" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): EditorBindingUtility, Unity.VisualScripting ### Community 1391 - "Community 1391" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): EditorTimeBinding, Unity.VisualScripting ### Community 1392 - "Community 1392" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): IInspectableAttribute, Unity.VisualScripting ### Community 1393 - "Community 1393" -Cohesion: 1.0 -Nodes (1): Steamworks +Cohesion: 0.67 +Nodes (2): EnsureThat, Unity.VisualScripting ### Community 1394 - "Community 1394" -Cohesion: 1.0 -Nodes (1): GCloud.UQM +Cohesion: 0.67 +Nodes (2): ExceptionMessages, Unity.VisualScripting ### Community 1395 - "Community 1395" -Cohesion: 1.0 -Nodes (1): Animancer.Examples.StateMachines +Cohesion: 0.67 +Nodes (2): EventHooks, Unity.VisualScripting ### Community 1396 - "Community 1396" -Cohesion: 1.0 -Nodes (1): Animancer +Cohesion: 0.67 +Nodes (2): IGraphElementData, Unity.VisualScripting ### Community 1397 - "Community 1397" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): IGraphElementDebugData, Unity.VisualScripting ### Community 1398 - "Community 1398" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): IGraphItem, Unity.VisualScripting ### Community 1399 - "Community 1399" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): ProfiledSegment, Unity.VisualScripting ### Community 1400 - "Community 1400" -Cohesion: 1.0 -Nodes (0): +Cohesion: 0.67 +Nodes (2): OperatorHandler, Unity.VisualScripting ### Community 1401 - "Community 1401" -Cohesion: 1.0 -Nodes (1): ParadoxNotion.Design +Cohesion: 0.67 +Nodes (2): ISerializedPropertyProvider, Unity.VisualScripting ### Community 1402 - "Community 1402" -Cohesion: 1.0 -Nodes (1): ParadoxNotion +Cohesion: 0.67 +Nodes (2): ISingleton, Unity.VisualScripting ### Community 1403 - "Community 1403" -Cohesion: 1.0 -Nodes (1): ParadoxNotion +Cohesion: 0.67 +Nodes (2): IUnityObjectOwnable, Unity.VisualScripting ### Community 1404 - "Community 1404" -Cohesion: 1.0 -Nodes (1): NodeCanvas.Framework +Cohesion: 0.67 +Nodes (2): IIdentifiable, Unity.VisualScripting ### Community 1405 - "Community 1405" -Cohesion: 1.0 -Nodes (1): NodeCanvas.Framework.Internal +Cohesion: 0.67 +Nodes (2): Unity.VisualScripting, VariableDeclaration ### Community 1406 - "Community 1406" -Cohesion: 1.0 -Nodes (1): NodeCanvas.DialogueTrees +Cohesion: 0.67 +Nodes (2): IDefaultValue, Unity.VisualScripting ### Community 1407 - "Community 1407" -Cohesion: 1.0 -Nodes (1): ViConstValueDefine +Cohesion: 0.67 +Nodes (2): IMouseEventUnit, Unity.VisualScripting ### Community 1408 - "Community 1408" -Cohesion: 1.0 -Nodes (1): TH1_Core.Events +Cohesion: 0.67 +Nodes (2): IUnitPortDefinition, Unity.VisualScripting ### Community 1409 - "Community 1409" -Cohesion: 1.0 -Nodes (1): DebugCenter +Cohesion: 0.67 +Nodes (2): StateEventHooks, Unity.VisualScripting ### Community 1410 - "Community 1410" -Cohesion: 1.0 -Nodes (1): ViewMaskProperty +Cohesion: 0.67 +Nodes (0): ### Community 1411 - "Community 1411" -Cohesion: 1.0 +Cohesion: 0.67 Nodes (0): ### Community 1412 - "Community 1412" Cohesion: 1.0 -Nodes (0): +Nodes (1): ETSystemMethodIsInStaticPartialClassRule ### Community 1413 - "Community 1413" Cohesion: 1.0 -Nodes (1): NugetForUnity.Configuration +Nodes (1): 翻译 Multilingual.xlsx 中 ID 19877, 19878 两条新增条目 - 19877: "AI接管" (UI按钮) - 19878: V0 ### Community 1414 - "Community 1414" Cohesion: 1.0 -Nodes (1): NugetForUnity.Models +Nodes (1): 补充修改:D5 JP (ID=2294) + E4 JP/KR (ID=18752) ### Community 1415 - "Community 1415" Cohesion: 1.0 -Nodes (1): NugetForUnity.Ui +Nodes (1): 检查 xlsx 的所有 sheet 和真实行数。 ### Community 1416 - "Community 1416" Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Nodes (1): 把 ID=19871 的 ZH 列以 UTF-8 dump 到文件,避免 cmd 乱码。 ### Community 1417 - "Community 1417" Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Nodes (1): dump 全部 10 条目的 ZH/EN 看格式风格。 ### Community 1418 - "Community 1418" Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Nodes (1): 扫描整个 xlsx 的 EN 列,查找游戏术语已有翻译,确保一致性。 ### Community 1419 - "Community 1419" Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Nodes (1): 列出 ID=19871 的所有 **<...>** 标签按出现顺序。 ### Community 1420 - "Community 1420" Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Nodes (1): 读取 ID=19871 的中文原文以便翻译。 ### Community 1421 - "Community 1421" Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Nodes (1): Steamworks ### Community 1422 - "Community 1422" Cohesion: 1.0 -Nodes (1): YooAsset.Editor +Nodes (1): Steamworks ### Community 1423 - "Community 1423" Cohesion: 1.0 -Nodes (1): YooAsset +Nodes (1): Steamworks ### Community 1424 - "Community 1424" Cohesion: 1.0 -Nodes (1): YooAsset +Nodes (1): Steamworks ### Community 1425 - "Community 1425" Cohesion: 1.0 -Nodes (1): YooAsset +Nodes (1): Steamworks ### Community 1426 - "Community 1426" Cohesion: 1.0 -Nodes (1): StreamingAssetsDefine +Nodes (1): Steamworks ### Community 1427 - "Community 1427" Cohesion: 1.0 -Nodes (1): UnityEditor.U2D.Animation +Nodes (1): Steamworks ### Community 1428 - "Community 1428" Cohesion: 1.0 -Nodes (1): UnityEditor.U2D.Animation.SpriteLibraryEditor +Nodes (1): Steamworks ### Community 1429 - "Community 1429" Cohesion: 1.0 -Nodes (1): PDNWrapper +Nodes (1): Steamworks ### Community 1430 - "Community 1430" Cohesion: 1.0 -Nodes (1): PDNWrapper +Nodes (1): Steamworks ### Community 1431 - "Community 1431" Cohesion: 1.0 -Nodes (1): UnityEditor.Tilemaps +Nodes (1): GCloud.UQM ### Community 1432 - "Community 1432" Cohesion: 1.0 -Nodes (1): Unity.Burst +Nodes (1): Animancer.Examples.StateMachines ### Community 1433 - "Community 1433" Cohesion: 1.0 -Nodes (1): Unity.Burst +Nodes (1): Animancer ### Community 1434 - "Community 1434" Cohesion: 1.0 -Nodes (1): Unity.Burst.Intrinsics +Nodes (0): ### Community 1435 - "Community 1435" Cohesion: 1.0 -Nodes (1): Unity.Burst.Intrinsics +Nodes (0): ### Community 1436 - "Community 1436" Cohesion: 1.0 -Nodes (1): Unity.Burst.Intrinsics +Nodes (0): ### Community 1437 - "Community 1437" Cohesion: 1.0 -Nodes (1): Unity.PlasticSCM.Editor.UI +Nodes (0): ### Community 1438 - "Community 1438" Cohesion: 1.0 -Nodes (1): Packages.Rider.Editor +Nodes (1): ParadoxNotion.Design ### Community 1439 - "Community 1439" Cohesion: 1.0 -Nodes (1): Packages.Rider.Editor.Debugger +Nodes (1): ParadoxNotion ### Community 1440 - "Community 1440" Cohesion: 1.0 -Nodes (1): Packages.Rider.Editor.ProjectGeneration +Nodes (1): ParadoxNotion ### Community 1441 - "Community 1441" Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor +Nodes (1): NodeCanvas.Framework ### Community 1442 - "Community 1442" Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor.Messaging +Nodes (1): NodeCanvas.Framework.Internal ### Community 1443 - "Community 1443" Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor +Nodes (1): NodeCanvas.DialogueTrees ### Community 1444 - "Community 1444" Cohesion: 1.0 -Nodes (1): Microsoft.Unity.VisualStudio.Editor.Testing +Nodes (1): ViConstValueDefine ### Community 1445 - "Community 1445" Cohesion: 1.0 -Nodes (1): Unity.Mathematics +Nodes (1): TH1_Core.Events ### Community 1446 - "Community 1446" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering +Nodes (1): DebugCenter ### Community 1447 - "Community 1447" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering +Nodes (1): ViewMaskProperty ### Community 1448 - "Community 1448" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (0): ### Community 1449 - "Community 1449" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (0): ### Community 1450 - "Community 1450" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (1): NugetForUnity.Configuration ### Community 1451 - "Community 1451" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (1): NugetForUnity.Models ### Community 1452 - "Community 1452" Cohesion: 1.0 -Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule +Nodes (1): NugetForUnity.Ui ### Community 1453 - "Community 1453" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (1): YooAsset.Editor ### Community 1454 - "Community 1454" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering +Nodes (1): YooAsset.Editor ### Community 1455 - "Community 1455" Cohesion: 1.0 -Nodes (1): DummyShaderLibrary +Nodes (1): YooAsset.Editor ### Community 1456 - "Community 1456" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): YooAsset.Editor ### Community 1457 - "Community 1457" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): YooAsset.Editor ### Community 1458 - "Community 1458" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): YooAsset.Editor ### Community 1459 - "Community 1459" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): YooAsset.Editor ### Community 1460 - "Community 1460" Cohesion: 1.0 -Nodes (1): UnityEditor.Rendering.Universal +Nodes (1): YooAsset ### Community 1461 - "Community 1461" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (1): YooAsset ### Community 1462 - "Community 1462" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (1): YooAsset ### Community 1463 - "Community 1463" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal.Internal +Nodes (1): StreamingAssetsDefine ### Community 1464 - "Community 1464" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (1): UnityEditor.U2D.Animation ### Community 1465 - "Community 1465" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.Universal +Nodes (1): UnityEditor.U2D.Animation.SpriteLibraryEditor ### Community 1466 - "Community 1466" Cohesion: 1.0 -Nodes (1): ShadersDummy +Nodes (1): PDNWrapper ### Community 1467 - "Community 1467" Cohesion: 1.0 -Nodes (1): UnityEditor.Build.Pipeline +Nodes (1): PDNWrapper ### Community 1468 - "Community 1468" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): UnityEditor.Tilemaps ### Community 1469 - "Community 1469" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Burst ### Community 1470 - "Community 1470" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Burst ### Community 1471 - "Community 1471" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Burst.Intrinsics ### Community 1472 - "Community 1472" Cohesion: 1.0 -Nodes (1): UnityEditor.Graphing +Nodes (1): Unity.Burst.Intrinsics ### Community 1473 - "Community 1473" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): Unity.Burst.Intrinsics ### Community 1474 - "Community 1474" Cohesion: 1.0 -Nodes (1): UnityEditor.Graphing +Nodes (1): Unity.PlasticSCM.Editor.UI ### Community 1475 - "Community 1475" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Packages.Rider.Editor ### Community 1476 - "Community 1476" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Packages.Rider.Editor.Debugger ### Community 1477 - "Community 1477" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Packages.Rider.Editor.ProjectGeneration ### Community 1478 - "Community 1478" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): Microsoft.Unity.VisualStudio.Editor ### Community 1479 - "Community 1479" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): Microsoft.Unity.VisualStudio.Editor.Messaging ### Community 1480 - "Community 1480" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): Microsoft.Unity.VisualStudio.Editor ### Community 1481 - "Community 1481" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Microsoft.Unity.VisualStudio.Editor.Testing ### Community 1482 - "Community 1482" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): Unity.Mathematics ### Community 1483 - "Community 1483" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Rendering ### Community 1484 - "Community 1484" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Rendering ### Community 1485 - "Community 1485" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering ### Community 1486 - "Community 1486" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering ### Community 1487 - "Community 1487" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering ### Community 1488 - "Community 1488" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering ### Community 1489 - "Community 1489" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Experimental.Rendering.RenderGraphModule ### Community 1490 - "Community 1490" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering ### Community 1491 - "Community 1491" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering ### Community 1492 - "Community 1492" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): DummyShaderLibrary ### Community 1493 - "Community 1493" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Rendering.Universal ### Community 1494 - "Community 1494" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Rendering.Universal ### Community 1495 - "Community 1495" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Rendering.Universal ### Community 1496 - "Community 1496" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Rendering.Universal ### Community 1497 - "Community 1497" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Rendering.Universal ### Community 1498 - "Community 1498" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.Internal +Nodes (1): UnityEngine.Rendering.Universal ### Community 1499 - "Community 1499" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering.Universal ### Community 1500 - "Community 1500" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering.Universal.Internal ### Community 1501 - "Community 1501" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering.Universal ### Community 1502 - "Community 1502" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEngine.Rendering.Universal ### Community 1503 - "Community 1503" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): ShadersDummy ### Community 1504 - "Community 1504" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.Build.Pipeline ### Community 1505 - "Community 1505" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1506 - "Community 1506" Cohesion: 1.0 -Nodes (1): UnityEngine.Rendering.HighDefinition +Nodes (1): UnityEditor.ShaderGraph ### Community 1507 - "Community 1507" Cohesion: 1.0 -Nodes (1): UnityEditor.Graphing +Nodes (1): UnityEditor.ShaderGraph ### Community 1508 - "Community 1508" Cohesion: 1.0 -Nodes (1): DummyShaderGraphLibrary +Nodes (1): UnityEditor.ShaderGraph ### Community 1509 - "Community 1509" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.UnitTests +Nodes (1): UnityEditor.Graphing ### Community 1510 - "Community 1510" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.UnitTests +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1511 - "Community 1511" Cohesion: 1.0 -Nodes (1): UnityEditor.ShaderGraph.UnitTests +Nodes (1): UnityEditor.Graphing ### Community 1512 - "Community 1512" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.Api +Nodes (1): UnityEditor.ShaderGraph ### Community 1513 - "Community 1513" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.Api +Nodes (1): UnityEditor.ShaderGraph ### Community 1514 - "Community 1514" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.Api +Nodes (1): UnityEditor.ShaderGraph ### Community 1515 - "Community 1515" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.CommandLineTest +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1516 - "Community 1516" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.TestRun +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1517 - "Community 1517" Cohesion: 1.0 -Nodes (1): UnityEditor.TestTools.TestRunner.UnityTestProtocol +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1518 - "Community 1518" Cohesion: 1.0 -Nodes (1): UnityEngine.TestRunner.TestProtocol +Nodes (1): UnityEditor.ShaderGraph ### Community 1519 - "Community 1519" Cohesion: 1.0 -Nodes (1): TMPro.EditorUtilities +Nodes (1): UnityEditor.ShaderGraph ### Community 1520 - "Community 1520" Cohesion: 1.0 -Nodes (1): TMPro +Nodes (1): UnityEditor.ShaderGraph ### Community 1521 - "Community 1521" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline.Actions +Nodes (1): UnityEditor.ShaderGraph ### Community 1522 - "Community 1522" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline.Actions +Nodes (1): UnityEditor.ShaderGraph ### Community 1523 - "Community 1523" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline +Nodes (1): UnityEditor.ShaderGraph ### Community 1524 - "Community 1524" Cohesion: 1.0 -Nodes (1): UnityEditor.Timeline +Nodes (1): UnityEditor.ShaderGraph ### Community 1525 - "Community 1525" Cohesion: 1.0 -Nodes (1): UnityEngine.Timeline +Nodes (1): UnityEditor.ShaderGraph ### Community 1526 - "Community 1526" Cohesion: 1.0 -Nodes (1): UnityEngine.EventSystems +Nodes (1): UnityEditor.ShaderGraph ### Community 1527 - "Community 1527" Cohesion: 1.0 -Nodes (1): UnityEngine.EventSystems +Nodes (1): UnityEditor.ShaderGraph ### Community 1528 - "Community 1528" Cohesion: 1.0 -Nodes (1): UnityEngine.EventSystems +Nodes (1): UnityEditor.ShaderGraph ### Community 1529 - "Community 1529" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1530 - "Community 1530" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1531 - "Community 1531" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1532 - "Community 1532" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1533 - "Community 1533" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1534 - "Community 1534" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.ReorderableList +Nodes (1): UnityEditor.ShaderGraph ### Community 1535 - "Community 1535" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph.Internal ### Community 1536 - "Community 1536" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1537 - "Community 1537" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1538 - "Community 1538" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1539 - "Community 1539" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1540 - "Community 1540" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1541 - "Community 1541" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1542 - "Community 1542" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph ### Community 1543 - "Community 1543" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEngine.Rendering.HighDefinition ### Community 1544 - "Community 1544" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.Graphing ### Community 1545 - "Community 1545" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): DummyShaderGraphLibrary ### Community 1546 - "Community 1546" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.FullSerializer +Nodes (1): UnityEditor.ShaderGraph.UnitTests ### Community 1547 - "Community 1547" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph.UnitTests ### Community 1548 - "Community 1548" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.ShaderGraph.UnitTests ### Community 1549 - "Community 1549" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.Api ### Community 1550 - "Community 1550" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.Api ### Community 1551 - "Community 1551" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.Api ### Community 1552 - "Community 1552" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.CommandLineTest ### Community 1553 - "Community 1553" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.TestRun ### Community 1554 - "Community 1554" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.TestTools.TestRunner.UnityTestProtocol ### Community 1555 - "Community 1555" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEngine.TestRunner.TestProtocol ### Community 1556 - "Community 1556" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): TMPro.EditorUtilities ### Community 1557 - "Community 1557" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): TMPro ### Community 1558 - "Community 1558" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.Timeline.Actions ### Community 1559 - "Community 1559" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.Timeline.Actions ### Community 1560 - "Community 1560" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 1561 - "Community 1561" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEditor.Timeline ### Community 1562 - "Community 1562" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting +Nodes (1): UnityEngine.Timeline ### Community 1563 - "Community 1563" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.Dependencies.NCalc +Nodes (1): UnityEngine.EventSystems ### Community 1564 - "Community 1564" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.Dependencies.NCalc +Nodes (1): UnityEngine.EventSystems ### Community 1565 - "Community 1565" Cohesion: 1.0 -Nodes (1): Unity.VisualScripting.Dependencies.NCalc +Nodes (1): UnityEngine.EventSystems ### Community 1566 - "Community 1566" Cohesion: 1.0 @@ -8310,151 +8347,151 @@ Nodes (1): Unity.VisualScripting ### Community 1571 - "Community 1571" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.ReorderableList ### Community 1572 - "Community 1572" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1573 - "Community 1573" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1574 - "Community 1574" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1575 - "Community 1575" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1576 - "Community 1576" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1577 - "Community 1577" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1578 - "Community 1578" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1579 - "Community 1579" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1580 - "Community 1580" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1581 - "Community 1581" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1582 - "Community 1582" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1583 - "Community 1583" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.FullSerializer ### Community 1584 - "Community 1584" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1585 - "Community 1585" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1586 - "Community 1586" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1587 - "Community 1587" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1588 - "Community 1588" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1589 - "Community 1589" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1590 - "Community 1590" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1591 - "Community 1591" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1592 - "Community 1592" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1593 - "Community 1593" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1594 - "Community 1594" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1595 - "Community 1595" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1596 - "Community 1596" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1597 - "Community 1597" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1598 - "Community 1598" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1599 - "Community 1599" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1600 - "Community 1600" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.Dependencies.NCalc ### Community 1601 - "Community 1601" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.Dependencies.NCalc ### Community 1602 - "Community 1602" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting.Dependencies.NCalc ### Community 1603 - "Community 1603" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1604 - "Community 1604" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1605 - "Community 1605" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1606 - "Community 1606" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1607 - "Community 1607" Cohesion: 1.0 -Nodes (0): +Nodes (1): Unity.VisualScripting ### Community 1608 - "Community 1608" Cohesion: 1.0 @@ -9490,471 +9527,471 @@ Nodes (0): ### Community 1866 - "Community 1866" Cohesion: 1.0 -Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. +Nodes (0): ### Community 1867 - "Community 1867" Cohesion: 1.0 -Nodes (1): Save bugs.json to DOC/. +Nodes (0): ### Community 1868 - "Community 1868" Cohesion: 1.0 -Nodes (1): Load devplan.json from DOC/. +Nodes (0): ### Community 1869 - "Community 1869" Cohesion: 1.0 -Nodes (1): Save devplan.json to DOC/. +Nodes (0): ### Community 1870 - "Community 1870" Cohesion: 1.0 -Nodes (1): Load marketing todos from DOC/marketing/todos.json. +Nodes (0): ### Community 1871 - "Community 1871" Cohesion: 1.0 -Nodes (1): Save marketing todos to DOC/marketing/todos.json. +Nodes (0): ### Community 1872 - "Community 1872" Cohesion: 1.0 -Nodes (1): Load the sentiment index.json, return list. +Nodes (0): ### Community 1873 - "Community 1873" Cohesion: 1.0 -Nodes (1): Save the sentiment index.json. +Nodes (0): ### Community 1874 - "Community 1874" Cohesion: 1.0 -Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files +Nodes (0): ### Community 1875 - "Community 1875" Cohesion: 1.0 -Nodes (1): Handles static files and API endpoints. +Nodes (0): ### Community 1876 - "Community 1876" Cohesion: 1.0 -Nodes (1): List available version folders in data/oss/. +Nodes (0): ### Community 1877 - "Community 1877" Cohesion: 1.0 -Nodes (1): List match summaries for selected versions. Query params: versions=0.7. +Nodes (0): ### Community 1878 - "Community 1878" Cohesion: 1.0 -Nodes (1): Create a new sentiment record from multipart form data. +Nodes (0): ### Community 1879 - "Community 1879" Cohesion: 1.0 -Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi +Nodes (0): ### Community 1880 - "Community 1880" Cohesion: 1.0 -Nodes (1): Update a bug's fields (status, priority, etc.). +Nodes (0): ### Community 1881 - "Community 1881" Cohesion: 1.0 -Nodes (1): Create a new sentiment record from multipart form data. +Nodes (0): ### Community 1882 - "Community 1882" Cohesion: 1.0 -Nodes (1): Delete a sentiment record by id. +Nodes (0): ### Community 1883 - "Community 1883" Cohesion: 1.0 -Nodes (1): Create a new bug record. +Nodes (0): ### Community 1884 - "Community 1884" Cohesion: 1.0 -Nodes (1): Update a bug's fields (status, priority, etc.). +Nodes (0): ### Community 1885 - "Community 1885" Cohesion: 1.0 -Nodes (1): Create a new marketing TODO item. +Nodes (0): ### Community 1886 - "Community 1886" Cohesion: 1.0 -Nodes (1): Toggle a TODO item's done state. +Nodes (0): ### Community 1887 - "Community 1887" Cohesion: 1.0 -Nodes (1): Update a task's description or other fields. +Nodes (0): ### Community 1888 - "Community 1888" Cohesion: 1.0 -Nodes (1): Create a subtask under a task. +Nodes (0): ### Community 1889 - "Community 1889" Cohesion: 1.0 -Nodes (1): Toggle a subtask's done state. +Nodes (0): ### Community 1890 - "Community 1890" Cohesion: 1.0 -Nodes (1): Save a marketing event note. +Nodes (0): ### Community 1891 - "Community 1891" Cohesion: 1.0 -Nodes (1): Create a new marketing event. +Nodes (0): ### Community 1892 - "Community 1892" Cohesion: 1.0 -Nodes (1): Extract platform name from /api/sns/{platform}... +Nodes (0): ### Community 1893 - "Community 1893" Cohesion: 1.0 -Nodes (1): Get path to the platform's JSON file. +Nodes (0): ### Community 1894 - "Community 1894" Cohesion: 1.0 -Nodes (1): Load a platform's SNS data. +Nodes (0): ### Community 1895 - "Community 1895" Cohesion: 1.0 -Nodes (1): Save a platform's SNS data. +Nodes (0): ### Community 1896 - "Community 1896" Cohesion: 1.0 -Nodes (1): Handle GET /api/sns/{platform} +Nodes (0): ### Community 1897 - "Community 1897" Cohesion: 1.0 -Nodes (1): Handle POST /api/sns/{platform}/update and /delete +Nodes (0): ### Community 1898 - "Community 1898" Cohesion: 1.0 -Nodes (1): Update (create or modify) a comment. +Nodes (0): ### Community 1899 - "Community 1899" Cohesion: 1.0 -Nodes (1): Load quick replies data. +Nodes (0): ### Community 1900 - "Community 1900" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (0): ### Community 1901 - "Community 1901" Cohesion: 1.0 -Nodes (1): Bulk create comments from selected discussions. +Nodes (0): ### Community 1902 - "Community 1902" Cohesion: 1.0 -Nodes (1): Load quick replies data. +Nodes (0): ### Community 1903 - "Community 1903" Cohesion: 1.0 -Nodes (1): Persist quick replies data. +Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. ### Community 1904 - "Community 1904" Cohesion: 1.0 -Nodes (1): GET /api/quick-replies +Nodes (1): Save bugs.json to DOC/. ### Community 1905 - "Community 1905" Cohesion: 1.0 -Nodes (1): POST /api/quick-replies/{create|update|delete} +Nodes (1): Load devplan.json from DOC/. ### Community 1906 - "Community 1906" Cohesion: 1.0 -Nodes (1): Kill any existing processes listening on the target port. +Nodes (1): Save devplan.json to DOC/. ### Community 1907 - "Community 1907" Cohesion: 1.0 -Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. +Nodes (1): Load marketing todos from DOC/marketing/todos.json. ### Community 1908 - "Community 1908" Cohesion: 1.0 -Nodes (1): Save bugs.json to DOC/. +Nodes (1): Save marketing todos to DOC/marketing/todos.json. ### Community 1909 - "Community 1909" Cohesion: 1.0 -Nodes (1): Load devplan.json from DOC/. +Nodes (1): Load the sentiment index.json, return list. ### Community 1910 - "Community 1910" Cohesion: 1.0 -Nodes (1): Save devplan.json to DOC/. +Nodes (1): Save the sentiment index.json. ### Community 1911 - "Community 1911" Cohesion: 1.0 -Nodes (1): Load marketing todos from DOC/marketing/todos.json. +Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files ### Community 1912 - "Community 1912" Cohesion: 1.0 -Nodes (1): Save marketing todos to DOC/marketing/todos.json. +Nodes (1): Handles static files and API endpoints. ### Community 1913 - "Community 1913" Cohesion: 1.0 -Nodes (1): Load the sentiment index.json, return list. +Nodes (1): List available version folders in data/oss/. ### Community 1914 - "Community 1914" Cohesion: 1.0 -Nodes (1): Save the sentiment index.json. +Nodes (1): List match summaries for selected versions. Query params: versions=0.7. ### Community 1915 - "Community 1915" Cohesion: 1.0 -Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files +Nodes (1): Create a new sentiment record from multipart form data. ### Community 1916 - "Community 1916" Cohesion: 1.0 -Nodes (1): Handles static files and API endpoints. +Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi ### Community 1917 - "Community 1917" Cohesion: 1.0 -Nodes (1): List available version folders in data/oss/. +Nodes (1): Update a bug's fields (status, priority, etc.). ### Community 1918 - "Community 1918" Cohesion: 1.0 -Nodes (1): List match summaries for selected versions. Query params: versions=0.7. +Nodes (1): Create a new sentiment record from multipart form data. ### Community 1919 - "Community 1919" Cohesion: 1.0 -Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ +Nodes (1): Delete a sentiment record by id. ### Community 1920 - "Community 1920" Cohesion: 1.0 -Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi +Nodes (1): Create a new bug record. ### Community 1921 - "Community 1921" Cohesion: 1.0 -Nodes (1): Run export_data.py and return the result as JSON. +Nodes (1): Update a bug's fields (status, priority, etc.). ### Community 1922 - "Community 1922" Cohesion: 1.0 -Nodes (1): Delete a sentiment record by id. +Nodes (1): Create a new marketing TODO item. ### Community 1923 - "Community 1923" Cohesion: 1.0 -Nodes (1): Create a new bug record. +Nodes (1): Toggle a TODO item's done state. ### Community 1924 - "Community 1924" Cohesion: 1.0 -Nodes (1): Update a bug's fields (status, priority, etc.). +Nodes (1): Update a task's description or other fields. ### Community 1925 - "Community 1925" Cohesion: 1.0 -Nodes (1): Create a new marketing TODO item. +Nodes (1): Create a subtask under a task. ### Community 1926 - "Community 1926" Cohesion: 1.0 -Nodes (1): Toggle a TODO item's done state. +Nodes (1): Toggle a subtask's done state. ### Community 1927 - "Community 1927" Cohesion: 1.0 -Nodes (1): Update a task's description or other fields. +Nodes (1): Save a marketing event note. ### Community 1928 - "Community 1928" Cohesion: 1.0 -Nodes (1): Create a subtask under a task. +Nodes (1): Create a new marketing event. ### Community 1929 - "Community 1929" Cohesion: 1.0 -Nodes (1): Toggle a subtask's done state. +Nodes (1): Extract platform name from /api/sns/{platform}... ### Community 1930 - "Community 1930" Cohesion: 1.0 -Nodes (1): Save a marketing event note. +Nodes (1): Get path to the platform's JSON file. ### Community 1931 - "Community 1931" Cohesion: 1.0 -Nodes (1): Create a new marketing event. +Nodes (1): Load a platform's SNS data. ### Community 1932 - "Community 1932" Cohesion: 1.0 -Nodes (1): Extract platform name from /api/sns/{platform}... +Nodes (1): Save a platform's SNS data. ### Community 1933 - "Community 1933" Cohesion: 1.0 -Nodes (1): Get path to the platform's JSON file. +Nodes (1): Handle GET /api/sns/{platform} ### Community 1934 - "Community 1934" Cohesion: 1.0 -Nodes (1): Load a platform's SNS data. +Nodes (1): Handle POST /api/sns/{platform}/update and /delete ### Community 1935 - "Community 1935" Cohesion: 1.0 -Nodes (1): Save a platform's SNS data. +Nodes (1): Update (create or modify) a comment. ### Community 1936 - "Community 1936" Cohesion: 1.0 -Nodes (1): Handle GET /api/sns/{platform} +Nodes (1): Load quick replies data. ### Community 1937 - "Community 1937" Cohesion: 1.0 -Nodes (1): Handle POST /api/sns/{platform}/update and /delete +Nodes (1): Parse Steam Community discussion list from HTML. ### Community 1938 - "Community 1938" Cohesion: 1.0 -Nodes (1): Update (create or modify) a comment. +Nodes (1): Bulk create comments from selected discussions. ### Community 1939 - "Community 1939" Cohesion: 1.0 -Nodes (1): Fetch new discussions from Steam Community. +Nodes (1): Load quick replies data. ### Community 1940 - "Community 1940" Cohesion: 1.0 -Nodes (1): Return demo data when Steam is unreachable. +Nodes (1): Persist quick replies data. ### Community 1941 - "Community 1941" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (1): GET /api/quick-replies ### Community 1942 - "Community 1942" Cohesion: 1.0 -Nodes (1): Bulk create comments from selected discussions. +Nodes (1): POST /api/quick-replies/{create|update|delete} ### Community 1943 - "Community 1943" Cohesion: 1.0 -Nodes (1): Persist quick replies data. +Nodes (1): Kill any existing processes listening on the target port. ### Community 1944 - "Community 1944" Cohesion: 1.0 -Nodes (1): GET /api/quick-replies +Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. ### Community 1945 - "Community 1945" Cohesion: 1.0 -Nodes (1): POST /api/quick-replies/{create|update|delete} +Nodes (1): Save bugs.json to DOC/. ### Community 1946 - "Community 1946" Cohesion: 1.0 -Nodes (1): Kill any existing processes listening on the target port. +Nodes (1): Load devplan.json from DOC/. ### Community 1947 - "Community 1947" Cohesion: 1.0 -Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. +Nodes (1): Save devplan.json to DOC/. ### Community 1948 - "Community 1948" Cohesion: 1.0 -Nodes (1): Save bugs.json to DOC/. +Nodes (1): Load marketing todos from DOC/marketing/todos.json. ### Community 1949 - "Community 1949" Cohesion: 1.0 -Nodes (1): Load devplan.json from DOC/. +Nodes (1): Save marketing todos to DOC/marketing/todos.json. ### Community 1950 - "Community 1950" Cohesion: 1.0 -Nodes (1): Save devplan.json to DOC/. +Nodes (1): Load the sentiment index.json, return list. ### Community 1951 - "Community 1951" Cohesion: 1.0 -Nodes (1): Load marketing todos from DOC/marketing/todos.json. +Nodes (1): Save the sentiment index.json. ### Community 1952 - "Community 1952" Cohesion: 1.0 -Nodes (1): Save marketing todos to DOC/marketing/todos.json. +Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files ### Community 1953 - "Community 1953" Cohesion: 1.0 -Nodes (1): Load the sentiment index.json, return list. +Nodes (1): Handles static files and API endpoints. ### Community 1954 - "Community 1954" Cohesion: 1.0 -Nodes (1): Save the sentiment index.json. +Nodes (1): List available version folders in data/oss/. ### Community 1955 - "Community 1955" Cohesion: 1.0 -Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files +Nodes (1): List match summaries for selected versions. Query params: versions=0.7. ### Community 1956 - "Community 1956" Cohesion: 1.0 -Nodes (1): Handles static files and API endpoints. +Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ ### Community 1957 - "Community 1957" Cohesion: 1.0 -Nodes (1): List available version folders in data/oss/. +Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi ### Community 1958 - "Community 1958" Cohesion: 1.0 -Nodes (1): List match summaries for selected versions. Query params: versions=0.7. +Nodes (1): Run export_data.py and return the result as JSON. ### Community 1959 - "Community 1959" Cohesion: 1.0 -Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ +Nodes (1): Delete a sentiment record by id. ### Community 1960 - "Community 1960" Cohesion: 1.0 -Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi +Nodes (1): Create a new bug record. ### Community 1961 - "Community 1961" Cohesion: 1.0 -Nodes (1): Run export_data.py and return the result as JSON. +Nodes (1): Update a bug's fields (status, priority, etc.). ### Community 1962 - "Community 1962" Cohesion: 1.0 -Nodes (1): Create a new sentiment record from multipart form data. +Nodes (1): Create a new marketing TODO item. ### Community 1963 - "Community 1963" Cohesion: 1.0 -Nodes (1): Delete a sentiment record by id. +Nodes (1): Toggle a TODO item's done state. ### Community 1964 - "Community 1964" Cohesion: 1.0 -Nodes (1): Create a new bug record. +Nodes (1): Update a task's description or other fields. ### Community 1965 - "Community 1965" Cohesion: 1.0 -Nodes (1): Create a new marketing TODO item. +Nodes (1): Create a subtask under a task. ### Community 1966 - "Community 1966" Cohesion: 1.0 -Nodes (1): Toggle a TODO item's done state. +Nodes (1): Toggle a subtask's done state. ### Community 1967 - "Community 1967" Cohesion: 1.0 -Nodes (1): Update a task's description or other fields. +Nodes (1): Save a marketing event note. ### Community 1968 - "Community 1968" Cohesion: 1.0 -Nodes (1): Create a subtask under a task. +Nodes (1): Create a new marketing event. ### Community 1969 - "Community 1969" Cohesion: 1.0 -Nodes (1): Toggle a subtask's done state. +Nodes (1): Extract platform name from /api/sns/{platform}... ### Community 1970 - "Community 1970" Cohesion: 1.0 -Nodes (1): Save a marketing event note. +Nodes (1): Get path to the platform's JSON file. ### Community 1971 - "Community 1971" Cohesion: 1.0 -Nodes (1): Create a new marketing event. +Nodes (1): Load a platform's SNS data. ### Community 1972 - "Community 1972" Cohesion: 1.0 -Nodes (1): Extract platform name from /api/sns/{platform}... +Nodes (1): Save a platform's SNS data. ### Community 1973 - "Community 1973" Cohesion: 1.0 -Nodes (1): Get path to the platform's JSON file. +Nodes (1): Handle GET /api/sns/{platform} ### Community 1974 - "Community 1974" Cohesion: 1.0 -Nodes (1): Load a platform's SNS data. +Nodes (1): Handle POST /api/sns/{platform}/update and /delete ### Community 1975 - "Community 1975" Cohesion: 1.0 -Nodes (1): Save a platform's SNS data. +Nodes (1): Update (create or modify) a comment. ### Community 1976 - "Community 1976" Cohesion: 1.0 -Nodes (1): Handle GET /api/sns/{platform} +Nodes (1): Fetch new discussions from Steam Community. ### Community 1977 - "Community 1977" Cohesion: 1.0 -Nodes (1): Handle POST /api/sns/{platform}/update and /delete +Nodes (1): Return demo data when Steam is unreachable. ### Community 1978 - "Community 1978" Cohesion: 1.0 -Nodes (1): Update (create or modify) a comment. +Nodes (1): Parse Steam Community discussion list from HTML. ### Community 1979 - "Community 1979" Cohesion: 1.0 -Nodes (1): Fetch new discussions from Steam Community. +Nodes (1): Bulk create comments from selected discussions. ### Community 1980 - "Community 1980" Cohesion: 1.0 -Nodes (1): Return demo data when Steam is unreachable. +Nodes (1): Persist quick replies data. ### Community 1981 - "Community 1981" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (1): GET /api/quick-replies ### Community 1982 - "Community 1982" Cohesion: 1.0 -Nodes (1): Bulk create comments from selected discussions. +Nodes (1): POST /api/quick-replies/{create|update|delete} ### Community 1983 - "Community 1983" Cohesion: 1.0 @@ -9962,924 +9999,998 @@ Nodes (1): Kill any existing processes listening on the target port. ### Community 1984 - "Community 1984" Cohesion: 1.0 -Nodes (1): Parse Steam Community discussion list from HTML. +Nodes (1): Load bugs.json from DOC/, return dict with nextId and bugs list. ### Community 1985 - "Community 1985" Cohesion: 1.0 -Nodes (1): Bulk create comments from selected discussions. +Nodes (1): Save bugs.json to DOC/. ### Community 1986 - "Community 1986" Cohesion: 1.0 +Nodes (1): Load devplan.json from DOC/. + +### Community 1987 - "Community 1987" +Cohesion: 1.0 +Nodes (1): Save devplan.json to DOC/. + +### Community 1988 - "Community 1988" +Cohesion: 1.0 +Nodes (1): Load marketing todos from DOC/marketing/todos.json. + +### Community 1989 - "Community 1989" +Cohesion: 1.0 +Nodes (1): Save marketing todos to DOC/marketing/todos.json. + +### Community 1990 - "Community 1990" +Cohesion: 1.0 +Nodes (1): Load the sentiment index.json, return list. + +### Community 1991 - "Community 1991" +Cohesion: 1.0 +Nodes (1): Save the sentiment index.json. + +### Community 1992 - "Community 1992" +Cohesion: 1.0 +Nodes (1): Parse multipart/form-data manually. Returns: (fields: dict[str, str], files + +### Community 1993 - "Community 1993" +Cohesion: 1.0 +Nodes (1): Handles static files and API endpoints. + +### Community 1994 - "Community 1994" +Cohesion: 1.0 +Nodes (1): List available version folders in data/oss/. + +### Community 1995 - "Community 1995" +Cohesion: 1.0 +Nodes (1): List match summaries for selected versions. Query params: versions=0.7. + +### Community 1996 - "Community 1996" +Cohesion: 1.0 +Nodes (1): Return full match data for a specific file. Query: ?file=0.7.0/steamid/ + +### Community 1997 - "Community 1997" +Cohesion: 1.0 +Nodes (1): Aggregate per-hero stats across selected version matches. Query: ?versi + +### Community 1998 - "Community 1998" +Cohesion: 1.0 +Nodes (1): Run export_data.py and return the result as JSON. + +### Community 1999 - "Community 1999" +Cohesion: 1.0 +Nodes (1): Create a new sentiment record from multipart form data. + +### Community 2000 - "Community 2000" +Cohesion: 1.0 +Nodes (1): Delete a sentiment record by id. + +### Community 2001 - "Community 2001" +Cohesion: 1.0 +Nodes (1): Create a new bug record. + +### Community 2002 - "Community 2002" +Cohesion: 1.0 +Nodes (1): Create a new marketing TODO item. + +### Community 2003 - "Community 2003" +Cohesion: 1.0 +Nodes (1): Toggle a TODO item's done state. + +### Community 2004 - "Community 2004" +Cohesion: 1.0 +Nodes (1): Update a task's description or other fields. + +### Community 2005 - "Community 2005" +Cohesion: 1.0 +Nodes (1): Create a subtask under a task. + +### Community 2006 - "Community 2006" +Cohesion: 1.0 +Nodes (1): Toggle a subtask's done state. + +### Community 2007 - "Community 2007" +Cohesion: 1.0 +Nodes (1): Save a marketing event note. + +### Community 2008 - "Community 2008" +Cohesion: 1.0 +Nodes (1): Create a new marketing event. + +### Community 2009 - "Community 2009" +Cohesion: 1.0 +Nodes (1): Extract platform name from /api/sns/{platform}... + +### Community 2010 - "Community 2010" +Cohesion: 1.0 +Nodes (1): Get path to the platform's JSON file. + +### Community 2011 - "Community 2011" +Cohesion: 1.0 +Nodes (1): Load a platform's SNS data. + +### Community 2012 - "Community 2012" +Cohesion: 1.0 +Nodes (1): Save a platform's SNS data. + +### Community 2013 - "Community 2013" +Cohesion: 1.0 +Nodes (1): Handle GET /api/sns/{platform} + +### Community 2014 - "Community 2014" +Cohesion: 1.0 +Nodes (1): Handle POST /api/sns/{platform}/update and /delete + +### Community 2015 - "Community 2015" +Cohesion: 1.0 +Nodes (1): Update (create or modify) a comment. + +### Community 2016 - "Community 2016" +Cohesion: 1.0 +Nodes (1): Fetch new discussions from Steam Community. + +### Community 2017 - "Community 2017" +Cohesion: 1.0 +Nodes (1): Return demo data when Steam is unreachable. + +### Community 2018 - "Community 2018" +Cohesion: 1.0 +Nodes (1): Parse Steam Community discussion list from HTML. + +### Community 2019 - "Community 2019" +Cohesion: 1.0 +Nodes (1): Bulk create comments from selected discussions. + +### Community 2020 - "Community 2020" +Cohesion: 1.0 +Nodes (1): Kill any existing processes listening on the target port. + +### Community 2021 - "Community 2021" +Cohesion: 1.0 +Nodes (1): Parse Steam Community discussion list from HTML. + +### Community 2022 - "Community 2022" +Cohesion: 1.0 +Nodes (1): Bulk create comments from selected discussions. + +### Community 2023 - "Community 2023" +Cohesion: 1.0 Nodes (1): Kill any existing processes listening on the target port. ## Knowledge Gaps - **9634 isolated node(s):** `初始化游戏进程管理器 Args: exe_path: 游戏 exe 文件的完整路径`, `选择性CQL模型导出工具 + 一致性验证 功能: 1. 交互式选择要导出的模型 2. 导出为ONNX格式 3. 验证d3和onnx模型的一致性 4`, `加载d3rlpy模型(与export_all_cql.py使用相同方法)`, `导出模型为ONNX格式(只导出Actor网络,确定性策略)`, `d3rlpy 训练脚本 - 适配 Unity TrainingDataRecorder 格式 数据格式: { "State": [802个fl` (+9629 more) These have ≤1 connection - possible missing edges or undocumented components. -- **Thin community `Community 1375`** (2 nodes): `DiagnosticRules.cs`, `ETSystemMethodIsInStaticPartialClassRule` +- **Thin community `Community 1412`** (2 nodes): `DiagnosticRules.cs`, `ETSystemMethodIsInStaticPartialClassRule` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1376`** (2 nodes): `translate_multilingual_2026_05_15.py`, `翻译 Multilingual.xlsx 中 ID 19877, 19878 两条新增条目 - 19877: "AI接管" (UI按钮) - 19878: V0` +- **Thin community `Community 1413`** (2 nodes): `translate_multilingual_2026_05_15.py`, `翻译 Multilingual.xlsx 中 ID 19877, 19878 两条新增条目 - 19877: "AI接管" (UI按钮) - 19878: V0` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1377`** (2 nodes): `补充修改:D5 JP (ID=2294) + E4 JP/KR (ID=18752)`, `apply_supplemental.py` +- **Thin community `Community 1414`** (2 nodes): `补充修改:D5 JP (ID=2294) + E4 JP/KR (ID=18752)`, `apply_supplemental.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1378`** (2 nodes): `check_sheets.py`, `检查 xlsx 的所有 sheet 和真实行数。` +- **Thin community `Community 1415`** (2 nodes): `check_sheets.py`, `检查 xlsx 的所有 sheet 和真实行数。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1379`** (2 nodes): `dump_19871.py`, `把 ID=19871 的 ZH 列以 UTF-8 dump 到文件,避免 cmd 乱码。` +- **Thin community `Community 1416`** (2 nodes): `dump_19871.py`, `把 ID=19871 的 ZH 列以 UTF-8 dump 到文件,避免 cmd 乱码。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1380`** (2 nodes): `dump_all_rows.py`, `dump 全部 10 条目的 ZH/EN 看格式风格。` +- **Thin community `Community 1417`** (2 nodes): `dump_all_rows.py`, `dump 全部 10 条目的 ZH/EN 看格式风格。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1381`** (2 nodes): `dump_en_terms.py`, `扫描整个 xlsx 的 EN 列,查找游戏术语已有翻译,确保一致性。` +- **Thin community `Community 1418`** (2 nodes): `dump_en_terms.py`, `扫描整个 xlsx 的 EN 列,查找游戏术语已有翻译,确保一致性。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1382`** (2 nodes): `list_tags_19871.py`, `列出 ID=19871 的所有 **<...>** 标签按出现顺序。` +- **Thin community `Community 1419`** (2 nodes): `list_tags_19871.py`, `列出 ID=19871 的所有 **<...>** 标签按出现顺序。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1383`** (2 nodes): `read_19871.py`, `读取 ID=19871 的中文原文以便翻译。` +- **Thin community `Community 1420`** (2 nodes): `read_19871.py`, `读取 ID=19871 的中文原文以便翻译。` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1384`** (2 nodes): `SteamCallbacks.cs`, `Steamworks` +- **Thin community `Community 1421`** (2 nodes): `SteamCallbacks.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1385`** (2 nodes): `SteamEnums.cs`, `Steamworks` +- **Thin community `Community 1422`** (2 nodes): `SteamEnums.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1386`** (2 nodes): `SteamStructs.cs`, `Steamworks` +- **Thin community `Community 1423`** (2 nodes): `SteamStructs.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1387`** (2 nodes): `SteamAPIWarningMessageHook_t.cs`, `Steamworks` +- **Thin community `Community 1424`** (2 nodes): `SteamAPIWarningMessageHook_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1388`** (2 nodes): `SteamAPI_CheckCallbackRegistered_t.cs`, `Steamworks` +- **Thin community `Community 1425`** (2 nodes): `SteamAPI_CheckCallbackRegistered_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1389`** (2 nodes): `SteamInputActionEventCallbackPointer.cs`, `Steamworks` +- **Thin community `Community 1426`** (2 nodes): `SteamInputActionEventCallbackPointer.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1390`** (2 nodes): `SteamInputActionEvent_t.cs`, `Steamworks` +- **Thin community `Community 1427`** (2 nodes): `SteamInputActionEvent_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1391`** (2 nodes): `FSteamNetworkingSocketsDebugOutput.cs`, `Steamworks` +- **Thin community `Community 1428`** (2 nodes): `FSteamNetworkingSocketsDebugOutput.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1392`** (2 nodes): `SteamNetworkingConfigValue_t.cs`, `Steamworks` +- **Thin community `Community 1429`** (2 nodes): `SteamNetworkingConfigValue_t.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1393`** (2 nodes): `SteamNetworkingErrMsg.cs`, `Steamworks` +- **Thin community `Community 1430`** (2 nodes): `SteamNetworkingErrMsg.cs`, `Steamworks` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1394`** (2 nodes): `UQMDefine.cs`, `GCloud.UQM` +- **Thin community `Community 1431`** (2 nodes): `UQMDefine.cs`, `GCloud.UQM` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1395`** (2 nodes): `CharacterStatePriority.cs`, `Animancer.Examples.StateMachines` +- **Thin community `Community 1432`** (2 nodes): `CharacterStatePriority.cs`, `Animancer.Examples.StateMachines` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1396`** (2 nodes): `FadeMode.cs`, `Animancer` +- **Thin community `Community 1433`** (2 nodes): `FadeMode.cs`, `Animancer` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1397`** (2 nodes): `CrashSightMobileAgent.h`, `GCloud()` +- **Thin community `Community 1434`** (2 nodes): `CrashSightMobileAgent.h`, `GCloud()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1398`** (2 nodes): `CSLogger.h`, `UQM_EXPORT()` +- **Thin community `Community 1435`** (2 nodes): `CSLogger.h`, `UQM_EXPORT()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1399`** (2 nodes): `UQMError.h`, `UQMError()` +- **Thin community `Community 1436`** (2 nodes): `UQMError.h`, `UQMError()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1400`** (2 nodes): `UQMUtils.h`, `UQMUtils()` +- **Thin community `Community 1437`** (2 nodes): `UQMUtils.h`, `UQMUtils()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1401`** (2 nodes): `InspectedFieldInfo.cs`, `ParadoxNotion.Design` +- **Thin community `Community 1438`** (2 nodes): `InspectedFieldInfo.cs`, `ParadoxNotion.Design` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1402`** (2 nodes): `Delegates.cs`, `ParadoxNotion` +- **Thin community `Community 1439`** (2 nodes): `Delegates.cs`, `ParadoxNotion` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1403`** (2 nodes): `Enums.cs`, `ParadoxNotion` +- **Thin community `Community 1440`** (2 nodes): `Enums.cs`, `ParadoxNotion` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1404`** (2 nodes): `Status.cs`, `NodeCanvas.Framework` +- **Thin community `Community 1441`** (2 nodes): `Status.cs`, `NodeCanvas.Framework` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1405`** (2 nodes): `GraphLoadData.cs`, `NodeCanvas.Framework.Internal` +- **Thin community `Community 1442`** (2 nodes): `GraphLoadData.cs`, `NodeCanvas.Framework.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1406`** (2 nodes): `Locales.cs`, `NodeCanvas.DialogueTrees` +- **Thin community `Community 1443`** (2 nodes): `Locales.cs`, `NodeCanvas.DialogueTrees` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1407`** (2 nodes): `ViConstValueDefine.cs`, `ViConstValueDefine` +- **Thin community `Community 1444`** (2 nodes): `ViConstValueDefine.cs`, `ViConstValueDefine` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1408`** (2 nodes): `UIEvents.cs`, `TH1_Core.Events` +- **Thin community `Community 1445`** (2 nodes): `UIEvents.cs`, `TH1_Core.Events` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1409`** (2 nodes): `DebugCenter.cs`, `DebugCenter` +- **Thin community `Community 1446`** (2 nodes): `DebugCenter.cs`, `DebugCenter` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1410`** (2 nodes): `ViewMaskProperty.cs`, `ViewMaskProperty` +- **Thin community `Community 1447`** (2 nodes): `ViewMaskProperty.cs`, `ViewMaskProperty` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1411`** (2 nodes): `Il2CppCodeRegistration.cpp`, `s_Il2CppCodegenRegistration()` +- **Thin community `Community 1448`** (2 nodes): `Il2CppCodeRegistration.cpp`, `s_Il2CppCodegenRegistration()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1412`** (2 nodes): `UnityEngine.GridModule.cpp`, `GridLayout_DoNothing_mA280987BF98D257023D46C2C01902FC82EE6A00A()` +- **Thin community `Community 1449`** (2 nodes): `UnityEngine.GridModule.cpp`, `GridLayout_DoNothing_mA280987BF98D257023D46C2C01902FC82EE6A00A()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1413`** (2 nodes): `PackageInstallLocation.cs`, `NugetForUnity.Configuration` +- **Thin community `Community 1450`** (2 nodes): `PackageInstallLocation.cs`, `NugetForUnity.Configuration` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1414`** (2 nodes): `RepositoryType.cs`, `NugetForUnity.Models` +- **Thin community `Community 1451`** (2 nodes): `RepositoryType.cs`, `NugetForUnity.Models` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1415`** (2 nodes): `NugetWindowTab.cs`, `NugetForUnity.Ui` +- **Thin community `Community 1452`** (2 nodes): `NugetWindowTab.cs`, `NugetForUnity.Ui` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1416`** (2 nodes): `EBuildinFileCopyOption.cs`, `YooAsset.Editor` +- **Thin community `Community 1453`** (2 nodes): `EBuildinFileCopyOption.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1417`** (2 nodes): `EBuildMode.cs`, `YooAsset.Editor` +- **Thin community `Community 1454`** (2 nodes): `EBuildMode.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1418`** (2 nodes): `EBuildPipeline.cs`, `YooAsset.Editor` +- **Thin community `Community 1455`** (2 nodes): `EBuildPipeline.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1419`** (2 nodes): `ECompressOption.cs`, `YooAsset.Editor` +- **Thin community `Community 1456`** (2 nodes): `ECompressOption.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1420`** (2 nodes): `EFileNameStyle.cs`, `YooAsset.Editor` +- **Thin community `Community 1457`** (2 nodes): `EFileNameStyle.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1421`** (2 nodes): `ErrorCode.cs`, `YooAsset.Editor` +- **Thin community `Community 1458`** (2 nodes): `ErrorCode.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1422`** (2 nodes): `ECollectorType.cs`, `YooAsset.Editor` +- **Thin community `Community 1459`** (2 nodes): `ECollectorType.cs`, `YooAsset.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1423`** (2 nodes): `EVerifyLevel.cs`, `YooAsset` +- **Thin community `Community 1460`** (2 nodes): `EVerifyLevel.cs`, `YooAsset` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1424`** (2 nodes): `EVerifyResult.cs`, `YooAsset` +- **Thin community `Community 1461`** (2 nodes): `EVerifyResult.cs`, `YooAsset` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1425`** (2 nodes): `EOperationStatus.cs`, `YooAsset` +- **Thin community `Community 1462`** (2 nodes): `EOperationStatus.cs`, `YooAsset` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1426`** (2 nodes): `StreamingAssetsDefine.cs`, `StreamingAssetsDefine` +- **Thin community `Community 1463`** (2 nodes): `StreamingAssetsDefine.cs`, `StreamingAssetsDefine` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1427`** (2 nodes): `SkinningEnums.cs`, `UnityEditor.U2D.Animation` +- **Thin community `Community 1464`** (2 nodes): `SkinningEnums.cs`, `UnityEditor.U2D.Animation` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1428`** (2 nodes): `DragAndDropData.cs`, `UnityEditor.U2D.Animation.SpriteLibraryEditor` +- **Thin community `Community 1465`** (2 nodes): `DragAndDropData.cs`, `UnityEditor.U2D.Animation.SpriteLibraryEditor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1429`** (2 nodes): `Enums.cs`, `PDNWrapper` +- **Thin community `Community 1466`** (2 nodes): `Enums.cs`, `PDNWrapper` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1430`** (2 nodes): `Size.cs`, `PDNWrapper` +- **Thin community `Community 1467`** (2 nodes): `Size.cs`, `PDNWrapper` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1431`** (2 nodes): `TileDragAndDropHoverData.cs`, `UnityEditor.Tilemaps` +- **Thin community `Community 1468`** (2 nodes): `TileDragAndDropHoverData.cs`, `UnityEditor.Tilemaps` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1432`** (2 nodes): `Unity.Burst`, `BurstExecutionEnvironment.cs` +- **Thin community `Community 1469`** (2 nodes): `Unity.Burst`, `BurstExecutionEnvironment.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1433`** (2 nodes): `DiagnosticId.cs`, `Unity.Burst` +- **Thin community `Community 1470`** (2 nodes): `DiagnosticId.cs`, `Unity.Burst` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1434`** (2 nodes): `v128.cs`, `Unity.Burst.Intrinsics` +- **Thin community `Community 1471`** (2 nodes): `v128.cs`, `Unity.Burst.Intrinsics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1435`** (2 nodes): `v256.cs`, `Unity.Burst.Intrinsics` +- **Thin community `Community 1472`** (2 nodes): `v256.cs`, `Unity.Burst.Intrinsics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1436`** (2 nodes): `v64.cs`, `Unity.Burst.Intrinsics` +- **Thin community `Community 1473`** (2 nodes): `v64.cs`, `Unity.Burst.Intrinsics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1437`** (2 nodes): `ResponseType.cs`, `Unity.PlasticSCM.Editor.UI` +- **Thin community `Community 1474`** (2 nodes): `ResponseType.cs`, `Unity.PlasticSCM.Editor.UI` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1438`** (2 nodes): `LoggingLevel.cs`, `Packages.Rider.Editor` +- **Thin community `Community 1475`** (2 nodes): `LoggingLevel.cs`, `Packages.Rider.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1439`** (2 nodes): `Il2CppDebugSupport.cs`, `Packages.Rider.Editor.Debugger` +- **Thin community `Community 1476`** (2 nodes): `Il2CppDebugSupport.cs`, `Packages.Rider.Editor.Debugger` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1440`** (2 nodes): `ProjectGenerationFlag.cs`, `Packages.Rider.Editor.ProjectGeneration` +- **Thin community `Community 1477`** (2 nodes): `ProjectGenerationFlag.cs`, `Packages.Rider.Editor.ProjectGeneration` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1441`** (2 nodes): `VersionPair.cs`, `Microsoft.Unity.VisualStudio.Editor` +- **Thin community `Community 1478`** (2 nodes): `VersionPair.cs`, `Microsoft.Unity.VisualStudio.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1442`** (2 nodes): `MessageType.cs`, `Microsoft.Unity.VisualStudio.Editor.Messaging` +- **Thin community `Community 1479`** (2 nodes): `MessageType.cs`, `Microsoft.Unity.VisualStudio.Editor.Messaging` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1443`** (2 nodes): `ProjectGenerationFlag.cs`, `Microsoft.Unity.VisualStudio.Editor` +- **Thin community `Community 1480`** (2 nodes): `ProjectGenerationFlag.cs`, `Microsoft.Unity.VisualStudio.Editor` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1444`** (2 nodes): `TestStatusAdaptor.cs`, `Microsoft.Unity.VisualStudio.Editor.Testing` +- **Thin community `Community 1481`** (2 nodes): `TestStatusAdaptor.cs`, `Microsoft.Unity.VisualStudio.Editor.Testing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1445`** (2 nodes): `math_unity_conversion.cs`, `Unity.Mathematics` +- **Thin community `Community 1482`** (2 nodes): `math_unity_conversion.cs`, `Unity.Mathematics` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1446`** (2 nodes): `EditorPrefBool.cs`, `UnityEditor.Rendering` +- **Thin community `Community 1483`** (2 nodes): `EditorPrefBool.cs`, `UnityEditor.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1447`** (2 nodes): `MaterialHeaderScopeItem.cs`, `UnityEditor.Rendering` +- **Thin community `Community 1484`** (2 nodes): `MaterialHeaderScopeItem.cs`, `UnityEditor.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1448`** (2 nodes): `CommonStructs.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1485`** (2 nodes): `CommonStructs.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1449`** (2 nodes): `CoreProfileId.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1486`** (2 nodes): `CoreProfileId.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1450`** (2 nodes): `ShaderVariablesProbeVolumes.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1487`** (2 nodes): `ShaderVariablesProbeVolumes.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1451`** (2 nodes): `HDROutputDefines.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1488`** (2 nodes): `HDROutputDefines.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1452`** (2 nodes): `RenderGraphProfileId.cs`, `UnityEngine.Experimental.Rendering.RenderGraphModule` +- **Thin community `Community 1489`** (2 nodes): `RenderGraphProfileId.cs`, `UnityEngine.Experimental.Rendering.RenderGraphModule` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1453`** (2 nodes): `DepthBits.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1490`** (2 nodes): `DepthBits.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1454`** (2 nodes): `MSAASamples.cs`, `UnityEngine.Rendering` +- **Thin community `Community 1491`** (2 nodes): `MSAASamples.cs`, `UnityEngine.Rendering` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1455`** (2 nodes): `DummyShaderLibrary.cs`, `DummyShaderLibrary` +- **Thin community `Community 1492`** (2 nodes): `DummyShaderLibrary.cs`, `DummyShaderLibrary` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1456`** (2 nodes): `UpgradeCommon.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1493`** (2 nodes): `UpgradeCommon.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1457`** (2 nodes): `ConverterItemDescriptor.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1494`** (2 nodes): `ConverterItemDescriptor.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1458`** (2 nodes): `ConverterItemInfo.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1495`** (2 nodes): `ConverterItemInfo.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1459`** (2 nodes): `RunItemContext.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1496`** (2 nodes): `RunItemContext.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1460`** (2 nodes): `DecalMeshBiasTypeEnum.cs`, `UnityEditor.Rendering.Universal` +- **Thin community `Community 1497`** (2 nodes): `DecalMeshBiasTypeEnum.cs`, `UnityEditor.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1461`** (2 nodes): `IntermediateTextureMode.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1498`** (2 nodes): `IntermediateTextureMode.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1462`** (2 nodes): `SampleCount.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1499`** (2 nodes): `SampleCount.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1463`** (2 nodes): `StencilUsage.cs`, `UnityEngine.Rendering.Universal.Internal` +- **Thin community `Community 1500`** (2 nodes): `StencilUsage.cs`, `UnityEngine.Rendering.Universal.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1464`** (2 nodes): `Light2DBlendStyle.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1501`** (2 nodes): `Light2DBlendStyle.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1465`** (2 nodes): `DebugViewEnums.cs`, `UnityEngine.Rendering.Universal` +- **Thin community `Community 1502`** (2 nodes): `DebugViewEnums.cs`, `UnityEngine.Rendering.Universal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1466`** (2 nodes): `Shaders.cs`, `ShadersDummy` +- **Thin community `Community 1503`** (2 nodes): `Shaders.cs`, `ShadersDummy` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1467`** (2 nodes): `ReturnCode.cs`, `UnityEditor.Build.Pipeline` +- **Thin community `Community 1504`** (2 nodes): `ReturnCode.cs`, `UnityEditor.Build.Pipeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1468`** (2 nodes): `Precision.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1505`** (2 nodes): `Precision.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1469`** (2 nodes): `IMaterialGraphAsset.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1506`** (2 nodes): `IMaterialGraphAsset.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1470`** (2 nodes): `ParentGroupChange.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1507`** (2 nodes): `ParentGroupChange.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1471`** (2 nodes): `PreviewMode.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1508`** (2 nodes): `PreviewMode.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1472`** (2 nodes): `SlotType.cs`, `UnityEditor.Graphing` +- **Thin community `Community 1509`** (2 nodes): `SlotType.cs`, `UnityEditor.Graphing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1473`** (2 nodes): `PositionSource.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1510`** (2 nodes): `PositionSource.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1474`** (2 nodes): `DrawState.cs`, `UnityEditor.Graphing` +- **Thin community `Community 1511`** (2 nodes): `DrawState.cs`, `UnityEditor.Graphing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1475`** (2 nodes): `FunctionMultiInput.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1512`** (2 nodes): `FunctionMultiInput.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1476`** (2 nodes): `NormalMapSpace.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1513`** (2 nodes): `NormalMapSpace.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1477`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendMode.cs` +- **Thin community `Community 1514`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendMode.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1478`** (2 nodes): `UvChannel.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1515`** (2 nodes): `UvChannel.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1479`** (2 nodes): `GraphCode.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1516`** (2 nodes): `GraphCode.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1480`** (2 nodes): `OutputMetadata.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1517`** (2 nodes): `OutputMetadata.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1481`** (2 nodes): `ConditionalField.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1518`** (2 nodes): `ConditionalField.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1482`** (2 nodes): `DropdownEntry.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1519`** (2 nodes): `DropdownEntry.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1483`** (2 nodes): `FieldDependency.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1520`** (2 nodes): `FieldDependency.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1484`** (2 nodes): `KeywordEntry.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1521`** (2 nodes): `KeywordEntry.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1485`** (2 nodes): `KernelDescriptor.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1522`** (2 nodes): `KernelDescriptor.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1486`** (2 nodes): `StencilDescriptor.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1523`** (2 nodes): `StencilDescriptor.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1487`** (2 nodes): `StructDescriptor.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1524`** (2 nodes): `StructDescriptor.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1488`** (2 nodes): `UnityEditor.ShaderGraph`, `Blend.cs` +- **Thin community `Community 1525`** (2 nodes): `UnityEditor.ShaderGraph`, `Blend.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1489`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendOp.cs` +- **Thin community `Community 1526`** (2 nodes): `UnityEditor.ShaderGraph`, `BlendOp.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1490`** (2 nodes): `Cull.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1527`** (2 nodes): `Cull.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1491`** (2 nodes): `DisableBatching.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1528`** (2 nodes): `DisableBatching.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1492`** (2 nodes): `IncludeLocation.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1529`** (2 nodes): `IncludeLocation.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1493`** (2 nodes): `KeywordDefinition.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1530`** (2 nodes): `KeywordDefinition.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1494`** (2 nodes): `KeywordScope.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1531`** (2 nodes): `KeywordScope.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1495`** (2 nodes): `KeywordShaderStage.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1532`** (2 nodes): `KeywordShaderStage.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1496`** (2 nodes): `KeywordType.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1533`** (2 nodes): `KeywordType.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1497`** (2 nodes): `NormalDropOffSpace.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1534`** (2 nodes): `NormalDropOffSpace.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1498`** (2 nodes): `PropertyType.cs`, `UnityEditor.ShaderGraph.Internal` +- **Thin community `Community 1535`** (2 nodes): `PropertyType.cs`, `UnityEditor.ShaderGraph.Internal` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1499`** (2 nodes): `RenderQueue.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1536`** (2 nodes): `RenderQueue.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1500`** (2 nodes): `RenderType.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1537`** (2 nodes): `RenderType.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1501`** (2 nodes): `ShaderValueType.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1538`** (2 nodes): `ShaderValueType.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1502`** (2 nodes): `StructFieldOptions.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1539`** (2 nodes): `StructFieldOptions.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1503`** (2 nodes): `ZTest.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1540`** (2 nodes): `ZTest.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1504`** (2 nodes): `ZWrite.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1541`** (2 nodes): `ZWrite.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1505`** (2 nodes): `MatrixNames.cs`, `UnityEditor.ShaderGraph` +- **Thin community `Community 1542`** (2 nodes): `MatrixNames.cs`, `UnityEditor.ShaderGraph` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1506`** (2 nodes): `FullscreenShaderPass.cs`, `UnityEngine.Rendering.HighDefinition` +- **Thin community `Community 1543`** (2 nodes): `FullscreenShaderPass.cs`, `UnityEngine.Rendering.HighDefinition` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1507`** (2 nodes): `CreateSerializableGraph.cs`, `UnityEditor.Graphing` +- **Thin community `Community 1544`** (2 nodes): `CreateSerializableGraph.cs`, `UnityEditor.Graphing` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1508`** (2 nodes): `DummyShaderGraphLibrary.cs`, `DummyShaderGraphLibrary` +- **Thin community `Community 1545`** (2 nodes): `DummyShaderGraphLibrary.cs`, `DummyShaderGraphLibrary` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1509`** (2 nodes): `PropertyChunkTests.cs`, `UnityEditor.ShaderGraph.UnitTests` +- **Thin community `Community 1546`** (2 nodes): `PropertyChunkTests.cs`, `UnityEditor.ShaderGraph.UnitTests` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1510`** (2 nodes): `PropertyGeneratorTests.cs`, `UnityEditor.ShaderGraph.UnitTests` +- **Thin community `Community 1547`** (2 nodes): `PropertyGeneratorTests.cs`, `UnityEditor.ShaderGraph.UnitTests` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1511`** (2 nodes): `PropertyNodeTests.cs`, `UnityEditor.ShaderGraph.UnitTests` +- **Thin community `Community 1548`** (2 nodes): `PropertyNodeTests.cs`, `UnityEditor.ShaderGraph.UnitTests` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1512`** (2 nodes): `RunState.cs`, `UnityEditor.TestTools.TestRunner.Api` +- **Thin community `Community 1549`** (2 nodes): `RunState.cs`, `UnityEditor.TestTools.TestRunner.Api` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1513`** (2 nodes): `TestMode.cs`, `UnityEditor.TestTools.TestRunner.Api` +- **Thin community `Community 1550`** (2 nodes): `TestMode.cs`, `UnityEditor.TestTools.TestRunner.Api` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1514`** (2 nodes): `TestStatus.cs`, `UnityEditor.TestTools.TestRunner.Api` +- **Thin community `Community 1551`** (2 nodes): `TestStatus.cs`, `UnityEditor.TestTools.TestRunner.Api` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1515`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.CommandLineTest` +- **Thin community `Community 1552`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.CommandLineTest` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1516`** (2 nodes): `TaskMode.cs`, `UnityEditor.TestTools.TestRunner.TestRun` +- **Thin community `Community 1553`** (2 nodes): `TaskMode.cs`, `UnityEditor.TestTools.TestRunner.TestRun` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1517`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.UnityTestProtocol` +- **Thin community `Community 1554`** (2 nodes): `TestState.cs`, `UnityEditor.TestTools.TestRunner.UnityTestProtocol` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1518`** (2 nodes): `TestState.cs`, `UnityEngine.TestRunner.TestProtocol` +- **Thin community `Community 1555`** (2 nodes): `TestState.cs`, `UnityEngine.TestRunner.TestProtocol` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1519`** (2 nodes): `TMPro_FontPlugin.cs`, `TMPro.EditorUtilities` +- **Thin community `Community 1556`** (2 nodes): `TMPro_FontPlugin.cs`, `TMPro.EditorUtilities` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1520`** (2 nodes): `TMP_LineInfo.cs`, `TMPro` +- **Thin community `Community 1557`** (2 nodes): `TMP_LineInfo.cs`, `TMPro` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1521`** (2 nodes): `UnityEditor.Timeline.Actions`, `ActionContext.cs` +- **Thin community `Community 1558`** (2 nodes): `UnityEditor.Timeline.Actions`, `ActionContext.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1522`** (2 nodes): `MenuItemActionBase.cs`, `UnityEditor.Timeline.Actions` +- **Thin community `Community 1559`** (2 nodes): `MenuItemActionBase.cs`, `UnityEditor.Timeline.Actions` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1523`** (2 nodes): `PlacementValidity.cs`, `UnityEditor.Timeline` +- **Thin community `Community 1560`** (2 nodes): `PlacementValidity.cs`, `UnityEditor.Timeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1524`** (2 nodes): `TimeReferenceMode.cs`, `UnityEditor.Timeline` +- **Thin community `Community 1561`** (2 nodes): `TimeReferenceMode.cs`, `UnityEditor.Timeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1525`** (2 nodes): `NotificationFlags.cs`, `UnityEngine.Timeline` +- **Thin community `Community 1562`** (2 nodes): `NotificationFlags.cs`, `UnityEngine.Timeline` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1526`** (2 nodes): `EventHandle.cs`, `UnityEngine.EventSystems` +- **Thin community `Community 1563`** (2 nodes): `EventHandle.cs`, `UnityEngine.EventSystems` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1527`** (2 nodes): `EventTriggerType.cs`, `UnityEngine.EventSystems` +- **Thin community `Community 1564`** (2 nodes): `EventTriggerType.cs`, `UnityEngine.EventSystems` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1528`** (2 nodes): `MoveDirection.cs`, `UnityEngine.EventSystems` +- **Thin community `Community 1565`** (2 nodes): `MoveDirection.cs`, `UnityEngine.EventSystems` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1529`** (2 nodes): `SemanticLabel.cs`, `Unity.VisualScripting` +- **Thin community `Community 1566`** (2 nodes): `SemanticLabel.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1530`** (2 nodes): `Unity.VisualScripting`, `AlignOperation.cs` +- **Thin community `Community 1567`** (2 nodes): `Unity.VisualScripting`, `AlignOperation.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1531`** (2 nodes): `CanvasControlScheme.cs`, `Unity.VisualScripting` +- **Thin community `Community 1568`** (2 nodes): `CanvasControlScheme.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1532`** (2 nodes): `DistributeOperation.cs`, `Unity.VisualScripting` +- **Thin community `Community 1569`** (2 nodes): `DistributeOperation.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1533`** (2 nodes): `GraphContextMenuItem.cs`, `Unity.VisualScripting` +- **Thin community `Community 1570`** (2 nodes): `GraphContextMenuItem.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1534`** (2 nodes): `ReorderableListFlags.cs`, `Unity.VisualScripting.ReorderableList` +- **Thin community `Community 1571`** (2 nodes): `ReorderableListFlags.cs`, `Unity.VisualScripting.ReorderableList` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1535`** (2 nodes): `InspectorBlock.cs`, `Unity.VisualScripting` +- **Thin community `Community 1572`** (2 nodes): `InspectorBlock.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1536`** (2 nodes): `Edge.cs`, `Unity.VisualScripting` +- **Thin community `Community 1573`** (2 nodes): `Edge.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1537`** (2 nodes): `SkinnedColor.cs`, `Unity.VisualScripting` +- **Thin community `Community 1574`** (2 nodes): `SkinnedColor.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1538`** (2 nodes): `FontWeight.cs`, `Unity.VisualScripting` +- **Thin community `Community 1575`** (2 nodes): `FontWeight.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1539`** (2 nodes): `ParameterStringMode.cs`, `Unity.VisualScripting` +- **Thin community `Community 1576`** (2 nodes): `ParameterStringMode.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1540`** (2 nodes): `CreateTextureOptions.cs`, `Unity.VisualScripting` +- **Thin community `Community 1577`** (2 nodes): `CreateTextureOptions.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1541`** (2 nodes): `WarningLevel.cs`, `Unity.VisualScripting` +- **Thin community `Community 1578`** (2 nodes): `WarningLevel.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1542`** (2 nodes): `NodeColor.cs`, `Unity.VisualScripting` +- **Thin community `Community 1579`** (2 nodes): `NodeColor.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1543`** (2 nodes): `NodeShape.cs`, `Unity.VisualScripting` +- **Thin community `Community 1580`** (2 nodes): `NodeShape.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1544`** (2 nodes): `SidebarAnchor.cs`, `Unity.VisualScripting` +- **Thin community `Community 1581`** (2 nodes): `SidebarAnchor.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1545`** (2 nodes): `StateRevealCondition.cs`, `Unity.VisualScripting` +- **Thin community `Community 1582`** (2 nodes): `StateRevealCondition.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1546`** (2 nodes): `fsMemberSerialization.cs`, `Unity.VisualScripting.FullSerializer` +- **Thin community `Community 1583`** (2 nodes): `fsMemberSerialization.cs`, `Unity.VisualScripting.FullSerializer` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1547`** (2 nodes): `Typeset.cs`, `Unity.VisualScripting` +- **Thin community `Community 1584`** (2 nodes): `Typeset.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1548`** (2 nodes): `EmptyEventArgs.cs`, `Unity.VisualScripting` +- **Thin community `Community 1585`** (2 nodes): `EmptyEventArgs.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1549`** (2 nodes): `GraphSource.cs`, `Unity.VisualScripting` +- **Thin community `Community 1586`** (2 nodes): `GraphSource.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1550`** (2 nodes): `MouseButton.cs`, `Unity.VisualScripting` +- **Thin community `Community 1587`** (2 nodes): `MouseButton.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1551`** (2 nodes): `PressState.cs`, `Unity.VisualScripting` +- **Thin community `Community 1588`** (2 nodes): `PressState.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1552`** (2 nodes): `Unity.VisualScripting`, `ActionDirection.cs` +- **Thin community `Community 1589`** (2 nodes): `Unity.VisualScripting`, `ActionDirection.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1553`** (2 nodes): `TypeNameDetail.cs`, `Unity.VisualScripting` +- **Thin community `Community 1590`** (2 nodes): `TypeNameDetail.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1554`** (2 nodes): `TypeQualifier.cs`, `Unity.VisualScripting` +- **Thin community `Community 1591`** (2 nodes): `TypeQualifier.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1555`** (2 nodes): `TypesMatching.cs`, `Unity.VisualScripting` +- **Thin community `Community 1592`** (2 nodes): `TypesMatching.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1556`** (2 nodes): `Unity.VisualScripting`, `BinaryOperator.cs` +- **Thin community `Community 1593`** (2 nodes): `Unity.VisualScripting`, `BinaryOperator.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1557`** (2 nodes): `UnaryOperator.cs`, `Unity.VisualScripting` +- **Thin community `Community 1594`** (2 nodes): `UnaryOperator.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1558`** (2 nodes): `Unity.VisualScripting`, `Action_5.cs` +- **Thin community `Community 1595`** (2 nodes): `Unity.VisualScripting`, `Action_5.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1559`** (2 nodes): `Unity.VisualScripting`, `Action_6.cs` +- **Thin community `Community 1596`** (2 nodes): `Unity.VisualScripting`, `Action_6.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1560`** (2 nodes): `Func_5.cs`, `Unity.VisualScripting` +- **Thin community `Community 1597`** (2 nodes): `Func_5.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1561`** (2 nodes): `Func_6.cs`, `Unity.VisualScripting` +- **Thin community `Community 1598`** (2 nodes): `Func_6.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1562`** (2 nodes): `VariableKind.cs`, `Unity.VisualScripting` +- **Thin community `Community 1599`** (2 nodes): `VariableKind.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1563`** (2 nodes): `EvaluateFunctionHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` +- **Thin community `Community 1600`** (2 nodes): `EvaluateFunctionHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1564`** (2 nodes): `EvaluateParameterHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` +- **Thin community `Community 1601`** (2 nodes): `EvaluateParameterHandler.cs`, `Unity.VisualScripting.Dependencies.NCalc` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1565`** (2 nodes): `EvaluationOption.cs`, `Unity.VisualScripting.Dependencies.NCalc` +- **Thin community `Community 1602`** (2 nodes): `EvaluationOption.cs`, `Unity.VisualScripting.Dependencies.NCalc` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1566`** (2 nodes): `CustomEventArgs.cs`, `Unity.VisualScripting` +- **Thin community `Community 1603`** (2 nodes): `CustomEventArgs.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1567`** (2 nodes): `ScriptGraphContainerType.cs`, `Unity.VisualScripting` +- **Thin community `Community 1604`** (2 nodes): `ScriptGraphContainerType.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1568`** (2 nodes): `StateEnterReason.cs`, `Unity.VisualScripting` +- **Thin community `Community 1605`** (2 nodes): `StateEnterReason.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1569`** (2 nodes): `StateExitReason.cs`, `Unity.VisualScripting` +- **Thin community `Community 1606`** (2 nodes): `StateExitReason.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1570`** (2 nodes): `StateGraphContainerType.cs`, `Unity.VisualScripting` +- **Thin community `Community 1607`** (2 nodes): `StateGraphContainerType.cs`, `Unity.VisualScripting` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1571`** (2 nodes): `isteamapps.h`, `ISteamApps()` +- **Thin community `Community 1608`** (2 nodes): `isteamapps.h`, `ISteamApps()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1572`** (2 nodes): `isteamappticket.h`, `ISteamAppTicket()` +- **Thin community `Community 1609`** (2 nodes): `isteamappticket.h`, `ISteamAppTicket()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1573`** (2 nodes): `isteamcontroller.h`, `ISteamController()` +- **Thin community `Community 1610`** (2 nodes): `isteamcontroller.h`, `ISteamController()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1574`** (2 nodes): `isteamgamecoordinator.h`, `ISteamGameCoordinator()` +- **Thin community `Community 1611`** (2 nodes): `isteamgamecoordinator.h`, `ISteamGameCoordinator()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1575`** (2 nodes): `isteamgameserverstats.h`, `ISteamGameServerStats()` +- **Thin community `Community 1612`** (2 nodes): `isteamgameserverstats.h`, `ISteamGameServerStats()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1576`** (2 nodes): `isteamhtmlsurface.h`, `ISteamHTMLSurface()` +- **Thin community `Community 1613`** (2 nodes): `isteamhtmlsurface.h`, `ISteamHTMLSurface()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1577`** (2 nodes): `isteamhttp.h`, `ISteamHTTP()` +- **Thin community `Community 1614`** (2 nodes): `isteamhttp.h`, `ISteamHTTP()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1578`** (2 nodes): `isteammusicremote.h`, `ISteamMusicRemote()` +- **Thin community `Community 1615`** (2 nodes): `isteammusicremote.h`, `ISteamMusicRemote()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1579`** (2 nodes): `isteamnetworking.h`, `ISteamNetworking()` +- **Thin community `Community 1616`** (2 nodes): `isteamnetworking.h`, `ISteamNetworking()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1580`** (2 nodes): `isteamparentalsettings.h`, `ISteamParentalSettings()` +- **Thin community `Community 1617`** (2 nodes): `isteamparentalsettings.h`, `ISteamParentalSettings()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1581`** (2 nodes): `isteamremoteplay.h`, `ISteamRemotePlay()` +- **Thin community `Community 1618`** (2 nodes): `isteamremoteplay.h`, `ISteamRemotePlay()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1582`** (2 nodes): `isteamremotestorage.h`, `ISteamRemoteStorage()` +- **Thin community `Community 1619`** (2 nodes): `isteamremotestorage.h`, `ISteamRemoteStorage()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1583`** (2 nodes): `isteamscreenshots.h`, `ISteamScreenshots()` +- **Thin community `Community 1620`** (2 nodes): `isteamscreenshots.h`, `ISteamScreenshots()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1584`** (2 nodes): `isteamtimeline.h`, `ISteamTimeline()` +- **Thin community `Community 1621`** (2 nodes): `isteamtimeline.h`, `ISteamTimeline()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1585`** (2 nodes): `isteamugc.h`, `ISteamUGC()` +- **Thin community `Community 1622`** (2 nodes): `isteamugc.h`, `ISteamUGC()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1586`** (2 nodes): `isteamuserstats.h`, `ISteamUserStats()` +- **Thin community `Community 1623`** (2 nodes): `isteamuserstats.h`, `ISteamUserStats()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1587`** (2 nodes): `isteamutils.h`, `ISteamUtils()` +- **Thin community `Community 1624`** (2 nodes): `isteamutils.h`, `ISteamUtils()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1588`** (2 nodes): `isteamvideo.h`, `ISteamVideo()` +- **Thin community `Community 1625`** (2 nodes): `isteamvideo.h`, `ISteamVideo()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1589`** (2 nodes): `steamhttpenums.h`, `BIsHTTPStatusSuccess()` +- **Thin community `Community 1626`** (2 nodes): `steamhttpenums.h`, `BIsHTTPStatusSuccess()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1590`** (2 nodes): `steamnetworkingfakeip.h`, `ISteamNetworkingFakeUDPPort()` +- **Thin community `Community 1627`** (2 nodes): `steamnetworkingfakeip.h`, `ISteamNetworkingFakeUDPPort()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1591`** (2 nodes): `ServerBrowserMenu.h`, `ServerBrowserMenuData_t()` +- **Thin community `Community 1628`** (2 nodes): `ServerBrowserMenu.h`, `ServerBrowserMenuData_t()` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1592`** (1 nodes): `ExcelExport.AssemblyInfo.cs` +- **Thin community `Community 1629`** (1 nodes): `ExcelExport.AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1593`** (1 nodes): `ExcelExport.GlobalUsings.g.cs` +- **Thin community `Community 1630`** (1 nodes): `ExcelExport.GlobalUsings.g.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1594`** (1 nodes): `ikcp.h` +- **Thin community `Community 1631`** (1 nodes): `ikcp.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1595`** (1 nodes): `InvokeHelper.h` +- **Thin community `Community 1632`** (1 nodes): `InvokeHelper.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1596`** (1 nodes): `apply_translations.py` +- **Thin community `Community 1633`** (1 nodes): `apply_translations.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1597`** (1 nodes): `DecodeOnlineError.ps1` +- **Thin community `Community 1634`** (1 nodes): `DecodeOnlineError.ps1` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1598`** (1 nodes): `fix_audit_results.py` +- **Thin community `Community 1635`** (1 nodes): `fix_audit_results.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1599`** (1 nodes): `fix_es.py` +- **Thin community `Community 1636`** (1 nodes): `fix_es.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1600`** (1 nodes): `fix_hero_critical.py` +- **Thin community `Community 1637`** (1 nodes): `fix_hero_critical.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1601`** (1 nodes): `fix_jp_kr_bugs.py` +- **Thin community `Community 1638`** (1 nodes): `fix_jp_kr_bugs.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1602`** (1 nodes): `InstallGraphifyHook.ps1` +- **Thin community `Community 1639`** (1 nodes): `InstallGraphifyHook.ps1` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1603`** (1 nodes): `translate_19976.py` +- **Thin community `Community 1640`** (1 nodes): `translate_19976.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1604`** (1 nodes): `translate_data.py` +- **Thin community `Community 1641`** (1 nodes): `translate_data.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1605`** (1 nodes): `_gen_issues.py` +- **Thin community `Community 1642`** (1 nodes): `_gen_issues.py` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1606`** (1 nodes): `check_bytes.ps1` +- **Thin community `Community 1643`** (1 nodes): `check_bytes.ps1` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1607`** (1 nodes): `coreml_provider_factory.h` +- **Thin community `Community 1644`** (1 nodes): `coreml_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1608`** (1 nodes): `cpu_provider_factory.h` +- **Thin community `Community 1645`** (1 nodes): `cpu_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1609`** (1 nodes): `onnxruntime_c_api.h` +- **Thin community `Community 1646`** (1 nodes): `onnxruntime_c_api.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1610`** (1 nodes): `coreml_provider_factory.h` +- **Thin community `Community 1647`** (1 nodes): `coreml_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1611`** (1 nodes): `cpu_provider_factory.h` +- **Thin community `Community 1648`** (1 nodes): `cpu_provider_factory.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1612`** (1 nodes): `onnxruntime_c_api.h` +- **Thin community `Community 1649`** (1 nodes): `onnxruntime_c_api.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1613`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1650`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1614`** (1 nodes): `ExampleInput.cs` +- **Thin community `Community 1651`** (1 nodes): `ExampleInput.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1615`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1652`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1616`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1653`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1617`** (1 nodes): `CrashSight.h` +- **Thin community `Community 1654`** (1 nodes): `CrashSight.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1618`** (1 nodes): `CrashSightConfig.h` +- **Thin community `Community 1655`** (1 nodes): `CrashSightConfig.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1619`** (1 nodes): `CrashSightLog.h` +- **Thin community `Community 1656`** (1 nodes): `CrashSightLog.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1620`** (1 nodes): `UQMUnityBridge.h` +- **Thin community `Community 1657`** (1 nodes): `UQMUnityBridge.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1621`** (1 nodes): `UQMUnityExtra.h` +- **Thin community `Community 1658`** (1 nodes): `UQMUnityExtra.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1622`** (1 nodes): `cJSON.h` +- **Thin community `Community 1659`** (1 nodes): `cJSON.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1623`** (1 nodes): `CrashSightBridge.h` +- **Thin community `Community 1660`** (1 nodes): `CrashSightBridge.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1624`** (1 nodes): `CrashSightCore.h` +- **Thin community `Community 1661`** (1 nodes): `CrashSightCore.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1625`** (1 nodes): `UQM.h` +- **Thin community `Community 1662`** (1 nodes): `UQM.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1626`** (1 nodes): `UQMCrashDelegate.h` +- **Thin community `Community 1663`** (1 nodes): `UQMCrashDelegate.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1627`** (1 nodes): `UQMMacroExpand.h` +- **Thin community `Community 1664`** (1 nodes): `UQMMacroExpand.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1628`** (1 nodes): `UQMRename.h` +- **Thin community `Community 1665`** (1 nodes): `UQMRename.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1629`** (1 nodes): `UQMSingleton.h` +- **Thin community `Community 1666`** (1 nodes): `UQMSingleton.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1630`** (1 nodes): `UQMSynthesizeSingleton.h` +- **Thin community `Community 1667`** (1 nodes): `UQMSynthesizeSingleton.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1631`** (1 nodes): `UQMThread.h` +- **Thin community `Community 1668`** (1 nodes): `UQMThread.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1632`** (1 nodes): `UQMUtilsIOS.h` +- **Thin community `Community 1669`** (1 nodes): `UQMUtilsIOS.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1633`** (1 nodes): `CrashSightPlugin.h` +- **Thin community `Community 1670`** (1 nodes): `CrashSightPlugin.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1634`** (1 nodes): `ConfigManager.cs` +- **Thin community `Community 1671`** (1 nodes): `ConfigManager.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1635`** (1 nodes): `OssStatisticEditorWindow.cs` +- **Thin community `Community 1672`** (1 nodes): `OssStatisticEditorWindow.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1636`** (1 nodes): `RinIndianAttackSkill.cs` +- **Thin community `Community 1673`** (1 nodes): `RinIndianAttackSkill.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1637`** (1 nodes): `0iqegxo6esls0.lump.cpp` +- **Thin community `Community 1674`** (1 nodes): `0iqegxo6esls0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1638`** (1 nodes): `2kwu9gc6m8kw0.lump.cpp` +- **Thin community `Community 1675`** (1 nodes): `2kwu9gc6m8kw0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1639`** (1 nodes): `2kwu9gc6m8kw1.lump.cpp` +- **Thin community `Community 1676`** (1 nodes): `2kwu9gc6m8kw1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1640`** (1 nodes): `2kwu9gc6m8kw2.lump.cpp` +- **Thin community `Community 1677`** (1 nodes): `2kwu9gc6m8kw2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1641`** (1 nodes): `3x4pmbhvzyuf0.lump.cpp` +- **Thin community `Community 1678`** (1 nodes): `3x4pmbhvzyuf0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1642`** (1 nodes): `5hhsyfcnzb210.lump.cpp` +- **Thin community `Community 1679`** (1 nodes): `5hhsyfcnzb210.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1643`** (1 nodes): `5p9c7v2nynqk0.lump.cpp` +- **Thin community `Community 1680`** (1 nodes): `5p9c7v2nynqk0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1644`** (1 nodes): `5p9c7v2nynqk1.lump.cpp` +- **Thin community `Community 1681`** (1 nodes): `5p9c7v2nynqk1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1645`** (1 nodes): `5p9c7v2nynqk2.lump.cpp` +- **Thin community `Community 1682`** (1 nodes): `5p9c7v2nynqk2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1646`** (1 nodes): `6o34in2l8rrv0.lump.cpp` +- **Thin community `Community 1683`** (1 nodes): `6o34in2l8rrv0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1647`** (1 nodes): `7warj6bswxrg0.lump.cpp` +- **Thin community `Community 1684`** (1 nodes): `7warj6bswxrg0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1648`** (1 nodes): `8nxcc2n25nlz0.lump.cpp` +- **Thin community `Community 1685`** (1 nodes): `8nxcc2n25nlz0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1649`** (1 nodes): `8nxcc2n25nlz1.lump.cpp` +- **Thin community `Community 1686`** (1 nodes): `8nxcc2n25nlz1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1650`** (1 nodes): `8nxcc2n25nlz3.lump.cpp` +- **Thin community `Community 1687`** (1 nodes): `8nxcc2n25nlz3.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1651`** (1 nodes): `8nxcc2n25nlz5.lump.cpp` +- **Thin community `Community 1688`** (1 nodes): `8nxcc2n25nlz5.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1652`** (1 nodes): `8nxcc2n25nlz6.lump.cpp` +- **Thin community `Community 1689`** (1 nodes): `8nxcc2n25nlz6.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1653`** (1 nodes): `aa25cvijmvtz0.lump.cpp` +- **Thin community `Community 1690`** (1 nodes): `aa25cvijmvtz0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1654`** (1 nodes): `aph4t7urv62q0.lump.cpp` +- **Thin community `Community 1691`** (1 nodes): `aph4t7urv62q0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1655`** (1 nodes): `c7wjplgqhb730.lump.cpp` +- **Thin community `Community 1692`** (1 nodes): `c7wjplgqhb730.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1656`** (1 nodes): `du1ifjkad8u20.lump.cpp` +- **Thin community `Community 1693`** (1 nodes): `du1ifjkad8u20.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1657`** (1 nodes): `frp36j0bzhcl0.lump.cpp` +- **Thin community `Community 1694`** (1 nodes): `frp36j0bzhcl0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1658`** (1 nodes): `gci9mavuzsif0.lump.cpp` +- **Thin community `Community 1695`** (1 nodes): `gci9mavuzsif0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1659`** (1 nodes): `gci9mavuzsif1.lump.cpp` +- **Thin community `Community 1696`** (1 nodes): `gci9mavuzsif1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1660`** (1 nodes): `gci9mavuzsif2.lump.cpp` +- **Thin community `Community 1697`** (1 nodes): `gci9mavuzsif2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1661`** (1 nodes): `h12u4769ee920.lump.cpp` +- **Thin community `Community 1698`** (1 nodes): `h12u4769ee920.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1662`** (1 nodes): `hnsqfnhwtr8b0.lump.cpp` +- **Thin community `Community 1699`** (1 nodes): `hnsqfnhwtr8b0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1663`** (1 nodes): `kweoh0cgfd7l0.lump.cpp` +- **Thin community `Community 1700`** (1 nodes): `kweoh0cgfd7l0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1664`** (1 nodes): `l3gr0ukoom4l0.lump.cpp` +- **Thin community `Community 1701`** (1 nodes): `l3gr0ukoom4l0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1665`** (1 nodes): `lshg3z6kujix0.lump.cpp` +- **Thin community `Community 1702`** (1 nodes): `lshg3z6kujix0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1666`** (1 nodes): `mlfcke35y3aj0.lump.cpp` +- **Thin community `Community 1703`** (1 nodes): `mlfcke35y3aj0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1667`** (1 nodes): `mqxaeabd9jgu0.lump.cpp` +- **Thin community `Community 1704`** (1 nodes): `mqxaeabd9jgu0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1668`** (1 nodes): `ofdh7oh0w14o0.lump.cpp` +- **Thin community `Community 1705`** (1 nodes): `ofdh7oh0w14o0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1669`** (1 nodes): `ofdh7oh0w14o1.lump.cpp` +- **Thin community `Community 1706`** (1 nodes): `ofdh7oh0w14o1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1670`** (1 nodes): `pmys4wb7278v0.lump.cpp` +- **Thin community `Community 1707`** (1 nodes): `pmys4wb7278v0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1671`** (1 nodes): `pmys4wb7278v2.lump.cpp` +- **Thin community `Community 1708`** (1 nodes): `pmys4wb7278v2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1672`** (1 nodes): `pmys4wb7278v3.lump.cpp` +- **Thin community `Community 1709`** (1 nodes): `pmys4wb7278v3.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1673`** (1 nodes): `sacg86krannt0.lump.cpp` +- **Thin community `Community 1710`** (1 nodes): `sacg86krannt0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1674`** (1 nodes): `sacg86krannt2.lump.cpp` +- **Thin community `Community 1711`** (1 nodes): `sacg86krannt2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1675`** (1 nodes): `tuyelf43fcbx0.lump.cpp` +- **Thin community `Community 1712`** (1 nodes): `tuyelf43fcbx0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1676`** (1 nodes): `u6vyk88q0htu0.lump.cpp` +- **Thin community `Community 1713`** (1 nodes): `u6vyk88q0htu0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1677`** (1 nodes): `xkvmqqdfkyn00.lump.cpp` +- **Thin community `Community 1714`** (1 nodes): `xkvmqqdfkyn00.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1678`** (1 nodes): `xqblf1g4lodu0.lump.cpp` +- **Thin community `Community 1715`** (1 nodes): `xqblf1g4lodu0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1679`** (1 nodes): `xqblf1g4lodu1.lump.cpp` +- **Thin community `Community 1716`** (1 nodes): `xqblf1g4lodu1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1680`** (1 nodes): `xqblf1g4lodu2.lump.cpp` +- **Thin community `Community 1717`** (1 nodes): `xqblf1g4lodu2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1681`** (1 nodes): `y5anjml1lrqv0.lump.cpp` +- **Thin community `Community 1718`** (1 nodes): `y5anjml1lrqv0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1682`** (1 nodes): `zhnvl0j1zghh0.lump.cpp` +- **Thin community `Community 1719`** (1 nodes): `zhnvl0j1zghh0.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1683`** (1 nodes): `zhnvl0j1zghh1.lump.cpp` +- **Thin community `Community 1720`** (1 nodes): `zhnvl0j1zghh1.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1684`** (1 nodes): `zhnvl0j1zghh2.lump.cpp` +- **Thin community `Community 1721`** (1 nodes): `zhnvl0j1zghh2.lump.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1685`** (1 nodes): `Animancer.Examples_CodeGen.c` +- **Thin community `Community 1722`** (1 nodes): `Animancer.Examples_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1686`** (1 nodes): `Animancer.FSM_CodeGen.c` +- **Thin community `Community 1723`** (1 nodes): `Animancer.FSM_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1687`** (1 nodes): `Animancer_CodeGen.c` +- **Thin community `Community 1724`** (1 nodes): `Animancer_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1688`** (1 nodes): `Assembly-CSharp-firstpass_CodeGen.c` +- **Thin community `Community 1725`** (1 nodes): `Assembly-CSharp-firstpass_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1689`** (1 nodes): `Assembly-CSharp_CodeGen.c` +- **Thin community `Community 1726`** (1 nodes): `Assembly-CSharp_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1690`** (1 nodes): `com.rlabrecque.steamworks.net_CodeGen.c` +- **Thin community `Community 1727`** (1 nodes): `com.rlabrecque.steamworks.net_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1691`** (1 nodes): `CommandLine_CodeGen.c` +- **Thin community `Community 1728`** (1 nodes): `CommandLine_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1692`** (1 nodes): `ICSharpCode.SharpZipLib_CodeGen.c` +- **Thin community `Community 1729`** (1 nodes): `ICSharpCode.SharpZipLib_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1693`** (1 nodes): `ICSharpCode.SharpZipLib__3.cpp` +- **Thin community `Community 1730`** (1 nodes): `ICSharpCode.SharpZipLib__3.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1694`** (1 nodes): `Il2CppCCalculateFieldValues.cpp` +- **Thin community `Community 1731`** (1 nodes): `Il2CppCCalculateFieldValues.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1695`** (1 nodes): `Il2CppCCalculateFieldValues1.cpp` +- **Thin community `Community 1732`** (1 nodes): `Il2CppCCalculateFieldValues1.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1696`** (1 nodes): `Il2CppCCalculateFieldValues2.cpp` +- **Thin community `Community 1733`** (1 nodes): `Il2CppCCalculateFieldValues2.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1697`** (1 nodes): `Il2CppCCalculateFieldValues3.cpp` +- **Thin community `Community 1734`** (1 nodes): `Il2CppCCalculateFieldValues3.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1698`** (1 nodes): `Il2CppCCalculateFieldValues4.cpp` +- **Thin community `Community 1735`** (1 nodes): `Il2CppCCalculateFieldValues4.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1699`** (1 nodes): `Il2CppCCalculateFieldValues5.cpp` +- **Thin community `Community 1736`** (1 nodes): `Il2CppCCalculateFieldValues5.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1700`** (1 nodes): `Il2CppCCalculateTypeValues1.cpp` +- **Thin community `Community 1737`** (1 nodes): `Il2CppCCalculateTypeValues1.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1701`** (1 nodes): `Il2CppCCalculateTypeValues2.cpp` +- **Thin community `Community 1738`** (1 nodes): `Il2CppCCalculateTypeValues2.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1702`** (1 nodes): `Il2CppCCalculateTypeValues3.cpp` +- **Thin community `Community 1739`** (1 nodes): `Il2CppCCalculateTypeValues3.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1703`** (1 nodes): `Il2CppCCFieldValuesTable.cpp` +- **Thin community `Community 1740`** (1 nodes): `Il2CppCCFieldValuesTable.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1704`** (1 nodes): `Il2CppCCTypeValuesTable.cpp` +- **Thin community `Community 1741`** (1 nodes): `Il2CppCCTypeValuesTable.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1705`** (1 nodes): `Il2CppGenericAdjustorThunkTable.c` +- **Thin community `Community 1742`** (1 nodes): `Il2CppGenericAdjustorThunkTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1706`** (1 nodes): `Il2CppGenericClassTable.c` +- **Thin community `Community 1743`** (1 nodes): `Il2CppGenericClassTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1707`** (1 nodes): `Il2CppGenericInstDefinitions.c` +- **Thin community `Community 1744`** (1 nodes): `Il2CppGenericInstDefinitions.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1708`** (1 nodes): `Il2CppGenericMethodDefinitions.c` +- **Thin community `Community 1745`** (1 nodes): `Il2CppGenericMethodDefinitions.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1709`** (1 nodes): `Il2CppGenericMethodPointerTable.c` +- **Thin community `Community 1746`** (1 nodes): `Il2CppGenericMethodPointerTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1710`** (1 nodes): `Il2CppGenericMethodTable.c` +- **Thin community `Community 1747`** (1 nodes): `Il2CppGenericMethodTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1711`** (1 nodes): `Il2CppMetadataRegistration.c` +- **Thin community `Community 1748`** (1 nodes): `Il2CppMetadataRegistration.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1712`** (1 nodes): `Il2CppMetadataUsage.c` +- **Thin community `Community 1749`** (1 nodes): `Il2CppMetadataUsage.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1713`** (1 nodes): `Il2CppReversePInvokeWrapperTable.cpp` +- **Thin community `Community 1750`** (1 nodes): `Il2CppReversePInvokeWrapperTable.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1714`** (1 nodes): `Il2CppRgctxTable.c` +- **Thin community `Community 1751`** (1 nodes): `Il2CppRgctxTable.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1715`** (1 nodes): `Il2CppTypeDefinitions.c` +- **Thin community `Community 1752`** (1 nodes): `Il2CppTypeDefinitions.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1716`** (1 nodes): `MemoryPack_CodeGen.c` +- **Thin community `Community 1753`** (1 nodes): `MemoryPack_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1717`** (1 nodes): `Microsoft.ML.OnnxRuntime_CodeGen.c` +- **Thin community `Community 1754`** (1 nodes): `Microsoft.ML.OnnxRuntime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1718`** (1 nodes): `MongoDB.Bson_CodeGen.c` +- **Thin community `Community 1755`** (1 nodes): `MongoDB.Bson_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1719`** (1 nodes): `Mono.Security_CodeGen.c` +- **Thin community `Community 1756`** (1 nodes): `Mono.Security_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1720`** (1 nodes): `mscorlib_CodeGen.c` +- **Thin community `Community 1757`** (1 nodes): `mscorlib_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1721`** (1 nodes): `NLog_CodeGen.c` +- **Thin community `Community 1758`** (1 nodes): `NLog_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1722`** (1 nodes): `NodeCanvas_CodeGen.c` +- **Thin community `Community 1759`** (1 nodes): `NodeCanvas_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1723`** (1 nodes): `OPS.Obfuscator_CodeGen.c` +- **Thin community `Community 1760`** (1 nodes): `OPS.Obfuscator_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1724`** (1 nodes): `ParadoxNotion_CodeGen.c` +- **Thin community `Community 1761`** (1 nodes): `ParadoxNotion_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1725`** (1 nodes): `System.Configuration_CodeGen.c` +- **Thin community `Community 1762`** (1 nodes): `System.Configuration_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1726`** (1 nodes): `System.Core_CodeGen.c` +- **Thin community `Community 1763`** (1 nodes): `System.Core_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1727`** (1 nodes): `System.Data_CodeGen.c` +- **Thin community `Community 1764`** (1 nodes): `System.Data_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1728`** (1 nodes): `System.IO.Compression_CodeGen.c` +- **Thin community `Community 1765`** (1 nodes): `System.IO.Compression_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1729`** (1 nodes): `System.Net.Http_CodeGen.c` +- **Thin community `Community 1766`** (1 nodes): `System.Net.Http_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1730`** (1 nodes): `System.Numerics_CodeGen.c` +- **Thin community `Community 1767`** (1 nodes): `System.Numerics_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1731`** (1 nodes): `System.Runtime.CompilerServices.Unsafe_CodeGen.c` +- **Thin community `Community 1768`** (1 nodes): `System.Runtime.CompilerServices.Unsafe_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1732`** (1 nodes): `System.Transactions_CodeGen.c` +- **Thin community `Community 1769`** (1 nodes): `System.Transactions_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1733`** (1 nodes): `System.Xml_CodeGen.c` +- **Thin community `Community 1770`** (1 nodes): `System.Xml_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1734`** (1 nodes): `System_CodeGen.c` +- **Thin community `Community 1771`** (1 nodes): `System_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1735`** (1 nodes): `Unity.2D.Animation.Runtime_CodeGen.c` +- **Thin community `Community 1772`** (1 nodes): `Unity.2D.Animation.Runtime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1736`** (1 nodes): `Unity.Burst.Unsafe_CodeGen.c` +- **Thin community `Community 1773`** (1 nodes): `Unity.Burst.Unsafe_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1737`** (1 nodes): `Unity.Burst_CodeGen.c` +- **Thin community `Community 1774`** (1 nodes): `Unity.Burst_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1738`** (1 nodes): `Unity.Collections.LowLevel.ILSupport_CodeGen.c` +- **Thin community `Community 1775`** (1 nodes): `Unity.Collections.LowLevel.ILSupport_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1739`** (1 nodes): `Unity.Collections_CodeGen.c` +- **Thin community `Community 1776`** (1 nodes): `Unity.Collections_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1740`** (1 nodes): `Unity.InternalAPIEngineBridge.001_CodeGen.c` +- **Thin community `Community 1777`** (1 nodes): `Unity.InternalAPIEngineBridge.001_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1741`** (1 nodes): `Unity.Mathematics_CodeGen.c` +- **Thin community `Community 1778`** (1 nodes): `Unity.Mathematics_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1742`** (1 nodes): `Unity.RenderPipeline.Universal.ShaderLibrary_CodeGen.c` +- **Thin community `Community 1779`** (1 nodes): `Unity.RenderPipeline.Universal.ShaderLibrary_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1743`** (1 nodes): `Unity.RenderPipelines.Core.Runtime_CodeGen.c` +- **Thin community `Community 1780`** (1 nodes): `Unity.RenderPipelines.Core.Runtime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1744`** (1 nodes): `Unity.RenderPipelines.Universal.Runtime_CodeGen.c` +- **Thin community `Community 1781`** (1 nodes): `Unity.RenderPipelines.Universal.Runtime_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1745`** (1 nodes): `Unity.TextMeshPro_CodeGen.c` +- **Thin community `Community 1782`** (1 nodes): `Unity.TextMeshPro_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1746`** (1 nodes): `UnityEngine.AIModule_CodeGen.c` +- **Thin community `Community 1783`** (1 nodes): `UnityEngine.AIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1747`** (1 nodes): `UnityEngine.AndroidJNIModule_CodeGen.c` +- **Thin community `Community 1784`** (1 nodes): `UnityEngine.AndroidJNIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1748`** (1 nodes): `UnityEngine.AnimationModule_CodeGen.c` +- **Thin community `Community 1785`** (1 nodes): `UnityEngine.AnimationModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1749`** (1 nodes): `UnityEngine.AssetBundleModule_CodeGen.c` +- **Thin community `Community 1786`** (1 nodes): `UnityEngine.AssetBundleModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1750`** (1 nodes): `UnityEngine.AudioModule_CodeGen.c` +- **Thin community `Community 1787`** (1 nodes): `UnityEngine.AudioModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1751`** (1 nodes): `UnityEngine.CoreModule_CodeGen.c` +- **Thin community `Community 1788`** (1 nodes): `UnityEngine.CoreModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1752`** (1 nodes): `UnityEngine.DirectorModule_CodeGen.c` +- **Thin community `Community 1789`** (1 nodes): `UnityEngine.DirectorModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1753`** (1 nodes): `UnityEngine.GridModule_CodeGen.c` +- **Thin community `Community 1790`** (1 nodes): `UnityEngine.GridModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1754`** (1 nodes): `UnityEngine.IMGUIModule_CodeGen.c` +- **Thin community `Community 1791`** (1 nodes): `UnityEngine.IMGUIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1755`** (1 nodes): `UnityEngine.InputLegacyModule_CodeGen.c` +- **Thin community `Community 1792`** (1 nodes): `UnityEngine.InputLegacyModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1756`** (1 nodes): `UnityEngine.InputModule_CodeGen.c` +- **Thin community `Community 1793`** (1 nodes): `UnityEngine.InputModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1757`** (1 nodes): `UnityEngine.JSONSerializeModule_CodeGen.c` +- **Thin community `Community 1794`** (1 nodes): `UnityEngine.JSONSerializeModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1758`** (1 nodes): `UnityEngine.ParticleSystemModule_CodeGen.c` +- **Thin community `Community 1795`** (1 nodes): `UnityEngine.ParticleSystemModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1759`** (1 nodes): `UnityEngine.Physics2DModule_CodeGen.c` +- **Thin community `Community 1796`** (1 nodes): `UnityEngine.Physics2DModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1760`** (1 nodes): `UnityEngine.PhysicsModule_CodeGen.c` +- **Thin community `Community 1797`** (1 nodes): `UnityEngine.PhysicsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1761`** (1 nodes): `UnityEngine.PropertiesModule_CodeGen.c` +- **Thin community `Community 1798`** (1 nodes): `UnityEngine.PropertiesModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1762`** (1 nodes): `UnityEngine.SharedInternalsModule_CodeGen.c` +- **Thin community `Community 1799`** (1 nodes): `UnityEngine.SharedInternalsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1763`** (1 nodes): `UnityEngine.SpriteMaskModule_CodeGen.c` +- **Thin community `Community 1800`** (1 nodes): `UnityEngine.SpriteMaskModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1764`** (1 nodes): `UnityEngine.SpriteShapeModule.cpp` +- **Thin community `Community 1801`** (1 nodes): `UnityEngine.SpriteShapeModule.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1765`** (1 nodes): `UnityEngine.SpriteShapeModule_CodeGen.c` +- **Thin community `Community 1802`** (1 nodes): `UnityEngine.SpriteShapeModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1766`** (1 nodes): `UnityEngine.SubsystemsModule_CodeGen.c` +- **Thin community `Community 1803`** (1 nodes): `UnityEngine.SubsystemsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1767`** (1 nodes): `UnityEngine.TerrainModule_CodeGen.c` +- **Thin community `Community 1804`** (1 nodes): `UnityEngine.TerrainModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1768`** (1 nodes): `UnityEngine.TextCoreFontEngineModule_CodeGen.c` +- **Thin community `Community 1805`** (1 nodes): `UnityEngine.TextCoreFontEngineModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1769`** (1 nodes): `UnityEngine.TextCoreTextEngineModule_CodeGen.c` +- **Thin community `Community 1806`** (1 nodes): `UnityEngine.TextCoreTextEngineModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1770`** (1 nodes): `UnityEngine.TextRenderingModule_CodeGen.c` +- **Thin community `Community 1807`** (1 nodes): `UnityEngine.TextRenderingModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1771`** (1 nodes): `UnityEngine.TilemapModule_CodeGen.c` +- **Thin community `Community 1808`** (1 nodes): `UnityEngine.TilemapModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1772`** (1 nodes): `UnityEngine.UIElementsModule_CodeGen.c` +- **Thin community `Community 1809`** (1 nodes): `UnityEngine.UIElementsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1773`** (1 nodes): `UnityEngine.UIModule_CodeGen.c` +- **Thin community `Community 1810`** (1 nodes): `UnityEngine.UIModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1774`** (1 nodes): `UnityEngine.UI_CodeGen.c` +- **Thin community `Community 1811`** (1 nodes): `UnityEngine.UI_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1775`** (1 nodes): `UnityEngine.UnityAnalyticsModule_CodeGen.c` +- **Thin community `Community 1812`** (1 nodes): `UnityEngine.UnityAnalyticsModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1776`** (1 nodes): `UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c` +- **Thin community `Community 1813`** (1 nodes): `UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1777`** (1 nodes): `UnityEngine.UnityWebRequestModule_CodeGen.c` +- **Thin community `Community 1814`** (1 nodes): `UnityEngine.UnityWebRequestModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1778`** (1 nodes): `UnityEngine.VFXModule_CodeGen.c` +- **Thin community `Community 1815`** (1 nodes): `UnityEngine.VFXModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1779`** (1 nodes): `UnityEngine.VideoModule_CodeGen.c` +- **Thin community `Community 1816`** (1 nodes): `UnityEngine.VideoModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1780`** (1 nodes): `UnityEngine.VRModule_CodeGen.c` +- **Thin community `Community 1817`** (1 nodes): `UnityEngine.VRModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1781`** (1 nodes): `UnityEngine.XRModule_CodeGen.c` +- **Thin community `Community 1818`** (1 nodes): `UnityEngine.XRModule_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1782`** (1 nodes): `UnityEngine_CodeGen.c` +- **Thin community `Community 1819`** (1 nodes): `UnityEngine_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1783`** (1 nodes): `YooAsset_CodeGen.c` +- **Thin community `Community 1820`** (1 nodes): `YooAsset_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1784`** (1 nodes): `__Generated_CodeGen.c` +- **Thin community `Community 1821`** (1 nodes): `__Generated_CodeGen.c` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1785`** (1 nodes): `pch-c-10256095421914793858.cpp` +- **Thin community `Community 1822`** (1 nodes): `pch-c-10256095421914793858.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1786`** (1 nodes): `pch-c-13433379115825167417.cpp` +- **Thin community `Community 1823`** (1 nodes): `pch-c-13433379115825167417.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1787`** (1 nodes): `pch-cpp-12811492739455714243.cpp` +- **Thin community `Community 1824`** (1 nodes): `pch-cpp-12811492739455714243.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1788`** (1 nodes): `pch-cpp-16603789281455124026.cpp` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1789`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1790`** (1 nodes): `_InternalVisibleTo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1791`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1792`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1793`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1794`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1795`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1796`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1797`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1798`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1799`** (1 nodes): `TexturePlatformSettingsModel.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1800`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1801`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1802`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1803`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1804`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1805`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1806`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1807`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1808`** (1 nodes): `TexturePlatformSettingsModal.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1809`** (1 nodes): `TextureSettingsGUI.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1810`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1811`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1812`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1813`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1814`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1815`** (1 nodes): `BurstLoader.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1816`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1817`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1818`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1819`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1820`** (1 nodes): `main.mm` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1821`** (1 nodes): `BStrHolder.h` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1822`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1823`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1824`** (1 nodes): `AssemblyInfo.cs` - Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1825`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1825`** (1 nodes): `pch-cpp-16603789281455124026.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1826`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1827`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1827`** (1 nodes): `_InternalVisibleTo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1828`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. @@ -10895,9 +11006,9 @@ Nodes (1): Kill any existing processes listening on the target port. Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1834`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1835`** (1 nodes): `GlyphInfoDrawer.cs` +- **Thin community `Community 1835`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1836`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1836`** (1 nodes): `TexturePlatformSettingsModel.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1837`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. @@ -10909,306 +11020,380 @@ Nodes (1): Kill any existing processes listening on the target port. Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1841`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1842`** (1 nodes): `InvocationInspector.cs` +- **Thin community `Community 1842`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1843`** (1 nodes): `MemberInvocationInspector.cs` +- **Thin community `Community 1843`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1844`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1845`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1845`** (1 nodes): `TexturePlatformSettingsModal.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1846`** (1 nodes): `AssemblyInfo.cs` +- **Thin community `Community 1846`** (1 nodes): `TextureSettingsGUI.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1847`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1848`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1849`** (1 nodes): `glmdebug.h` +- **Thin community `Community 1849`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1850`** (1 nodes): `glmgrcocoa.mm` +- **Thin community `Community 1850`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1851`** (1 nodes): `glmgrext.h` +- **Thin community `Community 1851`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1852`** (1 nodes): `isteamdualsense.h` +- **Thin community `Community 1852`** (1 nodes): `BurstLoader.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1853`** (1 nodes): `steamencryptedappticket.h` +- **Thin community `Community 1853`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1854`** (1 nodes): `steamps3params.h` +- **Thin community `Community 1854`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1855`** (1 nodes): `steamuniverse.h` +- **Thin community `Community 1855`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1856`** (1 nodes): `steam_api_internal.h` +- **Thin community `Community 1856`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1857`** (1 nodes): `BaseMenu.cpp` +- **Thin community `Community 1857`** (1 nodes): `main.mm` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1858`** (1 nodes): `musicplayer.h` +- **Thin community `Community 1858`** (1 nodes): `BStrHolder.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1859`** (1 nodes): `SimpleProtobuf.h` +- **Thin community `Community 1859`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1860`** (1 nodes): `SpaceWarRes.h` +- **Thin community `Community 1860`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1861`** (1 nodes): `stdafx.cpp` +- **Thin community `Community 1861`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1862`** (1 nodes): `stdafx_ps3.h` +- **Thin community `Community 1862`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1863`** (1 nodes): `glew.h` +- **Thin community `Community 1863`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1864`** (1 nodes): `glxew.h` +- **Thin community `Community 1864`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1865`** (1 nodes): `wglew.h` +- **Thin community `Community 1865`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1866`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` +- **Thin community `Community 1866`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1867`** (1 nodes): `Save bugs.json to DOC/.` +- **Thin community `Community 1867`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1868`** (1 nodes): `Load devplan.json from DOC/.` +- **Thin community `Community 1868`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1869`** (1 nodes): `Save devplan.json to DOC/.` +- **Thin community `Community 1869`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1870`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` +- **Thin community `Community 1870`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1871`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` +- **Thin community `Community 1871`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1872`** (1 nodes): `Load the sentiment index.json, return list.` +- **Thin community `Community 1872`** (1 nodes): `GlyphInfoDrawer.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1873`** (1 nodes): `Save the sentiment index.json.` +- **Thin community `Community 1873`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1874`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` +- **Thin community `Community 1874`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1875`** (1 nodes): `Handles static files and API endpoints.` +- **Thin community `Community 1875`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1876`** (1 nodes): `List available version folders in data/oss/.` +- **Thin community `Community 1876`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1877`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` +- **Thin community `Community 1877`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1878`** (1 nodes): `Create a new sentiment record from multipart form data.` +- **Thin community `Community 1878`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1879`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` +- **Thin community `Community 1879`** (1 nodes): `InvocationInspector.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1880`** (1 nodes): `Update a bug's fields (status, priority, etc.).` +- **Thin community `Community 1880`** (1 nodes): `MemberInvocationInspector.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1881`** (1 nodes): `Create a new sentiment record from multipart form data.` +- **Thin community `Community 1881`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1882`** (1 nodes): `Delete a sentiment record by id.` +- **Thin community `Community 1882`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1883`** (1 nodes): `Create a new bug record.` +- **Thin community `Community 1883`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1884`** (1 nodes): `Update a bug's fields (status, priority, etc.).` +- **Thin community `Community 1884`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1885`** (1 nodes): `Create a new marketing TODO item.` +- **Thin community `Community 1885`** (1 nodes): `AssemblyInfo.cs` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1886`** (1 nodes): `Toggle a TODO item's done state.` +- **Thin community `Community 1886`** (1 nodes): `glmdebug.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1887`** (1 nodes): `Update a task's description or other fields.` +- **Thin community `Community 1887`** (1 nodes): `glmgrcocoa.mm` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1888`** (1 nodes): `Create a subtask under a task.` +- **Thin community `Community 1888`** (1 nodes): `glmgrext.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1889`** (1 nodes): `Toggle a subtask's done state.` +- **Thin community `Community 1889`** (1 nodes): `isteamdualsense.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1890`** (1 nodes): `Save a marketing event note.` +- **Thin community `Community 1890`** (1 nodes): `steamencryptedappticket.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1891`** (1 nodes): `Create a new marketing event.` +- **Thin community `Community 1891`** (1 nodes): `steamps3params.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1892`** (1 nodes): `Extract platform name from /api/sns/{platform}...` +- **Thin community `Community 1892`** (1 nodes): `steamuniverse.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1893`** (1 nodes): `Get path to the platform's JSON file.` +- **Thin community `Community 1893`** (1 nodes): `steam_api_internal.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1894`** (1 nodes): `Load a platform's SNS data.` +- **Thin community `Community 1894`** (1 nodes): `BaseMenu.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1895`** (1 nodes): `Save a platform's SNS data.` +- **Thin community `Community 1895`** (1 nodes): `musicplayer.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1896`** (1 nodes): `Handle GET /api/sns/{platform}` +- **Thin community `Community 1896`** (1 nodes): `SimpleProtobuf.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1897`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` +- **Thin community `Community 1897`** (1 nodes): `SpaceWarRes.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1898`** (1 nodes): `Update (create or modify) a comment.` +- **Thin community `Community 1898`** (1 nodes): `stdafx.cpp` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1899`** (1 nodes): `Load quick replies data.` +- **Thin community `Community 1899`** (1 nodes): `stdafx_ps3.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1900`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 1900`** (1 nodes): `glew.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1901`** (1 nodes): `Bulk create comments from selected discussions.` +- **Thin community `Community 1901`** (1 nodes): `glxew.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1902`** (1 nodes): `Load quick replies data.` +- **Thin community `Community 1902`** (1 nodes): `wglew.h` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1903`** (1 nodes): `Persist quick replies data.` +- **Thin community `Community 1903`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1904`** (1 nodes): `GET /api/quick-replies` +- **Thin community `Community 1904`** (1 nodes): `Save bugs.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1905`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` +- **Thin community `Community 1905`** (1 nodes): `Load devplan.json from DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1906`** (1 nodes): `Kill any existing processes listening on the target port.` +- **Thin community `Community 1906`** (1 nodes): `Save devplan.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1907`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` +- **Thin community `Community 1907`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1908`** (1 nodes): `Save bugs.json to DOC/.` +- **Thin community `Community 1908`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1909`** (1 nodes): `Load devplan.json from DOC/.` +- **Thin community `Community 1909`** (1 nodes): `Load the sentiment index.json, return list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1910`** (1 nodes): `Save devplan.json to DOC/.` +- **Thin community `Community 1910`** (1 nodes): `Save the sentiment index.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1911`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` +- **Thin community `Community 1911`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1912`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` +- **Thin community `Community 1912`** (1 nodes): `Handles static files and API endpoints.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1913`** (1 nodes): `Load the sentiment index.json, return list.` +- **Thin community `Community 1913`** (1 nodes): `List available version folders in data/oss/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1914`** (1 nodes): `Save the sentiment index.json.` +- **Thin community `Community 1914`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1915`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` +- **Thin community `Community 1915`** (1 nodes): `Create a new sentiment record from multipart form data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1916`** (1 nodes): `Handles static files and API endpoints.` +- **Thin community `Community 1916`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1917`** (1 nodes): `List available version folders in data/oss/.` +- **Thin community `Community 1917`** (1 nodes): `Update a bug's fields (status, priority, etc.).` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1918`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` +- **Thin community `Community 1918`** (1 nodes): `Create a new sentiment record from multipart form data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1919`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` +- **Thin community `Community 1919`** (1 nodes): `Delete a sentiment record by id.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1920`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` +- **Thin community `Community 1920`** (1 nodes): `Create a new bug record.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1921`** (1 nodes): `Run export_data.py and return the result as JSON.` +- **Thin community `Community 1921`** (1 nodes): `Update a bug's fields (status, priority, etc.).` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1922`** (1 nodes): `Delete a sentiment record by id.` +- **Thin community `Community 1922`** (1 nodes): `Create a new marketing TODO item.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1923`** (1 nodes): `Create a new bug record.` +- **Thin community `Community 1923`** (1 nodes): `Toggle a TODO item's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1924`** (1 nodes): `Update a bug's fields (status, priority, etc.).` +- **Thin community `Community 1924`** (1 nodes): `Update a task's description or other fields.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1925`** (1 nodes): `Create a new marketing TODO item.` +- **Thin community `Community 1925`** (1 nodes): `Create a subtask under a task.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1926`** (1 nodes): `Toggle a TODO item's done state.` +- **Thin community `Community 1926`** (1 nodes): `Toggle a subtask's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1927`** (1 nodes): `Update a task's description or other fields.` +- **Thin community `Community 1927`** (1 nodes): `Save a marketing event note.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1928`** (1 nodes): `Create a subtask under a task.` +- **Thin community `Community 1928`** (1 nodes): `Create a new marketing event.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1929`** (1 nodes): `Toggle a subtask's done state.` +- **Thin community `Community 1929`** (1 nodes): `Extract platform name from /api/sns/{platform}...` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1930`** (1 nodes): `Save a marketing event note.` +- **Thin community `Community 1930`** (1 nodes): `Get path to the platform's JSON file.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1931`** (1 nodes): `Create a new marketing event.` +- **Thin community `Community 1931`** (1 nodes): `Load a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1932`** (1 nodes): `Extract platform name from /api/sns/{platform}...` +- **Thin community `Community 1932`** (1 nodes): `Save a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1933`** (1 nodes): `Get path to the platform's JSON file.` +- **Thin community `Community 1933`** (1 nodes): `Handle GET /api/sns/{platform}` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1934`** (1 nodes): `Load a platform's SNS data.` +- **Thin community `Community 1934`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1935`** (1 nodes): `Save a platform's SNS data.` +- **Thin community `Community 1935`** (1 nodes): `Update (create or modify) a comment.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1936`** (1 nodes): `Handle GET /api/sns/{platform}` +- **Thin community `Community 1936`** (1 nodes): `Load quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1937`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` +- **Thin community `Community 1937`** (1 nodes): `Parse Steam Community discussion list from HTML.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1938`** (1 nodes): `Update (create or modify) a comment.` +- **Thin community `Community 1938`** (1 nodes): `Bulk create comments from selected discussions.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1939`** (1 nodes): `Fetch new discussions from Steam Community.` +- **Thin community `Community 1939`** (1 nodes): `Load quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1940`** (1 nodes): `Return demo data when Steam is unreachable.` +- **Thin community `Community 1940`** (1 nodes): `Persist quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1941`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 1941`** (1 nodes): `GET /api/quick-replies` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1942`** (1 nodes): `Bulk create comments from selected discussions.` +- **Thin community `Community 1942`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1943`** (1 nodes): `Persist quick replies data.` +- **Thin community `Community 1943`** (1 nodes): `Kill any existing processes listening on the target port.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1944`** (1 nodes): `GET /api/quick-replies` +- **Thin community `Community 1944`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1945`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` +- **Thin community `Community 1945`** (1 nodes): `Save bugs.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1946`** (1 nodes): `Kill any existing processes listening on the target port.` +- **Thin community `Community 1946`** (1 nodes): `Load devplan.json from DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1947`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` +- **Thin community `Community 1947`** (1 nodes): `Save devplan.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1948`** (1 nodes): `Save bugs.json to DOC/.` +- **Thin community `Community 1948`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1949`** (1 nodes): `Load devplan.json from DOC/.` +- **Thin community `Community 1949`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1950`** (1 nodes): `Save devplan.json to DOC/.` +- **Thin community `Community 1950`** (1 nodes): `Load the sentiment index.json, return list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1951`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` +- **Thin community `Community 1951`** (1 nodes): `Save the sentiment index.json.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1952`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` +- **Thin community `Community 1952`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1953`** (1 nodes): `Load the sentiment index.json, return list.` +- **Thin community `Community 1953`** (1 nodes): `Handles static files and API endpoints.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1954`** (1 nodes): `Save the sentiment index.json.` +- **Thin community `Community 1954`** (1 nodes): `List available version folders in data/oss/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1955`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` +- **Thin community `Community 1955`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1956`** (1 nodes): `Handles static files and API endpoints.` +- **Thin community `Community 1956`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1957`** (1 nodes): `List available version folders in data/oss/.` +- **Thin community `Community 1957`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1958`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` +- **Thin community `Community 1958`** (1 nodes): `Run export_data.py and return the result as JSON.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1959`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` +- **Thin community `Community 1959`** (1 nodes): `Delete a sentiment record by id.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1960`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` +- **Thin community `Community 1960`** (1 nodes): `Create a new bug record.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1961`** (1 nodes): `Run export_data.py and return the result as JSON.` +- **Thin community `Community 1961`** (1 nodes): `Update a bug's fields (status, priority, etc.).` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1962`** (1 nodes): `Create a new sentiment record from multipart form data.` +- **Thin community `Community 1962`** (1 nodes): `Create a new marketing TODO item.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1963`** (1 nodes): `Delete a sentiment record by id.` +- **Thin community `Community 1963`** (1 nodes): `Toggle a TODO item's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1964`** (1 nodes): `Create a new bug record.` +- **Thin community `Community 1964`** (1 nodes): `Update a task's description or other fields.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1965`** (1 nodes): `Create a new marketing TODO item.` +- **Thin community `Community 1965`** (1 nodes): `Create a subtask under a task.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1966`** (1 nodes): `Toggle a TODO item's done state.` +- **Thin community `Community 1966`** (1 nodes): `Toggle a subtask's done state.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1967`** (1 nodes): `Update a task's description or other fields.` +- **Thin community `Community 1967`** (1 nodes): `Save a marketing event note.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1968`** (1 nodes): `Create a subtask under a task.` +- **Thin community `Community 1968`** (1 nodes): `Create a new marketing event.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1969`** (1 nodes): `Toggle a subtask's done state.` +- **Thin community `Community 1969`** (1 nodes): `Extract platform name from /api/sns/{platform}...` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1970`** (1 nodes): `Save a marketing event note.` +- **Thin community `Community 1970`** (1 nodes): `Get path to the platform's JSON file.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1971`** (1 nodes): `Create a new marketing event.` +- **Thin community `Community 1971`** (1 nodes): `Load a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1972`** (1 nodes): `Extract platform name from /api/sns/{platform}...` +- **Thin community `Community 1972`** (1 nodes): `Save a platform's SNS data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1973`** (1 nodes): `Get path to the platform's JSON file.` +- **Thin community `Community 1973`** (1 nodes): `Handle GET /api/sns/{platform}` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1974`** (1 nodes): `Load a platform's SNS data.` +- **Thin community `Community 1974`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1975`** (1 nodes): `Save a platform's SNS data.` +- **Thin community `Community 1975`** (1 nodes): `Update (create or modify) a comment.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1976`** (1 nodes): `Handle GET /api/sns/{platform}` +- **Thin community `Community 1976`** (1 nodes): `Fetch new discussions from Steam Community.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1977`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` +- **Thin community `Community 1977`** (1 nodes): `Return demo data when Steam is unreachable.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1978`** (1 nodes): `Update (create or modify) a comment.` +- **Thin community `Community 1978`** (1 nodes): `Parse Steam Community discussion list from HTML.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1979`** (1 nodes): `Fetch new discussions from Steam Community.` +- **Thin community `Community 1979`** (1 nodes): `Bulk create comments from selected discussions.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1980`** (1 nodes): `Return demo data when Steam is unreachable.` +- **Thin community `Community 1980`** (1 nodes): `Persist quick replies data.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1981`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 1981`** (1 nodes): `GET /api/quick-replies` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1982`** (1 nodes): `Bulk create comments from selected discussions.` +- **Thin community `Community 1982`** (1 nodes): `POST /api/quick-replies/{create|update|delete}` Too small to be a meaningful cluster - may be noise or needs more connections extracted. - **Thin community `Community 1983`** (1 nodes): `Kill any existing processes listening on the target port.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1984`** (1 nodes): `Parse Steam Community discussion list from HTML.` +- **Thin community `Community 1984`** (1 nodes): `Load bugs.json from DOC/, return dict with nextId and bugs list.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1985`** (1 nodes): `Bulk create comments from selected discussions.` +- **Thin community `Community 1985`** (1 nodes): `Save bugs.json to DOC/.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. -- **Thin community `Community 1986`** (1 nodes): `Kill any existing processes listening on the target port.` +- **Thin community `Community 1986`** (1 nodes): `Load devplan.json from DOC/.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1987`** (1 nodes): `Save devplan.json to DOC/.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1988`** (1 nodes): `Load marketing todos from DOC/marketing/todos.json.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1989`** (1 nodes): `Save marketing todos to DOC/marketing/todos.json.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1990`** (1 nodes): `Load the sentiment index.json, return list.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1991`** (1 nodes): `Save the sentiment index.json.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1992`** (1 nodes): `Parse multipart/form-data manually. Returns: (fields: dict[str, str], files` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1993`** (1 nodes): `Handles static files and API endpoints.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1994`** (1 nodes): `List available version folders in data/oss/.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1995`** (1 nodes): `List match summaries for selected versions. Query params: versions=0.7.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1996`** (1 nodes): `Return full match data for a specific file. Query: ?file=0.7.0/steamid/` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1997`** (1 nodes): `Aggregate per-hero stats across selected version matches. Query: ?versi` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1998`** (1 nodes): `Run export_data.py and return the result as JSON.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 1999`** (1 nodes): `Create a new sentiment record from multipart form data.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2000`** (1 nodes): `Delete a sentiment record by id.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2001`** (1 nodes): `Create a new bug record.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2002`** (1 nodes): `Create a new marketing TODO item.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2003`** (1 nodes): `Toggle a TODO item's done state.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2004`** (1 nodes): `Update a task's description or other fields.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2005`** (1 nodes): `Create a subtask under a task.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2006`** (1 nodes): `Toggle a subtask's done state.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2007`** (1 nodes): `Save a marketing event note.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2008`** (1 nodes): `Create a new marketing event.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2009`** (1 nodes): `Extract platform name from /api/sns/{platform}...` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2010`** (1 nodes): `Get path to the platform's JSON file.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2011`** (1 nodes): `Load a platform's SNS data.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2012`** (1 nodes): `Save a platform's SNS data.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2013`** (1 nodes): `Handle GET /api/sns/{platform}` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2014`** (1 nodes): `Handle POST /api/sns/{platform}/update and /delete` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2015`** (1 nodes): `Update (create or modify) a comment.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2016`** (1 nodes): `Fetch new discussions from Steam Community.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2017`** (1 nodes): `Return demo data when Steam is unreachable.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2018`** (1 nodes): `Parse Steam Community discussion list from HTML.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2019`** (1 nodes): `Bulk create comments from selected discussions.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2020`** (1 nodes): `Kill any existing processes listening on the target port.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2021`** (1 nodes): `Parse Steam Community discussion list from HTML.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2022`** (1 nodes): `Bulk create comments from selected discussions.` + Too small to be a meaningful cluster - may be noise or needs more connections extracted. +- **Thin community `Community 2023`** (1 nodes): `Kill any existing processes listening on the target port.` Too small to be a meaningful cluster - may be noise or needs more connections extracted. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `NullCheck` connect `Community 0` to `Community 1`, `Community 2`, `Community 4`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 25`, `Community 26`, `Community 27`, `Community 30`, `Community 31`, `Community 32`, `Community 33`, `Community 34`, `Community 35`, `Community 37`, `Community 38`, `Community 40`, `Community 41`, `Community 42`, `Community 43`, `Community 44`, `Community 45`, `Community 46`, `Community 47`, `Community 49`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 61`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 73`, `Community 74`, `Community 75`, `Community 76`, `Community 77`, `Community 78`, `Community 80`, `Community 82`, `Community 83`, `Community 84`, `Community 85`, `Community 86`, `Community 87`, `Community 88`, `Community 89`, `Community 90`, `Community 92`, `Community 93`, `Community 94`, `Community 95`, `Community 96`, `Community 97`, `Community 98`, `Community 99`, `Community 101`, `Community 138`, `Community 177`, `Community 275`?** - _High betweenness centrality (0.510) - this node is a cross-community bridge._ -- **Why does `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` connect `Community 6` to `Community 0`, `Community 2`, `Community 5`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 25`, `Community 26`, `Community 27`, `Community 30`, `Community 31`, `Community 32`, `Community 33`, `Community 34`, `Community 35`, `Community 37`, `Community 38`, `Community 40`, `Community 41`, `Community 42`, `Community 43`, `Community 44`, `Community 47`, `Community 49`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 61`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 73`, `Community 74`, `Community 77`, `Community 78`, `Community 80`, `Community 83`, `Community 85`, `Community 87`, `Community 88`, `Community 89`, `Community 90`, `Community 92`, `Community 93`, `Community 94`, `Community 96`, `Community 98`, `Community 99`, `Community 101`?** +- **Why does `NullCheck` connect `Community 3` to `Community 0`, `Community 1`, `Community 2`, `Community 5`, `Community 6`, `Community 7`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 19`, `Community 20`, `Community 21`, `Community 22`, `Community 23`, `Community 24`, `Community 25`, `Community 26`, `Community 28`, `Community 29`, `Community 30`, `Community 32`, `Community 33`, `Community 34`, `Community 35`, `Community 37`, `Community 38`, `Community 39`, `Community 40`, `Community 41`, `Community 42`, `Community 43`, `Community 44`, `Community 46`, `Community 47`, `Community 48`, `Community 49`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 73`, `Community 74`, `Community 75`, `Community 76`, `Community 77`, `Community 80`, `Community 81`, `Community 82`, `Community 83`, `Community 84`, `Community 86`, `Community 87`, `Community 88`, `Community 89`, `Community 90`, `Community 121`, `Community 139`, `Community 188`, `Community 290`?** + _High betweenness centrality (0.503) - this node is a cross-community bridge._ +- **Why does `Clear()` connect `Community 0` to `Community 2`, `Community 99`, `Community 174`, `Community 79`, `Community 152`, `Community 19`, `Community 184`, `Community 61`, `Community 94`, `Community 31`?** + _High betweenness centrality (0.026) - this node is a cross-community bridge._ +- **Why does `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` connect `Community 7` to `Community 1`, `Community 2`, `Community 3`, `Community 5`, `Community 6`, `Community 8`, `Community 9`, `Community 10`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 15`, `Community 16`, `Community 17`, `Community 18`, `Community 20`, `Community 21`, `Community 22`, `Community 24`, `Community 25`, `Community 26`, `Community 28`, `Community 29`, `Community 30`, `Community 32`, `Community 33`, `Community 34`, `Community 35`, `Community 37`, `Community 38`, `Community 39`, `Community 40`, `Community 44`, `Community 46`, `Community 47`, `Community 48`, `Community 49`, `Community 50`, `Community 51`, `Community 52`, `Community 53`, `Community 54`, `Community 55`, `Community 56`, `Community 57`, `Community 58`, `Community 59`, `Community 60`, `Community 62`, `Community 63`, `Community 64`, `Community 65`, `Community 66`, `Community 67`, `Community 68`, `Community 69`, `Community 70`, `Community 71`, `Community 72`, `Community 73`, `Community 75`, `Community 76`, `Community 77`, `Community 80`, `Community 81`, `Community 83`, `Community 84`, `Community 86`, `Community 88`, `Community 89`, `Community 90`, `Community 121`?** _High betweenness centrality (0.022) - this node is a cross-community bridge._ -- **Why does `Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41()` connect `Community 4` to `Community 0`, `Community 2`, `Community 6`, `Community 11`, `Community 12`, `Community 13`, `Community 14`, `Community 16`, `Community 19`, `Community 20`, `Community 27`, `Community 30`, `Community 31`, `Community 32`, `Community 34`, `Community 35`, `Community 37`, `Community 38`, `Community 41`, `Community 49`, `Community 50`, `Community 57`, `Community 58`, `Community 68`, `Community 69`, `Community 71`, `Community 80`, `Community 85`, `Community 86`, `Community 87`, `Community 92`, `Community 93`, `Community 98`, `Community 101`?** - _High betweenness centrality (0.016) - this node is a cross-community bridge._ - **Are the 86144 inferred relationships involving `NullCheck` (e.g. with `AnimancerComponent_set_Animator_m6D48D5AFEC5608F1982DDAF26C3512CFE72F2A8D()` and `AnimancerComponent_get_IsPlayableInitialized_mB5A207CBB483E0F77C65DB4AB7615F282E91CD30()`) actually correct?** _`NullCheck` has 86144 INFERRED edges - model-reasoned connections that need verification._ - **Are the 9047 inferred relationships involving `Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2()` (e.g. with `UnitySourceGeneratedAssemblyMonoScriptTypes_v1__ctor_mE65AE524188091311A3CFBD98187D9F5EC00D8E3()` and `FastComparer__ctor_m651D576617C3EE91A72F9B695130EFBECE6F5DD0()`) actually correct?**