Skip to content

Commit

Permalink
rollback repostiroy
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed Sep 7, 2018
1 parent aadd5d3 commit 7e9ac44
Show file tree
Hide file tree
Showing 3,996 changed files with 632,771 additions and 20,362 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
63 changes: 63 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary

###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
16 changes: 16 additions & 0 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"ExpandedNodes": [
"",
"\\CLI_tools",
"\\CLI_tools\\URI",
"\\Microsoft.VisualBasic.Core",
"\\Microsoft.VisualBasic.Core\\ComponentModel",
"\\Microsoft.VisualBasic.Core\\ComponentModel\\Algorithm",
"\\Microsoft.VisualBasic.Core\\ComponentModel\\Algorithm\\BinaryTree",
"\\mime",
"\\mime\\application%vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"\\mime\\application%vnd.openxmlformats-officedocument.spreadsheetml.sheet\\Excel"
],
"SelectedNode": "\\Microsoft.VisualBasic.Core\\CommandLine",
"PreviewInSolutionExplorer": false
}
3 changes: 3 additions & 0 deletions CLI_tools/.vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}
8 changes: 8 additions & 0 deletions CLI_tools/.vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"ExpandedNodes": [
"",
"\\URI"
],
"SelectedNode": "\\URI",
"PreviewInSolutionExplorer": false
}
6 changes: 6 additions & 0 deletions CLI_tools/Cluster/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
</startup>
</configuration>
144 changes: 144 additions & 0 deletions CLI_tools/Cluster/CLI.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
#Region "Microsoft.VisualBasic::c0cce5893014d4ddec6d19af3b8b7869, CLI_tools\Cluster\CLI.vb"

' Author:
'
' asuka ([email protected])
' xie ([email protected])
' xieguigang ([email protected])
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.



' /********************************************************************************/

' Summaries:

' Module CLI
'
' Function: bTree, bTreeCluster, bTreePartitioning, ClusterDataSet, ClusterNumbers
'
' /********************************************************************************/

#End Region

Imports Microsoft.VisualBasic
Imports Microsoft.VisualBasic.CommandLine.Reflection
Imports Microsoft.VisualBasic.DataMining.Framework.KMeans
Imports Microsoft.VisualBasic.DataVisualization.Network.FileStream
Imports Microsoft.VisualBasic.DocumentFormat.Csv
Imports Microsoft.VisualBasic.Linq

Module CLI

''' <summary>
''' 对一组数字进行聚类操作,其实在这里就是将这组数值生成Entity数据对象,然后将数值本身作为自动生成的Entity对象的一个唯一属性
''' </summary>
''' <param name="args"></param>
''' <returns></returns>
<ExportAPI("/n.cluster",
Info:="Cluserting the numbers.",
Usage:="/n.cluster /in <txt/values> /n <num_of_cluster> [/out <out.csv>]")>
Public Function ClusterNumbers(args As CommandLine.CommandLine) As Integer
Dim [in] As String = args("/in")
Dim out As String = args("/out")
Dim nums As Double()

If [in].FileExists Then
nums = [in].ReadAllLines.ToArray(Function(s) Val(s))
If String.IsNullOrEmpty(out) Then
out = [in].TrimFileExt & ".cluster.csv"
End If
Else
nums = [in].Split(","c).ToArray(Function(s) Val(s.Trim))
If String.IsNullOrEmpty(out) Then
out = App.CurrentDirectory & "/ClusterNumber.Csv"
End If
End If

Return nums.ValueGroups(args.GetInt32("/n")) > out
End Function

<ExportAPI("/kmeans",
Info:="Performance a kmeans clustering operation.",
Usage:="/kmeans /MAT <entity_matrix.Csv> /n <num_of_cluster> [/map <Name> /out <cluster.csv>]")>
Public Function ClusterDataSet(args As CommandLine.CommandLine) As Integer

Throw New Exception("Hello world!")

Dim inFile As String = args("/MAT")
Dim n As Integer = args.GetInt32("/n")
Dim out As String = args.GetValue("/out", inFile.TrimFileExt & ".Cluster.Csv")
Dim ds As IEnumerable(Of EntityLDM) = EntityLDM.Load(inFile, args.GetValue("/map", "Name"))

Return Kmeans(ds, n) > out
End Function

<ExportAPI("/bTree.Cluster",
Info:="Performance a binary tree clustering operations on the input data set.",
Usage:="/bTree.Cluster /MAT <entity_matrix.csv> [/map <Name> /parallel /out <out.cluster.csv>]")>
Public Function bTreeCluster(args As CommandLine.CommandLine) As Integer
Dim inFile As String = args - "/MAT"
Dim parallel As Boolean = args.GetBoolean("/parallel")
Dim out As String = args.GetValue("/out", $"{inFile.TrimFileExt}.{NameOf(bTreeCluster)}.csv")
Dim map As String = args.GetValue("/map", "Name")
Dim maps As Dictionary(Of String, String) =
New Dictionary(Of String, String) From {{map, NameOf(EntityLDM.Name)}}
Dim dataSet As IEnumerable(Of EntityLDM) =
inFile.LoadCsv(Of EntityLDM)(maps:=maps)
dataSet = dataSet.TreeCluster
Return dataSet.SaveTo(out)
End Function

''' <summary>
''' Converts the bTree clustering result into the cytoscape network model file.
''' </summary>
''' <param name="args"></param>
''' <returns></returns>
<ExportAPI("/bTree",
Info:="Converts the bTree clustering result into the cytoscape network model file.",
Usage:="/bTree /cluster <tree.cluster.csv> [/out <outDIR>]")>
Public Function bTree(args As CommandLine.CommandLine) As Integer
Dim inFile As String = args - "/cluster"
Dim out As String = ("/out" <= args) ^ $"{inFile.TrimFileExt}-bTree/"
Dim clusters As IEnumerable(Of EntityLDM) = inFile.LoadCsv(Of EntityLDM)
Dim tree As Network = clusters.bTreeNET
Return tree > out
End Function

''' <summary>
''' Partitioning the binary tree cluster by using the clustering path.
''' </summary>
''' <param name="args"></param>
''' <returns></returns>
<ExportAPI("/bTree.Partitioning",
Info:="Partitioning the binary tree cluster by using the clustering path.",
Usage:="/bTree.Partitioning /cluster <clusters.csv> [/depth <-1> /out <partions.csv>]")>
<ParameterInfo("/depth", True,
Description:="The maximum depth of the clustering path using for the partitioning operations.
Default or value zero or negative is using the shortest path in the cluster entity.")>
Public Function bTreePartitioning(args As CommandLine.CommandLine) As Integer
Dim inFile As String = args - "/cluster"
Dim depth As Integer = args.GetValue("/depth", -1)
Dim out As String = args.GetValue("/out", inFile.TrimFileExt & $".{depth}.csv")
Dim result As List(Of Partition) = inFile.LoadCsv(Of EntityLDM).Partitioning(depth)
Return result > out
End Function
End Module
131 changes: 131 additions & 0 deletions CLI_tools/Cluster/Cluster.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Cluster", "Cluster.vbproj", "{18361FCD-BB60-4800-91EC-ED1F9E2EE022}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "+Microsoft.VisualBasic.Architecture.Framework", "..\..\Microsoft.VisualBasic.Architecture.Framework\+Microsoft.VisualBasic.Architecture.Framework.vbproj", "{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Datavisualization.Network", "..\..\Datavisualization\Datavisualization.Network\Datavisualization.Network\Datavisualization.Network.vbproj", "{076315EE-B598-40DC-9280-C71CDF9B6A48}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Microsoft.VisualBasic.DataMining.Framework", "..\..\Microsoft.VisualBasic.DataMining.Framework\Microsoft.VisualBasic.DataMining.Framework.vbproj", "{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "runtime", "runtime", "{06881C78-AE48-45D0-A435-C8ED3AFB819B}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "+VB_Tabular.DataFrame", "..\..\DocumentFormats\VB_DataFrame\+VB_Tabular.DataFrame.vbproj", "{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Publish|Any CPU = Publish|Any CPU
Publish|x64 = Publish|x64
Publish|x86 = Publish|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Debug|Any CPU.Build.0 = Debug|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Debug|x64.ActiveCfg = Debug|x64
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Debug|x64.Build.0 = Debug|x64
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Debug|x86.ActiveCfg = Debug|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Debug|x86.Build.0 = Debug|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Publish|Any CPU.ActiveCfg = Publish|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Publish|Any CPU.Build.0 = Publish|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Publish|x64.ActiveCfg = Publish|x64
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Publish|x64.Build.0 = Publish|x64
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Publish|x86.ActiveCfg = Publish|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Publish|x86.Build.0 = Publish|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Release|Any CPU.ActiveCfg = Release|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Release|Any CPU.Build.0 = Release|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Release|x64.ActiveCfg = Release|x64
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Release|x64.Build.0 = Release|x64
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Release|x86.ActiveCfg = Release|Any CPU
{18361FCD-BB60-4800-91EC-ED1F9E2EE022}.Release|x86.Build.0 = Release|Any CPU
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Debug|x64.ActiveCfg = Debug|x64
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Debug|x64.Build.0 = Debug|x64
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Debug|x86.ActiveCfg = Debug|x86
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Debug|x86.Build.0 = Debug|x86
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Publish|Any CPU.ActiveCfg = Publish|Any CPU
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Publish|Any CPU.Build.0 = Publish|Any CPU
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Publish|x64.ActiveCfg = Publish|x64
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Publish|x64.Build.0 = Publish|x64
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Publish|x86.ActiveCfg = Publish|x86
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Publish|x86.Build.0 = Publish|x86
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Release|Any CPU.Build.0 = Release|Any CPU
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Release|x64.ActiveCfg = Release|x64
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Release|x64.Build.0 = Release|x64
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Release|x86.ActiveCfg = Release|x86
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99}.Release|x86.Build.0 = Release|x86
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Debug|Any CPU.Build.0 = Debug|Any CPU
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Debug|x64.ActiveCfg = Debug|x64
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Debug|x64.Build.0 = Debug|x64
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Debug|x86.ActiveCfg = Debug|x86
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Debug|x86.Build.0 = Debug|x86
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Publish|Any CPU.ActiveCfg = Publish|Any CPU
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Publish|Any CPU.Build.0 = Publish|Any CPU
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Publish|x64.ActiveCfg = Publish|x64
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Publish|x64.Build.0 = Publish|x64
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Publish|x86.ActiveCfg = Publish|x86
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Publish|x86.Build.0 = Publish|x86
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Release|Any CPU.ActiveCfg = Release|Any CPU
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Release|Any CPU.Build.0 = Release|Any CPU
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Release|x64.ActiveCfg = Release|x64
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Release|x64.Build.0 = Release|x64
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Release|x86.ActiveCfg = Release|x86
{076315EE-B598-40DC-9280-C71CDF9B6A48}.Release|x86.Build.0 = Release|x86
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Debug|x64.ActiveCfg = Debug|x64
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Debug|x64.Build.0 = Debug|x64
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Debug|x86.ActiveCfg = Debug|x86
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Debug|x86.Build.0 = Debug|x86
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Publish|Any CPU.ActiveCfg = Publish|Any CPU
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Publish|Any CPU.Build.0 = Publish|Any CPU
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Publish|x64.ActiveCfg = Publish|x64
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Publish|x64.Build.0 = Publish|x64
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Publish|x86.ActiveCfg = Publish|x86
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Publish|x86.Build.0 = Publish|x86
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Release|Any CPU.Build.0 = Release|Any CPU
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Release|x64.ActiveCfg = Release|x64
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Release|x64.Build.0 = Release|x64
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Release|x86.ActiveCfg = Release|x86
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10}.Release|x86.Build.0 = Release|x86
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Debug|x64.ActiveCfg = Debug|x64
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Debug|x64.Build.0 = Debug|x64
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Debug|x86.ActiveCfg = Debug|x86
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Debug|x86.Build.0 = Debug|x86
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Publish|Any CPU.ActiveCfg = Publish|Any CPU
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Publish|Any CPU.Build.0 = Publish|Any CPU
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Publish|x64.ActiveCfg = Publish|x64
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Publish|x64.Build.0 = Publish|x64
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Publish|x86.ActiveCfg = Publish|x86
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Publish|x86.Build.0 = Publish|x86
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Release|Any CPU.Build.0 = Release|Any CPU
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Release|x64.ActiveCfg = Release|x64
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Release|x64.Build.0 = Release|x64
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Release|x86.ActiveCfg = Release|x86
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{FECCE1FD-E1D4-49E3-A668-60BB5E7AED99} = {06881C78-AE48-45D0-A435-C8ED3AFB819B}
{076315EE-B598-40DC-9280-C71CDF9B6A48} = {06881C78-AE48-45D0-A435-C8ED3AFB819B}
{4B877AB2-E15F-4AA9-B7D6-7C11B2213F10} = {06881C78-AE48-45D0-A435-C8ED3AFB819B}
{7283C179-F852-4EAD-8D8F-B82EF2CBD7DB} = {06881C78-AE48-45D0-A435-C8ED3AFB819B}
EndGlobalSection
EndGlobal
Loading

0 comments on commit 7e9ac44

Please sign in to comment.