Changeset 6696
- Timestamp:
- 09/01/11 17:41:25 (13 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Administrator/3.4/Views/HiveAppointment.cs
r6688 r6696 38 38 39 39 [XmlIgnore] 40 public int Layer {40 public new int Layer { 41 41 get { return base.Layer; } 42 42 set { base.Layer = value; } … … 44 44 45 45 [XmlIgnore] 46 public string Group {46 public new string Group { 47 47 get { return base.Group; } 48 48 set { base.Group = value; } … … 50 50 51 51 [XmlAttribute("Locked")] 52 public bool Locked {52 public new bool Locked { 53 53 get { return base.Locked; } 54 54 set { base.Locked = value; } … … 56 56 57 57 [XmlIgnore] 58 public Color Color {58 public new Color Color { 59 59 get { return base.Color; } 60 60 set { base.Color = value; } … … 62 62 63 63 [XmlIgnore] 64 public Color TextColor {64 public new Color TextColor { 65 65 get { return base.TextColor; } 66 66 set { base.TextColor = value; } … … 68 68 69 69 [XmlIgnore] 70 public Color BorderColor {70 public new Color BorderColor { 71 71 get { return base.BorderColor; } 72 72 set { base.BorderColor = value; } … … 74 74 75 75 [XmlIgnore] 76 public bool DrawBorder {76 public new bool DrawBorder { 77 77 get { return base.DrawBorder; } 78 78 set { base.DrawBorder = value; } … … 80 80 81 81 [XmlAttribute("AllDayEvent")] 82 public bool AllDayEvent {82 public new bool AllDayEvent { 83 83 get { return base.AllDayEvent; } 84 84 set { base.AllDayEvent = value; Changed = true; } … … 86 86 87 87 [XmlAttribute("Recurring")] 88 public bool Recurring {88 public new bool Recurring { 89 89 get { return base.Recurring; } 90 90 set { base.Recurring = value; Changed = true; } … … 98 98 99 99 [XmlAttribute("EndDate")] 100 public DateTime EndDate {100 public new DateTime EndDate { 101 101 get { return base.EndDate; } 102 102 set { base.EndDate = value; Changed = true; } … … 104 104 105 105 [XmlAttribute("StartDate")] 106 public DateTime StartDate {106 public new DateTime StartDate { 107 107 get { return base.StartDate; } 108 108 set { base.StartDate = value; Changed = true; } … … 110 110 111 111 [XmlIgnore] 112 public int AppointmentId {112 public new int AppointmentId { 113 113 get { return base.AppointmentId; } 114 114 set { base.AppointmentId = value; } … … 116 116 117 117 [XmlElement("Subject")] 118 public string Subject {118 public new string Subject { 119 119 get { return base.Subject; } 120 120 set { base.Subject = value; } … … 122 122 123 123 [XmlIgnore] 124 public string Location {124 public new string Location { 125 125 get { return base.Location; } 126 126 set { base.Location = value; } … … 128 128 129 129 [XmlIgnore] 130 public string Note {130 public new string Note { 131 131 get { return base.Note; } 132 132 set { base.Note = value; } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Administrator/3.4/Views/Recurrence.Designer.cs
r6688 r6696 33 33 this.dtpFromTime = new System.Windows.Forms.DateTimePicker(); 34 34 this.label6 = new System.Windows.Forms.Label(); 35 this.txtDays = new System.Windows.Forms.TextBox();36 this.label4 = new System.Windows.Forms.Label();37 this.label7 = new System.Windows.Forms.Label();38 35 this.btSaveRecurrence = new System.Windows.Forms.Button(); 39 36 this.btCancelRecurrence = new System.Windows.Forms.Button(); … … 130 127 this.label6.Text = "Start Date:"; 131 128 // 132 // txtDays133 //134 this.txtDays.Location = new System.Drawing.Point(160, 13);135 this.txtDays.Name = "txtDays";136 this.txtDays.Size = new System.Drawing.Size(30, 20);137 this.txtDays.TabIndex = 24;138 this.txtDays.Text = "1";139 this.txtDays.Visible = false;140 //141 // label4142 //143 this.label4.AutoSize = true;144 this.label4.Location = new System.Drawing.Point(120, 16);145 this.label4.Name = "label4";146 this.label4.Size = new System.Drawing.Size(34, 13);147 this.label4.TabIndex = 23;148 this.label4.Text = "Every";149 this.label4.Visible = false;150 //151 // label7152 //153 this.label7.AutoSize = true;154 this.label7.Location = new System.Drawing.Point(196, 16);155 this.label7.Name = "label7";156 this.label7.Size = new System.Drawing.Size(59, 13);157 this.label7.TabIndex = 25;158 this.label7.Text = "week(s) on";159 this.label7.Visible = false;160 //161 129 // btSaveRecurrence 162 130 // … … 181 149 // gbWeekly 182 150 // 183 this.gbWeekly.Controls.Add(this.label7);184 151 this.gbWeekly.Controls.Add(this.cbSunday); 185 this.gbWeekly.Controls.Add(this.txtDays);186 152 this.gbWeekly.Controls.Add(this.cbSaturday); 187 153 this.gbWeekly.Controls.Add(this.cbFriday); 188 154 this.gbWeekly.Controls.Add(this.cbThursday); 189 this.gbWeekly.Controls.Add(this.label4);190 155 this.gbWeekly.Controls.Add(this.cbWednesday); 191 156 this.gbWeekly.Controls.Add(this.cbTuesday); … … 292 257 293 258 private System.Windows.Forms.GroupBox gbAppointment; 294 private System.Windows.Forms.TextBox txtDays;295 private System.Windows.Forms.Label label4;296 259 private System.Windows.Forms.DateTimePicker dtpEnd; 297 260 private System.Windows.Forms.DateTimePicker dtpStart; 298 261 private System.Windows.Forms.Label label5; 299 262 private System.Windows.Forms.Label label6; 300 private System.Windows.Forms.Label label7;301 263 private System.Windows.Forms.Button btSaveRecurrence; 302 264 private System.Windows.Forms.Button btCancelRecurrence; -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Administrator/3.4/Views/Recurrence.cs
r6688 r6696 26 26 namespace HeuristicLab.Clients.Hive.Administrator.Views { 27 27 28 public enum RecurrenceMode {29 Daily,30 Weekly31 }32 33 28 public partial class Recurrence : Form { 34 29 … … 44 39 45 40 private void btSaveRecurrence_Click(object sender, EventArgs e) { 46 DateTime dateFrom, dateTo; 47 RecurrenceMode mode = RecurrenceMode.Daily; 48 int incWeek = 0; 41 DateTime dateFrom, dateTo; 49 42 HashSet<DayOfWeek> days = new HashSet<DayOfWeek>(); 50 43 … … 52 45 53 46 //check if valid 54 if (InputIsValid()) { 55 //set entity 47 if (InputIsValid()) 48 { 49 dateFrom = DateTime.Parse(dtpStart.Text + " " + dtpFromTime.Text); 50 dateTo = DateTime.Parse(dtpEnd.Text + " " + dtpToTime.Text); 56 51 57 dateFrom = DateTime.Parse(dtpStart.Text + " " + dtpFromTime.Text); 58 dateTo = DateTime.Parse(dtpEnd.Text + " " + dtpToTime.Text); 52 RecurrentEvent recurrentEvent = new RecurrentEvent() 53 { 54 DateFrom = dateFrom, 55 DateTo = dateTo, 56 AllDay = chbade.Checked, 57 WeekDays = days 58 }; 59 59 60 if (int.TryParse(txtDays.Text, out incWeek)) 61 mode = RecurrenceMode.Weekly; 62 else 63 mode = RecurrenceMode.Daily; 64 65 RecurrentEvent recurrentEvent = new RecurrentEvent() { 66 DateFrom = dateFrom, 67 DateTo = dateTo, 68 AllDay = chbade.Checked, 69 WeekDays = days, 70 IncWeeks = incWeek, 71 }; 72 73 //fire delegate and close the dialog 74 dialogClosedDelegate(recurrentEvent); 75 this.Close(); 76 } else 77 MessageBox.Show("Incorrect date format", "Schedule Error", MessageBoxButtons.OK, MessageBoxIcon.Error); 60 //fire delegate and close the dialog 61 dialogClosedDelegate(recurrentEvent); 62 this.Close(); 63 } 64 else 65 { 66 MessageBox.Show("Incorrect date format", "Schedule Error", MessageBoxButtons.OK, MessageBoxIcon.Error); 67 } 78 68 } 79 69 … … 100 90 101 91 private bool InputIsValid() { 102 DateTime dateFrom, dateTo; 103 int i = 0; 92 DateTime dateFrom, dateTo; 104 93 105 94 dateFrom = DateTime.Parse(dtpStart.Text + " " + dtpFromTime.Text); 106 95 dateTo = DateTime.Parse(dtpEnd.Text + " " + dtpToTime.Text); 107 96 108 if (dateFrom < dateTo && dateFrom.TimeOfDay < dateTo.TimeOfDay && int.TryParse(txtDays.Text, out i))97 if (dateFrom < dateTo && dateFrom.TimeOfDay < dateTo.TimeOfDay) 109 98 return true; 110 99 else -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Administrator/3.4/Views/RecurrentEvent.cs
r6688 r6696 27 27 public DateTime DateFrom { get; set; } 28 28 public DateTime DateTo { get; set; } 29 public bool AllDay { get; set; } 30 public int IncWeeks { get; set; } 29 public bool AllDay { get; set; } 31 30 public HashSet<DayOfWeek> WeekDays { get; set; } 32 31 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Administrator/3.4/Views/ScheduleView.cs
r6688 r6696 189 189 190 190 public void DialogClosed(RecurrentEvent e) { 191 CreateDailyRecurrenceAppointments(e.DateFrom, e.DateTo, e.AllDay, e. IncWeeks, e.WeekDays);192 } 193 194 private void CreateDailyRecurrenceAppointments(DateTime dateFrom, DateTime dateTo, bool allDay, int incWeek,HashSet<DayOfWeek> daysOfWeek) {191 CreateDailyRecurrenceAppointments(e.DateFrom, e.DateTo, e.AllDay, e.WeekDays); 192 } 193 194 private void CreateDailyRecurrenceAppointments(DateTime dateFrom, DateTime dateTo, bool allDay, HashSet<DayOfWeek> daysOfWeek) { 195 195 DateTime incDate = dateFrom; 196 196 Guid guid = Guid.NewGuid(); -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.ExperimentManager/3.4/HeuristicLab.Clients.Hive.ExperimentManager-3.4.csproj
r6463 r6696 102 102 </PropertyGroup> 103 103 <ItemGroup> 104 <Reference Include="HeuristicLab.Clients.Hive.ExperimentManager-3.4, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />105 104 <Reference Include="HeuristicLab.Collections-3.3"> 106 105 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Collections-3.3.dll</HintPath> -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.TrayIconSetup/HeuristicLab.Clients.Hive.Slave.TrayIconSetup.vdproj
r6166 r6696 16 16 "Entry" 17 17 { 18 "MsmKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 19 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 20 "MsmSig" = "8:_UNDEFINED" 21 } 22 "Entry" 23 { 24 "MsmKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 25 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 26 "MsmSig" = "8:_UNDEFINED" 27 } 28 "Entry" 29 { 18 30 "MsmKey" = "8:_171134FFCDE0025B69B817D464F5D98E" 19 31 "OwnerKey" = "8:_A14FD9B75FFDC0C9FDE8558B89624A51" … … 23 35 { 24 36 "MsmKey" = "8:_171134FFCDE0025B69B817D464F5D98E" 37 "OwnerKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 38 "MsmSig" = "8:_UNDEFINED" 39 } 40 "Entry" 41 { 42 "MsmKey" = "8:_171134FFCDE0025B69B817D464F5D98E" 25 43 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 26 "MsmSig" = "8:_UNDEFINED"27 }28 "Entry"29 {30 "MsmKey" = "8:_171134FFCDE0025B69B817D464F5D98E"31 "OwnerKey" = "8:_CFACC8F36F259F4C16FD44BDEF181CB2"32 44 "MsmSig" = "8:_UNDEFINED" 33 45 } … … 40 52 "Entry" 41 53 { 42 "MsmKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A" 54 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 55 "OwnerKey" = "8:_704A65445577390DC7571CC5D8FDD3EE" 56 "MsmSig" = "8:_UNDEFINED" 57 } 58 "Entry" 59 { 60 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 61 "OwnerKey" = "8:_5541BB0536071D0D18B92E5CD73C37B0" 62 "MsmSig" = "8:_UNDEFINED" 63 } 64 "Entry" 65 { 66 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 67 "OwnerKey" = "8:_F0830FF0B893997415F4A4119B7871AD" 68 "MsmSig" = "8:_UNDEFINED" 69 } 70 "Entry" 71 { 72 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 73 "OwnerKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 74 "MsmSig" = "8:_UNDEFINED" 75 } 76 "Entry" 77 { 78 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 79 "OwnerKey" = "8:_7BD628B773CE245FD61F03A52A15ADCB" 80 "MsmSig" = "8:_UNDEFINED" 81 } 82 "Entry" 83 { 84 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 85 "OwnerKey" = "8:_304BEB34BE6FD50C783B231639890388" 86 "MsmSig" = "8:_UNDEFINED" 87 } 88 "Entry" 89 { 90 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 91 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 92 "MsmSig" = "8:_UNDEFINED" 93 } 94 "Entry" 95 { 96 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 97 "OwnerKey" = "8:_E1DF3FF675F8909B8FAF6D7E567FD238" 98 "MsmSig" = "8:_UNDEFINED" 99 } 100 "Entry" 101 { 102 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 103 "OwnerKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 104 "MsmSig" = "8:_UNDEFINED" 105 } 106 "Entry" 107 { 108 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 43 109 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 44 110 "MsmSig" = "8:_UNDEFINED" … … 46 112 "Entry" 47 113 { 48 "MsmKey" = "8:_3FE31B70554DB0FFD370CE867A3673F6" 49 "OwnerKey" = "8:_CFACC8F36F259F4C16FD44BDEF181CB2" 50 "MsmSig" = "8:_UNDEFINED" 51 } 52 "Entry" 53 { 54 "MsmKey" = "8:_3FE31B70554DB0FFD370CE867A3673F6" 114 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 115 "OwnerKey" = "8:_A14FD9B75FFDC0C9FDE8558B89624A51" 116 "MsmSig" = "8:_UNDEFINED" 117 } 118 "Entry" 119 { 120 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 121 "OwnerKey" = "8:_9541F928C568C75CE14288DDBA5E5F6A" 122 "MsmSig" = "8:_UNDEFINED" 123 } 124 "Entry" 125 { 126 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 127 "OwnerKey" = "8:_171134FFCDE0025B69B817D464F5D98E" 128 "MsmSig" = "8:_UNDEFINED" 129 } 130 "Entry" 131 { 132 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 133 "OwnerKey" = "8:_54603E2126B94E1B89269E9E1A992867" 134 "MsmSig" = "8:_UNDEFINED" 135 } 136 "Entry" 137 { 138 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 139 "OwnerKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 140 "MsmSig" = "8:_UNDEFINED" 141 } 142 "Entry" 143 { 144 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 145 "OwnerKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 146 "MsmSig" = "8:_UNDEFINED" 147 } 148 "Entry" 149 { 150 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 151 "OwnerKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6" 152 "MsmSig" = "8:_UNDEFINED" 153 } 154 "Entry" 155 { 156 "MsmKey" = "8:_229A738B0867AA360B8E355EE0809B20" 157 "OwnerKey" = "8:_7973651787827518B0E6A86DC6DAFC09" 158 "MsmSig" = "8:_UNDEFINED" 159 } 160 "Entry" 161 { 162 "MsmKey" = "8:_304BEB34BE6FD50C783B231639890388" 163 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 164 "MsmSig" = "8:_UNDEFINED" 165 } 166 "Entry" 167 { 168 "MsmKey" = "8:_304BEB34BE6FD50C783B231639890388" 55 169 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 56 "MsmSig" = "8:_UNDEFINED"57 }58 "Entry"59 {60 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867"61 "OwnerKey" = "8:_8C237E399EBE6DD0A0F139694755FE3E"62 170 "MsmSig" = "8:_UNDEFINED" 63 171 } … … 71 179 { 72 180 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 73 "OwnerKey" = "8:_ B5C66A75EA32E84EF67C8D1D7920427F"181 "OwnerKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 74 182 "MsmSig" = "8:_UNDEFINED" 75 183 } … … 77 185 { 78 186 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 79 "OwnerKey" = "8:_ 8EEE42CDCA86A0FFC63F1615EBF5056D"187 "OwnerKey" = "8:_E1DF3FF675F8909B8FAF6D7E567FD238" 80 188 "MsmSig" = "8:_UNDEFINED" 81 189 } … … 83 191 { 84 192 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 85 "OwnerKey" = "8:_ 78C356402539CF6D24705B7DF592053A"193 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 86 194 "MsmSig" = "8:_UNDEFINED" 87 195 } … … 89 197 { 90 198 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 91 "OwnerKey" = "8:_ 5D5907CEB0534D975C20E25B9F511C5D"199 "OwnerKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 92 200 "MsmSig" = "8:_UNDEFINED" 93 201 } … … 95 203 { 96 204 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 97 "OwnerKey" = "8:_ F5BA91E3E303CCAE08D77D7515933820"205 "OwnerKey" = "8:_5541BB0536071D0D18B92E5CD73C37B0" 98 206 "MsmSig" = "8:_UNDEFINED" 99 207 } … … 101 209 { 102 210 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 103 "OwnerKey" = "8:_ 81441BCD960E8D180CA73B44E6496573"211 "OwnerKey" = "8:_F0830FF0B893997415F4A4119B7871AD" 104 212 "MsmSig" = "8:_UNDEFINED" 105 213 } … … 107 215 { 108 216 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 109 "OwnerKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 110 "MsmSig" = "8:_UNDEFINED" 111 } 112 "Entry" 113 { 114 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 115 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3" 116 "MsmSig" = "8:_UNDEFINED" 117 } 118 "Entry" 119 { 120 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 121 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A" 217 "OwnerKey" = "8:_7BD628B773CE245FD61F03A52A15ADCB" 122 218 "MsmSig" = "8:_UNDEFINED" 123 219 } … … 130 226 "Entry" 131 227 { 132 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 133 "OwnerKey" = "8:_CFACC8F36F259F4C16FD44BDEF181CB2" 134 "MsmSig" = "8:_UNDEFINED" 135 } 136 "Entry" 137 { 138 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 139 "OwnerKey" = "8:_3FE31B70554DB0FFD370CE867A3673F6" 140 "MsmSig" = "8:_UNDEFINED" 141 } 142 "Entry" 143 { 144 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 145 "OwnerKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6" 146 "MsmSig" = "8:_UNDEFINED" 147 } 148 "Entry" 149 { 150 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 151 "OwnerKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9" 152 "MsmSig" = "8:_UNDEFINED" 153 } 154 "Entry" 155 { 156 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 157 "OwnerKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5" 158 "MsmSig" = "8:_UNDEFINED" 159 } 160 "Entry" 161 { 162 "MsmKey" = "8:_54603E2126B94E1B89269E9E1A992867" 163 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D" 164 "MsmSig" = "8:_UNDEFINED" 165 } 166 "Entry" 167 { 168 "MsmKey" = "8:_55135A3DD6B0538FA808DFB0A9400CE2" 169 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D" 170 "MsmSig" = "8:_UNDEFINED" 171 } 172 "Entry" 173 { 174 "MsmKey" = "8:_55135A3DD6B0538FA808DFB0A9400CE2" 228 "MsmKey" = "8:_5541BB0536071D0D18B92E5CD73C37B0" 229 "OwnerKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 230 "MsmSig" = "8:_UNDEFINED" 231 } 232 "Entry" 233 { 234 "MsmKey" = "8:_5541BB0536071D0D18B92E5CD73C37B0" 175 235 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 176 236 "MsmSig" = "8:_UNDEFINED" … … 178 238 "Entry" 179 239 { 180 "MsmKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D" 181 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A" 182 "MsmSig" = "8:_UNDEFINED" 183 } 184 "Entry" 185 { 186 "MsmKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D" 240 "MsmKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 187 241 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 188 "MsmSig" = "8:_UNDEFINED"189 }190 "Entry"191 {192 "MsmKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D"193 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F"194 "MsmSig" = "8:_UNDEFINED"195 }196 "Entry"197 {198 "MsmKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D"199 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A"200 "MsmSig" = "8:_UNDEFINED"201 }202 "Entry"203 {204 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E"205 "OwnerKey" = "8:_8C237E399EBE6DD0A0F139694755FE3E"206 242 "MsmSig" = "8:_UNDEFINED" 207 243 } … … 215 251 { 216 252 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 217 "OwnerKey" = "8:_ B5C66A75EA32E84EF67C8D1D7920427F"253 "OwnerKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 218 254 "MsmSig" = "8:_UNDEFINED" 219 255 } … … 221 257 { 222 258 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 223 "OwnerKey" = "8:_ 8EEE42CDCA86A0FFC63F1615EBF5056D"259 "OwnerKey" = "8:_E1DF3FF675F8909B8FAF6D7E567FD238" 224 260 "MsmSig" = "8:_UNDEFINED" 225 261 } … … 227 263 { 228 264 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 229 "OwnerKey" = "8:_ 78C356402539CF6D24705B7DF592053A"265 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 230 266 "MsmSig" = "8:_UNDEFINED" 231 267 } … … 233 269 { 234 270 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 235 "OwnerKey" = "8:_ 5D5907CEB0534D975C20E25B9F511C5D"271 "OwnerKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 236 272 "MsmSig" = "8:_UNDEFINED" 237 273 } … … 239 275 { 240 276 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 241 "OwnerKey" = "8:_ F5BA91E3E303CCAE08D77D7515933820"277 "OwnerKey" = "8:_5541BB0536071D0D18B92E5CD73C37B0" 242 278 "MsmSig" = "8:_UNDEFINED" 243 279 } … … 245 281 { 246 282 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 247 "OwnerKey" = "8:_ 81441BCD960E8D180CA73B44E6496573"283 "OwnerKey" = "8:_F0830FF0B893997415F4A4119B7871AD" 248 284 "MsmSig" = "8:_UNDEFINED" 249 285 } … … 251 287 { 252 288 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 253 "OwnerKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 254 "MsmSig" = "8:_UNDEFINED" 255 } 256 "Entry" 257 { 258 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 259 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3" 260 "MsmSig" = "8:_UNDEFINED" 261 } 262 "Entry" 263 { 264 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 265 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A" 289 "OwnerKey" = "8:_7BD628B773CE245FD61F03A52A15ADCB" 266 290 "MsmSig" = "8:_UNDEFINED" 267 291 } … … 287 311 { 288 312 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 289 "OwnerKey" = "8:_CFACC8F36F259F4C16FD44BDEF181CB2"290 "MsmSig" = "8:_UNDEFINED"291 }292 "Entry"293 {294 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E"295 "OwnerKey" = "8:_3FE31B70554DB0FFD370CE867A3673F6"296 "MsmSig" = "8:_UNDEFINED"297 }298 "Entry"299 {300 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E"301 "OwnerKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"302 "MsmSig" = "8:_UNDEFINED"303 }304 "Entry"305 {306 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E"307 "OwnerKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"308 "MsmSig" = "8:_UNDEFINED"309 }310 "Entry"311 {312 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E"313 "OwnerKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"314 "MsmSig" = "8:_UNDEFINED"315 }316 "Entry"317 {318 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E"319 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D"320 "MsmSig" = "8:_UNDEFINED"321 }322 "Entry"323 {324 "MsmKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E"325 313 "OwnerKey" = "8:_54603E2126B94E1B89269E9E1A992867" 314 "MsmSig" = "8:_UNDEFINED" 315 } 316 "Entry" 317 { 318 "MsmKey" = "8:_5F4581CD634302056E4AA33B0650E168" 319 "OwnerKey" = "8:_E1DF3FF675F8909B8FAF6D7E567FD238" 320 "MsmSig" = "8:_UNDEFINED" 321 } 322 "Entry" 323 { 324 "MsmKey" = "8:_5F4581CD634302056E4AA33B0650E168" 325 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 326 326 "MsmSig" = "8:_UNDEFINED" 327 327 } … … 334 334 "Entry" 335 335 { 336 "MsmKey" = "8:_66350EF862330C2B98DA560D7F47E24C" 337 "OwnerKey" = "8:_229A738B0867AA360B8E355EE0809B20" 338 "MsmSig" = "8:_UNDEFINED" 339 } 340 "Entry" 341 { 342 "MsmKey" = "8:_66350EF862330C2B98DA560D7F47E24C" 343 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 344 "MsmSig" = "8:_UNDEFINED" 345 } 346 "Entry" 347 { 348 "MsmKey" = "8:_66350EF862330C2B98DA560D7F47E24C" 349 "OwnerKey" = "8:_704A65445577390DC7571CC5D8FDD3EE" 350 "MsmSig" = "8:_UNDEFINED" 351 } 352 "Entry" 353 { 336 354 "MsmKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 337 355 "OwnerKey" = "8:_UNDEFINED" … … 347 365 { 348 366 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE" 367 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 368 "MsmSig" = "8:_UNDEFINED" 369 } 370 "Entry" 371 { 372 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE" 373 "OwnerKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 374 "MsmSig" = "8:_UNDEFINED" 375 } 376 "Entry" 377 { 378 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE" 379 "OwnerKey" = "8:_5541BB0536071D0D18B92E5CD73C37B0" 380 "MsmSig" = "8:_UNDEFINED" 381 } 382 "Entry" 383 { 384 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE" 385 "OwnerKey" = "8:_F0830FF0B893997415F4A4119B7871AD" 386 "MsmSig" = "8:_UNDEFINED" 387 } 388 "Entry" 389 { 390 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE" 349 391 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 350 "MsmSig" = "8:_UNDEFINED"351 }352 "Entry"353 {354 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"355 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F"356 "MsmSig" = "8:_UNDEFINED"357 }358 "Entry"359 {360 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"361 "OwnerKey" = "8:_8EEE42CDCA86A0FFC63F1615EBF5056D"362 "MsmSig" = "8:_UNDEFINED"363 }364 "Entry"365 {366 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"367 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A"368 "MsmSig" = "8:_UNDEFINED"369 }370 "Entry"371 {372 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"373 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A"374 "MsmSig" = "8:_UNDEFINED"375 }376 "Entry"377 {378 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"379 "OwnerKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D"380 "MsmSig" = "8:_UNDEFINED"381 }382 "Entry"383 {384 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"385 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3"386 "MsmSig" = "8:_UNDEFINED"387 }388 "Entry"389 {390 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"391 "OwnerKey" = "8:_F5BA91E3E303CCAE08D77D7515933820"392 "MsmSig" = "8:_UNDEFINED"393 }394 "Entry"395 {396 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"397 "OwnerKey" = "8:_81441BCD960E8D180CA73B44E6496573"398 "MsmSig" = "8:_UNDEFINED"399 }400 "Entry"401 {402 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"403 "OwnerKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1"404 392 "MsmSig" = "8:_UNDEFINED" 405 393 } … … 413 401 { 414 402 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE" 415 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D"416 "MsmSig" = "8:_UNDEFINED"417 }418 "Entry"419 {420 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"421 "OwnerKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"422 "MsmSig" = "8:_UNDEFINED"423 }424 "Entry"425 {426 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"427 "OwnerKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"428 "MsmSig" = "8:_UNDEFINED"429 }430 "Entry"431 {432 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"433 "OwnerKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"434 "MsmSig" = "8:_UNDEFINED"435 }436 "Entry"437 {438 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"439 "OwnerKey" = "8:_8C237E399EBE6DD0A0F139694755FE3E"440 "MsmSig" = "8:_UNDEFINED"441 }442 "Entry"443 {444 "MsmKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"445 403 "OwnerKey" = "8:_54603E2126B94E1B89269E9E1A992867" 446 "MsmSig" = "8:_UNDEFINED"447 }448 "Entry"449 {450 "MsmKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"451 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D"452 "MsmSig" = "8:_UNDEFINED"453 }454 "Entry"455 {456 "MsmKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"457 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139"458 "MsmSig" = "8:_UNDEFINED"459 }460 "Entry"461 {462 "MsmKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"463 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F"464 "MsmSig" = "8:_UNDEFINED"465 }466 "Entry"467 {468 "MsmKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"469 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A"470 "MsmSig" = "8:_UNDEFINED"471 }472 "Entry"473 {474 "MsmKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"475 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A"476 "MsmSig" = "8:_UNDEFINED"477 }478 "Entry"479 {480 "MsmKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"481 "OwnerKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D"482 "MsmSig" = "8:_UNDEFINED"483 }484 "Entry"485 {486 "MsmKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"487 "OwnerKey" = "8:_F5BA91E3E303CCAE08D77D7515933820"488 "MsmSig" = "8:_UNDEFINED"489 }490 "Entry"491 {492 "MsmKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"493 "OwnerKey" = "8:_81441BCD960E8D180CA73B44E6496573"494 "MsmSig" = "8:_UNDEFINED"495 }496 "Entry"497 {498 "MsmKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"499 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3"500 "MsmSig" = "8:_UNDEFINED"501 }502 "Entry"503 {504 "MsmKey" = "8:_78C356402539CF6D24705B7DF592053A"505 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A"506 "MsmSig" = "8:_UNDEFINED"507 }508 "Entry"509 {510 "MsmKey" = "8:_78C356402539CF6D24705B7DF592053A"511 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139"512 "MsmSig" = "8:_UNDEFINED"513 }514 "Entry"515 {516 "MsmKey" = "8:_78C356402539CF6D24705B7DF592053A"517 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F"518 404 "MsmSig" = "8:_UNDEFINED" 519 405 } … … 532 418 "Entry" 533 419 { 534 "MsmKey" = "8:_7 AAAACEA48C0419227DB0281A1345FC1"535 "OwnerKey" = "8:_ CD5508A4F6BAF97236551AEAF3410AC3"536 "MsmSig" = "8:_UNDEFINED" 537 } 538 "Entry" 539 { 540 "MsmKey" = "8:_7 AAAACEA48C0419227DB0281A1345FC1"420 "MsmKey" = "8:_7BD628B773CE245FD61F03A52A15ADCB" 421 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 422 "MsmSig" = "8:_UNDEFINED" 423 } 424 "Entry" 425 { 426 "MsmKey" = "8:_7BD628B773CE245FD61F03A52A15ADCB" 541 427 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 542 428 "MsmSig" = "8:_UNDEFINED" … … 544 430 "Entry" 545 431 { 546 "MsmKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 547 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F" 548 "MsmSig" = "8:_UNDEFINED" 549 } 550 "Entry" 551 { 552 "MsmKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 553 "OwnerKey" = "8:_8EEE42CDCA86A0FFC63F1615EBF5056D" 554 "MsmSig" = "8:_UNDEFINED" 555 } 556 "Entry" 557 { 558 "MsmKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 559 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A" 560 "MsmSig" = "8:_UNDEFINED" 561 } 562 "Entry" 563 { 564 "MsmKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 565 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A" 566 "MsmSig" = "8:_UNDEFINED" 567 } 568 "Entry" 569 { 570 "MsmKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 571 "OwnerKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D" 572 "MsmSig" = "8:_UNDEFINED" 573 } 574 "Entry" 575 { 576 "MsmKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 577 "OwnerKey" = "8:_F5BA91E3E303CCAE08D77D7515933820" 578 "MsmSig" = "8:_UNDEFINED" 579 } 580 "Entry" 581 { 582 "MsmKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 583 "OwnerKey" = "8:_81441BCD960E8D180CA73B44E6496573" 584 "MsmSig" = "8:_UNDEFINED" 585 } 586 "Entry" 587 { 588 "MsmKey" = "8:_7D5691C24687048133BE11029AB9CF7B" 589 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 590 "MsmSig" = "8:_UNDEFINED" 591 } 592 "Entry" 593 { 594 "MsmKey" = "8:_7D5691C24687048133BE11029AB9CF7B" 595 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F" 596 "MsmSig" = "8:_UNDEFINED" 597 } 598 "Entry" 599 { 600 "MsmKey" = "8:_7D5691C24687048133BE11029AB9CF7B" 601 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3" 602 "MsmSig" = "8:_UNDEFINED" 603 } 604 "Entry" 605 { 606 "MsmKey" = "8:_81441BCD960E8D180CA73B44E6496573" 607 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3" 608 "MsmSig" = "8:_UNDEFINED" 609 } 610 "Entry" 611 { 612 "MsmKey" = "8:_81441BCD960E8D180CA73B44E6496573" 613 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 614 "MsmSig" = "8:_UNDEFINED" 615 } 616 "Entry" 617 { 618 "MsmKey" = "8:_81441BCD960E8D180CA73B44E6496573" 619 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F" 620 "MsmSig" = "8:_UNDEFINED" 621 } 622 "Entry" 623 { 624 "MsmKey" = "8:_8C237E399EBE6DD0A0F139694755FE3E" 625 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D" 626 "MsmSig" = "8:_UNDEFINED" 627 } 628 "Entry" 629 { 630 "MsmKey" = "8:_8C237E399EBE6DD0A0F139694755FE3E" 631 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 632 "MsmSig" = "8:_UNDEFINED" 633 } 634 "Entry" 635 { 636 "MsmKey" = "8:_8C237E399EBE6DD0A0F139694755FE3E" 637 "OwnerKey" = "8:_3FE31B70554DB0FFD370CE867A3673F6" 638 "MsmSig" = "8:_UNDEFINED" 639 } 640 "Entry" 641 { 642 "MsmKey" = "8:_8EEE42CDCA86A0FFC63F1615EBF5056D" 643 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A" 644 "MsmSig" = "8:_UNDEFINED" 645 } 646 "Entry" 647 { 648 "MsmKey" = "8:_8EEE42CDCA86A0FFC63F1615EBF5056D" 649 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 432 "MsmKey" = "8:_7BD628B773CE245FD61F03A52A15ADCB" 433 "OwnerKey" = "8:_E1DF3FF675F8909B8FAF6D7E567FD238" 650 434 "MsmSig" = "8:_UNDEFINED" 651 435 } … … 659 443 { 660 444 "MsmKey" = "8:_9541F928C568C75CE14288DDBA5E5F6A" 445 "OwnerKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 446 "MsmSig" = "8:_UNDEFINED" 447 } 448 "Entry" 449 { 450 "MsmKey" = "8:_9541F928C568C75CE14288DDBA5E5F6A" 661 451 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 662 "MsmSig" = "8:_UNDEFINED"663 }664 "Entry"665 {666 "MsmKey" = "8:_9541F928C568C75CE14288DDBA5E5F6A"667 "OwnerKey" = "8:_CFACC8F36F259F4C16FD44BDEF181CB2"668 "MsmSig" = "8:_UNDEFINED"669 }670 "Entry"671 {672 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"673 "OwnerKey" = "8:_CFACC8F36F259F4C16FD44BDEF181CB2"674 "MsmSig" = "8:_UNDEFINED"675 }676 "Entry"677 {678 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"679 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F"680 "MsmSig" = "8:_UNDEFINED"681 }682 "Entry"683 {684 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"685 "OwnerKey" = "8:_8EEE42CDCA86A0FFC63F1615EBF5056D"686 "MsmSig" = "8:_UNDEFINED"687 }688 "Entry"689 {690 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"691 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A"692 "MsmSig" = "8:_UNDEFINED"693 }694 "Entry"695 {696 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"697 "OwnerKey" = "8:_F5BA91E3E303CCAE08D77D7515933820"698 "MsmSig" = "8:_UNDEFINED"699 }700 "Entry"701 {702 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"703 "OwnerKey" = "8:_81441BCD960E8D180CA73B44E6496573"704 "MsmSig" = "8:_UNDEFINED"705 }706 "Entry"707 {708 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"709 "OwnerKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1"710 "MsmSig" = "8:_UNDEFINED"711 }712 "Entry"713 {714 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"715 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3"716 "MsmSig" = "8:_UNDEFINED"717 }718 "Entry"719 {720 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"721 "OwnerKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D"722 "MsmSig" = "8:_UNDEFINED"723 }724 "Entry"725 {726 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"727 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A"728 "MsmSig" = "8:_UNDEFINED"729 }730 "Entry"731 {732 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"733 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139"734 "MsmSig" = "8:_UNDEFINED"735 }736 "Entry"737 {738 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"739 "OwnerKey" = "8:_9541F928C568C75CE14288DDBA5E5F6A"740 "MsmSig" = "8:_UNDEFINED"741 }742 "Entry"743 {744 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"745 "OwnerKey" = "8:_171134FFCDE0025B69B817D464F5D98E"746 "MsmSig" = "8:_UNDEFINED"747 }748 "Entry"749 {750 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"751 "OwnerKey" = "8:_A14FD9B75FFDC0C9FDE8558B89624A51"752 "MsmSig" = "8:_UNDEFINED"753 }754 "Entry"755 {756 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"757 "OwnerKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"758 "MsmSig" = "8:_UNDEFINED"759 }760 "Entry"761 {762 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"763 "OwnerKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"764 "MsmSig" = "8:_UNDEFINED"765 }766 "Entry"767 {768 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"769 "OwnerKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"770 "MsmSig" = "8:_UNDEFINED"771 }772 "Entry"773 {774 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"775 "OwnerKey" = "8:_D08099E381A7CF2FACD331CDB976D248"776 "MsmSig" = "8:_UNDEFINED"777 }778 "Entry"779 {780 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"781 "OwnerKey" = "8:_7973651787827518B0E6A86DC6DAFC09"782 "MsmSig" = "8:_UNDEFINED"783 }784 "Entry"785 {786 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"787 "OwnerKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"788 "MsmSig" = "8:_UNDEFINED"789 }790 "Entry"791 {792 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"793 "OwnerKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"794 "MsmSig" = "8:_UNDEFINED"795 }796 "Entry"797 {798 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"799 "OwnerKey" = "8:_54603E2126B94E1B89269E9E1A992867"800 "MsmSig" = "8:_UNDEFINED"801 }802 "Entry"803 {804 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"805 "OwnerKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E"806 "MsmSig" = "8:_UNDEFINED"807 }808 "Entry"809 {810 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"811 "OwnerKey" = "8:_8C237E399EBE6DD0A0F139694755FE3E"812 "MsmSig" = "8:_UNDEFINED"813 }814 "Entry"815 {816 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"817 "OwnerKey" = "8:_55135A3DD6B0538FA808DFB0A9400CE2"818 "MsmSig" = "8:_UNDEFINED"819 }820 "Entry"821 {822 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"823 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D"824 "MsmSig" = "8:_UNDEFINED"825 }826 "Entry"827 {828 "MsmKey" = "8:_994BD5479A8C57E376416F82FD380401"829 "OwnerKey" = "8:_3FE31B70554DB0FFD370CE867A3673F6"830 "MsmSig" = "8:_UNDEFINED"831 }832 "Entry"833 {834 "MsmKey" = "8:_A14FD9B75FFDC0C9FDE8558B89624A51"835 "OwnerKey" = "8:_CFACC8F36F259F4C16FD44BDEF181CB2"836 452 "MsmSig" = "8:_UNDEFINED" 837 453 } … … 844 460 "Entry" 845 461 { 846 "MsmKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F" 847 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A" 848 "MsmSig" = "8:_UNDEFINED" 849 } 850 "Entry" 851 { 852 "MsmKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F" 853 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 462 "MsmKey" = "8:_A14FD9B75FFDC0C9FDE8558B89624A51" 463 "OwnerKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 854 464 "MsmSig" = "8:_UNDEFINED" 855 465 } … … 868 478 "Entry" 869 479 { 870 "MsmKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D" 871 "OwnerKey" = "8:_3FE31B70554DB0FFD370CE867A3673F6" 872 "MsmSig" = "8:_UNDEFINED" 873 } 874 "Entry" 875 { 876 "MsmKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D" 480 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 877 481 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 878 482 "MsmSig" = "8:_UNDEFINED" … … 880 484 "Entry" 881 485 { 882 "MsmKey" = "8:_ CD5508A4F6BAF97236551AEAF3410AC3"883 "OwnerKey" = "8:_5 D5907CEB0534D975C20E25B9F511C5D"884 "MsmSig" = "8:_UNDEFINED" 885 } 886 "Entry" 887 { 888 "MsmKey" = "8:_ CD5508A4F6BAF97236551AEAF3410AC3"889 "OwnerKey" = "8:_ 6CD51DC1E0B04C549D20FB6860C52139"890 "MsmSig" = "8:_UNDEFINED" 891 } 892 "Entry" 893 { 894 "MsmKey" = "8:_ CD5508A4F6BAF97236551AEAF3410AC3"895 "OwnerKey" = "8:_ B5C66A75EA32E84EF67C8D1D7920427F"896 "MsmSig" = "8:_UNDEFINED" 897 } 898 "Entry" 899 { 900 "MsmKey" = "8:_ CFACC8F36F259F4C16FD44BDEF181CB2"901 "OwnerKey" = "8:_ 6CD51DC1E0B04C549D20FB6860C52139"902 "MsmSig" = "8:_UNDEFINED" 903 } 904 "Entry" 905 { 906 "MsmKey" = "8:_D0 25C4662F769895111CABD8FA8A1A64"907 "OwnerKey" = "8:_ 78C356402539CF6D24705B7DF592053A"908 "MsmSig" = "8:_UNDEFINED" 909 } 910 "Entry" 911 { 912 "MsmKey" = "8:_D0 25C4662F769895111CABD8FA8A1A64"913 "OwnerKey" = "8:_ 6CD51DC1E0B04C549D20FB6860C52139"914 "MsmSig" = "8:_UNDEFINED" 915 } 916 "Entry" 917 { 918 "MsmKey" = "8:_D0 25C4662F769895111CABD8FA8A1A64"919 "OwnerKey" = "8:_ B5C66A75EA32E84EF67C8D1D7920427F"486 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 487 "OwnerKey" = "8:_5541BB0536071D0D18B92E5CD73C37B0" 488 "MsmSig" = "8:_UNDEFINED" 489 } 490 "Entry" 491 { 492 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 493 "OwnerKey" = "8:_F0830FF0B893997415F4A4119B7871AD" 494 "MsmSig" = "8:_UNDEFINED" 495 } 496 "Entry" 497 { 498 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 499 "OwnerKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 500 "MsmSig" = "8:_UNDEFINED" 501 } 502 "Entry" 503 { 504 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 505 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 506 "MsmSig" = "8:_UNDEFINED" 507 } 508 "Entry" 509 { 510 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 511 "OwnerKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 512 "MsmSig" = "8:_UNDEFINED" 513 } 514 "Entry" 515 { 516 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 517 "OwnerKey" = "8:_9541F928C568C75CE14288DDBA5E5F6A" 518 "MsmSig" = "8:_UNDEFINED" 519 } 520 "Entry" 521 { 522 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 523 "OwnerKey" = "8:_A14FD9B75FFDC0C9FDE8558B89624A51" 920 524 "MsmSig" = "8:_UNDEFINED" 921 525 } … … 928 532 "Entry" 929 533 { 930 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 534 "MsmKey" = "8:_E1DF3FF675F8909B8FAF6D7E567FD238" 535 "OwnerKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 536 "MsmSig" = "8:_UNDEFINED" 537 } 538 "Entry" 539 { 540 "MsmKey" = "8:_E1DF3FF675F8909B8FAF6D7E567FD238" 931 541 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 932 542 "MsmSig" = "8:_UNDEFINED" … … 934 544 "Entry" 935 545 { 936 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 937 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F" 938 "MsmSig" = "8:_UNDEFINED" 939 } 940 "Entry" 941 { 942 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 943 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A" 944 "MsmSig" = "8:_UNDEFINED" 945 } 946 "Entry" 947 { 948 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 949 "OwnerKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D" 950 "MsmSig" = "8:_UNDEFINED" 951 } 952 "Entry" 953 { 954 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 955 "OwnerKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 956 "MsmSig" = "8:_UNDEFINED" 957 } 958 "Entry" 959 { 960 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 961 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3" 962 "MsmSig" = "8:_UNDEFINED" 963 } 964 "Entry" 965 { 966 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 967 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A" 968 "MsmSig" = "8:_UNDEFINED" 969 } 970 "Entry" 971 { 972 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 973 "OwnerKey" = "8:_9541F928C568C75CE14288DDBA5E5F6A" 974 "MsmSig" = "8:_UNDEFINED" 975 } 976 "Entry" 977 { 978 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248" 546 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6" 547 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 548 "MsmSig" = "8:_UNDEFINED" 549 } 550 "Entry" 551 { 552 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6" 553 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 554 "MsmSig" = "8:_UNDEFINED" 555 } 556 "Entry" 557 { 558 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6" 559 "OwnerKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 560 "MsmSig" = "8:_UNDEFINED" 561 } 562 "Entry" 563 { 564 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6" 565 "OwnerKey" = "8:_5541BB0536071D0D18B92E5CD73C37B0" 566 "MsmSig" = "8:_UNDEFINED" 567 } 568 "Entry" 569 { 570 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6" 979 571 "OwnerKey" = "8:_A14FD9B75FFDC0C9FDE8558B89624A51" 980 "MsmSig" = "8:_UNDEFINED"981 }982 "Entry"983 {984 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248"985 "OwnerKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"986 "MsmSig" = "8:_UNDEFINED"987 }988 "Entry"989 {990 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248"991 "OwnerKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"992 "MsmSig" = "8:_UNDEFINED"993 }994 "Entry"995 {996 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248"997 "OwnerKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"998 "MsmSig" = "8:_UNDEFINED"999 }1000 "Entry"1001 {1002 "MsmKey" = "8:_D08099E381A7CF2FACD331CDB976D248"1003 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D"1004 "MsmSig" = "8:_UNDEFINED"1005 }1006 "Entry"1007 {1008 "MsmKey" = "8:_E30FC5872698841012F7C59E21B0E562"1009 "OwnerKey" = "8:_994BD5479A8C57E376416F82FD380401"1010 "MsmSig" = "8:_UNDEFINED"1011 }1012 "Entry"1013 {1014 "MsmKey" = "8:_E30FC5872698841012F7C59E21B0E562"1015 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139"1016 "MsmSig" = "8:_UNDEFINED"1017 }1018 "Entry"1019 {1020 "MsmKey" = "8:_E30FC5872698841012F7C59E21B0E562"1021 "OwnerKey" = "8:_704A65445577390DC7571CC5D8FDD3EE"1022 572 "MsmSig" = "8:_UNDEFINED" 1023 573 } … … 1030 580 "Entry" 1031 581 { 1032 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1033 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139"1034 "MsmSig" = "8:_UNDEFINED"1035 }1036 "Entry"1037 {1038 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1039 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F"1040 "MsmSig" = "8:_UNDEFINED"1041 }1042 "Entry"1043 {1044 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1045 "OwnerKey" = "8:_8EEE42CDCA86A0FFC63F1615EBF5056D"1046 "MsmSig" = "8:_UNDEFINED"1047 }1048 "Entry"1049 {1050 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1051 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A"1052 "MsmSig" = "8:_UNDEFINED"1053 }1054 "Entry"1055 {1056 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1057 "OwnerKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D"1058 "MsmSig" = "8:_UNDEFINED"1059 }1060 "Entry"1061 {1062 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1063 "OwnerKey" = "8:_F5BA91E3E303CCAE08D77D7515933820"1064 "MsmSig" = "8:_UNDEFINED"1065 }1066 "Entry"1067 {1068 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1069 "OwnerKey" = "8:_81441BCD960E8D180CA73B44E6496573"1070 "MsmSig" = "8:_UNDEFINED"1071 }1072 "Entry"1073 {1074 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1075 "OwnerKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1"1076 "MsmSig" = "8:_UNDEFINED"1077 }1078 "Entry"1079 {1080 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1081 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3"1082 "MsmSig" = "8:_UNDEFINED"1083 }1084 "Entry"1085 {1086 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1087 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A"1088 "MsmSig" = "8:_UNDEFINED"1089 }1090 "Entry"1091 {1092 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1093 "OwnerKey" = "8:_A14FD9B75FFDC0C9FDE8558B89624A51"1094 "MsmSig" = "8:_UNDEFINED"1095 }1096 "Entry"1097 {1098 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1099 "OwnerKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1100 "MsmSig" = "8:_UNDEFINED"1101 }1102 "Entry"1103 {1104 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1105 "OwnerKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"1106 "MsmSig" = "8:_UNDEFINED"1107 }1108 "Entry"1109 {1110 "MsmKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6"1111 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D"1112 "MsmSig" = "8:_UNDEFINED"1113 }1114 "Entry"1115 {1116 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1117 "OwnerKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"1118 "MsmSig" = "8:_UNDEFINED"1119 }1120 "Entry"1121 {1122 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1123 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139"1124 "MsmSig" = "8:_UNDEFINED"1125 }1126 "Entry"1127 {1128 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1129 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F"1130 "MsmSig" = "8:_UNDEFINED"1131 }1132 "Entry"1133 {1134 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1135 "OwnerKey" = "8:_8EEE42CDCA86A0FFC63F1615EBF5056D"1136 "MsmSig" = "8:_UNDEFINED"1137 }1138 "Entry"1139 {1140 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1141 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A"1142 "MsmSig" = "8:_UNDEFINED"1143 }1144 "Entry"1145 {1146 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1147 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A"1148 "MsmSig" = "8:_UNDEFINED"1149 }1150 "Entry"1151 {1152 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1153 "OwnerKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D"1154 "MsmSig" = "8:_UNDEFINED"1155 }1156 "Entry"1157 {1158 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1159 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3"1160 "MsmSig" = "8:_UNDEFINED"1161 }1162 "Entry"1163 {1164 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1165 "OwnerKey" = "8:_F5BA91E3E303CCAE08D77D7515933820"1166 "MsmSig" = "8:_UNDEFINED"1167 }1168 "Entry"1169 {1170 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1171 "OwnerKey" = "8:_81441BCD960E8D180CA73B44E6496573"1172 "MsmSig" = "8:_UNDEFINED"1173 }1174 "Entry"1175 {1176 "MsmKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1177 "OwnerKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1"1178 "MsmSig" = "8:_UNDEFINED"1179 }1180 "Entry"1181 {1182 582 "MsmKey" = "8:_F010F086FC3D4C1EA55A80E7D9230283" 1183 583 "OwnerKey" = "8:_UNDEFINED" … … 1186 586 "Entry" 1187 587 { 1188 "MsmKey" = "8:_F 5BA91E3E303CCAE08D77D7515933820"1189 "OwnerKey" = "8:_ 81441BCD960E8D180CA73B44E6496573"1190 "MsmSig" = "8:_UNDEFINED" 1191 } 1192 "Entry" 1193 { 1194 "MsmKey" = "8:_F 5BA91E3E303CCAE08D77D7515933820"588 "MsmKey" = "8:_F0830FF0B893997415F4A4119B7871AD" 589 "OwnerKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 590 "MsmSig" = "8:_UNDEFINED" 591 } 592 "Entry" 593 { 594 "MsmKey" = "8:_F0830FF0B893997415F4A4119B7871AD" 1195 595 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139" 1196 "MsmSig" = "8:_UNDEFINED"1197 }1198 "Entry"1199 {1200 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1201 "OwnerKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"1202 "MsmSig" = "8:_UNDEFINED"1203 }1204 "Entry"1205 {1206 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1207 "OwnerKey" = "8:_6CD51DC1E0B04C549D20FB6860C52139"1208 "MsmSig" = "8:_UNDEFINED"1209 }1210 "Entry"1211 {1212 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1213 "OwnerKey" = "8:_B5C66A75EA32E84EF67C8D1D7920427F"1214 "MsmSig" = "8:_UNDEFINED"1215 }1216 "Entry"1217 {1218 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1219 "OwnerKey" = "8:_8EEE42CDCA86A0FFC63F1615EBF5056D"1220 "MsmSig" = "8:_UNDEFINED"1221 }1222 "Entry"1223 {1224 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1225 "OwnerKey" = "8:_78C356402539CF6D24705B7DF592053A"1226 "MsmSig" = "8:_UNDEFINED"1227 }1228 "Entry"1229 {1230 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1231 "OwnerKey" = "8:_5D5907CEB0534D975C20E25B9F511C5D"1232 "MsmSig" = "8:_UNDEFINED"1233 }1234 "Entry"1235 {1236 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1237 "OwnerKey" = "8:_F5BA91E3E303CCAE08D77D7515933820"1238 "MsmSig" = "8:_UNDEFINED"1239 }1240 "Entry"1241 {1242 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1243 "OwnerKey" = "8:_81441BCD960E8D180CA73B44E6496573"1244 "MsmSig" = "8:_UNDEFINED"1245 }1246 "Entry"1247 {1248 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1249 "OwnerKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1"1250 "MsmSig" = "8:_UNDEFINED"1251 }1252 "Entry"1253 {1254 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1255 "OwnerKey" = "8:_CD5508A4F6BAF97236551AEAF3410AC3"1256 "MsmSig" = "8:_UNDEFINED"1257 }1258 "Entry"1259 {1260 "MsmKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1261 "OwnerKey" = "8:_31F0A84D151751F5A36DE6BDDEB2734A"1262 596 "MsmSig" = "8:_UNDEFINED" 1263 597 } … … 1271 605 { 1272 606 "MsmKey" = "8:_UNDEFINED" 1273 "OwnerKey" = "8:_ 31F0A84D151751F5A36DE6BDDEB2734A"607 "OwnerKey" = "8:_599861A20CA448EE14E05C49D17ABF85" 1274 608 "MsmSig" = "8:_UNDEFINED" 1275 609 } … … 1277 611 { 1278 612 "MsmKey" = "8:_UNDEFINED" 1279 "OwnerKey" = "8:_ B5C66A75EA32E84EF67C8D1D7920427F"613 "OwnerKey" = "8:_E1DF3FF675F8909B8FAF6D7E567FD238" 1280 614 "MsmSig" = "8:_UNDEFINED" 1281 615 } … … 1283 617 { 1284 618 "MsmKey" = "8:_UNDEFINED" 1285 "OwnerKey" = "8:_ 78C356402539CF6D24705B7DF592053A"619 "OwnerKey" = "8:_5F4581CD634302056E4AA33B0650E168" 1286 620 "MsmSig" = "8:_UNDEFINED" 1287 621 } … … 1289 623 { 1290 624 "MsmKey" = "8:_UNDEFINED" 1291 "OwnerKey" = "8:_ D025C4662F769895111CABD8FA8A1A64"625 "OwnerKey" = "8:_0C0FFD28A81FCA3C864EEDC37B6367A8" 1292 626 "MsmSig" = "8:_UNDEFINED" 1293 627 } … … 1295 629 { 1296 630 "MsmKey" = "8:_UNDEFINED" 1297 "OwnerKey" = "8:_ 8EEE42CDCA86A0FFC63F1615EBF5056D"631 "OwnerKey" = "8:_5541BB0536071D0D18B92E5CD73C37B0" 1298 632 "MsmSig" = "8:_UNDEFINED" 1299 633 } … … 1301 635 { 1302 636 "MsmKey" = "8:_UNDEFINED" 1303 "OwnerKey" = "8:_ 5D5907CEB0534D975C20E25B9F511C5D"637 "OwnerKey" = "8:_F0830FF0B893997415F4A4119B7871AD" 1304 638 "MsmSig" = "8:_UNDEFINED" 1305 639 } … … 1307 641 { 1308 642 "MsmKey" = "8:_UNDEFINED" 1309 "OwnerKey" = "8:_ CD5508A4F6BAF97236551AEAF3410AC3"643 "OwnerKey" = "8:_7BD628B773CE245FD61F03A52A15ADCB" 1310 644 "MsmSig" = "8:_UNDEFINED" 1311 645 } … … 1313 647 { 1314 648 "MsmKey" = "8:_UNDEFINED" 1315 "OwnerKey" = "8:_81441BCD960E8D180CA73B44E6496573" 1316 "MsmSig" = "8:_UNDEFINED" 1317 } 1318 "Entry" 1319 { 1320 "MsmKey" = "8:_UNDEFINED" 1321 "OwnerKey" = "8:_F5BA91E3E303CCAE08D77D7515933820" 1322 "MsmSig" = "8:_UNDEFINED" 1323 } 1324 "Entry" 1325 { 1326 "MsmKey" = "8:_UNDEFINED" 1327 "OwnerKey" = "8:_7AAAACEA48C0419227DB0281A1345FC1" 1328 "MsmSig" = "8:_UNDEFINED" 1329 } 1330 "Entry" 1331 { 1332 "MsmKey" = "8:_UNDEFINED" 1333 "OwnerKey" = "8:_7D5691C24687048133BE11029AB9CF7B" 1334 "MsmSig" = "8:_UNDEFINED" 1335 } 1336 "Entry" 1337 { 1338 "MsmKey" = "8:_UNDEFINED" 1339 "OwnerKey" = "8:_CFACC8F36F259F4C16FD44BDEF181CB2" 649 "OwnerKey" = "8:_304BEB34BE6FD50C783B231639890388" 1340 650 "MsmSig" = "8:_UNDEFINED" 1341 651 } … … 1367 677 { 1368 678 "MsmKey" = "8:_UNDEFINED" 1369 "OwnerKey" = "8:_3FE31B70554DB0FFD370CE867A3673F6"1370 "MsmSig" = "8:_UNDEFINED"1371 }1372 "Entry"1373 {1374 "MsmKey" = "8:_UNDEFINED"1375 "OwnerKey" = "8:_C1676998EB0F5C0121CB5CEA9E93283D"1376 "MsmSig" = "8:_UNDEFINED"1377 }1378 "Entry"1379 {1380 "MsmKey" = "8:_UNDEFINED"1381 "OwnerKey" = "8:_77E6603D3D7BF3442BB71232DB6909F5"1382 "MsmSig" = "8:_UNDEFINED"1383 }1384 "Entry"1385 {1386 "MsmKey" = "8:_UNDEFINED"1387 "OwnerKey" = "8:_E9760F1F4C7EB72F561B4824A5E1A5B6"1388 "MsmSig" = "8:_UNDEFINED"1389 }1390 "Entry"1391 {1392 "MsmKey" = "8:_UNDEFINED"1393 "OwnerKey" = "8:_FFDF6A5675A3103C6836AC7A08B2CEA9"1394 "MsmSig" = "8:_UNDEFINED"1395 }1396 "Entry"1397 {1398 "MsmKey" = "8:_UNDEFINED"1399 "OwnerKey" = "8:_8C237E399EBE6DD0A0F139694755FE3E"1400 "MsmSig" = "8:_UNDEFINED"1401 }1402 "Entry"1403 {1404 "MsmKey" = "8:_UNDEFINED"1405 679 "OwnerKey" = "8:_54603E2126B94E1B89269E9E1A992867" 1406 680 "MsmSig" = "8:_UNDEFINED" … … 1415 689 { 1416 690 "MsmKey" = "8:_UNDEFINED" 691 "OwnerKey" = "8:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 692 "MsmSig" = "8:_UNDEFINED" 693 } 694 "Entry" 695 { 696 "MsmKey" = "8:_UNDEFINED" 1417 697 "OwnerKey" = "8:_E4DD5E3D2A69B5BE8B068C88529DFDC6" 1418 698 "MsmSig" = "8:_UNDEFINED" … … 1433 713 { 1434 714 "MsmKey" = "8:_UNDEFINED" 1435 "OwnerKey" = "8:_ 5E14D1BE4E00FF26EC3A0FD85DE6F87E"715 "OwnerKey" = "8:_229A738B0867AA360B8E355EE0809B20" 1436 716 "MsmSig" = "8:_UNDEFINED" 1437 717 } … … 1439 719 { 1440 720 "MsmKey" = "8:_UNDEFINED" 1441 "OwnerKey" = "8:_55135A3DD6B0538FA808DFB0A9400CE2" 1442 "MsmSig" = "8:_UNDEFINED" 1443 } 1444 "Entry" 1445 { 1446 "MsmKey" = "8:_UNDEFINED" 1447 "OwnerKey" = "8:_994BD5479A8C57E376416F82FD380401" 1448 "MsmSig" = "8:_UNDEFINED" 1449 } 1450 "Entry" 1451 { 1452 "MsmKey" = "8:_UNDEFINED" 1453 "OwnerKey" = "8:_E30FC5872698841012F7C59E21B0E562" 721 "OwnerKey" = "8:_66350EF862330C2B98DA560D7F47E24C" 1454 722 "MsmSig" = "8:_UNDEFINED" 1455 723 } … … 1481 749 "Items" 1482 750 { 1483 "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.0 ,Profile=Client"1484 { 1485 "Name" = "8:Microsoft .NET Framework 4 Client Profile(x86 and x64)"1486 "ProductCode" = "8:.NETFramework,Version=v4.0 ,Profile=Client"751 "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.0" 752 { 753 "Name" = "8:Microsoft .NET Framework 4 (x86 and x64)" 754 "ProductCode" = "8:.NETFramework,Version=v4.0" 1487 755 } 1488 756 "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" … … 1516 784 "Url" = "8:" 1517 785 "ComponentsUrl" = "8:" 786 "Items" 787 { 788 "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.0,Profile=Client" 789 { 790 "Name" = "8:Microsoft .NET Framework 4 Client Profile (x86 and x64)" 791 "ProductCode" = "8:.NETFramework,Version=v4.0,Profile=Client" 792 } 793 "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" 794 { 795 "Name" = "8:Windows Installer 3.1" 796 "ProductCode" = "8:Microsoft.Windows.Installer.3.1" 797 } 798 } 1518 799 } 1519 800 } … … 1546 827 "File" 1547 828 { 829 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0C0FFD28A81FCA3C864EEDC37B6367A8" 830 { 831 "AssemblyRegister" = "3:1" 832 "AssemblyIsInGAC" = "11:FALSE" 833 "AssemblyAsmDisplayName" = "8:HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 834 "ScatterAssemblies" 835 { 836 "_0C0FFD28A81FCA3C864EEDC37B6367A8" 837 { 838 "Name" = "8:HeuristicLab.Optimization-3.3.dll" 839 "Attributes" = "3:512" 840 } 841 } 842 "SourcePath" = "8:HeuristicLab.Optimization-3.3.dll" 843 "TargetName" = "8:" 844 "Tag" = "8:" 845 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 846 "Condition" = "8:" 847 "Transitive" = "11:FALSE" 848 "Vital" = "11:TRUE" 849 "ReadOnly" = "11:FALSE" 850 "Hidden" = "11:FALSE" 851 "System" = "11:FALSE" 852 "Permanent" = "11:FALSE" 853 "SharedLegacy" = "11:FALSE" 854 "PackageAs" = "3:1" 855 "Register" = "3:1" 856 "Exclude" = "11:FALSE" 857 "IsDependency" = "11:TRUE" 858 "IsolateTo" = "8:" 859 } 1548 860 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_171134FFCDE0025B69B817D464F5D98E" 1549 861 { … … 1577 889 "IsolateTo" = "8:" 1578 890 } 1579 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ 31F0A84D151751F5A36DE6BDDEB2734A"891 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_229A738B0867AA360B8E355EE0809B20" 1580 892 { 1581 893 "AssemblyRegister" = "3:1" 1582 894 "AssemblyIsInGAC" = "11:FALSE" 1583 "AssemblyAsmDisplayName" = "8:HeuristicLab. Algorithms.DataAnalysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"895 "AssemblyAsmDisplayName" = "8:HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1584 896 "ScatterAssemblies" 1585 897 { 1586 "_ 31F0A84D151751F5A36DE6BDDEB2734A"1587 { 1588 "Name" = "8:HeuristicLab. Algorithms.DataAnalysis-3.3.dll"898 "_229A738B0867AA360B8E355EE0809B20" 899 { 900 "Name" = "8:HeuristicLab.PluginInfrastructure-3.3.dll" 1589 901 "Attributes" = "3:512" 1590 902 } 1591 903 } 1592 "SourcePath" = "8:HeuristicLab. Algorithms.DataAnalysis-3.3.dll"904 "SourcePath" = "8:HeuristicLab.PluginInfrastructure-3.3.dll" 1593 905 "TargetName" = "8:" 1594 906 "Tag" = "8:" … … 1608 920 "IsolateTo" = "8:" 1609 921 } 1610 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3FE31B70554DB0FFD370CE867A3673F6" 922 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_304BEB34BE6FD50C783B231639890388" 923 { 924 "AssemblyRegister" = "3:1" 925 "AssemblyIsInGAC" = "11:FALSE" 926 "AssemblyAsmDisplayName" = "8:HeuristicLab.Clients.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 927 "ScatterAssemblies" 928 { 929 "_304BEB34BE6FD50C783B231639890388" 930 { 931 "Name" = "8:HeuristicLab.Clients.Common-3.3.dll" 932 "Attributes" = "3:512" 933 } 934 } 935 "SourcePath" = "8:HeuristicLab.Clients.Common-3.3.dll" 936 "TargetName" = "8:" 937 "Tag" = "8:" 938 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 939 "Condition" = "8:" 940 "Transitive" = "11:FALSE" 941 "Vital" = "11:TRUE" 942 "ReadOnly" = "11:FALSE" 943 "Hidden" = "11:FALSE" 944 "System" = "11:FALSE" 945 "Permanent" = "11:FALSE" 946 "SharedLegacy" = "11:FALSE" 947 "PackageAs" = "3:1" 948 "Register" = "3:1" 949 "Exclude" = "11:FALSE" 950 "IsDependency" = "11:TRUE" 951 "IsolateTo" = "8:" 952 } 953 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_54603E2126B94E1B89269E9E1A992867" 954 { 955 "AssemblyRegister" = "3:1" 956 "AssemblyIsInGAC" = "11:FALSE" 957 "AssemblyAsmDisplayName" = "8:HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 958 "ScatterAssemblies" 959 { 960 "_54603E2126B94E1B89269E9E1A992867" 961 { 962 "Name" = "8:HeuristicLab.Core-3.3.dll" 963 "Attributes" = "3:512" 964 } 965 } 966 "SourcePath" = "8:HeuristicLab.Core-3.3.dll" 967 "TargetName" = "8:" 968 "Tag" = "8:" 969 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 970 "Condition" = "8:" 971 "Transitive" = "11:FALSE" 972 "Vital" = "11:TRUE" 973 "ReadOnly" = "11:FALSE" 974 "Hidden" = "11:FALSE" 975 "System" = "11:FALSE" 976 "Permanent" = "11:FALSE" 977 "SharedLegacy" = "11:FALSE" 978 "PackageAs" = "3:1" 979 "Register" = "3:1" 980 "Exclude" = "11:FALSE" 981 "IsDependency" = "11:TRUE" 982 "IsolateTo" = "8:" 983 } 984 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5541BB0536071D0D18B92E5CD73C37B0" 985 { 986 "AssemblyRegister" = "3:1" 987 "AssemblyIsInGAC" = "11:FALSE" 988 "AssemblyAsmDisplayName" = "8:HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 989 "ScatterAssemblies" 990 { 991 "_5541BB0536071D0D18B92E5CD73C37B0" 992 { 993 "Name" = "8:HeuristicLab.Parameters-3.3.dll" 994 "Attributes" = "3:512" 995 } 996 } 997 "SourcePath" = "8:HeuristicLab.Parameters-3.3.dll" 998 "TargetName" = "8:" 999 "Tag" = "8:" 1000 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1001 "Condition" = "8:" 1002 "Transitive" = "11:FALSE" 1003 "Vital" = "11:TRUE" 1004 "ReadOnly" = "11:FALSE" 1005 "Hidden" = "11:FALSE" 1006 "System" = "11:FALSE" 1007 "Permanent" = "11:FALSE" 1008 "SharedLegacy" = "11:FALSE" 1009 "PackageAs" = "3:1" 1010 "Register" = "3:1" 1011 "Exclude" = "11:FALSE" 1012 "IsDependency" = "11:TRUE" 1013 "IsolateTo" = "8:" 1014 } 1015 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_599861A20CA448EE14E05C49D17ABF85" 1016 { 1017 "AssemblyRegister" = "3:1" 1018 "AssemblyIsInGAC" = "11:FALSE" 1019 "AssemblyAsmDisplayName" = "8:HeuristicLab.Clients.Hive.Slave.Views-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1020 "ScatterAssemblies" 1021 { 1022 "_599861A20CA448EE14E05C49D17ABF85" 1023 { 1024 "Name" = "8:HeuristicLab.Clients.Hive.Slave.Views-3.4.dll" 1025 "Attributes" = "3:512" 1026 } 1027 } 1028 "SourcePath" = "8:HeuristicLab.Clients.Hive.Slave.Views-3.4.dll" 1029 "TargetName" = "8:" 1030 "Tag" = "8:" 1031 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1032 "Condition" = "8:" 1033 "Transitive" = "11:FALSE" 1034 "Vital" = "11:TRUE" 1035 "ReadOnly" = "11:FALSE" 1036 "Hidden" = "11:FALSE" 1037 "System" = "11:FALSE" 1038 "Permanent" = "11:FALSE" 1039 "SharedLegacy" = "11:FALSE" 1040 "PackageAs" = "3:1" 1041 "Register" = "3:1" 1042 "Exclude" = "11:FALSE" 1043 "IsDependency" = "11:TRUE" 1044 "IsolateTo" = "8:" 1045 } 1046 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 1047 { 1048 "AssemblyRegister" = "3:1" 1049 "AssemblyIsInGAC" = "11:FALSE" 1050 "AssemblyAsmDisplayName" = "8:HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1051 "ScatterAssemblies" 1052 { 1053 "_5E14D1BE4E00FF26EC3A0FD85DE6F87E" 1054 { 1055 "Name" = "8:HeuristicLab.Common-3.3.dll" 1056 "Attributes" = "3:512" 1057 } 1058 } 1059 "SourcePath" = "8:HeuristicLab.Common-3.3.dll" 1060 "TargetName" = "8:" 1061 "Tag" = "8:" 1062 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1063 "Condition" = "8:" 1064 "Transitive" = "11:FALSE" 1065 "Vital" = "11:TRUE" 1066 "ReadOnly" = "11:FALSE" 1067 "Hidden" = "11:FALSE" 1068 "System" = "11:FALSE" 1069 "Permanent" = "11:FALSE" 1070 "SharedLegacy" = "11:FALSE" 1071 "PackageAs" = "3:1" 1072 "Register" = "3:1" 1073 "Exclude" = "11:FALSE" 1074 "IsDependency" = "11:TRUE" 1075 "IsolateTo" = "8:" 1076 } 1077 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5F4581CD634302056E4AA33B0650E168" 1078 { 1079 "AssemblyRegister" = "3:1" 1080 "AssemblyIsInGAC" = "11:FALSE" 1081 "AssemblyAsmDisplayName" = "8:HeuristicLab.Clients.Hive-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1082 "ScatterAssemblies" 1083 { 1084 "_5F4581CD634302056E4AA33B0650E168" 1085 { 1086 "Name" = "8:HeuristicLab.Clients.Hive-3.4.dll" 1087 "Attributes" = "3:512" 1088 } 1089 } 1090 "SourcePath" = "8:HeuristicLab.Clients.Hive-3.4.dll" 1091 "TargetName" = "8:" 1092 "Tag" = "8:" 1093 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1094 "Condition" = "8:" 1095 "Transitive" = "11:FALSE" 1096 "Vital" = "11:TRUE" 1097 "ReadOnly" = "11:FALSE" 1098 "Hidden" = "11:FALSE" 1099 "System" = "11:FALSE" 1100 "Permanent" = "11:FALSE" 1101 "SharedLegacy" = "11:FALSE" 1102 "PackageAs" = "3:1" 1103 "Register" = "3:1" 1104 "Exclude" = "11:FALSE" 1105 "IsDependency" = "11:TRUE" 1106 "IsolateTo" = "8:" 1107 } 1108 "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_640A7525E7974E7BAE45D8D70EF04E26" 1109 { 1110 "SourcePath" = "8:..\\HeuristicLab.Clients.Hive.Slave.SlaveWindowsServiceSetup\\hl_logo.jpg" 1111 "TargetName" = "8:hl_logo.jpg" 1112 "Tag" = "8:" 1113 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1114 "Condition" = "8:" 1115 "Transitive" = "11:FALSE" 1116 "Vital" = "11:TRUE" 1117 "ReadOnly" = "11:FALSE" 1118 "Hidden" = "11:FALSE" 1119 "System" = "11:FALSE" 1120 "Permanent" = "11:FALSE" 1121 "SharedLegacy" = "11:FALSE" 1122 "PackageAs" = "3:1" 1123 "Register" = "3:1" 1124 "Exclude" = "11:FALSE" 1125 "IsDependency" = "11:FALSE" 1126 "IsolateTo" = "8:" 1127 } 1128 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_66350EF862330C2B98DA560D7F47E24C" 1129 { 1130 "AssemblyRegister" = "3:1" 1131 "AssemblyIsInGAC" = "11:FALSE" 1132 "AssemblyAsmDisplayName" = "8:ICSharpCode.SharpZipLib, Version=0.85.4.369, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL" 1133 "ScatterAssemblies" 1134 { 1135 "_66350EF862330C2B98DA560D7F47E24C" 1136 { 1137 "Name" = "8:ICSharpCode.SharpZipLib.dll" 1138 "Attributes" = "3:512" 1139 } 1140 } 1141 "SourcePath" = "8:ICSharpCode.SharpZipLib.dll" 1142 "TargetName" = "8:" 1143 "Tag" = "8:" 1144 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1145 "Condition" = "8:" 1146 "Transitive" = "11:FALSE" 1147 "Vital" = "11:TRUE" 1148 "ReadOnly" = "11:FALSE" 1149 "Hidden" = "11:FALSE" 1150 "System" = "11:FALSE" 1151 "Permanent" = "11:FALSE" 1152 "SharedLegacy" = "11:FALSE" 1153 "PackageAs" = "3:1" 1154 "Register" = "3:1" 1155 "Exclude" = "11:FALSE" 1156 "IsDependency" = "11:TRUE" 1157 "IsolateTo" = "8:" 1158 } 1159 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_704A65445577390DC7571CC5D8FDD3EE" 1160 { 1161 "AssemblyRegister" = "3:1" 1162 "AssemblyIsInGAC" = "11:FALSE" 1163 "AssemblyAsmDisplayName" = "8:HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1164 "ScatterAssemblies" 1165 { 1166 "_704A65445577390DC7571CC5D8FDD3EE" 1167 { 1168 "Name" = "8:HeuristicLab.Persistence-3.3.dll" 1169 "Attributes" = "3:512" 1170 } 1171 } 1172 "SourcePath" = "8:HeuristicLab.Persistence-3.3.dll" 1173 "TargetName" = "8:" 1174 "Tag" = "8:" 1175 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1176 "Condition" = "8:" 1177 "Transitive" = "11:FALSE" 1178 "Vital" = "11:TRUE" 1179 "ReadOnly" = "11:FALSE" 1180 "Hidden" = "11:FALSE" 1181 "System" = "11:FALSE" 1182 "Permanent" = "11:FALSE" 1183 "SharedLegacy" = "11:FALSE" 1184 "PackageAs" = "3:1" 1185 "Register" = "3:1" 1186 "Exclude" = "11:FALSE" 1187 "IsDependency" = "11:TRUE" 1188 "IsolateTo" = "8:" 1189 } 1190 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7973651787827518B0E6A86DC6DAFC09" 1191 { 1192 "AssemblyRegister" = "3:1" 1193 "AssemblyIsInGAC" = "11:FALSE" 1194 "AssemblyAsmDisplayName" = "8:HeuristicLab.Tracing-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1195 "ScatterAssemblies" 1196 { 1197 "_7973651787827518B0E6A86DC6DAFC09" 1198 { 1199 "Name" = "8:HeuristicLab.Tracing-3.3.dll" 1200 "Attributes" = "3:512" 1201 } 1202 } 1203 "SourcePath" = "8:HeuristicLab.Tracing-3.3.dll" 1204 "TargetName" = "8:" 1205 "Tag" = "8:" 1206 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1207 "Condition" = "8:" 1208 "Transitive" = "11:FALSE" 1209 "Vital" = "11:TRUE" 1210 "ReadOnly" = "11:FALSE" 1211 "Hidden" = "11:FALSE" 1212 "System" = "11:FALSE" 1213 "Permanent" = "11:FALSE" 1214 "SharedLegacy" = "11:FALSE" 1215 "PackageAs" = "3:1" 1216 "Register" = "3:1" 1217 "Exclude" = "11:FALSE" 1218 "IsDependency" = "11:TRUE" 1219 "IsolateTo" = "8:" 1220 } 1221 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7BD628B773CE245FD61F03A52A15ADCB" 1222 { 1223 "AssemblyRegister" = "3:1" 1224 "AssemblyIsInGAC" = "11:FALSE" 1225 "AssemblyAsmDisplayName" = "8:HeuristicLab.Hive-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1226 "ScatterAssemblies" 1227 { 1228 "_7BD628B773CE245FD61F03A52A15ADCB" 1229 { 1230 "Name" = "8:HeuristicLab.Hive-3.4.dll" 1231 "Attributes" = "3:512" 1232 } 1233 } 1234 "SourcePath" = "8:HeuristicLab.Hive-3.4.dll" 1235 "TargetName" = "8:" 1236 "Tag" = "8:" 1237 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1238 "Condition" = "8:" 1239 "Transitive" = "11:FALSE" 1240 "Vital" = "11:TRUE" 1241 "ReadOnly" = "11:FALSE" 1242 "Hidden" = "11:FALSE" 1243 "System" = "11:FALSE" 1244 "Permanent" = "11:FALSE" 1245 "SharedLegacy" = "11:FALSE" 1246 "PackageAs" = "3:1" 1247 "Register" = "3:1" 1248 "Exclude" = "11:FALSE" 1249 "IsDependency" = "11:TRUE" 1250 "IsolateTo" = "8:" 1251 } 1252 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9541F928C568C75CE14288DDBA5E5F6A" 1253 { 1254 "AssemblyRegister" = "3:1" 1255 "AssemblyIsInGAC" = "11:FALSE" 1256 "AssemblyAsmDisplayName" = "8:HeuristicLab.MainForm.WindowsForms-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1257 "ScatterAssemblies" 1258 { 1259 "_9541F928C568C75CE14288DDBA5E5F6A" 1260 { 1261 "Name" = "8:HeuristicLab.MainForm.WindowsForms-3.3.dll" 1262 "Attributes" = "3:512" 1263 } 1264 } 1265 "SourcePath" = "8:HeuristicLab.MainForm.WindowsForms-3.3.dll" 1266 "TargetName" = "8:" 1267 "Tag" = "8:" 1268 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1269 "Condition" = "8:" 1270 "Transitive" = "11:FALSE" 1271 "Vital" = "11:TRUE" 1272 "ReadOnly" = "11:FALSE" 1273 "Hidden" = "11:FALSE" 1274 "System" = "11:FALSE" 1275 "Permanent" = "11:FALSE" 1276 "SharedLegacy" = "11:FALSE" 1277 "PackageAs" = "3:1" 1278 "Register" = "3:1" 1279 "Exclude" = "11:FALSE" 1280 "IsDependency" = "11:TRUE" 1281 "IsolateTo" = "8:" 1282 } 1283 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A14FD9B75FFDC0C9FDE8558B89624A51" 1284 { 1285 "AssemblyRegister" = "3:1" 1286 "AssemblyIsInGAC" = "11:FALSE" 1287 "AssemblyAsmDisplayName" = "8:HeuristicLab.Core.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1288 "ScatterAssemblies" 1289 { 1290 "_A14FD9B75FFDC0C9FDE8558B89624A51" 1291 { 1292 "Name" = "8:HeuristicLab.Core.Views-3.3.dll" 1293 "Attributes" = "3:512" 1294 } 1295 } 1296 "SourcePath" = "8:HeuristicLab.Core.Views-3.3.dll" 1297 "TargetName" = "8:" 1298 "Tag" = "8:" 1299 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1300 "Condition" = "8:" 1301 "Transitive" = "11:FALSE" 1302 "Vital" = "11:TRUE" 1303 "ReadOnly" = "11:FALSE" 1304 "Hidden" = "11:FALSE" 1305 "System" = "11:FALSE" 1306 "Permanent" = "11:FALSE" 1307 "SharedLegacy" = "11:FALSE" 1308 "PackageAs" = "3:1" 1309 "Register" = "3:1" 1310 "Exclude" = "11:FALSE" 1311 "IsDependency" = "11:TRUE" 1312 "IsolateTo" = "8:" 1313 } 1314 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BA24EB8379AD50E05C7274CF07672B8C" 1315 { 1316 "AssemblyRegister" = "3:1" 1317 "AssemblyIsInGAC" = "11:FALSE" 1318 "AssemblyAsmDisplayName" = "8:WeifenLuo.WinFormsUI.Docking-2.3.1, Version=2.3.1.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1319 "ScatterAssemblies" 1320 { 1321 "_BA24EB8379AD50E05C7274CF07672B8C" 1322 { 1323 "Name" = "8:WeifenLuo.WinFormsUI.Docking-2.3.1.dll" 1324 "Attributes" = "3:512" 1325 } 1326 } 1327 "SourcePath" = "8:WeifenLuo.WinFormsUI.Docking-2.3.1.dll" 1328 "TargetName" = "8:" 1329 "Tag" = "8:" 1330 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1331 "Condition" = "8:" 1332 "Transitive" = "11:FALSE" 1333 "Vital" = "11:TRUE" 1334 "ReadOnly" = "11:FALSE" 1335 "Hidden" = "11:FALSE" 1336 "System" = "11:FALSE" 1337 "Permanent" = "11:FALSE" 1338 "SharedLegacy" = "11:FALSE" 1339 "PackageAs" = "3:1" 1340 "Register" = "3:1" 1341 "Exclude" = "11:FALSE" 1342 "IsDependency" = "11:TRUE" 1343 "IsolateTo" = "8:" 1344 } 1345 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D08099E381A7CF2FACD331CDB976D248" 1346 { 1347 "AssemblyRegister" = "3:1" 1348 "AssemblyIsInGAC" = "11:FALSE" 1349 "AssemblyAsmDisplayName" = "8:HeuristicLab.Common.Resources-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 1350 "ScatterAssemblies" 1351 { 1352 "_D08099E381A7CF2FACD331CDB976D248" 1353 { 1354 "Name" = "8:HeuristicLab.Common.Resources-3.3.dll" 1355 "Attributes" = "3:512" 1356 } 1357 } 1358 "SourcePath" = "8:HeuristicLab.Common.Resources-3.3.dll" 1359 "TargetName" = "8:" 1360 "Tag" = "8:" 1361 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 1362 "Condition" = "8:" 1363 "Transitive" = "11:FALSE" 1364 "Vital" = "11:TRUE" 1365 "ReadOnly" = "11:FALSE" 1366 "Hidden" = "11:FALSE" 1367 "System" = "11:FALSE" 1368 "Permanent" = "11:FALSE" 1369 "SharedLegacy" = "11:FALSE" 1370 "PackageAs" = "3:1" 1371 "Register" = "3:1" 1372 "Exclude" = "11:FALSE" 1373 "IsDependency" = "11:TRUE" 1374 "IsolateTo" = "8:" 1375 } 1376 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E1DF3FF675F8909B8FAF6D7E567FD238" 1611 1377 { 1612 1378 "AssemblyRegister" = "3:1" … … 1615 1381 "ScatterAssemblies" 1616 1382 { 1617 "_ 3FE31B70554DB0FFD370CE867A3673F6"1383 "_E1DF3FF675F8909B8FAF6D7E567FD238" 1618 1384 { 1619 1385 "Name" = "8:HeuristicLab.Clients.Hive.SlaveCore-3.4.dll" … … 1622 1388 } 1623 1389 "SourcePath" = "8:HeuristicLab.Clients.Hive.SlaveCore-3.4.dll" 1624 "TargetName" = "8:"1625 "Tag" = "8:"1626 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1627 "Condition" = "8:"1628 "Transitive" = "11:FALSE"1629 "Vital" = "11:TRUE"1630 "ReadOnly" = "11:FALSE"1631 "Hidden" = "11:FALSE"1632 "System" = "11:FALSE"1633 "Permanent" = "11:FALSE"1634 "SharedLegacy" = "11:FALSE"1635 "PackageAs" = "3:1"1636 "Register" = "3:1"1637 "Exclude" = "11:FALSE"1638 "IsDependency" = "11:TRUE"1639 "IsolateTo" = "8:"1640 }1641 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_54603E2126B94E1B89269E9E1A992867"1642 {1643 "AssemblyRegister" = "3:1"1644 "AssemblyIsInGAC" = "11:FALSE"1645 "AssemblyAsmDisplayName" = "8:HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1646 "ScatterAssemblies"1647 {1648 "_54603E2126B94E1B89269E9E1A992867"1649 {1650 "Name" = "8:HeuristicLab.Core-3.3.dll"1651 "Attributes" = "3:512"1652 }1653 }1654 "SourcePath" = "8:HeuristicLab.Core-3.3.dll"1655 "TargetName" = "8:"1656 "Tag" = "8:"1657 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1658 "Condition" = "8:"1659 "Transitive" = "11:FALSE"1660 "Vital" = "11:TRUE"1661 "ReadOnly" = "11:FALSE"1662 "Hidden" = "11:FALSE"1663 "System" = "11:FALSE"1664 "Permanent" = "11:FALSE"1665 "SharedLegacy" = "11:FALSE"1666 "PackageAs" = "3:1"1667 "Register" = "3:1"1668 "Exclude" = "11:FALSE"1669 "IsDependency" = "11:TRUE"1670 "IsolateTo" = "8:"1671 }1672 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_55135A3DD6B0538FA808DFB0A9400CE2"1673 {1674 "AssemblyRegister" = "3:1"1675 "AssemblyIsInGAC" = "11:FALSE"1676 "AssemblyAsmDisplayName" = "8:HeuristicLab.Clients.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1677 "ScatterAssemblies"1678 {1679 "_55135A3DD6B0538FA808DFB0A9400CE2"1680 {1681 "Name" = "8:HeuristicLab.Clients.Common-3.3.dll"1682 "Attributes" = "3:512"1683 }1684 }1685 "SourcePath" = "8:HeuristicLab.Clients.Common-3.3.dll"1686 "TargetName" = "8:"1687 "Tag" = "8:"1688 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1689 "Condition" = "8:"1690 "Transitive" = "11:FALSE"1691 "Vital" = "11:TRUE"1692 "ReadOnly" = "11:FALSE"1693 "Hidden" = "11:FALSE"1694 "System" = "11:FALSE"1695 "Permanent" = "11:FALSE"1696 "SharedLegacy" = "11:FALSE"1697 "PackageAs" = "3:1"1698 "Register" = "3:1"1699 "Exclude" = "11:FALSE"1700 "IsDependency" = "11:TRUE"1701 "IsolateTo" = "8:"1702 }1703 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5D5907CEB0534D975C20E25B9F511C5D"1704 {1705 "AssemblyRegister" = "3:1"1706 "AssemblyIsInGAC" = "11:FALSE"1707 "AssemblyAsmDisplayName" = "8:HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1708 "ScatterAssemblies"1709 {1710 "_5D5907CEB0534D975C20E25B9F511C5D"1711 {1712 "Name" = "8:HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.3.dll"1713 "Attributes" = "3:512"1714 }1715 }1716 "SourcePath" = "8:HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.3.dll"1717 "TargetName" = "8:"1718 "Tag" = "8:"1719 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1720 "Condition" = "8:"1721 "Transitive" = "11:FALSE"1722 "Vital" = "11:TRUE"1723 "ReadOnly" = "11:FALSE"1724 "Hidden" = "11:FALSE"1725 "System" = "11:FALSE"1726 "Permanent" = "11:FALSE"1727 "SharedLegacy" = "11:FALSE"1728 "PackageAs" = "3:1"1729 "Register" = "3:1"1730 "Exclude" = "11:FALSE"1731 "IsDependency" = "11:TRUE"1732 "IsolateTo" = "8:"1733 }1734 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5E14D1BE4E00FF26EC3A0FD85DE6F87E"1735 {1736 "AssemblyRegister" = "3:1"1737 "AssemblyIsInGAC" = "11:FALSE"1738 "AssemblyAsmDisplayName" = "8:HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1739 "ScatterAssemblies"1740 {1741 "_5E14D1BE4E00FF26EC3A0FD85DE6F87E"1742 {1743 "Name" = "8:HeuristicLab.Common-3.3.dll"1744 "Attributes" = "3:512"1745 }1746 }1747 "SourcePath" = "8:HeuristicLab.Common-3.3.dll"1748 "TargetName" = "8:"1749 "Tag" = "8:"1750 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1751 "Condition" = "8:"1752 "Transitive" = "11:FALSE"1753 "Vital" = "11:TRUE"1754 "ReadOnly" = "11:FALSE"1755 "Hidden" = "11:FALSE"1756 "System" = "11:FALSE"1757 "Permanent" = "11:FALSE"1758 "SharedLegacy" = "11:FALSE"1759 "PackageAs" = "3:1"1760 "Register" = "3:1"1761 "Exclude" = "11:FALSE"1762 "IsDependency" = "11:TRUE"1763 "IsolateTo" = "8:"1764 }1765 "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_640A7525E7974E7BAE45D8D70EF04E26"1766 {1767 "SourcePath" = "8:..\\HeuristicLab.Clients.Hive.Slave.SlaveWindowsServiceSetup\\hl_logo.jpg"1768 "TargetName" = "8:hl_logo.jpg"1769 "Tag" = "8:"1770 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1771 "Condition" = "8:"1772 "Transitive" = "11:FALSE"1773 "Vital" = "11:TRUE"1774 "ReadOnly" = "11:FALSE"1775 "Hidden" = "11:FALSE"1776 "System" = "11:FALSE"1777 "Permanent" = "11:FALSE"1778 "SharedLegacy" = "11:FALSE"1779 "PackageAs" = "3:1"1780 "Register" = "3:1"1781 "Exclude" = "11:FALSE"1782 "IsDependency" = "11:FALSE"1783 "IsolateTo" = "8:"1784 }1785 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_704A65445577390DC7571CC5D8FDD3EE"1786 {1787 "AssemblyRegister" = "3:1"1788 "AssemblyIsInGAC" = "11:FALSE"1789 "AssemblyAsmDisplayName" = "8:HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1790 "ScatterAssemblies"1791 {1792 "_704A65445577390DC7571CC5D8FDD3EE"1793 {1794 "Name" = "8:HeuristicLab.Persistence-3.3.dll"1795 "Attributes" = "3:512"1796 }1797 }1798 "SourcePath" = "8:HeuristicLab.Persistence-3.3.dll"1799 "TargetName" = "8:"1800 "Tag" = "8:"1801 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1802 "Condition" = "8:"1803 "Transitive" = "11:FALSE"1804 "Vital" = "11:TRUE"1805 "ReadOnly" = "11:FALSE"1806 "Hidden" = "11:FALSE"1807 "System" = "11:FALSE"1808 "Permanent" = "11:FALSE"1809 "SharedLegacy" = "11:FALSE"1810 "PackageAs" = "3:1"1811 "Register" = "3:1"1812 "Exclude" = "11:FALSE"1813 "IsDependency" = "11:TRUE"1814 "IsolateTo" = "8:"1815 }1816 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_77E6603D3D7BF3442BB71232DB6909F5"1817 {1818 "AssemblyRegister" = "3:1"1819 "AssemblyIsInGAC" = "11:FALSE"1820 "AssemblyAsmDisplayName" = "8:HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1821 "ScatterAssemblies"1822 {1823 "_77E6603D3D7BF3442BB71232DB6909F5"1824 {1825 "Name" = "8:HeuristicLab.Optimization-3.3.dll"1826 "Attributes" = "3:512"1827 }1828 }1829 "SourcePath" = "8:HeuristicLab.Optimization-3.3.dll"1830 "TargetName" = "8:"1831 "Tag" = "8:"1832 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1833 "Condition" = "8:"1834 "Transitive" = "11:FALSE"1835 "Vital" = "11:TRUE"1836 "ReadOnly" = "11:FALSE"1837 "Hidden" = "11:FALSE"1838 "System" = "11:FALSE"1839 "Permanent" = "11:FALSE"1840 "SharedLegacy" = "11:FALSE"1841 "PackageAs" = "3:1"1842 "Register" = "3:1"1843 "Exclude" = "11:FALSE"1844 "IsDependency" = "11:TRUE"1845 "IsolateTo" = "8:"1846 }1847 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_78C356402539CF6D24705B7DF592053A"1848 {1849 "AssemblyRegister" = "3:1"1850 "AssemblyIsInGAC" = "11:FALSE"1851 "AssemblyAsmDisplayName" = "8:HeuristicLab.Problems.DataAnalysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1852 "ScatterAssemblies"1853 {1854 "_78C356402539CF6D24705B7DF592053A"1855 {1856 "Name" = "8:HeuristicLab.Problems.DataAnalysis-3.3.dll"1857 "Attributes" = "3:512"1858 }1859 }1860 "SourcePath" = "8:HeuristicLab.Problems.DataAnalysis-3.3.dll"1861 "TargetName" = "8:"1862 "Tag" = "8:"1863 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1864 "Condition" = "8:"1865 "Transitive" = "11:FALSE"1866 "Vital" = "11:TRUE"1867 "ReadOnly" = "11:FALSE"1868 "Hidden" = "11:FALSE"1869 "System" = "11:FALSE"1870 "Permanent" = "11:FALSE"1871 "SharedLegacy" = "11:FALSE"1872 "PackageAs" = "3:1"1873 "Register" = "3:1"1874 "Exclude" = "11:FALSE"1875 "IsDependency" = "11:TRUE"1876 "IsolateTo" = "8:"1877 }1878 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7973651787827518B0E6A86DC6DAFC09"1879 {1880 "AssemblyRegister" = "3:1"1881 "AssemblyIsInGAC" = "11:FALSE"1882 "AssemblyAsmDisplayName" = "8:HeuristicLab.Tracing-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1883 "ScatterAssemblies"1884 {1885 "_7973651787827518B0E6A86DC6DAFC09"1886 {1887 "Name" = "8:HeuristicLab.Tracing-3.3.dll"1888 "Attributes" = "3:512"1889 }1890 }1891 "SourcePath" = "8:HeuristicLab.Tracing-3.3.dll"1892 "TargetName" = "8:"1893 "Tag" = "8:"1894 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1895 "Condition" = "8:"1896 "Transitive" = "11:FALSE"1897 "Vital" = "11:TRUE"1898 "ReadOnly" = "11:FALSE"1899 "Hidden" = "11:FALSE"1900 "System" = "11:FALSE"1901 "Permanent" = "11:FALSE"1902 "SharedLegacy" = "11:FALSE"1903 "PackageAs" = "3:1"1904 "Register" = "3:1"1905 "Exclude" = "11:FALSE"1906 "IsDependency" = "11:TRUE"1907 "IsolateTo" = "8:"1908 }1909 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7AAAACEA48C0419227DB0281A1345FC1"1910 {1911 "AssemblyRegister" = "3:1"1912 "AssemblyIsInGAC" = "11:FALSE"1913 "AssemblyAsmDisplayName" = "8:HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1914 "ScatterAssemblies"1915 {1916 "_7AAAACEA48C0419227DB0281A1345FC1"1917 {1918 "Name" = "8:HeuristicLab.Operators-3.3.dll"1919 "Attributes" = "3:512"1920 }1921 }1922 "SourcePath" = "8:HeuristicLab.Operators-3.3.dll"1923 "TargetName" = "8:"1924 "Tag" = "8:"1925 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1926 "Condition" = "8:"1927 "Transitive" = "11:FALSE"1928 "Vital" = "11:TRUE"1929 "ReadOnly" = "11:FALSE"1930 "Hidden" = "11:FALSE"1931 "System" = "11:FALSE"1932 "Permanent" = "11:FALSE"1933 "SharedLegacy" = "11:FALSE"1934 "PackageAs" = "3:1"1935 "Register" = "3:1"1936 "Exclude" = "11:FALSE"1937 "IsDependency" = "11:TRUE"1938 "IsolateTo" = "8:"1939 }1940 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7D5691C24687048133BE11029AB9CF7B"1941 {1942 "AssemblyRegister" = "3:1"1943 "AssemblyIsInGAC" = "11:FALSE"1944 "AssemblyAsmDisplayName" = "8:ALGLIB-3.1.0, Version=3.1.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1945 "ScatterAssemblies"1946 {1947 "_7D5691C24687048133BE11029AB9CF7B"1948 {1949 "Name" = "8:ALGLIB-3.1.0.dll"1950 "Attributes" = "3:512"1951 }1952 }1953 "SourcePath" = "8:ALGLIB-3.1.0.dll"1954 "TargetName" = "8:"1955 "Tag" = "8:"1956 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1957 "Condition" = "8:"1958 "Transitive" = "11:FALSE"1959 "Vital" = "11:TRUE"1960 "ReadOnly" = "11:FALSE"1961 "Hidden" = "11:FALSE"1962 "System" = "11:FALSE"1963 "Permanent" = "11:FALSE"1964 "SharedLegacy" = "11:FALSE"1965 "PackageAs" = "3:1"1966 "Register" = "3:1"1967 "Exclude" = "11:FALSE"1968 "IsDependency" = "11:TRUE"1969 "IsolateTo" = "8:"1970 }1971 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_81441BCD960E8D180CA73B44E6496573"1972 {1973 "AssemblyRegister" = "3:1"1974 "AssemblyIsInGAC" = "11:FALSE"1975 "AssemblyAsmDisplayName" = "8:HeuristicLab.Optimization.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"1976 "ScatterAssemblies"1977 {1978 "_81441BCD960E8D180CA73B44E6496573"1979 {1980 "Name" = "8:HeuristicLab.Optimization.Operators-3.3.dll"1981 "Attributes" = "3:512"1982 }1983 }1984 "SourcePath" = "8:HeuristicLab.Optimization.Operators-3.3.dll"1985 "TargetName" = "8:"1986 "Tag" = "8:"1987 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"1988 "Condition" = "8:"1989 "Transitive" = "11:FALSE"1990 "Vital" = "11:TRUE"1991 "ReadOnly" = "11:FALSE"1992 "Hidden" = "11:FALSE"1993 "System" = "11:FALSE"1994 "Permanent" = "11:FALSE"1995 "SharedLegacy" = "11:FALSE"1996 "PackageAs" = "3:1"1997 "Register" = "3:1"1998 "Exclude" = "11:FALSE"1999 "IsDependency" = "11:TRUE"2000 "IsolateTo" = "8:"2001 }2002 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8C237E399EBE6DD0A0F139694755FE3E"2003 {2004 "AssemblyRegister" = "3:1"2005 "AssemblyIsInGAC" = "11:FALSE"2006 "AssemblyAsmDisplayName" = "8:HeuristicLab.Hive-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2007 "ScatterAssemblies"2008 {2009 "_8C237E399EBE6DD0A0F139694755FE3E"2010 {2011 "Name" = "8:HeuristicLab.Hive-3.4.dll"2012 "Attributes" = "3:512"2013 }2014 }2015 "SourcePath" = "8:HeuristicLab.Hive-3.4.dll"2016 "TargetName" = "8:"2017 "Tag" = "8:"2018 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2019 "Condition" = "8:"2020 "Transitive" = "11:FALSE"2021 "Vital" = "11:TRUE"2022 "ReadOnly" = "11:FALSE"2023 "Hidden" = "11:FALSE"2024 "System" = "11:FALSE"2025 "Permanent" = "11:FALSE"2026 "SharedLegacy" = "11:FALSE"2027 "PackageAs" = "3:1"2028 "Register" = "3:1"2029 "Exclude" = "11:FALSE"2030 "IsDependency" = "11:TRUE"2031 "IsolateTo" = "8:"2032 }2033 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8EEE42CDCA86A0FFC63F1615EBF5056D"2034 {2035 "AssemblyRegister" = "3:1"2036 "AssemblyIsInGAC" = "11:FALSE"2037 "AssemblyAsmDisplayName" = "8:HeuristicLab.Random-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2038 "ScatterAssemblies"2039 {2040 "_8EEE42CDCA86A0FFC63F1615EBF5056D"2041 {2042 "Name" = "8:HeuristicLab.Random-3.3.dll"2043 "Attributes" = "3:512"2044 }2045 }2046 "SourcePath" = "8:HeuristicLab.Random-3.3.dll"2047 "TargetName" = "8:"2048 "Tag" = "8:"2049 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2050 "Condition" = "8:"2051 "Transitive" = "11:FALSE"2052 "Vital" = "11:TRUE"2053 "ReadOnly" = "11:FALSE"2054 "Hidden" = "11:FALSE"2055 "System" = "11:FALSE"2056 "Permanent" = "11:FALSE"2057 "SharedLegacy" = "11:FALSE"2058 "PackageAs" = "3:1"2059 "Register" = "3:1"2060 "Exclude" = "11:FALSE"2061 "IsDependency" = "11:TRUE"2062 "IsolateTo" = "8:"2063 }2064 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9541F928C568C75CE14288DDBA5E5F6A"2065 {2066 "AssemblyRegister" = "3:1"2067 "AssemblyIsInGAC" = "11:FALSE"2068 "AssemblyAsmDisplayName" = "8:HeuristicLab.MainForm.WindowsForms-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2069 "ScatterAssemblies"2070 {2071 "_9541F928C568C75CE14288DDBA5E5F6A"2072 {2073 "Name" = "8:HeuristicLab.MainForm.WindowsForms-3.3.dll"2074 "Attributes" = "3:512"2075 }2076 }2077 "SourcePath" = "8:HeuristicLab.MainForm.WindowsForms-3.3.dll"2078 "TargetName" = "8:"2079 "Tag" = "8:"2080 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2081 "Condition" = "8:"2082 "Transitive" = "11:FALSE"2083 "Vital" = "11:TRUE"2084 "ReadOnly" = "11:FALSE"2085 "Hidden" = "11:FALSE"2086 "System" = "11:FALSE"2087 "Permanent" = "11:FALSE"2088 "SharedLegacy" = "11:FALSE"2089 "PackageAs" = "3:1"2090 "Register" = "3:1"2091 "Exclude" = "11:FALSE"2092 "IsDependency" = "11:TRUE"2093 "IsolateTo" = "8:"2094 }2095 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_994BD5479A8C57E376416F82FD380401"2096 {2097 "AssemblyRegister" = "3:1"2098 "AssemblyIsInGAC" = "11:FALSE"2099 "AssemblyAsmDisplayName" = "8:HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2100 "ScatterAssemblies"2101 {2102 "_994BD5479A8C57E376416F82FD380401"2103 {2104 "Name" = "8:HeuristicLab.PluginInfrastructure-3.3.dll"2105 "Attributes" = "3:512"2106 }2107 }2108 "SourcePath" = "8:HeuristicLab.PluginInfrastructure-3.3.dll"2109 "TargetName" = "8:"2110 "Tag" = "8:"2111 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2112 "Condition" = "8:"2113 "Transitive" = "11:FALSE"2114 "Vital" = "11:TRUE"2115 "ReadOnly" = "11:FALSE"2116 "Hidden" = "11:FALSE"2117 "System" = "11:FALSE"2118 "Permanent" = "11:FALSE"2119 "SharedLegacy" = "11:FALSE"2120 "PackageAs" = "3:1"2121 "Register" = "3:1"2122 "Exclude" = "11:FALSE"2123 "IsDependency" = "11:TRUE"2124 "IsolateTo" = "8:"2125 }2126 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A14FD9B75FFDC0C9FDE8558B89624A51"2127 {2128 "AssemblyRegister" = "3:1"2129 "AssemblyIsInGAC" = "11:FALSE"2130 "AssemblyAsmDisplayName" = "8:HeuristicLab.Core.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2131 "ScatterAssemblies"2132 {2133 "_A14FD9B75FFDC0C9FDE8558B89624A51"2134 {2135 "Name" = "8:HeuristicLab.Core.Views-3.3.dll"2136 "Attributes" = "3:512"2137 }2138 }2139 "SourcePath" = "8:HeuristicLab.Core.Views-3.3.dll"2140 "TargetName" = "8:"2141 "Tag" = "8:"2142 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2143 "Condition" = "8:"2144 "Transitive" = "11:FALSE"2145 "Vital" = "11:TRUE"2146 "ReadOnly" = "11:FALSE"2147 "Hidden" = "11:FALSE"2148 "System" = "11:FALSE"2149 "Permanent" = "11:FALSE"2150 "SharedLegacy" = "11:FALSE"2151 "PackageAs" = "3:1"2152 "Register" = "3:1"2153 "Exclude" = "11:FALSE"2154 "IsDependency" = "11:TRUE"2155 "IsolateTo" = "8:"2156 }2157 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B5C66A75EA32E84EF67C8D1D7920427F"2158 {2159 "AssemblyRegister" = "3:1"2160 "AssemblyIsInGAC" = "11:FALSE"2161 "AssemblyAsmDisplayName" = "8:HeuristicLab.Problems.DataAnalysis.Regression-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2162 "ScatterAssemblies"2163 {2164 "_B5C66A75EA32E84EF67C8D1D7920427F"2165 {2166 "Name" = "8:HeuristicLab.Problems.DataAnalysis.Regression-3.3.dll"2167 "Attributes" = "3:512"2168 }2169 }2170 "SourcePath" = "8:HeuristicLab.Problems.DataAnalysis.Regression-3.3.dll"2171 "TargetName" = "8:"2172 "Tag" = "8:"2173 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2174 "Condition" = "8:"2175 "Transitive" = "11:FALSE"2176 "Vital" = "11:TRUE"2177 "ReadOnly" = "11:FALSE"2178 "Hidden" = "11:FALSE"2179 "System" = "11:FALSE"2180 "Permanent" = "11:FALSE"2181 "SharedLegacy" = "11:FALSE"2182 "PackageAs" = "3:1"2183 "Register" = "3:1"2184 "Exclude" = "11:FALSE"2185 "IsDependency" = "11:TRUE"2186 "IsolateTo" = "8:"2187 }2188 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BA24EB8379AD50E05C7274CF07672B8C"2189 {2190 "AssemblyRegister" = "3:1"2191 "AssemblyIsInGAC" = "11:FALSE"2192 "AssemblyAsmDisplayName" = "8:WeifenLuo.WinFormsUI.Docking-2.3.1, Version=2.3.1.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2193 "ScatterAssemblies"2194 {2195 "_BA24EB8379AD50E05C7274CF07672B8C"2196 {2197 "Name" = "8:WeifenLuo.WinFormsUI.Docking-2.3.1.dll"2198 "Attributes" = "3:512"2199 }2200 }2201 "SourcePath" = "8:WeifenLuo.WinFormsUI.Docking-2.3.1.dll"2202 "TargetName" = "8:"2203 "Tag" = "8:"2204 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2205 "Condition" = "8:"2206 "Transitive" = "11:FALSE"2207 "Vital" = "11:TRUE"2208 "ReadOnly" = "11:FALSE"2209 "Hidden" = "11:FALSE"2210 "System" = "11:FALSE"2211 "Permanent" = "11:FALSE"2212 "SharedLegacy" = "11:FALSE"2213 "PackageAs" = "3:1"2214 "Register" = "3:1"2215 "Exclude" = "11:FALSE"2216 "IsDependency" = "11:TRUE"2217 "IsolateTo" = "8:"2218 }2219 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C1676998EB0F5C0121CB5CEA9E93283D"2220 {2221 "AssemblyRegister" = "3:1"2222 "AssemblyIsInGAC" = "11:FALSE"2223 "AssemblyAsmDisplayName" = "8:HeuristicLab.Clients.Hive-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2224 "ScatterAssemblies"2225 {2226 "_C1676998EB0F5C0121CB5CEA9E93283D"2227 {2228 "Name" = "8:HeuristicLab.Clients.Hive-3.4.dll"2229 "Attributes" = "3:512"2230 }2231 }2232 "SourcePath" = "8:HeuristicLab.Clients.Hive-3.4.dll"2233 "TargetName" = "8:"2234 "Tag" = "8:"2235 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2236 "Condition" = "8:"2237 "Transitive" = "11:FALSE"2238 "Vital" = "11:TRUE"2239 "ReadOnly" = "11:FALSE"2240 "Hidden" = "11:FALSE"2241 "System" = "11:FALSE"2242 "Permanent" = "11:FALSE"2243 "SharedLegacy" = "11:FALSE"2244 "PackageAs" = "3:1"2245 "Register" = "3:1"2246 "Exclude" = "11:FALSE"2247 "IsDependency" = "11:TRUE"2248 "IsolateTo" = "8:"2249 }2250 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CD5508A4F6BAF97236551AEAF3410AC3"2251 {2252 "AssemblyRegister" = "3:1"2253 "AssemblyIsInGAC" = "11:FALSE"2254 "AssemblyAsmDisplayName" = "8:HeuristicLab.Analysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2255 "ScatterAssemblies"2256 {2257 "_CD5508A4F6BAF97236551AEAF3410AC3"2258 {2259 "Name" = "8:HeuristicLab.Analysis-3.3.dll"2260 "Attributes" = "3:512"2261 }2262 }2263 "SourcePath" = "8:HeuristicLab.Analysis-3.3.dll"2264 "TargetName" = "8:"2265 "Tag" = "8:"2266 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2267 "Condition" = "8:"2268 "Transitive" = "11:FALSE"2269 "Vital" = "11:TRUE"2270 "ReadOnly" = "11:FALSE"2271 "Hidden" = "11:FALSE"2272 "System" = "11:FALSE"2273 "Permanent" = "11:FALSE"2274 "SharedLegacy" = "11:FALSE"2275 "PackageAs" = "3:1"2276 "Register" = "3:1"2277 "Exclude" = "11:FALSE"2278 "IsDependency" = "11:TRUE"2279 "IsolateTo" = "8:"2280 }2281 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CFACC8F36F259F4C16FD44BDEF181CB2"2282 {2283 "AssemblyRegister" = "3:1"2284 "AssemblyIsInGAC" = "11:FALSE"2285 "AssemblyAsmDisplayName" = "8:HeuristicLab.Clients.Hive.Slave.Views-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2286 "ScatterAssemblies"2287 {2288 "_CFACC8F36F259F4C16FD44BDEF181CB2"2289 {2290 "Name" = "8:HeuristicLab.Clients.Hive.Slave.Views-3.4.dll"2291 "Attributes" = "3:512"2292 }2293 }2294 "SourcePath" = "8:HeuristicLab.Clients.Hive.Slave.Views-3.4.dll"2295 "TargetName" = "8:"2296 "Tag" = "8:"2297 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2298 "Condition" = "8:"2299 "Transitive" = "11:FALSE"2300 "Vital" = "11:TRUE"2301 "ReadOnly" = "11:FALSE"2302 "Hidden" = "11:FALSE"2303 "System" = "11:FALSE"2304 "Permanent" = "11:FALSE"2305 "SharedLegacy" = "11:FALSE"2306 "PackageAs" = "3:1"2307 "Register" = "3:1"2308 "Exclude" = "11:FALSE"2309 "IsDependency" = "11:TRUE"2310 "IsolateTo" = "8:"2311 }2312 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D025C4662F769895111CABD8FA8A1A64"2313 {2314 "AssemblyRegister" = "3:1"2315 "AssemblyIsInGAC" = "11:FALSE"2316 "AssemblyAsmDisplayName" = "8:LibSVM-1.6.3, Version=1.6.3.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2317 "ScatterAssemblies"2318 {2319 "_D025C4662F769895111CABD8FA8A1A64"2320 {2321 "Name" = "8:LibSVM-1.6.3.dll"2322 "Attributes" = "3:512"2323 }2324 }2325 "SourcePath" = "8:LibSVM-1.6.3.dll"2326 "TargetName" = "8:"2327 "Tag" = "8:"2328 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2329 "Condition" = "8:"2330 "Transitive" = "11:FALSE"2331 "Vital" = "11:TRUE"2332 "ReadOnly" = "11:FALSE"2333 "Hidden" = "11:FALSE"2334 "System" = "11:FALSE"2335 "Permanent" = "11:FALSE"2336 "SharedLegacy" = "11:FALSE"2337 "PackageAs" = "3:1"2338 "Register" = "3:1"2339 "Exclude" = "11:FALSE"2340 "IsDependency" = "11:TRUE"2341 "IsolateTo" = "8:"2342 }2343 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D08099E381A7CF2FACD331CDB976D248"2344 {2345 "AssemblyRegister" = "3:1"2346 "AssemblyIsInGAC" = "11:FALSE"2347 "AssemblyAsmDisplayName" = "8:HeuristicLab.Common.Resources-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2348 "ScatterAssemblies"2349 {2350 "_D08099E381A7CF2FACD331CDB976D248"2351 {2352 "Name" = "8:HeuristicLab.Common.Resources-3.3.dll"2353 "Attributes" = "3:512"2354 }2355 }2356 "SourcePath" = "8:HeuristicLab.Common.Resources-3.3.dll"2357 "TargetName" = "8:"2358 "Tag" = "8:"2359 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2360 "Condition" = "8:"2361 "Transitive" = "11:FALSE"2362 "Vital" = "11:TRUE"2363 "ReadOnly" = "11:FALSE"2364 "Hidden" = "11:FALSE"2365 "System" = "11:FALSE"2366 "Permanent" = "11:FALSE"2367 "SharedLegacy" = "11:FALSE"2368 "PackageAs" = "3:1"2369 "Register" = "3:1"2370 "Exclude" = "11:FALSE"2371 "IsDependency" = "11:TRUE"2372 "IsolateTo" = "8:"2373 }2374 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E30FC5872698841012F7C59E21B0E562"2375 {2376 "AssemblyRegister" = "3:1"2377 "AssemblyIsInGAC" = "11:FALSE"2378 "AssemblyAsmDisplayName" = "8:ICSharpCode.SharpZipLib, Version=0.85.4.369, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL"2379 "ScatterAssemblies"2380 {2381 "_E30FC5872698841012F7C59E21B0E562"2382 {2383 "Name" = "8:ICSharpCode.SharpZipLib.dll"2384 "Attributes" = "3:512"2385 }2386 }2387 "SourcePath" = "8:ICSharpCode.SharpZipLib.dll"2388 1390 "TargetName" = "8:" 2389 1391 "Tag" = "8:" … … 2434 1436 "IsolateTo" = "8:" 2435 1437 } 2436 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E9760F1F4C7EB72F561B4824A5E1A5B6"2437 {2438 "AssemblyRegister" = "3:1"2439 "AssemblyIsInGAC" = "11:FALSE"2440 "AssemblyAsmDisplayName" = "8:HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"2441 "ScatterAssemblies"2442 {2443 "_E9760F1F4C7EB72F561B4824A5E1A5B6"2444 {2445 "Name" = "8:HeuristicLab.Parameters-3.3.dll"2446 "Attributes" = "3:512"2447 }2448 }2449 "SourcePath" = "8:HeuristicLab.Parameters-3.3.dll"2450 "TargetName" = "8:"2451 "Tag" = "8:"2452 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D"2453 "Condition" = "8:"2454 "Transitive" = "11:FALSE"2455 "Vital" = "11:TRUE"2456 "ReadOnly" = "11:FALSE"2457 "Hidden" = "11:FALSE"2458 "System" = "11:FALSE"2459 "Permanent" = "11:FALSE"2460 "SharedLegacy" = "11:FALSE"2461 "PackageAs" = "3:1"2462 "Register" = "3:1"2463 "Exclude" = "11:FALSE"2464 "IsDependency" = "11:TRUE"2465 "IsolateTo" = "8:"2466 }2467 1438 "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F010F086FC3D4C1EA55A80E7D9230283" 2468 1439 { … … 2485 1456 "IsolateTo" = "8:" 2486 1457 } 2487 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F5BA91E3E303CCAE08D77D7515933820" 2488 { 2489 "AssemblyRegister" = "3:1" 2490 "AssemblyIsInGAC" = "11:FALSE" 2491 "AssemblyAsmDisplayName" = "8:HeuristicLab.Selection-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" 2492 "ScatterAssemblies" 2493 { 2494 "_F5BA91E3E303CCAE08D77D7515933820" 2495 { 2496 "Name" = "8:HeuristicLab.Selection-3.3.dll" 2497 "Attributes" = "3:512" 2498 } 2499 } 2500 "SourcePath" = "8:HeuristicLab.Selection-3.3.dll" 2501 "TargetName" = "8:" 2502 "Tag" = "8:" 2503 "Folder" = "8:_B1DFCCA68C7D4DFDAC136FAC678F2E8D" 2504 "Condition" = "8:" 2505 "Transitive" = "11:FALSE" 2506 "Vital" = "11:TRUE" 2507 "ReadOnly" = "11:FALSE" 2508 "Hidden" = "11:FALSE" 2509 "System" = "11:FALSE" 2510 "Permanent" = "11:FALSE" 2511 "SharedLegacy" = "11:FALSE" 2512 "PackageAs" = "3:1" 2513 "Register" = "3:1" 2514 "Exclude" = "11:FALSE" 2515 "IsDependency" = "11:TRUE" 2516 "IsolateTo" = "8:" 2517 } 2518 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FFDF6A5675A3103C6836AC7A08B2CEA9" 1458 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F0830FF0B893997415F4A4119B7871AD" 2519 1459 { 2520 1460 "AssemblyRegister" = "3:1" … … 2523 1463 "ScatterAssemblies" 2524 1464 { 2525 "_F FDF6A5675A3103C6836AC7A08B2CEA9"1465 "_F0830FF0B893997415F4A4119B7871AD" 2526 1466 { 2527 1467 "Name" = "8:HeuristicLab.Data-3.3.dll" … … 2626 1566 "ProductName" = "8:HeuristicLab Hive Slave TrayIcon" 2627 1567 "ProductCode" = "8:{91E58951-03BD-4AD9-A171-2ACB08CBB491}" 2628 "PackageCode" = "8:{A 152CB81-323D-4F1D-922F-927DE3C3E08F}"1568 "PackageCode" = "8:{A461AF90-9CDF-4CB7-83FC-87809A9C2A6F}" 2629 1569 "UpgradeCode" = "8:{0C2D9DD1-798B-40F2-8F5B-D3F9540685EE}" 2630 1570 "AspNetVersion" = "8:4.0.30319.0" -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Tests/HeuristicLab.Clients.Hive.Tests-3.4.csproj
r6452 r6696 223 223 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Problems.Knapsack.Views-3.3.dll</HintPath> 224 224 </Reference> 225 <Reference Include="HeuristicLab.Problems.MetaOptimization-3.3">226 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Problems.MetaOptimization-3.3.dll</HintPath>227 </Reference>228 <Reference Include="HeuristicLab.Problems.MetaOptimization.Views-3.3">229 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Problems.MetaOptimization.Views-3.3.dll</HintPath>230 </Reference>231 225 <Reference Include="HeuristicLab.Problems.OneMax-3.3"> 232 226 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Problems.OneMax-3.3.dll</HintPath> … … 314 308 <Reference Include="WeifenLuo.WinFormsUI.Docking-2.3.1"> 315 309 <HintPath>C:\Program Files\HeuristicLab 3.3\WeifenLuo.WinFormsUI.Docking-2.3.1.dll</HintPath> 316 </Reference>317 <Reference Include="ZedGraph">318 <HintPath>C:\Program Files\HeuristicLab 3.3\ZedGraph.dll</HintPath>319 310 </Reference> 320 311 </ItemGroup> -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Hive 3.4.sln
r6689 r6696 244 244 {BA8001DE-E83C-4B1F-8B2E-2695C4222491}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 245 245 {BA8001DE-E83C-4B1F-8B2E-2695C4222491}.Debug|Any CPU.Build.0 = Debug|Any CPU 246 {BA8001DE-E83C-4B1F-8B2E-2695C4222491}.Debug|Mixed Platforms.ActiveCfg = Debug| x86247 {BA8001DE-E83C-4B1F-8B2E-2695C4222491}.Debug|Mixed Platforms.Build.0 = Debug| x86246 {BA8001DE-E83C-4B1F-8B2E-2695C4222491}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 247 {BA8001DE-E83C-4B1F-8B2E-2695C4222491}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 248 248 {BA8001DE-E83C-4B1F-8B2E-2695C4222491}.Debug|x64.ActiveCfg = Debug|x86 249 249 {BA8001DE-E83C-4B1F-8B2E-2695C4222491}.Debug|x86.ActiveCfg = Debug|x86 … … 271 271 {7C4B1DE4-FC9A-4448-BCF8-3CB3FA3CB8FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 272 272 {7C4B1DE4-FC9A-4448-BCF8-3CB3FA3CB8FA}.Debug|Any CPU.Build.0 = Debug|Any CPU 273 {7C4B1DE4-FC9A-4448-BCF8-3CB3FA3CB8FA}.Debug|Mixed Platforms.ActiveCfg = Debug| x86274 {7C4B1DE4-FC9A-4448-BCF8-3CB3FA3CB8FA}.Debug|Mixed Platforms.Build.0 = Debug| x86273 {7C4B1DE4-FC9A-4448-BCF8-3CB3FA3CB8FA}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 274 {7C4B1DE4-FC9A-4448-BCF8-3CB3FA3CB8FA}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 275 275 {7C4B1DE4-FC9A-4448-BCF8-3CB3FA3CB8FA}.Debug|x64.ActiveCfg = Debug|x86 276 276 {7C4B1DE4-FC9A-4448-BCF8-3CB3FA3CB8FA}.Debug|x86.ActiveCfg = Debug|x86 … … 297 297 {02766ECC-D0F5-4115-9ECA-47409167B638}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 298 298 {02766ECC-D0F5-4115-9ECA-47409167B638}.Debug|Any CPU.Build.0 = Debug|Any CPU 299 {02766ECC-D0F5-4115-9ECA-47409167B638}.Debug|Mixed Platforms.ActiveCfg = Debug| x86300 {02766ECC-D0F5-4115-9ECA-47409167B638}.Debug|Mixed Platforms.Build.0 = Debug| x86299 {02766ECC-D0F5-4115-9ECA-47409167B638}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 300 {02766ECC-D0F5-4115-9ECA-47409167B638}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 301 301 {02766ECC-D0F5-4115-9ECA-47409167B638}.Debug|x64.ActiveCfg = Debug|x64 302 302 {02766ECC-D0F5-4115-9ECA-47409167B638}.Debug|x64.Build.0 = Debug|x64 … … 313 313 {2C036542-5451-4A23-AFF6-87575C7BAFE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 314 314 {2C036542-5451-4A23-AFF6-87575C7BAFE7}.Debug|Any CPU.Build.0 = Debug|Any CPU 315 {2C036542-5451-4A23-AFF6-87575C7BAFE7}.Debug|Mixed Platforms.ActiveCfg = Debug| x64316 {2C036542-5451-4A23-AFF6-87575C7BAFE7}.Debug|Mixed Platforms.Build.0 = Debug| x64315 {2C036542-5451-4A23-AFF6-87575C7BAFE7}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 316 {2C036542-5451-4A23-AFF6-87575C7BAFE7}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 317 317 {2C036542-5451-4A23-AFF6-87575C7BAFE7}.Debug|x64.ActiveCfg = Debug|x64 318 318 {2C036542-5451-4A23-AFF6-87575C7BAFE7}.Debug|x64.Build.0 = Debug|x64 … … 345 345 {E37F15E0-D0D6-4C6E-AD22-0DA514C943A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 346 346 {E37F15E0-D0D6-4C6E-AD22-0DA514C943A3}.Debug|Any CPU.Build.0 = Debug|Any CPU 347 {E37F15E0-D0D6-4C6E-AD22-0DA514C943A3}.Debug|Mixed Platforms.ActiveCfg = Debug| x64348 {E37F15E0-D0D6-4C6E-AD22-0DA514C943A3}.Debug|Mixed Platforms.Build.0 = Debug| x64347 {E37F15E0-D0D6-4C6E-AD22-0DA514C943A3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 348 {E37F15E0-D0D6-4C6E-AD22-0DA514C943A3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 349 349 {E37F15E0-D0D6-4C6E-AD22-0DA514C943A3}.Debug|x64.ActiveCfg = Debug|x64 350 350 {E37F15E0-D0D6-4C6E-AD22-0DA514C943A3}.Debug|x64.Build.0 = Debug|x64 … … 403 403 {DBFD7205-61AF-40EF-8776-3052DEF91CF3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 404 404 {DBFD7205-61AF-40EF-8776-3052DEF91CF3}.Debug|Any CPU.Build.0 = Debug|Any CPU 405 {DBFD7205-61AF-40EF-8776-3052DEF91CF3}.Debug|Mixed Platforms.ActiveCfg = Debug| x64406 {DBFD7205-61AF-40EF-8776-3052DEF91CF3}.Debug|Mixed Platforms.Build.0 = Debug| x64405 {DBFD7205-61AF-40EF-8776-3052DEF91CF3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 406 {DBFD7205-61AF-40EF-8776-3052DEF91CF3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 407 407 {DBFD7205-61AF-40EF-8776-3052DEF91CF3}.Debug|x64.ActiveCfg = Debug|x64 408 408 {DBFD7205-61AF-40EF-8776-3052DEF91CF3}.Debug|x64.Build.0 = Debug|x64 … … 419 419 {5211F1AD-BBA2-4C62-8749-DCA0A25CF5D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 420 420 {5211F1AD-BBA2-4C62-8749-DCA0A25CF5D8}.Debug|Any CPU.Build.0 = Debug|Any CPU 421 {5211F1AD-BBA2-4C62-8749-DCA0A25CF5D8}.Debug|Mixed Platforms.ActiveCfg = Debug| x64422 {5211F1AD-BBA2-4C62-8749-DCA0A25CF5D8}.Debug|Mixed Platforms.Build.0 = Debug| x64421 {5211F1AD-BBA2-4C62-8749-DCA0A25CF5D8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 422 {5211F1AD-BBA2-4C62-8749-DCA0A25CF5D8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 423 423 {5211F1AD-BBA2-4C62-8749-DCA0A25CF5D8}.Debug|x64.ActiveCfg = Debug|x64 424 424 {5211F1AD-BBA2-4C62-8749-DCA0A25CF5D8}.Debug|x64.Build.0 = Debug|x64 … … 435 435 {691FC65E-CA1A-4477-B66F-EB49D21B7393}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 436 436 {691FC65E-CA1A-4477-B66F-EB49D21B7393}.Debug|Any CPU.Build.0 = Debug|Any CPU 437 {691FC65E-CA1A-4477-B66F-EB49D21B7393}.Debug|Mixed Platforms.ActiveCfg = Debug| x86438 {691FC65E-CA1A-4477-B66F-EB49D21B7393}.Debug|Mixed Platforms.Build.0 = Debug| x86437 {691FC65E-CA1A-4477-B66F-EB49D21B7393}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 438 {691FC65E-CA1A-4477-B66F-EB49D21B7393}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 439 439 {691FC65E-CA1A-4477-B66F-EB49D21B7393}.Debug|x64.ActiveCfg = Debug|x86 440 440 {691FC65E-CA1A-4477-B66F-EB49D21B7393}.Debug|x86.ActiveCfg = Debug|x86 -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/Tests/HeuristicLab.HiveEngine-3.4.ConsoleTests.csproj
r6373 r6696 96 96 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath> 97 97 </Reference> 98 <Reference Include="HeuristicLab.Problems.MetaOptimization-3.3, Version=3.3.2.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">99 <HintPath>..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Problems.MetaOptimization-3.3.dll</HintPath>100 </Reference>101 <Reference Include="HeuristicLab.Problems.MetaOptimization.Views-3.3, Version=3.3.2.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">102 <HintPath>..\..\..\..\..\..\..\Program Files\HeuristicLab 3.3\HeuristicLab.Problems.MetaOptimization.Views-3.3.dll</HintPath>103 </Reference>104 98 <Reference Include="HeuristicLab.Problems.TestFunctions-3.3"> 105 99 <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.Problems.TestFunctions-3.3.dll</HintPath>
Note: See TracChangeset
for help on using the changeset viewer.