diff --git a/libsecondlife-cs/examples/TestTool/Command.cs b/libsecondlife-cs/examples/TestClient/Command.cs similarity index 80% rename from libsecondlife-cs/examples/TestTool/Command.cs rename to libsecondlife-cs/examples/TestClient/Command.cs index e2df0837..2df06c1f 100644 --- a/libsecondlife-cs/examples/TestTool/Command.cs +++ b/libsecondlife-cs/examples/TestClient/Command.cs @@ -4,18 +4,18 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public abstract class Command { public string Name; public string Description; - public TestTool TestTool; + public TestClient TestClient; public SecondLife Client { - get { return TestTool.Client; } + get { return TestClient.Client; } } public abstract string Execute(string[] args, LLUUID fromAgentID); diff --git a/libsecondlife-cs/examples/TestTool/CommandLineArguments.cs b/libsecondlife-cs/examples/TestClient/CommandLineArguments.cs similarity index 100% rename from libsecondlife-cs/examples/TestTool/CommandLineArguments.cs rename to libsecondlife-cs/examples/TestClient/CommandLineArguments.cs diff --git a/libsecondlife-cs/examples/TestTool/Commands/BalanceCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/BalanceCommand.cs similarity index 87% rename from libsecondlife-cs/examples/TestTool/Commands/BalanceCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/BalanceCommand.cs index 9351d5b3..bff9aed1 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/BalanceCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/BalanceCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class BalanceCommand: Command { diff --git a/libsecondlife-cs/examples/TestTool/Commands/FollowCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/FollowCommand.cs similarity index 93% rename from libsecondlife-cs/examples/TestTool/Commands/FollowCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/FollowCommand.cs index a72290f9..4397d439 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/FollowCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/FollowCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class FollowCommand: Command { @@ -33,7 +33,7 @@ namespace libsecondlife.TestTool bool Follow(string name) { - foreach (Avatar av in TestTool.Avatars.Values) + foreach (Avatar av in TestClient.Avatars.Values) { if (av.Name == name) { diff --git a/libsecondlife-cs/examples/TestTool/Commands/GiveAllCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/GiveAllCommand.cs similarity index 91% rename from libsecondlife-cs/examples/TestTool/Commands/GiveAllCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/GiveAllCommand.cs index e5a8e0e7..da9054b0 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/GiveAllCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/GiveAllCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class GiveAllCommand: Command { diff --git a/libsecondlife-cs/examples/TestTool/Commands/GotoCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/GotoCommand.cs similarity index 93% rename from libsecondlife-cs/examples/TestTool/Commands/GotoCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/GotoCommand.cs index bc1afac3..59df5b1e 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/GotoCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/GotoCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class GotoCommand: Command { diff --git a/libsecondlife-cs/examples/TestTool/Commands/HelpCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/HelpCommand.cs similarity index 83% rename from libsecondlife-cs/examples/TestTool/Commands/HelpCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/HelpCommand.cs index 8cbddb99..23c3f900 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/HelpCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/HelpCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class HelpCommand: Command { @@ -18,7 +18,7 @@ namespace libsecondlife.TestTool { StringBuilder result = new StringBuilder(); result.AppendFormat("\n\nHELP\nClient accept teleport lures from master and group members.\n"); - foreach (Command c in TestTool.Commands.Values) + foreach (Command c in TestClient.Commands.Values) { result.AppendFormat("{0} - {1}\n", c.Name, c.Description); } diff --git a/libsecondlife-cs/examples/TestTool/Commands/JumpCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/JumpCommand.cs similarity index 91% rename from libsecondlife-cs/examples/TestTool/Commands/JumpCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/JumpCommand.cs index 3a0d2803..c14733a1 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/JumpCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/JumpCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class JumpCommand: Command { diff --git a/libsecondlife-cs/examples/TestTool/Commands/LocationCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/LocationCommand.cs similarity index 89% rename from libsecondlife-cs/examples/TestTool/Commands/LocationCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/LocationCommand.cs index 91f29c92..914111af 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/LocationCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/LocationCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class LocationCommand: Command { diff --git a/libsecondlife-cs/examples/TestTool/Commands/PrimCountCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/PrimCountCommand.cs similarity index 79% rename from libsecondlife-cs/examples/TestTool/Commands/PrimCountCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/PrimCountCommand.cs index fc370daf..3482587a 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/PrimCountCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/PrimCountCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class PrimCountCommand: Command { @@ -16,7 +16,7 @@ namespace libsecondlife.TestTool public override string Execute(string[] args, LLUUID fromAgentID) { - return TestTool.Prims.Count.ToString(); + return TestClient.Prims.Count.ToString(); } } } diff --git a/libsecondlife-cs/examples/TestTool/Commands/QuitCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/QuitCommand.cs similarity index 81% rename from libsecondlife-cs/examples/TestTool/Commands/QuitCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/QuitCommand.cs index 9daf12cc..13c77a87 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/QuitCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/QuitCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class QuitCommand: Command { @@ -17,7 +17,7 @@ namespace libsecondlife.TestTool public override string Execute(string[] args, LLUUID fromAgentID) { Client.Network.Logout(); - TestTool.Running = false; + TestClient.Running = false; return "Logging off."; } } diff --git a/libsecondlife-cs/examples/TestTool/Commands/SayCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/SayCommand.cs similarity index 89% rename from libsecondlife-cs/examples/TestTool/Commands/SayCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/SayCommand.cs index 98615c31..1c725232 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/SayCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/SayCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class SayCommand: Command { diff --git a/libsecondlife-cs/examples/TestTool/Commands/SetMasterCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/SetMasterCommand.cs similarity index 78% rename from libsecondlife-cs/examples/TestTool/Commands/SetMasterCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/SetMasterCommand.cs index 572637b3..8c32ddcc 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/SetMasterCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/SetMasterCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class SetMasterCommand: Command { @@ -21,11 +21,11 @@ namespace libsecondlife.TestTool string masterName = String.Empty; for (int ct = 0; ct < args.Length;ct++) masterName = masterName + args[ct] + " "; - TestTool.Master = masterName.TrimEnd(); + TestClient.Master = masterName.TrimEnd(); - foreach (Avatar av in TestTool.Avatars.Values) + foreach (Avatar av in TestClient.Avatars.Values) { - if (av.Name == TestTool.Master) + if (av.Name == TestClient.Master) { Client.Self.InstantMessage(av.ID, "You are now my master. IM me with \"help\" for a command list."); break; diff --git a/libsecondlife-cs/examples/TestTool/Commands/SitCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/SitCommand.cs similarity index 84% rename from libsecondlife-cs/examples/TestTool/Commands/SitCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/SitCommand.cs index d6d54cc6..9959159a 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/SitCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/SitCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class SitCommand: Command { @@ -36,9 +36,9 @@ namespace libsecondlife.TestTool PrimObject closest = null; double closestDistance = Double.MaxValue; - lock (TestTool.Prims) + lock (TestClient.Prims) { - foreach (PrimObject p in TestTool.Prims.Values) + foreach (PrimObject p in TestClient.Prims.Values) { if ((p.Flags & ObjectFlags.Touch) > 0) { @@ -55,7 +55,7 @@ namespace libsecondlife.TestTool if (closest != null) { Sit(closest.ID); - return TestTool.Prims.Count + " prims. Sat on " + closest.ID + ". Distance: " + closestDistance; + return TestClient.Prims.Count + " prims. Sat on " + closest.ID + ". Distance: " + closestDistance; } return String.Empty; diff --git a/libsecondlife-cs/examples/TestTool/Commands/TreeCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/TreeCommand.cs similarity index 92% rename from libsecondlife-cs/examples/TestTool/Commands/TreeCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/TreeCommand.cs index 9e00ca05..7e645948 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/TreeCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/TreeCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class TreeCommand: Command { @@ -28,7 +28,7 @@ namespace libsecondlife.TestTool treePosition.Z += 3.0f; Client.Objects.AddTree(Client.Network.CurrentSim, new LLVector3(0.5f, 0.5f, 0.5f), - LLQuaternion.Identity, treePosition, tree, TestTool.GroupID, false); + LLQuaternion.Identity, treePosition, tree, TestClient.GroupID, false); return "Attempted to rez a " + treeName + " tree"; } diff --git a/libsecondlife-cs/examples/TestTool/Commands/UptimeCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/UptimeCommand.cs similarity index 89% rename from libsecondlife-cs/examples/TestTool/Commands/UptimeCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/UptimeCommand.cs index 4b8a1cc1..1de6485d 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/UptimeCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/UptimeCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class UptimeCommand: Command { diff --git a/libsecondlife-cs/examples/TestTool/Commands/WhoCommand.cs b/libsecondlife-cs/examples/TestClient/Commands/WhoCommand.cs similarity index 81% rename from libsecondlife-cs/examples/TestTool/Commands/WhoCommand.cs rename to libsecondlife-cs/examples/TestClient/Commands/WhoCommand.cs index 1324e3f4..b6ff4319 100644 --- a/libsecondlife-cs/examples/TestTool/Commands/WhoCommand.cs +++ b/libsecondlife-cs/examples/TestClient/Commands/WhoCommand.cs @@ -4,7 +4,7 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class WhoCommand: Command { @@ -17,7 +17,7 @@ namespace libsecondlife.TestTool public override string Execute(string[] args, LLUUID fromAgentID) { StringBuilder result = new StringBuilder(); - foreach (Avatar av in TestTool.Avatars.Values) + foreach (Avatar av in TestClient.Avatars.Values) { result.AppendFormat("\n{0} {1}", av.Name, av.GroupName); } diff --git a/libsecondlife-cs/examples/TestTool/Program.cs b/libsecondlife-cs/examples/TestClient/Program.cs similarity index 83% rename from libsecondlife-cs/examples/TestTool/Program.cs rename to libsecondlife-cs/examples/TestClient/Program.cs index 3553118d..2b2ee88c 100644 --- a/libsecondlife-cs/examples/TestTool/Program.cs +++ b/libsecondlife-cs/examples/TestClient/Program.cs @@ -4,7 +4,7 @@ using System.Text; using CommandLine; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { public class Program { @@ -25,7 +25,7 @@ namespace libsecondlife.TestTool Program program = new Program(); CommandLine.Parser.ParseArgumentsWithUsage(args, program); - TestTool testTool = new TestTool(program.FirstName, program.LastName, program.Password); + TestClient testTool = new TestClient(program.FirstName, program.LastName, program.Password); testTool.Master = program.MasterName; testTool.Run(); } diff --git a/libsecondlife-cs/examples/TestTool/Properties/AssemblyInfo.cs b/libsecondlife-cs/examples/TestClient/Properties/AssemblyInfo.cs similarity index 90% rename from libsecondlife-cs/examples/TestTool/Properties/AssemblyInfo.cs rename to libsecondlife-cs/examples/TestClient/Properties/AssemblyInfo.cs index f5072f2d..0aef254f 100644 --- a/libsecondlife-cs/examples/TestTool/Properties/AssemblyInfo.cs +++ b/libsecondlife-cs/examples/TestClient/Properties/AssemblyInfo.cs @@ -5,11 +5,11 @@ using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("TestTool")] +[assembly: AssemblyTitle("TestClient")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("TestTool")] +[assembly: AssemblyProduct("TestClient")] [assembly: AssemblyCopyright("Copyright © 2006")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/libsecondlife-cs/examples/TestTool/TestTool.cs b/libsecondlife-cs/examples/TestClient/TestClient.cs similarity index 95% rename from libsecondlife-cs/examples/TestTool/TestTool.cs rename to libsecondlife-cs/examples/TestClient/TestClient.cs index 61ea3315..7f0590a0 100644 --- a/libsecondlife-cs/examples/TestTool/TestTool.cs +++ b/libsecondlife-cs/examples/TestClient/TestClient.cs @@ -5,9 +5,9 @@ using System.Text; using libsecondlife; using libsecondlife.Packets; -namespace libsecondlife.TestTool +namespace libsecondlife.TestClient { - public class TestTool + public class TestClient { public SecondLife Client; public LLUUID GroupID; @@ -21,7 +21,7 @@ namespace libsecondlife.TestTool LLQuaternion bodyRotation; System.Timers.Timer updateTimer; - public TestTool(string first, string last, string password) + public TestClient(string first, string last, string password) { Client = new SecondLife(); @@ -62,7 +62,7 @@ namespace libsecondlife.TestTool public void RegisterCommand(Command command) { - command.TestTool = this; + command.TestClient = this; Commands.Add(command.Name.ToLower(), command); } diff --git a/libsecondlife-cs/examples/TestTool/TestTool.csproj b/libsecondlife-cs/examples/TestClient/TestClient.csproj similarity index 93% rename from libsecondlife-cs/examples/TestTool/TestTool.csproj rename to libsecondlife-cs/examples/TestClient/TestClient.csproj index f4f2e436..13dff56f 100644 --- a/libsecondlife-cs/examples/TestTool/TestTool.csproj +++ b/libsecondlife-cs/examples/TestClient/TestClient.csproj @@ -7,8 +7,8 @@ {B87682F6-B2D7-4C4D-A529-400C24FD4880} Exe Properties - libsecondlife.TestTool - TestTool + libsecondlife.TestClient + TestClient true @@ -51,7 +51,7 @@ - + diff --git a/libsecondlife-cs/examples/TestTool/TestTool.build b/libsecondlife-cs/examples/TestClient/TestTool.build similarity index 100% rename from libsecondlife-cs/examples/TestTool/TestTool.build rename to libsecondlife-cs/examples/TestClient/TestTool.build diff --git a/libsecondlife-cs/libsecondlife.sln b/libsecondlife-cs/libsecondlife.sln index cfd2baf7..8eefecaf 100644 --- a/libsecondlife-cs/libsecondlife.sln +++ b/libsecondlife-cs/libsecondlife.sln @@ -50,12 +50,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChatConsole", "..\SLProxy\C EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BodyPartMorphGenerator", "examples\BodyPartMorphGenerator\BodyPartMorphGenerator.csproj", "{98C44481-3F15-4305-840D-037EA0D9C221}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestTool", "examples\TestTool\TestTool.csproj", "{B87682F6-B2D7-4C4D-A529-400C24FD4880}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools and Examples", "Tools and Examples", "{F35EF72F-4302-4924-A162-10447B94F635}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SL Proxy", "SL Proxy", "{C754652B-2ACB-4D47-8914-834E17919132}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestClient", "examples\TestClient\TestClient.csproj", "{B87682F6-B2D7-4C4D-A529-400C24FD4880}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -167,6 +167,17 @@ Global HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution + {FC19D5F6-076E-4923-8456-9B0E00E22896} = {F35EF72F-4302-4924-A162-10447B94F635} + {66FFD34E-652C-4EF5-81FE-06AD011169D2} = {F35EF72F-4302-4924-A162-10447B94F635} + {623B86F7-7753-44B7-A8C8-CBC89FB8AF8E} = {F35EF72F-4302-4924-A162-10447B94F635} + {77E5330D-8A8C-41B4-A2D1-6F06FE45ED6D} = {F35EF72F-4302-4924-A162-10447B94F635} + {B5AC6795-E426-4BC3-950F-D7B2970E2394} = {F35EF72F-4302-4924-A162-10447B94F635} + {7AE16AC1-E64C-4FDC-9B85-4BB6145D511C} = {F35EF72F-4302-4924-A162-10447B94F635} + {F460FAB3-0D12-4873-89EB-2696818764B8} = {F35EF72F-4302-4924-A162-10447B94F635} + {4EF98AD4-B3B3-42B0-9273-13A614A823F7} = {F35EF72F-4302-4924-A162-10447B94F635} + {8855EB2F-BC4C-485A-A577-0989EB16BFDC} = {F35EF72F-4302-4924-A162-10447B94F635} + {F6258A68-C624-46A0-BA73-B55D21BB0A3B} = {F35EF72F-4302-4924-A162-10447B94F635} + {B87682F6-B2D7-4C4D-A529-400C24FD4880} = {F35EF72F-4302-4924-A162-10447B94F635} {E185E4E1-62D2-430C-A94C-E8E38190805B} = {AE3B6C21-9B43-490E-ABCE-2018DC1AEA44} {8D2E5240-2247-42F5-AAAC-CF0CCCEE349A} = {AE3B6C21-9B43-490E-ABCE-2018DC1AEA44} {D6D1D020-D8D8-4D7E-B7AC-5913A903D6E7} = {AE3B6C21-9B43-490E-ABCE-2018DC1AEA44} @@ -174,19 +185,8 @@ Global {E464B963-46E3-4E1A-A36F-9C640C880E68} = {AE3B6C21-9B43-490E-ABCE-2018DC1AEA44} {8598E42A-DCBC-4224-9503-5694F17B2F45} = {AE3B6C21-9B43-490E-ABCE-2018DC1AEA44} {98C44481-3F15-4305-840D-037EA0D9C221} = {AE3B6C21-9B43-490E-ABCE-2018DC1AEA44} - {4EF98AD4-B3B3-42B0-9273-13A614A823F7} = {F35EF72F-4302-4924-A162-10447B94F635} - {7AE16AC1-E64C-4FDC-9B85-4BB6145D511C} = {F35EF72F-4302-4924-A162-10447B94F635} - {F460FAB3-0D12-4873-89EB-2696818764B8} = {F35EF72F-4302-4924-A162-10447B94F635} - {B5AC6795-E426-4BC3-950F-D7B2970E2394} = {F35EF72F-4302-4924-A162-10447B94F635} - {B87682F6-B2D7-4C4D-A529-400C24FD4880} = {F35EF72F-4302-4924-A162-10447B94F635} - {8855EB2F-BC4C-485A-A577-0989EB16BFDC} = {F35EF72F-4302-4924-A162-10447B94F635} - {F6258A68-C624-46A0-BA73-B55D21BB0A3B} = {F35EF72F-4302-4924-A162-10447B94F635} - {FC19D5F6-076E-4923-8456-9B0E00E22896} = {F35EF72F-4302-4924-A162-10447B94F635} - {77E5330D-8A8C-41B4-A2D1-6F06FE45ED6D} = {F35EF72F-4302-4924-A162-10447B94F635} - {623B86F7-7753-44B7-A8C8-CBC89FB8AF8E} = {F35EF72F-4302-4924-A162-10447B94F635} - {66FFD34E-652C-4EF5-81FE-06AD011169D2} = {F35EF72F-4302-4924-A162-10447B94F635} - {E4115DC9-FC88-47D6-B3B6-2400AD19B80D} = {C754652B-2ACB-4D47-8914-834E17919132} {6222B134-AE5F-489A-8A77-423A721B7C62} = {C754652B-2ACB-4D47-8914-834E17919132} {D8ECCBE1-AC71-4054-AAA6-2D50E5629504} = {C754652B-2ACB-4D47-8914-834E17919132} + {E4115DC9-FC88-47D6-B3B6-2400AD19B80D} = {C754652B-2ACB-4D47-8914-834E17919132} EndGlobalSection EndGlobal