aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Installer/Tango.MachineStudio.Installer.vdproj
blob: ee492dd8cc210a5fdf6226a3d2d1656bab71415e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: MessageContainer.proto

#define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION
#include "MessageContainer.pb.h"

#include <algorithm>

#include <google/protobuf/stubs/common.h>
#include <google/protobuf/stubs/port.h>
#include <google/protobuf/stubs/once.h>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/wire_format_lite_inl.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/reflection_ops.h>
#include <google/protobuf/wire_format.h>
// @@protoc_insertion_point(includes)

namespace Tango {
namespace PMR {
namespace Common {
class MessageContainerDefaultTypeInternal {
public:
 ::google::protobuf::internal::ExplicitlyConstructed<MessageContainer>
     _instance;
} _MessageContainer_default_instance_;

namespace protobuf_MessageContainer_2eproto {


namespace {

::google::protobuf::Metadata file_level_metadata[1];

}  // namespace

PROTOBUF_CONSTEXPR_VAR ::google::protobuf::internal::ParseTableField
    const TableStruct::entries[] GOOGLE_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
  {0, 0, 0, ::google::protobuf::internal::kInvalidMask, 0, 0},
};

PROTOBUF_CONSTEXPR_VAR ::google::protobuf::internal::AuxillaryParseTableField
    const TableStruct::aux[] GOOGLE_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
  ::google::protobuf::internal::AuxillaryParseTableField(),
};
PROTOBUF_CONSTEXPR_VAR ::google::protobuf::internal::ParseTable const
    TableStruct::schema[] GOOGLE_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
  { NULL, NULL, 0, -1, -1, -1, -1, NULL, false },
};

const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
  ~0u,  // no _has_bits_
  GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MessageContainer, _internal_metadata_),
  ~0u,  // no _extensions_
  ~0u,  // no _oneof_case_
  ~0u,  // no _weak_field_map_
  GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MessageContainer, type_),
  GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MessageContainer, token_),
  GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MessageContainer, continuous_),
  GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MessageContainer, completed_),
  GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MessageContainer, data_),
  GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MessageContainer, crc_),
  GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MessageContainer, error_),
};
static const ::google::protobuf::internal::MigrationSchema schemas[] GOOGLE_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
  { 0, -1, sizeof(MessageContainer)},
};

static ::google::protobuf::Message const * const file_default_instances[] = {
  reinterpret_cast<const ::google::protobuf::Message*>(&_MessageContainer_default_instance_),
};

namespace {

void protobuf_AssignDescriptors() {
  AddDescriptors();
  ::google::protobuf::MessageFactory* factory = NULL;
  AssignDescriptors(
      "MessageContainer.proto", schemas, file_default_instances, TableStruct::offsets, factory,
      file_level_metadata, NULL, NULL);
}

void protobuf_AssignDescriptorsOnce() {
  static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
  ::google::protobuf::GoogleOnceInit(&once, &protobuf_AssignDescriptors);
}

void protobuf_RegisterTypes(const ::std::string&) GOOGLE_ATTRIBUTE_COLD;
void protobuf_RegisterTypes(const ::std::string&) {
  protobuf_AssignDescriptorsOnce();
  ::google::protobuf::internal::RegisterAllTypes(file_level_metadata, 1);
}

}  // namespace
void TableStruct::InitDefaultsImpl() {
  GOOGLE_PROTOBUF_VERIFY_VERSION;

  ::google::protobuf::internal::InitProtobufDefaults();
  ::Tango::PMR::Common::protobuf_MessageType_2eproto::InitDefaults();
  ::Tango::PMR::Common::protobuf_ErrorCode_2eproto::InitDefaults();
  _MessageContainer_default_instance_._instance.DefaultConstruct();
  ::google::protobuf::internal::OnShutdownDestroyMessage(
      &_MessageContainer_default_instance_);}

void InitDefaults() {
  static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
  ::google::protobuf::GoogleOnceInit(&once, &TableStruct::InitDefaultsImpl);
}
namespace {
void AddDescriptorsImpl() {
  InitDefaults();
  static const char descriptor[] GOOGLE_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
      "\n\026MessageContainer.proto\022\020Tango.PMR.Comm"
      "on\032\021MessageType.proto\032\017ErrorCode.proto\"\274"
      "\001\n\020MessageContainer\022+\n\004Type\030\001 \001(\0162\035.Tang"
      "o.PMR.Common.MessageType\022\r\n\005Token\030\002 \001(\t\022"
      "\022\n\nContinuous\030\003 \001(\010\022\021\n\tCompleted\030\004 \001(\010\022\014"
      "\n\004Data\030\005 \001(\014\022\013\n\003CRC\030\006 \001(\r\022*\n\005Error\030\007 \001(\016"
      "2\033.Tango.PMR.Common.ErrorCodeB\034\n\032com.twi"
      "ne.tango.pmr.commonb\006proto3"
  };
  ::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
      descriptor, 307);
  ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile(
    "MessageContainer.proto", &protobuf_RegisterTypes);
  ::Tango::PMR::Common::protobuf_MessageType_2eproto::AddDescriptors();
  ::Tango::PMR::Common::protobuf_ErrorCode_2eproto::AddDescriptors();
}
} // anonymous namespace

void AddDescriptors() {
  static GOOGLE_PROTOBUF_DECLARE_ONCE(once);
  ::google::protobuf::GoogleOnceInit(&once, &AddDescriptorsImpl);
}
// Force AddDescriptors() to be called at dynamic initialization time.
struct StaticDescriptorInitializer {
  StaticDescriptorInitializer() {
    AddDescriptors();
  }
} static_descriptor_initializer;

}  // namespace protobuf_MessageContainer_2eproto


// ===================================================================

#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int MessageContainer::kTypeFieldNumber;
const int MessageContainer::kTokenFieldNumber;
const int MessageContainer::kContinuousFieldNumber;
const int MessageContainer::kCompletedFieldNumber;
const int MessageContainer::kDataFieldNumber;
const int MessageContainer::kCRCFieldNumber;
const int MessageContainer::kErrorFieldNumber;
#endif  // !defined(_MSC_VER) || _MSC_VER >= 1900

MessageContainer::MessageContainer()
  : ::google::protobuf::Message(), _internal_metadata_(NULL) {
  if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) {
    protobuf_MessageContainer_2eproto::InitDefaults();
  }
  SharedCtor();
  // @@protoc_insertion_point(constructor:Tango.PMR.Common.MessageContainer)
}
MessageContainer::MessageContainer(const MessageContainer& from)
  : ::google::protobuf::Message(),
      _internal_metadata_(NULL),
      _cached_size_(0) {
  _internal_metadata_.MergeFrom(from._internal_metadata_);
  token_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  if (from.token().size() > 0) {
    token_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.token_);
  }
  data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  if (from.data().size() > 0) {
    data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.data_);
  }
  ::memcpy(&type_, &from.type_,
    static_cast<size_t>(reinterpret_cast<char*>(&error_) -
    reinterpret_cast<char*>(&type_)) + sizeof(error_));
  // @@protoc_insertion_point(copy_constructor:Tango.PMR.Common.MessageContainer)
}

void MessageContainer::SharedCtor() {
  token_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  ::memset(&type_, 0, static_cast<size_t>(
      reinterpret_cast<char*>(&error_) -
      reinterpret_cast<char*>(&type_)) + sizeof(error_));
  _cached_size_ = 0;
}

MessageContainer::~MessageContainer() {
  // @@protoc_insertion_point(destructor:Tango.PMR.Common.MessageContainer)
  SharedDtor();
}

void MessageContainer::SharedDtor() {
  token_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  data_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}

void MessageContainer::SetCachedSize(int size) const {
  GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
  _cached_size_ = size;
  GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* MessageContainer::descriptor() {
  protobuf_MessageContainer_2eproto::protobuf_AssignDescriptorsOnce();
  return protobuf_MessageContainer_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
}

const MessageContainer& MessageContainer::default_instance() {
  protobuf_MessageContainer_2eproto::InitDefaults();
  return *internal_default_instance();
}

MessageContainer* MessageContainer::New(::google::protobuf::Arena* arena) const {
  MessageContainer* n = new MessageContainer;
  if (arena != NULL) {
    arena->Own(n);
  }
  return n;
}

void MessageContainer::Clear() {
// @@protoc_insertion_point(message_clear_start:Tango.PMR.Common.MessageContainer)
  ::google::protobuf::uint32 cached_has_bits = 0;
  // Prevent compiler warnings about cached_has_bits being unused
  (void) cached_has_bits;

  token_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  ::memset(&type_, 0, static_cast<size_t>(
      reinterpret_cast<char*>(&error_) -
      reinterpret_cast<char*>(&type_)) + sizeof(error_));
  _internal_metadata_.Clear();
}

bool MessageContainer::MergePartialFromCodedStream(
    ::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
  ::google::protobuf::uint32 tag;
  // @@protoc_insertion_point(parse_start:Tango.PMR.Common.MessageContainer)
  for (;;) {
    ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
    tag = p.first;
    if (!p.second) goto handle_unusual;
    switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
      // .Tango.PMR.Common.MessageType Type = 1;
      case 1: {
        if (static_cast< ::google::protobuf::uint8>(tag) ==
            static_cast< ::google::protobuf::uint8>(8u /* 8 & 0xFF */)) {
          int value;
          DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
                   int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
                 input, &value)));
          set_type(static_cast< ::Tango::PMR::Common::MessageType >(value));
        } else {
          goto handle_unusual;
        }
        break;
      }

      // string Token = 2;
      case 2: {
        if (static_cast< ::google::protobuf::uint8>(tag) ==
            static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) {
          DO_(::google::protobuf::internal::WireFormatLite::ReadString(
                input, this->mutable_token()));
          DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
            this->token().data(), static_cast<int>(this->token().length()),
            ::google::protobuf::internal::WireFormatLite::PARSE,
            "Tango.PMR.Common.MessageContainer.Token"));
        } else {
          goto handle_unusual;
        }
        break;
      }

      // bool Continuous = 3;
      case 3: {
        if (static_cast< ::google::protobuf::uint8>(tag) ==
            static_cast< ::google::protobuf::uint8>(24u /* 24 & 0xFF */)) {

          DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
                   bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
                 input, &continuous_)));
        } else {
          goto handle_unusual;
        }
        break;
      }

      // bool Completed = 4;
      case 4: {
        if (static_cast< ::google::protobuf::uint8>(tag) ==
            static_cast< ::google::protobuf::uint8>(32u /* 32 & 0xFF */)) {

          DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
                   bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
                 input, &completed_)));
        } else {
          goto handle_unusual;
        }
        break;
      }

      // bytes Data = 5;
      case 5: {
        if (static_cast< ::google::protobuf::uint8>(tag) ==
            static_cast< ::google::protobuf::uint8>(42u /* 42 & 0xFF */)) {
          DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
                input, this->mutable_data()));
        } else {
          goto handle_unusual;
        }
        break;
      }

      // uint32 CRC = 6;
      case 6: {
        if (static_cast< ::google::protobuf::uint8>(tag) ==
            static_cast< ::google::protobuf::uint8>(48u /* 48 & 0xFF */)) {

          DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
                   ::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_UINT32>(
                 input, &crc_)));
        } else {
          goto handle_unusual;
        }
        break;
      }

      // .Tango.PMR.Common.ErrorCode Error = 7;
      case 7: {
        if (static_cast< ::google::protobuf::uint8>(tag) ==
            static_cast< ::google::protobuf::uint8>(56u /* 56 & 0xFF */)) {
          int value;
          DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
                   int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
                 input, &value)));
          set_error(static_cast< ::Tango::PMR::Common::ErrorCode >(value));
        } else {
          goto handle_unusual;
        }
        break;
      }

      default: {
      handle_unusual:
        if (tag == 0) {
          goto success;
        }
        DO_(::google::protobuf::internal::WireFormat::SkipField(
              input, tag, _internal_metadata_.mutable_unknown_fields()));
        break;
      }
    }
  }
success:
  // @@protoc_insertion_point(parse_success:Tango.PMR.Common.MessageContainer)
  return true;
failure:
  // @@protoc_insertion_point(parse_failure:Tango.PMR.Common.MessageContainer)
  return false;
#undef DO_
}

void MessageContainer::SerializeWithCachedSizes(
    ::google::protobuf::io::CodedOutputStream* output) const {
  // @@protoc_insertion_point(serialize_start:Tango.PMR.Common.MessageContainer)
  ::google::protobuf::uint32 cached_has_bits = 0;
  (void) cached_has_bits;

  // .Tango.PMR.Common.MessageType Type = 1;
  if (this->type() != 0) {
    ::google::protobuf::internal::WireFormatLite::WriteEnum(
      1, this->type(), output);
  }

  // string Token = 2;
  if (this->token().size() > 0) {
    ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
      this->token().data(), static_cast<int>(this->token().length()),
      ::google::protobuf::internal::WireFormatLite::SERIALIZE,
      "Tango.PMR.Common.MessageContainer.Token");
    ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
      2, this->token(), output);
  }

  // bool Continuous = 3;
  if (this->continuous() != 0) {
    ::google::protobuf::internal::WireFormatLite::WriteBool(3, this->continuous(), output);
  }

  // bool Completed = 4;
  if (this->completed() != 0) {
    ::google::protobuf::internal::WireFormatLite::WriteBool(4, this->completed(), output);
  }

  // bytes Data = 5;
  if (this->data().size() > 0) {
    ::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
      5, this->data(), output);
  }

  // uint32 CRC = 6;
  if (this->crc() != 0) {
    ::google::protobuf::internal::WireFormatLite::WriteUInt32(6, this->crc(), output);
  }

  // .Tango.PMR.Common.ErrorCode Error = 7;
  if (this->error() != 0) {
    ::google::protobuf::internal::WireFormatLite::WriteEnum(
      7, this->error(), output);
  }

  if ((_internal_metadata_.have_unknown_fields() &&  ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
    ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
        (::google::protobuf::internal::GetProto3PreserveUnknownsDefault()   ? _internal_metadata_.unknown_fields()   : _internal_metadata_.default_instance()), output);
  }
  // @@protoc_insertion_point(serialize_end:Tango.PMR.Common.MessageContainer)
}

::google::protobuf::uint8* MessageContainer::InternalSerializeWithCachedSizesToArray(
    bool deterministic, ::google::protobuf::uint8* target) const {
  (void)deterministic; // Unused
  // @@protoc_insertion_point(serialize_to_array_start:Tango.PMR.Common.MessageContainer)
  ::google::protobuf::uint32 cached_has_bits = 0;
  (void) cached_has_bits;

  // .Tango.PMR.Common.MessageType Type = 1;
  if (this->type() != 0) {
    target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
      1, this->type(), target);
  }

  // string Token = 2;
  if (this->token().size() > 0) {
    ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
      this->token().data(), static_cast<int>(this->token().length()),
      ::google::protobuf::internal::WireFormatLite::SERIALIZE,
      "Tango.PMR.Common.MessageContainer.Token");
    target =
      ::google::protobuf::internal::WireFormatLite::WriteStringToArray(
        2, this->token(), target);
  }

  // bool Continuous = 3;
  if (this->continuous() != 0) {
    target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(3, this->continuous(), target);
  }

  // bool Completed = 4;
  if (this->completed() != 0) {
    target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(4, this->completed(), target);
  }

  // bytes Data = 5;
  if (this->data().size() > 0) {
    target =
      ::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
        5, this->data(), target);
  }

  // uint32 CRC = 6;
  if (this->crc() != 0) {
    target = ::google::protobuf::internal::WireFormatLite::WriteUInt32ToArray(6, this->crc(), target);
  }

  // .Tango.PMR.Common.ErrorCode Error = 7;
  if (this->error() != 0) {
    target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
      7, this->error(), target);
  }

  if ((_internal_metadata_.have_unknown_fields() &&  ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
    target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
        (::google::protobuf::internal::GetProto3PreserveUnknownsDefault()   ? _internal_metadata_.unknown_fields()   : _internal_metadata_.default_instance()), target);
  }
  // @@protoc_insertion_point(serialize_to_array_end:Tango.PMR.Common.MessageContainer)
  return target;
}

size_t MessageContainer::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:Tango.PMR.Common.MessageContainer)
  size_t total_size = 0;

  if ((_internal_metadata_.have_unknown_fields() &&  ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
    total_size +=
      ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
        (::google::protobuf::internal::GetProto3PreserveUnknownsDefault()   ? _internal_metadata_.unknown_fields()   : _internal_metadata_.default_instance()));
  }
  // string Token = 2;
  if (this->token().size() > 0) {
    total_size += 1 +
      ::google::protobuf::internal::WireFormatLite::StringSize(
        this->token());
  }

  // bytes Data = 5;
  if (this->data().size() > 0) {
    total_size += 1 +
      ::google::protobuf::internal::WireFormatLite::BytesSize(
        this->data());
  }

  // .Tango.PMR.Common.MessageType Type = 1;
  if (this->type() != 0) {
    total_size += 1 +
      ::google::protobuf::internal::WireFormatLite::EnumSize(this->type());
  }

  // bool Continuous = 3;
  if (this->continuous() != 0) {
    total_size += 1 + 1;
  }

  // bool Completed = 4;
  if (this->completed() != 0) {
    total_size += 1 + 1;
  }

  // uint32 CRC = 6;
  if (this->crc() != 0) {
    total_size += 1 +
      ::google::protobuf::internal::WireFormatLite::UInt32Size(
        this->crc());
  }

  // .Tango.PMR.Common.ErrorCode Error = 7;
  if (this->error() != 0) {
    total_size += 1 +
      ::google::protobuf::internal::WireFormatLite::EnumSize(this->error());
  }

  int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
  GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
  _cached_size_ = cached_size;
  GOOGLE_SAFE_CONCURRENT_WRITES_END();
  return total_size;
}

void MessageContainer::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:Tango.PMR.Common.MessageContainer)
  GOOGLE_DCHECK_NE(&from, this);
  const MessageContainer* source =
      ::google::protobuf::internal::DynamicCastToGenerated<const MessageContainer>(
          &from);
  if (source == NULL) {
  // @@protoc_insertion_point(generalized_merge_from_cast_fail:Tango.PMR.Common.MessageContainer)
    ::google::protobuf::internal::ReflectionOps::Merge(from, this);
  } else {
  // @@protoc_insertion_point(generalized_merge_from_cast_success:Tango.PMR.Common.MessageContainer)
    MergeFrom(*source);
  }
}

void MessageContainer::MergeFrom(const MessageContainer& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:Tango.PMR.Common.MessageContainer)
  GOOGLE_DCHECK_NE(&from, this);
  _internal_metadata_.MergeFrom(from._internal_metadata_);
  ::google::protobuf::uint32 cached_has_bits = 0;
  (void) cached_has_bits;

  if (from.token().size() > 0) {

    token_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.token_);
  }
  if (from.data().size() > 0) {

    data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.data_);
  }
  if (from.type() != 0) {
    set_type(from.type());
  }
  if (from.continuous() != 0) {
    set_continuous(from.continuous());
  }
  if (from.completed() != 0) {
    set_completed(from.completed());
  }
  if (from.crc() != 0) {
    set_crc(from.crc());
  }
  if (from.error() != 0) {
    set_error(from.error());
  }
}

void MessageContainer::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:Tango.PMR.Common.MessageContainer)
  if (&from == this) return;
  Clear();
  MergeFrom(from);
}

void MessageContainer::CopyFrom(const MessageContainer& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:Tango.PMR.Common.MessageContainer)
  if (&from == this) return;
  Clear();
  MergeFrom(from);
}

bool MessageContainer::IsInitialized() const {
  return true;
}

void MessageContainer::Swap(MessageContainer* other) {
  if (other == this) return;
  InternalSwap(other);
}
void MessageContainer::InternalSwap(MessageContainer* other) {
  using std::swap;
  token_.Swap(&other->token_);
  data_.Swap(&other->data_);
  swap(type_, other->type_);
  swap(continuous_, other->continuous_);
  swap(completed_, other->completed_);
  swap(crc_, other->crc_);
  swap(error_, other->error_);
  _internal_metadata_.Swap(&other->_internal_metadata_);
  swap(_cached_size_, other->_cached_size_);
}

::google::protobuf::Metadata MessageContainer::GetMetadata() const {
  protobuf_MessageContainer_2eproto::protobuf_AssignDescriptorsOnce();
  return protobuf_MessageContainer_2eproto::file_level_metadata[kIndexInFileMessages];
}

#if PROTOBUF_INLINE_NOT_IN_HEADERS
// MessageContainer

// .Tango.PMR.Common.MessageType Type = 1;
void MessageContainer::clear_type() {
  type_ = 0;
}
::Tango::PMR::Common::MessageType MessageContainer::type() const {
  // @@protoc_insertion_point(field_get:Tango.PMR.Common.MessageContainer.Type)
  return static_cast< ::Tango::PMR::Common::MessageType >(type_);
}
void MessageContainer::set_type(::Tango::PMR::Common::MessageType value) {
  
  type_ = value;
  // @@protoc_insertion_point(field_set:Tango.PMR.Common.MessageContainer.Type)
}

// string Token = 2;
void MessageContainer::clear_token() {
  token_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
const ::std::string& MessageContainer::token() const {
  // @@protoc_insertion_point(field_get:Tango.PMR.Common.MessageContainer.Token)
  return token_.GetNoArena();
}
void MessageContainer::set_token(const ::std::string& value) {
  
  token_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  // @@protoc_insertion_point(field_set:Tango.PMR.Common.MessageContainer.Token)
}
#if LANG_CXX11
void MessageContainer::set_token(::std::string&& value) {
  
  token_.SetNoArena(
    &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  // @@protoc_insertion_point(field_set_rvalue:Tango.PMR.Common.MessageContainer.Token)
}
#endif
void MessageContainer::set_token(const char* value) {
  GOOGLE_DCHECK(value != NULL);
  
  token_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  // @@protoc_insertion_point(field_set_char:Tango.PMR.Common.MessageContainer.Token)
}
void MessageContainer::set_token(const char* value, size_t size) {
  
  token_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
      ::std::string(reinterpret_cast<const char*>(value), size));
  // @@protoc_insertion_point(field_set_pointer:Tango.PMR.Common.MessageContainer.Token)
}
::std::string* MessageContainer::mutable_token() {
  
  // @@protoc_insertion_point(field_mutable:Tango.PMR.Common.MessageContainer.Token)
  return token_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
::std::string* MessageContainer::release_token() {
  // @@protoc_insertion_point(field_release:Tango.PMR.Common.MessageContainer.Token)
  
  return token_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void MessageContainer::set_allocated_token(::std::string* token) {
  if (token != NULL) {
    
  } else {
    
  }
  token_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), token);
  // @@protoc_insertion_point(field_set_allocated:Tango.PMR.Common.MessageContainer.Token)
}

// bool Continuous = 3;
void MessageContainer::clear_continuous() {
  continuous_ = false;
}
bool MessageContainer::continuous() const {
  // @@protoc_insertion_point(field_get:Tango.PMR.Common.MessageContainer.Continuous)
  return continuous_;
}
void MessageContainer::set_continuous(bool value) {
  
  continuous_ = value;
  // @@protoc_insertion_point(field_set:Tango.PMR.Common.MessageContainer.Continuous)
}

// bool Completed = 4;
void MessageContainer::clear_completed() {
  completed_ = false;
}
bool MessageContainer::completed() const {
  // @@protoc_insertion_point(field_get:Tango.PMR.Common.MessageContainer.Completed)
  return completed_;
}
void MessageContainer::set_completed(bool value) {
  
  completed_ = value;
  // @@protoc_insertion_point(field_set:Tango.PMR.Common.MessageContainer.Completed)
}

// bytes Data = 5;
void MessageContainer::clear_data() {
  data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
const ::std::string& MessageContainer::data() const {
  // @@protoc_insertion_point(field_get:Tango.PMR.Common.MessageContainer.Data)
  return data_.GetNoArena();
}
void MessageContainer::set_data(const ::std::string& value) {
  
  data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  // @@protoc_insertion_point(field_set:Tango.PMR.Common.MessageContainer.Data)
}
#if LANG_CXX11
void MessageContainer::set_data(::std::string&& value) {
  
  data_.SetNoArena(
    &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  // @@protoc_insertion_point(field_set_rvalue:Tango.PMR.Common.MessageContainer.Data)
}
#endif
void MessageContainer::set_data(const char* value) {
  GOOGLE_DCHECK(value != NULL);
  
  data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  // @@protoc_insertion_point(field_set_char:Tango.PMR.Common.MessageContainer.Data)
}
void MessageContainer::set_data(const void* value, size_t size) {
  
  data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
      ::std::string(reinterpret_cast<const char*>(value), size));
  // @@protoc_insertion_point(field_set_pointer:Tango.PMR.Common.MessageContainer.Data)
}
::std::string* MessageContainer::mutable_data() {
  
  // @@protoc_insertion_point(field_mutable:Tango.PMR.Common.MessageContainer.Data)
  return data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
::std::string* MessageContainer::release_data() {
  // @@protoc_insertion_point(field_release:Tango.PMR.Common.MessageContainer.Data)
  
  return data_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void MessageContainer::set_allocated_data(::std::string* data) {
  if (data != NULL) {
    
  } else {
    
  }
  data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data);
  // @@protoc_insertion_point(field_set_allocated:Tango.PMR.Common.MessageContainer.Data)
}

// uint32 CRC = 6;
void MessageContainer::clear_crc() {
  crc_ = 0u;
}
::google::protobuf::uint32 MessageContainer::crc() const {
  // @@protoc_insertion_point(field_get:Tango.PMR.Common.MessageContainer.CRC)
  return crc_;
}
void MessageContainer::set_crc(::google::protobuf::uint32 value) {
  
  crc_ = value;
  // @@protoc_insertion_point(field_set:Tango.PMR.Common.MessageContainer.CRC)
}

// .Tango.PMR.Common.ErrorCode Error = 7;
void MessageContainer::clear_error() {
  error_ = 0;
}
::Tango::PMR::Common::ErrorCode MessageContainer::error() const {
  // @@protoc_insertion_point(field_get:Tango.PMR.Common.MessageContainer.Error)
  return static_cast< ::Tango::PMR::Common::ErrorCode >(error_);
}
void MessageContainer::set_error(::Tango::PMR::Common::ErrorCode value) {
  
  error_ = value;
  // @@protoc_insertion_point(field_set:Tango.PMR.Common.MessageContainer.Error)
}

#endif  // PROTOBUF_INLINE_NOT_IN_HEADERS

// @@protoc_insertion_point(namespace_scope)

}  // namespace Common
}  // namespace PMR
}  // namespace Tango

// @@protoc_insertion_point(global_scope)
5'>5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339
"DeployProject"
{
"VSVersion" = "3:800"
"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
"IsWebType" = "8:FALSE"
"ProjectName" = "8:Tango.MachineStudio.Installer"
"LanguageId" = "3:1033"
"CodePage" = "3:1252"
"UILanguageId" = "3:1033"
"SccProjectName" = "8:"
"SccLocalPath" = "8:"
"SccAuxPath" = "8:"
"SccProvider" = "8:"
    "Hierarchy"
    {
        "Entry"
        {
        "MsmKey" = "8:_0BF8133A6082FDD658EA3570802D86DE"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_0D36BD88AEF84A1CA7AC32F4687643FD"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_136196DD2763419D959721C2BA143498"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_1A129D6A1E634A3DB277DB808AD93937"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_1CB515C82F6904C632717D23A858B116"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_1EC9EA112C92712F7DD0290C02F8F1EB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_1EC9EA112C92712F7DD0290C02F8F1EB"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_201B65B789181625CAF1E7D925466231"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_201B65B789181625CAF1E7D925466231"
        "OwnerKey" = "8:_0BF8133A6082FDD658EA3570802D86DE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_201B65B789181625CAF1E7D925466231"
        "OwnerKey" = "8:_D09F278664B0560653FAC1AD0BCAE93F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_201B65B789181625CAF1E7D925466231"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_208047DD6040D85F92E6EBFB7F835D34"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_208047DD6040D85F92E6EBFB7F835D34"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_21E475E8F9DBB207476AD595250634BF"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_21E475E8F9DBB207476AD595250634BF"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_21E475E8F9DBB207476AD595250634BF"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_25A40EF7E64C497F9B198032A2FEBB44"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_278DD289AF864670465FD69C8F4AE34C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_278DD289AF864670465FD69C8F4AE34C"
        "OwnerKey" = "8:_C79F4B145CE2D951C3E342053EC26159"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_2797CFFB7DAA734F75BFE8FB845163D3"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_2797CFFB7DAA734F75BFE8FB845163D3"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_30FDB43A5EE9C1E3839D05F6363080D6"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_30FDB43A5EE9C1E3839D05F6363080D6"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_33D4D8E76EB7C1A6468238130D2E3654"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_33D4D8E76EB7C1A6468238130D2E3654"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_33D4D8E76EB7C1A6468238130D2E3654"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_88E760F600D2E195D8119F6014AB651E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_437F8E654D5A08B1CA3EA7BCC8B911F9"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_437F8E654D5A08B1CA3EA7BCC8B911F9"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4405913BCD2117F8DAD12B378C43A2B7"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4405913BCD2117F8DAD12B378C43A2B7"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_4405913BCD2117F8DAD12B378C43A2B7"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_C28A9B0313A578C409D1E57773FB001E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_D09F278664B0560653FAC1AD0BCAE93F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_709D007D7E89A10E63C141E3A08311FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C8D3D8E4884DA98E228B9951C61AB9"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5267D1EC981D54EC20D1B42EDAB938D2"
        "OwnerKey" = "8:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5267D1EC981D54EC20D1B42EDAB938D2"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5DE2670D31EDA648BE6C6C10EE6A7070"
        "OwnerKey" = "8:_278DD289AF864670465FD69C8F4AE34C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5DE2670D31EDA648BE6C6C10EE6A7070"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6362DA873243657F5F1FD41C1A4E104A"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6362DA873243657F5F1FD41C1A4E104A"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6362DA873243657F5F1FD41C1A4E104A"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_90D408142B1F2A9F72CBF42FC38348F0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_705F2A9700A0B6F6A5308537C5F876EA"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_709D007D7E89A10E63C141E3A08311FD"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "OwnerKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7E765F76FDFC3DCF4EAEB59B5546B063"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_437F8E654D5A08B1CA3EA7BCC8B911F9"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_1EC9EA112C92712F7DD0290C02F8F1EB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_C28A9B0313A578C409D1E57773FB001E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_847DE93907D7F6B17C0694F74120086B"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_88E760F600D2E195D8119F6014AB651E"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_88E760F600D2E195D8119F6014AB651E"
        "OwnerKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_90D408142B1F2A9F72CBF42FC38348F0"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_90D408142B1F2A9F72CBF42FC38348F0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_94C93E924640B1B46934D6515E08ED7A"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_94C93E924640B1B46934D6515E08ED7A"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_95EBE8B225CEEAD24E06F44863ABAECB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_95EBE8B225CEEAD24E06F44863ABAECB"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_98D5175644A3BC174BCA498A1B20FF84"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_8939008A4B57155156AE83AACC008030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9C822EC8B208111C8872DC2C929B4F49"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A17D8A4EDE1F489FABA27DB45F1A3F56"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_AF60BC3CADE840C0A98761F06ED14462"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0A07289218E6EFD42CF3518073813D6"
        "OwnerKey" = "8:_1CB515C82F6904C632717D23A858B116"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_BD559C5264D2EB8DB2F96C7F161ECCFE"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_BD559C5264D2EB8DB2F96C7F161ECCFE"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_BDA3D2EF39D844F98A5AB8AE3050B618"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C28A9B0313A578C409D1E57773FB001E"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_8939008A4B57155156AE83AACC008030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C79F4B145CE2D951C3E342053EC26159"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_D09F278664B0560653FAC1AD0BCAE93F"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_E8AD73581F264D1291D1B14F4B6BEB8D"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_EB38C1BD04FDFE44579B9868D6D1E139"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_EB38C1BD04FDFE44579B9868D6D1E139"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_EB38C1BD04FDFE44579B9868D6D1E139"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ECDF8B3BECC1C92F35C36C2743D8E99E"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ECDF8B3BECC1C92F35C36C2743D8E99E"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ECDF8B3BECC1C92F35C36C2743D8E99E"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_EF2898B0C9AAB2E33674325B9F86943B"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_F305156F14D60E8E938949378275132D"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_F305156F14D60E8E938949378275132D"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_F61DAEDB61465C1B8774BCFF055FC0D6"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_F61DAEDB61465C1B8774BCFF055FC0D6"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_BD559C5264D2EB8DB2F96C7F161ECCFE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_437F8E654D5A08B1CA3EA7BCC8B911F9"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_21E475E8F9DBB207476AD595250634BF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_1EC9EA112C92712F7DD0290C02F8F1EB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_30FDB43A5EE9C1E3839D05F6363080D6"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_6362DA873243657F5F1FD41C1A4E104A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_C28A9B0313A578C409D1E57773FB001E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_C79F4B145CE2D951C3E342053EC26159"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_8939008A4B57155156AE83AACC008030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_95EBE8B225CEEAD24E06F44863ABAECB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_ECDF8B3BECC1C92F35C36C2743D8E99E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_90D408142B1F2A9F72CBF42FC38348F0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_0BF8133A6082FDD658EA3570802D86DE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_D09F278664B0560653FAC1AD0BCAE93F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7E765F76FDFC3DCF4EAEB59B5546B063"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_705F2A9700A0B6F6A5308537C5F876EA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_847DE93907D7F6B17C0694F74120086B"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_EF2898B0C9AAB2E33674325B9F86943B"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_709D007D7E89A10E63C141E3A08311FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_98D5175644A3BC174BCA498A1B20FF84"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_5267D1EC981D54EC20D1B42EDAB938D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_EB38C1BD04FDFE44579B9868D6D1E139"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_201B65B789181625CAF1E7D925466231"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_42250239B4791E8133657256CCE3506C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_278DD289AF864670465FD69C8F4AE34C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_5DE2670D31EDA648BE6C6C10EE6A7070"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_33D4D8E76EB7C1A6468238130D2E3654"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_F61DAEDB61465C1B8774BCFF055FC0D6"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_208047DD6040D85F92E6EBFB7F835D34"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_4405913BCD2117F8DAD12B378C43A2B7"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_94C93E924640B1B46934D6515E08ED7A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_9C822EC8B208111C8872DC2C929B4F49"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_88E760F600D2E195D8119F6014AB651E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_2797CFFB7DAA734F75BFE8FB845163D3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_1CB515C82F6904C632717D23A858B116"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B0A07289218E6EFD42CF3518073813D6"
        "MsmSig" = "8:_UNDEFINED"
        }
    }
    "Configurations"
    {
        "Debug"
        {
        "DisplayName" = "8:Debug"
        "IsDebugOnly" = "11:TRUE"
        "IsReleaseOnly" = "11:FALSE"
        "OutputFilename" = "8:..\\..\\Build\\Installers\\Machine Studio\\Debug\\Machine Studio Installer v3.0.msi"
        "PackageFilesAs" = "3:2"
        "PackageFileSize" = "3:-2147483648"
        "CabType" = "3:1"
        "Compression" = "3:2"
        "SignOutput" = "11:FALSE"
        "CertificateFile" = "8:"
        "PrivateKeyFile" = "8:"
        "TimeStampServer" = "8:"
        "InstallerBootstrapper" = "3:2"
            "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
            {
            "Enabled" = "11:TRUE"
            "PromptEnabled" = "11:TRUE"
            "PrerequisitesLocation" = "2:1"
            "Url" = "8:"
            "ComponentsUrl" = "8:"
                "Items"
                {
                    "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.6.1"
                    {
                    "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)"
                    "ProductCode" = "8:.NETFramework,Version=v4.6.1"
                    }
                }
            }
        }
        "Release"
        {
        "DisplayName" = "8:Release"
        "IsDebugOnly" = "11:FALSE"
        "IsReleaseOnly" = "11:TRUE"
        "OutputFilename" = "8:..\\..\\Build\\Installers\\Machine Studio\\Release\\Machine Studio Installer v3.3.38.msi"
        "PackageFilesAs" = "3:2"
        "PackageFileSize" = "3:-2147483648"
        "CabType" = "3:1"
        "Compression" = "3:2"
        "SignOutput" = "11:FALSE"
        "CertificateFile" = "8:"
        "PrivateKeyFile" = "8:"
        "TimeStampServer" = "8:"
        "InstallerBootstrapper" = "3:2"
            "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
            {
            "Enabled" = "11:TRUE"
            "PromptEnabled" = "11:TRUE"
            "PrerequisitesLocation" = "2:1"
            "Url" = "8:"
            "ComponentsUrl" = "8:"
                "Items"
                {
                    "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.6.1"
                    {
                    "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)"
                    "ProductCode" = "8:.NETFramework,Version=v4.6.1"
                    }
                }
            }
        }
    }
    "Deployable"
    {
        "CustomAction"
        {
        }
        "DefaultFeature"
        {
        "Name" = "8:DefaultFeature"
        "Title" = "8:"
        "Description" = "8:"
        }
        "ExternalPersistence"
        {
            "LaunchCondition"
            {
                "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_57416B062DDF4C7D949EE93B8783A324"
                {
                "Name" = "8:.NET Framework"
                "Message" = "8:[VSDNETMSG]"
                "FrameworkVersion" = "8:.NETFramework,Version=v4.6.1"
                "AllowLaterVersions" = "11:FALSE"
                "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728"
                }
            }
        }
        "File"
        {
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0BF8133A6082FDD658EA3570802D86DE"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Data.SQLite.Linq, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_0BF8133A6082FDD658EA3570802D86DE"
                    {
                    "Name" = "8:System.Data.SQLite.Linq.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Data.SQLite.Linq.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D36BD88AEF84A1CA7AC32F4687643FD"
            {
            "SourcePath" = "8:..\\..\\Build\\Core\\Debug\\x86\\SQLite.Interop.dll"
            "TargetName" = "8:SQLite.Interop.dll"
            "Tag" = "8:"
            "Folder" = "8:_137C662BA6B24073AC58ED6C67DA7951"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A129D6A1E634A3DB277DB808AD93937"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\ucrtbased.dll"
            "TargetName" = "8:ucrtbased.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1CB515C82F6904C632717D23A858B116"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                "ScatterAssemblies"
                {
                    "_1CB515C82F6904C632717D23A858B116"
                    {
                    "Name" = "8:System.IO.Compression.FileSystem.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.IO.Compression.FileSystem.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1EC9EA112C92712F7DD0290C02F8F1EB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Editors, Version=2.0.20.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_1EC9EA112C92712F7DD0290C02F8F1EB"
                    {
                    "Name" = "8:Tango.Editors.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Editors.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_201B65B789181625CAF1E7D925466231"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Data.SQLite, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_201B65B789181625CAF1E7D925466231"
                    {
                    "Name" = "8:System.Data.SQLite.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Data.SQLite.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_208047DD6040D85F92E6EBFB7F835D34"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.IdentityModel.Tokens.Jwt, Version=4.0.20622.1351, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_208047DD6040D85F92E6EBFB7F835D34"
                    {
                    "Name" = "8:System.IdentityModel.Tokens.Jwt.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.IdentityModel.Tokens.Jwt.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_21E475E8F9DBB207476AD595250634BF"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:RealTimeGraphEx, Version=1.0.21.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_21E475E8F9DBB207476AD595250634BF"
                    {
                    "Name" = "8:RealTimeGraphEx.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:RealTimeGraphEx.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_25A40EF7E64C497F9B198032A2FEBB44"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\Microsoft.WITDataStore32.dll"
            "TargetName" = "8:Microsoft.WITDataStore32.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_25A69F578BC42C7EE9BB9C1BD877DD10"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Proxy, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_25A69F578BC42C7EE9BB9C1BD877DD10"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_278DD289AF864670465FD69C8F4AE34C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:RazorEngine, Version=3.10.0.0, Culture=neutral, PublicKeyToken=9ee697374c7e744a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_278DD289AF864670465FD69C8F4AE34C"
                    {
                    "Name" = "8:RazorEngine.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:RazorEngine.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2797CFFB7DAA734F75BFE8FB845163D3"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
                "ScatterAssemblies"
                {
                    "_2797CFFB7DAA734F75BFE8FB845163D3"
                    {
                    "Name" = "8:System.Net.Http.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Net.Http.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_30FDB43A5EE9C1E3839D05F6363080D6"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.CSV, Version=2.0.17.1657, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_30FDB43A5EE9C1E3839D05F6363080D6"
                    {
                    "Name" = "8:Tango.CSV.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.CSV.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_33D4D8E76EB7C1A6468238130D2E3654"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_33D4D8E76EB7C1A6468238130D2E3654"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_36D30082439E3E9B7F5AAF6701F0C22F"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:TRUE"
            "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_36D30082439E3E9B7F5AAF6701F0C22F"
                    {
                    "Name" = "8:System.Net.Http.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Net.Http.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3737DF68C5D4F9EEA98383147C09217D"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.UsersAndRoles, Version=2.0.10.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_3737DF68C5D4F9EEA98383147C09217D"
                    {
                    "Name" = "8:Tango.MachineStudio.UsersAndRoles.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.UsersAndRoles.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_38750CCB0CB6E026D5D88F129FB1013A"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.ColorLab, Version=2.0.11.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_38750CCB0CB6E026D5D88F129FB1013A"
                    {
                    "Name" = "8:Tango.MachineStudio.ColorLab.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.ColorLab.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_389550CBF274A9C03B63659D21772F45"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Common, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_389550CBF274A9C03B63659D21772F45"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Common.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Common.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3AFE4D5E08BDDB7F1E0861B8597F726C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Services.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_3AFE4D5E08BDDB7F1E0861B8597F726C"
                    {
                    "Name" = "8:Microsoft.VisualStudio.Services.WebApi.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.VisualStudio.Services.WebApi.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3D89BC73039EFE2FED26FEAEB52FE807"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform, Version=3.19.8.16603, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_3D89BC73039EFE2FED26FEAEB52FE807"
                    {
                    "Name" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Services.Common, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_3F7344F8CC9AE27561D9EFBBB0E3FADA"
                    {
                    "Name" = "8:Microsoft.VisualStudio.Services.Common.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.VisualStudio.Services.Common.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_401029CD43B9D1C7D6B8A91580C72246"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Technician, Version=2.0.15.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_401029CD43B9D1C7D6B8A91580C72246"
                    {
                    "Name" = "8:Tango.MachineStudio.Technician.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Technician.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_42250239B4791E8133657256CCE3506C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Google.Protobuf, Version=3.4.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_42250239B4791E8133657256CCE3506C"
                    {
                    "Name" = "8:Google.Protobuf.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Google.Protobuf.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_437F8E654D5A08B1CA3EA7BCC8B911F9"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Visuals, Version=2.0.9.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_437F8E654D5A08B1CA3EA7BCC8B911F9"
                    {
                    "Name" = "8:Tango.Visuals.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Visuals.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4405913BCD2117F8DAD12B378C43A2B7"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Diff, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_4405913BCD2117F8DAD12B378C43A2B7"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Diff.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Diff.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4763FF4F115513BD9CC09C25F66E2030"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Common, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_4763FF4F115513BD9CC09C25F66E2030"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Common.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Common.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4936236609673FB3A97D4EA723B1A767"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Serialization, Version=2.0.28.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_4936236609673FB3A97D4EA723B1A767"
                    {
                    "Name" = "8:Tango.Serialization.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Serialization.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_49D03E8027415EFB55F2F112C89B1086"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Work.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_49D03E8027415EFB55F2F112C89B1086"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Work.WebApi.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Work.WebApi.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:MahApps.Metro, Version=1.5.0.23, Culture=neutral, PublicKeyToken=f4fb5a3c4d1e5b4f, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_4A5E77F2FEA9C4080C8FD63B968FBE6C"
                    {
                    "Name" = "8:MahApps.Metro.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:MahApps.Metro.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_509008BF7DDF652EFD30748DF7B623AC"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Stubs, Version=2.0.10.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_509008BF7DDF652EFD30748DF7B623AC"
                    {
                    "Name" = "8:Tango.Stubs.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Stubs.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5147DA93AA30302C252F810D0809D8FB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.DB, Version=2.0.10.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_5147DA93AA30302C252F810D0809D8FB"
                    {
                    "Name" = "8:Tango.MachineStudio.DB.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.DB.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_514D3CCB0377421C1BF262423F4131FD"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Core.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_514D3CCB0377421C1BF262423F4131FD"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Core.WebApi.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Core.WebApi.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_516016F1B93156015497DAD5F7FBE9A1"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Video, Version=2.0.20.1737, Culture=neutral, processorArchitecture=x86"
                "ScatterAssemblies"
                {
                    "_516016F1B93156015497DAD5F7FBE9A1"
                    {
                    "Name" = "8:Tango.Video.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Video.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51C4508525FA0604A9CD727897EBD530"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_51C4508525FA0604A9CD727897EBD530"
                    {
                    "Name" = "8:EntityFramework.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:EntityFramework.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51C8D3D8E4884DA98E228B9951C61AB9"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\vcruntime140d.dll"
            "TargetName" = "8:vcruntime140d.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5267D1EC981D54EC20D1B42EDAB938D2"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_5267D1EC981D54EC20D1B42EDAB938D2"
                    {
                    "Name" = "8:System.Windows.Interactivity.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Windows.Interactivity.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5DE2670D31EDA648BE6C6C10EE6A7070"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_5DE2670D31EDA648BE6C6C10EE6A7070"
                    {
                    "Name" = "8:System.Web.Razor.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Web.Razor.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5F07DDA90732658EC4A03117CF7DD774"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.DragAndDrop, Version=2.0.26.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_5F07DDA90732658EC4A03117CF7DD774"
                    {
                    "Name" = "8:Tango.DragAndDrop.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.DragAndDrop.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6362DA873243657F5F1FD41C1A4E104A"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.ColorPicker, Version=2.0.20.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_6362DA873243657F5F1FD41C1A4E104A"
                    {
                    "Name" = "8:Tango.ColorPicker.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.ColorPicker.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_64AD2A918B16AA625B839A6A2D4288AB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.Interfaces, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_64AD2A918B16AA625B839A6A2D4288AB"
                    {
                    "Name" = "8:System.Reactive.Interfaces.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.Interfaces.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6629867CBE528EE93399FDA343E51BAB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory, Version=3.19.8.16603, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_6629867CBE528EE93399FDA343E51BAB"
                    {
                    "Name" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Client, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Client.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Client.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_705F2A9700A0B6F6A5308537C5F876EA"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Ionic.Zip, Version=1.9.1.8, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_705F2A9700A0B6F6A5308537C5F876EA"
                    {
                    "Name" = "8:Ionic.Zip.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Ionic.Zip.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_709D007D7E89A10E63C141E3A08311FD"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_709D007D7E89A10E63C141E3A08311FD"
                    {
                    "Name" = "8:EntityFramework.SqlServer.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:EntityFramework.SqlServer.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_712AAF71834640D10C755D415AF2200C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.Linq, Version=3.0.3000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_712AAF71834640D10C755D415AF2200C"
                    {
                    "Name" = "8:System.Reactive.Linq.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.Linq.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_73674B32069839371DC47411D1B7EBE0"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.PlatformServices, Version=3.0.3000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_73674B32069839371DC47411D1B7EBE0"
                    {
                    "Name" = "8:System.Reactive.PlatformServices.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.PlatformServices.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_76136B423153FD040335B97D71CF6A3E"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.PMR, Version=2.0.37.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_76136B423153FD040335B97D71CF6A3E"
                    {
                    "Name" = "8:Tango.PMR.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.PMR.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_76DEC1C2FE9E34662C503D210A4A9CF8"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_76DEC1C2FE9E34662C503D210A4A9CF8"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A69315CD79099E601F096562C7406DF"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.BL, Version=2.0.33.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7A69315CD79099E601F096562C7406DF"
                    {
                    "Name" = "8:Tango.BL.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.BL.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A925C02110B1D4B95987D2EEEFE6FDE"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Common, Version=2.0.27.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7A925C02110B1D4B95987D2EEEFE6FDE"
                    {
                    "Name" = "8:Tango.MachineStudio.Common.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Common.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7E089FB0FAFDC91358668C33586665F3"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Developer, Version=2.0.18.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7E089FB0FAFDC91358668C33586665F3"
                    {
                    "Name" = "8:Tango.MachineStudio.Developer.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Developer.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7E765F76FDFC3DCF4EAEB59B5546B063"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:MaterialDesignColors, Version=1.1.2.0, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7E765F76FDFC3DCF4EAEB59B5546B063"
                    {
                    "Name" = "8:MaterialDesignColors.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:MaterialDesignColors.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7EBA1AC1C70BAC60E9165BB0A3640C98"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Core, Version=2.0.30.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7EBA1AC1C70BAC60E9165BB0A3640C98"
                    {
                    "Name" = "8:Tango.Core.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Core.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_847DE93907D7F6B17C0694F74120086B"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:FontAwesome.WPF, Version=4.7.0.37774, Culture=neutral, PublicKeyToken=0758b07a11a4f466, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_847DE93907D7F6B17C0694F74120086B"
                    {
                    "Name" = "8:FontAwesome.WPF.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:FontAwesome.WPF.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8533A0FC046C1B311644EB6565AADCF4"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Stubs, Version=2.0.10.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_8533A0FC046C1B311644EB6565AADCF4"
                    {
                    "Name" = "8:Tango.MachineStudio.Stubs.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Stubs.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_88E760F600D2E195D8119F6014AB651E"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Net.Http.WebRequest, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
                "ScatterAssemblies"
                {
                    "_88E760F600D2E195D8119F6014AB651E"
                    {
                    "Name" = "8:System.Net.Http.WebRequest.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Net.Http.WebRequest.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8939008A4B57155156AE83AACC008030"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Settings, Version=2.0.28.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_8939008A4B57155156AE83AACC008030"
                    {
                    "Name" = "8:Tango.Settings.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Settings.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8F71C11DA0BAD2C98087755DC7A25AD3"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.EmbroideryUI, Version=1.0.8.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_8F71C11DA0BAD2C98087755DC7A25AD3"
                    {
                    "Name" = "8:Tango.EmbroideryUI.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.EmbroideryUI.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_90D408142B1F2A9F72CBF42FC38348F0"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.Windows.Threading, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_90D408142B1F2A9F72CBF42FC38348F0"
                    {
                    "Name" = "8:System.Reactive.Windows.Threading.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.Windows.Threading.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_92EADCA3313D55CFE2BB3BBA193941F3"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.Core, Version=3.0.3000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_92EADCA3313D55CFE2BB3BBA193941F3"
                    {
                    "Name" = "8:System.Reactive.Core.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.Core.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_949EF578C14CE0D93133060EF66C018F"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.MachineDesigner, Version=2.0.11.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_949EF578C14CE0D93133060EF66C018F"
                    {
                    "Name" = "8:Tango.MachineStudio.MachineDesigner.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.MachineDesigner.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_94C93E924640B1B46934D6515E08ED7A"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.ServiceBus, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_94C93E924640B1B46934D6515E08ED7A"
                    {
                    "Name" = "8:Microsoft.ServiceBus.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.ServiceBus.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_95EBE8B225CEEAD24E06F44863ABAECB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:ICSharpCode.AvalonEdit, Version=1.0.18.1933, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_95EBE8B225CEEAD24E06F44863ABAECB"
                    {
                    "Name" = "8:ICSharpCode.AvalonEdit.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:ICSharpCode.AvalonEdit.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_98D5175644A3BC174BCA498A1B20FF84"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Dragablz, Version=0.0.3.197, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_98D5175644A3BC174BCA498A1B20FF84"
                    {
                    "Name" = "8:Dragablz.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Dragablz.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Scripting, Version=2.0.27.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
                    {
                    "Name" = "8:Tango.Scripting.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Scripting.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9A234F7FB4239AC3DB0DBE9415BDE695"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.AutoComplete, Version=1.0.21.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_9A234F7FB4239AC3DB0DBE9415BDE695"
                    {
                    "Name" = "8:Tango.AutoComplete.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.AutoComplete.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9A98137A42052685F51607892D00B8A0"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Logging, Version=2.0.34.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_9A98137A42052685F51607892D00B8A0"
                    {
                    "Name" = "8:Tango.Logging.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Logging.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C822EC8B208111C8872DC2C929B4F49"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Windows, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
                "ScatterAssemblies"
                {
                    "_9C822EC8B208111C8872DC2C929B4F49"
                    {
                    "Name" = "8:System.Windows.dll"
                    "Attributes" = "3:0"
                    }
                }
            "SourcePath" = "8:System.Windows.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:FALSE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:TRUE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A1336C0121F3132E09400329ACD12B30"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:SimpleValidator, Version=0.6.1.0, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_A1336C0121F3132E09400329ACD12B30"
                    {
                    "Name" = "8:SimpleValidator.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:SimpleValidator.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A17D8A4EDE1F489FABA27DB45F1A3F56"
            {
            "SourcePath" = "8:..\\..\\Build\\Core\\Debug\\x64\\SQLite.Interop.dll"
            "TargetName" = "8:SQLite.Interop.dll"
            "Tag" = "8:"
            "Folder" = "8:_37D35F637FDD433095D8A36CAA7424C8"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A9A74798DD330F41ADBD32DBB9480F5C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Transport, Version=2.0.29.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_A9A74798DD330F41ADBD32DBB9480F5C"
                    {
                    "Name" = "8:Tango.Transport.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Transport.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ACA4B81C7B67E4C6FD57C20AD15BF952"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Logging, Version=2.0.18.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_ACA4B81C7B67E4C6FD57C20AD15BF952"
                    {
                    "Name" = "8:Tango.MachineStudio.Logging.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Logging.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF60BC3CADE840C0A98761F06ED14462"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\msvcp140d.dll"
            "TargetName" = "8:msvcp140d.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B0A07289218E6EFD42CF3518073813D6"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:TRUE"
            "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B0A07289218E6EFD42CF3518073813D6"
                    {
                    "Name" = "8:System.IO.Compression.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.IO.Compression.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B0DC463AFB084472BA1EA9F43F930940"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.HardwareDesigner, Version=2.0.11.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B0DC463AFB084472BA1EA9F43F930940"
                    {
                    "Name" = "8:Tango.MachineStudio.HardwareDesigner.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.HardwareDesigner.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B0F63EB1426CCC22506AFCB6C5809138"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.SharedUI, Version=2.0.28.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B0F63EB1426CCC22506AFCB6C5809138"
                    {
                    "Name" = "8:Tango.SharedUI.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.SharedUI.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B363FB7BD2F44E6C8573500668C2C9D1"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Integration, Version=2.0.29.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B363FB7BD2F44E6C8573500668C2C9D1"
                    {
                    "Name" = "8:Tango.Integration.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Integration.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6192155FD5A80C188C3107E288647D2"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Services.Client.Interactive, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B6192155FD5A80C188C3107E288647D2"
                    {
                    "Name" = "8:Microsoft.VisualStudio.Services.Client.Interactive.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.VisualStudio.Services.Client.Interactive.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD559C5264D2EB8DB2F96C7F161ECCFE"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:WpfAnimatedGif, Version=1.4.14.0, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_BD559C5264D2EB8DB2F96C7F161ECCFE"
                    {
                    "Name" = "8:WpfAnimatedGif.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:WpfAnimatedGif.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDA3D2EF39D844F98A5AB8AE3050B618"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\vcruntime140.dll"
            "TargetName" = "8:vcruntime140.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C28A9B0313A578C409D1E57773FB001E"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.DAL.Remote, Version=2.0.29.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_C28A9B0313A578C409D1E57773FB001E"
                    {
                    "Name" = "8:Tango.DAL.Remote.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.DAL.Remote.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C4803CDE1B97C098FCBCE21F65BA294C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Net.Http.Formatting, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_C4803CDE1B97C098FCBCE21F65BA294C"
                    {
                    "Name" = "8:System.Net.Http.Formatting.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Net.Http.Formatting.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C52D0EE685F66C9256814DC4FF3D55F6"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_C52D0EE685F66C9256814DC4FF3D55F6"
                    {
                    "Name" = "8:Newtonsoft.Json.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Newtonsoft.Json.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C79F4B145CE2D951C3E342053EC26159"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.CodeGeneration, Version=2.0.17.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_C79F4B145CE2D951C3E342053EC26159"
                    {
                    "Name" = "8:Tango.CodeGeneration.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.CodeGeneration.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D09F278664B0560653FAC1AD0BCAE93F"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Data.SQLite.EF6, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_D09F278664B0560653FAC1AD0BCAE93F"
                    {
                    "Name" = "8:System.Data.SQLite.EF6.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Data.SQLite.EF6.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DF9470C286C095EB5289BC0A57E7AA2C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.TFS, Version=2.0.20.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_DF9470C286C095EB5289BC0A57E7AA2C"
                    {
                    "Name" = "8:Tango.TFS.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.TFS.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AD73581F264D1291D1B14F4B6BEB8D"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\mscoree.dll"
            "TargetName" = "8:mscoree.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EB38C1BD04FDFE44579B9868D6D1E139"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:MaterialDesignThemes.Wpf, Version=2.3.1.953, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_EB38C1BD04FDFE44579B9868D6D1E139"
                    {
                    "Name" = "8:MaterialDesignThemes.Wpf.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:MaterialDesignThemes.Wpf.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ECDF8B3BECC1C92F35C36C2743D8E99E"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:ColorMine, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_ECDF8B3BECC1C92F35C36C2743D8E99E"
                    {
                    "Name" = "8:ColorMine.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:ColorMine.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EF2898B0C9AAB2E33674325B9F86943B"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:FluentFTP, Version=19.1.2.0, Culture=neutral, PublicKeyToken=f4af092b1d8df44f, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_EF2898B0C9AAB2E33674325B9F86943B"
                    {
                    "Name" = "8:FluentFTP.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:FluentFTP.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F305156F14D60E8E938949378275132D"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_F305156F14D60E8E938949378275132D"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F61DAEDB61465C1B8774BCFF055FC0D6"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_F61DAEDB61465C1B8774BCFF055FC0D6"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.BrushPicker, Version=2.0.9.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
                    {
                    "Name" = "8:Tango.BrushPicker.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.BrushPicker.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF9B3021994C6FE507A9C7BE198B6C03"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.DataCapture, Version=2.0.11.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_FF9B3021994C6FE507A9C7BE198B6C03"
                    {
                    "Name" = "8:Tango.MachineStudio.DataCapture.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.DataCapture.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
        }
        "FileType"
        {
        }
        "Folder"
        {
            "{1525181F-901A-416C-8A58-119130FE478E}:_2B7C57CBA7424F6BA8F808A3FF16C43F"
            {
            "Name" = "8:#1916"
            "AlwaysCreate" = "11:FALSE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Property" = "8:DesktopFolder"
                "Folders"
                {
                }
            }
            "{1525181F-901A-416C-8A58-119130FE478E}:_968A4F66A48640108B0EA8FAEC525B37"
            {
            "Name" = "8:#1919"
            "AlwaysCreate" = "11:FALSE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Property" = "8:ProgramMenuFolder"
                "Folders"
                {
                }
            }
            "{3C67513D-01DD-4637-8A68-80971EB9504F}:_C15E39669002469F98F297C08D55903C"
            {
            "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]"
            "Name" = "8:#1925"
            "AlwaysCreate" = "11:FALSE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Property" = "8:TARGETDIR"
                "Folders"
                {
                    "{9EF0B969-E518-4E46-987F-47570745A589}:_137C662BA6B24073AC58ED6C67DA7951"
                    {
                    "Name" = "8:x86"
                    "AlwaysCreate" = "11:FALSE"
                    "Condition" = "8:"
                    "Transitive" = "11:FALSE"
                    "Property" = "8:_1F831795EFB9407FAABE378081755E62"
                        "Folders"
                        {
                        }
                    }
                    "{9EF0B969-E518-4E46-987F-47570745A589}:_37D35F637FDD433095D8A36CAA7424C8"
                    {
                    "Name" = "8:x64"
                    "AlwaysCreate" = "11:FALSE"
                    "Condition" = "8:"
                    "Transitive" = "11:FALSE"
                    "Property" = "8:_F592681A2CDE4CC1946728CA04414DC8"
                        "Folders"
                        {
                        }
                    }
                }
            }
        }
        "LaunchCondition"
        {
        }
        "Locator"
        {
        }
        "MsiBootstrapper"
        {
        "LangId" = "3:1033"
        "RequiresElevation" = "11:FALSE"
        }
        "Product"
        {
        "Name" = "8:Microsoft Visual Studio"
        "ProductName" = "8:Machine Studio"
        "ProductCode" = "8:{BAA6F766-A4A0-443C-8E67-322A62985F39}"
        "PackageCode" = "8:{76F9DFC9-DB8F-4B85-BE49-59481489287A}"
        "UpgradeCode" = "8:{EDD5BF5D-A0F0-4016-AE0A-5C008DD66BB6}"
        "AspNetVersion" = "8:4.0.30319.0"
        "RestartWWWService" = "11:FALSE"
        "RemovePreviousVersions" = "11:TRUE"
        "DetectNewerInstalledVersion" = "11:FALSE"
        "InstallAllUsers" = "11:TRUE"
        "ProductVersion" = "8:3.3.0"
        "Manufacturer" = "8:Twine"
        "ARPHELPTELEPHONE" = "8:"
        "ARPHELPLINK" = "8:"
        "Title" = "8:Machine Studio"
        "Subject" = "8:"
        "ARPCONTACT" = "8:Twine"
        "Keywords" = "8:"
        "ARPCOMMENTS" = "8:"
        "ARPURLINFOABOUT" = "8:"
        "ARPPRODUCTICON" = "8:"
        "ARPIconIndex" = "3:0"
        "SearchPath" = "8:"
        "UseSystemSearchPath" = "11:TRUE"
        "TargetPlatform" = "3:0"
        "PreBuildEvent" = "8:"
        "PostBuildEvent" = "8:"
        "RunPostBuildEvent" = "3:0"
        }
        "Registry"
        {
            "HKLM"
            {
                "Keys"
                {
                    "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_67687E08172E49BEA900C5484C5FF8DA"
                    {
                    "Name" = "8:Software"
                    "Condition" = "8:"
                    "AlwaysCreate" = "11:FALSE"
                    "DeleteAtUninstall" = "11:FALSE"
                    "Transitive" = "11:FALSE"
                        "Keys"
                        {
                            "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_01DA46310D13428A86083D861B5E2B54"
                            {
                            "Name" = "8:[Manufacturer]"
                            "Condition" = "8:"
                            "AlwaysCreate" = "11:FALSE"
                            "DeleteAtUninstall" = "11:FALSE"
                            "Transitive" = "11:FALSE"
                                "Keys"
                                {
                                }
                                "Values"
                                {
                                }
                            }
                        }
                        "Values"
                        {
                        }
                    }
                }
            }
            "HKCU"
            {
                "Keys"
                {
                    "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_9B146D40CB194C87882A4AE32F7F4B35"
                    {
                    "Name" = "8:Software"
                    "Condition" = "8:"
                    "AlwaysCreate" = "11:FALSE"
                    "DeleteAtUninstall" = "11:FALSE"
                    "Transitive" = "11:FALSE"
                        "Keys"
                        {
                            "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_035000F1D57C4EACB15A7673F34EEB37"
                            {
                            "Name" = "8:[Manufacturer]"
                            "Condition" = "8:"
                            "AlwaysCreate" = "11:FALSE"
                            "DeleteAtUninstall" = "11:FALSE"
                            "Transitive" = "11:FALSE"
                                "Keys"
                                {
                                }
                                "Values"
                                {
                                }
                            }
                        }
                        "Values"
                        {
                        }
                    }
                }
            }
            "HKCR"
            {
                "Keys"
                {
                }
            }
            "HKU"
            {
                "Keys"
                {
                }
            }
            "HKPU"
            {
                "Keys"
                {
                }
            }
        }
        "Sequences"
        {
        }
        "Shortcut"
        {
            "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_198AFFE2F9DE4D79906A285CA9243C2D"
            {
            "Name" = "8:Machine Studio"
            "Arguments" = "8:"
            "Description" = "8:"
            "ShowCmd" = "3:1"
            "IconIndex" = "3:32512"
            "Transitive" = "11:FALSE"
            "Target" = "8:_136196DD2763419D959721C2BA143498"
            "Folder" = "8:_968A4F66A48640108B0EA8FAEC525B37"
            "WorkingFolder" = "8:_C15E39669002469F98F297C08D55903C"
            "Icon" = "8:_136196DD2763419D959721C2BA143498"
            "Feature" = "8:"
            }
            "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_4611BDFC25A64A63AE21584EE9FEFB83"
            {
            "Name" = "8:Machine Studio"
            "Arguments" = "8:"
            "Description" = "8:"
            "ShowCmd" = "3:1"
            "IconIndex" = "3:32512"
            "Transitive" = "11:FALSE"
            "Target" = "8:_136196DD2763419D959721C2BA143498"
            "Folder" = "8:_2B7C57CBA7424F6BA8F808A3FF16C43F"
            "WorkingFolder" = "8:_C15E39669002469F98F297C08D55903C"
            "Icon" = "8:_136196DD2763419D959721C2BA143498"
            "Feature" = "8:"
            }
        }
        "UserInterface"
        {
            "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_08B45AD123094F6C92B305C14627FB76"
            {
            "UseDynamicProperties" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim"
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_6E6D9A9BD7974792B393BBF9B89C42E1"
            {
            "Name" = "8:#1902"
            "Sequence" = "3:1"
            "Attributes" = "3:3"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C0D4182D7CAA4C39A10E65DE809DAA4C"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Finished"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "UpdateText"
                            {
                            "Name" = "8:UpdateText"
                            "DisplayName" = "8:#1058"
                            "Description" = "8:#1158"
                            "Type" = "3:15"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1258"
                            "DefaultValue" = "8:#1258"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_75AC580475C8462AA4332E731B6F97BD"
            {
            "Name" = "8:#1901"
            "Sequence" = "3:1"
            "Attributes" = "3:2"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7087F748E92D45E99702F6CD55D69972"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Progress"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "ShowProgress"
                            {
                            "Name" = "8:ShowProgress"
                            "DisplayName" = "8:#1009"
                            "Description" = "8:#1109"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_A4C5DFB6206947E6A40AD0584377A7F5"
            {
            "UseDynamicProperties" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim"
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_B7AFC6BC21994F5993C27ADE17D59052"
            {
            "Name" = "8:#1900"
            "Sequence" = "3:1"
            "Attributes" = "3:1"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08A90397CA3047E88066D7CFB5879207"
                    {
                    "Sequence" = "3:300"
                    "DisplayName" = "8:Confirm Installation"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_941B7EBD8EB34731AD2F885ACF47D804"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Welcome"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "CopyrightWarning"
                            {
                            "Name" = "8:CopyrightWarning"
                            "DisplayName" = "8:#1002"
                            "Description" = "8:#1102"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1202"
                            "DefaultValue" = "8:#1202"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Welcome"
                            {
                            "Name" = "8:Welcome"
                            "DisplayName" = "8:#1003"
                            "Description" = "8:#1103"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1203"
                            "DefaultValue" = "8:#1203"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F8D37B85CCF34A3EBCC34C2AA0CEC474"
                    {
                    "Sequence" = "3:200"
                    "DisplayName" = "8:Installation Folder"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "InstallAllUsersVisible"
                            {
                            "Name" = "8:InstallAllUsersVisible"
                            "DisplayName" = "8:#1059"
                            "Description" = "8:#1159"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_D522BCA1443A4EF4A6728C158A0BFEC0"
            {
            "Name" = "8:#1902"
            "Sequence" = "3:2"
            "Attributes" = "3:3"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A464CE15CB6B4EBD8002FCF64B25F9F0"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Finished"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E1A90A55B08D47AB81224F2717FF1C8D"
            {
            "Name" = "8:#1901"
            "Sequence" = "3:2"
            "Attributes" = "3:2"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_40EFCCE2771040DB9A2BC3584D440B44"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Progress"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "ShowProgress"
                            {
                            "Name" = "8:ShowProgress"
                            "DisplayName" = "8:#1009"
                            "Description" = "8:#1109"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F3B36666230B471BBD5F19C85329DFA3"
            {
            "Name" = "8:#1900"
            "Sequence" = "3:2"
            "Attributes" = "3:1"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_488C757DE3BF4488B917842494386BCE"
                    {
                    "Sequence" = "3:200"
                    "DisplayName" = "8:Installation Folder"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A3A6A0CF6B0241A392124B3CDFEB2B6F"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Welcome"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "CopyrightWarning"
                            {
                            "Name" = "8:CopyrightWarning"
                            "DisplayName" = "8:#1002"
                            "Description" = "8:#1102"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1202"
                            "DefaultValue" = "8:#1202"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Welcome"
                            {
                            "Name" = "8:Welcome"
                            "DisplayName" = "8:#1003"
                            "Description" = "8:#1103"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1203"
                            "DefaultValue" = "8:#1203"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_E667812EA6BC4613911EFDF53B37DFA6"
                    {
                    "Sequence" = "3:300"
                    "DisplayName" = "8:Confirm Installation"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
        }
        "MergeModule"
        {
        }
        "ProjectOutput"
        {
            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_136196DD2763419D959721C2BA143498"
            {
            "SourcePath" = "8:..\\Tango.MachineStudio.UI\\obj\\Release\\Tango.MachineStudio.UI.exe"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            "ProjectOutputGroupRegister" = "3:1"
            "OutputConfiguration" = "8:"
            "OutputGroupCanonicalName" = "8:Built"
            "OutputProjectGuid" = "8:{116DFDB0-7681-46FE-8BAD-FE8AE09BB076}"
            "ShowKeyOutput" = "11:TRUE"
                "ExcludeFilters"
                {
                }
            }
            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_88F4B9AD85B348AA835884EA6B695677"
            {
            "SourcePath" = "8:"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            "ProjectOutputGroupRegister" = "3:1"
            "OutputConfiguration" = "8:"
            "OutputGroupCanonicalName" = "8:ContentFiles"
            "OutputProjectGuid" = "8:{116DFDB0-7681-46FE-8BAD-FE8AE09BB076}"
            "ShowKeyOutput" = "11:TRUE"
                "ExcludeFilters"
                {
                }
            }
        }
    }
}