forked from GB28181/GB28181.Solution
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCodeMap-GB28181.Platform.dgml
3305 lines (3305 loc) · 337 KB
/
CodeMap-GB28181.Platform.dgml
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
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<DirectedGraph DataVirtualized="True" FilterState="InheritsFrom,CodeMap_TestAsset,CodeSchema_FunctionPointer,CodeSchema_FieldRead,CodeSchema_FieldWrite,CodeSchema_ReturnTypeLink,Implements,CodeSchema_Calls,CodeSchema_AttributeUse,UncategorizedRelationship,CodeMap_SolutionFolder,CodeSchema_Struct,CodeSchema_Event" Layout="Sugiyama" ZoomLevel="-1" xmlns="http://schemas.microsoft.com/vs/2009/dgml">
<Nodes>
<Node Id="(@1 @192 Type=NetTestDescription)" Category="CodeSchema_Class" Bounds="1762.98173661844,364.861529722623,161.126666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="NetTestDescription" UseManualLocation="True" />
<Node Id="(@1 @192 Type=RTPPayloadTypes)" Category="CodeSchema_Class" Bounds="2217.92506995177,309.861529722622,151.836666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPPayloadTypes" UseManualLocation="True" />
<Node Id="(@1 @192 Type=RTPPayloadTypesEnum)" Category="CodeSchema_Enum" Bounds="2158.86506995177,364.861529722623,177.823333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPPayloadTypesEnum" UseManualLocation="True" />
<Node Id="(@1 @192 Type=RTPVP8Header)" Category="CodeSchema_Class" Bounds="2048.21506995177,309.861529722622,139.71,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPVP8Header" UseManualLocation="True" />
<Node Id="(@1 @192 Type=RTSPConstants)" Category="CodeSchema_Class" Bounds="1878.96173661844,309.861529722622,139.253333333334,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPConstants" UseManualLocation="True" />
<Node Id="(@1 @192 Type=RTSPEntityHeaders)" Category="CodeSchema_Class" Bounds="1572.97506995177,364.861529722623,160.006666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPEntityHeaders" UseManualLocation="True" />
<Node Id="(@1 @192 Type=RTSPHeaders)" Category="CodeSchema_Class" Bounds="1387.37173661844,309.861529722622,130.3,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPHeaders" UseManualLocation="True" />
<Node Id="(@1 @192 Type=STUNv2ClassTypesEnum)" Category="CodeSchema_Enum" Bounds="1050.33840328511,419.861529722623,185.57,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2ClassTypesEnum" UseManualLocation="True" />
<Node Id="(@1 @192 Type=SessionDescriptionTypes)" Category="CodeSchema_Class" Bounds="1265.90840328511,419.861529722623,190.673333333334,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SessionDescriptionTypes" UseManualLocation="True" />
<Node Id="(@1 Namespace=SIPSorcery.GB28181.Sys.Net)" Category="CodeSchema_Namespace" Bounds="311.695007875729,585.222812321829,204.17,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Sys.Net" />
<Node Id="(@1 Namespace=System.Linq.Dynamic)" Category="CodeSchema_Namespace" Bounds="113.575007875729,585.222812321829,168.12,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="System.Linq.Dynamic" />
<Node Id="@10" Category="CodeSchema_Assembly" Bounds="-343.26155720359,355.428585714287,120.523333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\mscorlib.dll" Group="Collapsed" Label="mscorlib.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@100" Category="CodeSchema_Assembly" Bounds="25.4784427964102,436.428585714287,199.736666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.Compression.dll" Group="Collapsed" Label="System.IO.Compression.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@101" Category="CodeSchema_Assembly" Bounds="25.4784427964102,490.428585714287,237.09,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.Compression.ZipFile.dll" Group="Collapsed" Label="System.IO.Compression.ZipFile.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@102" Category="CodeSchema_Assembly" Bounds="25.4784427964102,544.428585714287,186.076666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.FileSystem.dll" Group="Collapsed" Label="System.IO.FileSystem.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@103" Category="CodeSchema_Assembly" Bounds="25.4784427964102,571.428585714287,236.963333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.FileSystem.DriveInfo.dll" Group="Collapsed" Label="System.IO.FileSystem.DriveInfo.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@104" Category="CodeSchema_Assembly" Bounds="25.4784427964102,598.428585714287,239.81,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.FileSystem.Primitives.dll" Group="Collapsed" Label="System.IO.FileSystem.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@105" Category="CodeSchema_Assembly" Bounds="25.4784427964102,625.428585714287,232.373333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.FileSystem.Watcher.dll" Group="Collapsed" Label="System.IO.FileSystem.Watcher.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@106" Category="CodeSchema_Assembly" Bounds="25.4784427964102,652.428585714287,212.97,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.IsolatedStorage.dll" Group="Collapsed" Label="System.IO.IsolatedStorage.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@107" Category="CodeSchema_Assembly" Bounds="25.4784427964102,679.428585714287,242.3,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.MemoryMappedFiles.dll" Group="Collapsed" Label="System.IO.MemoryMappedFiles.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@108" Category="CodeSchema_Assembly" Bounds="25.4784427964102,706.428585714287,158.573333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.Pipes.dll" Group="Collapsed" Label="System.IO.Pipes.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@109" Category="CodeSchema_Assembly" Bounds="25.4784427964102,733.428585714287,276.653333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.UnmanagedMemoryStream.dll" Group="Collapsed" Label="System.IO.UnmanagedMemoryStream.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@110" Category="CodeSchema_Assembly" Bounds="25.4784427964102,760.428585714287,138.096666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Linq.dll" Group="Collapsed" Label="System.Linq.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@111" Category="CodeSchema_Assembly" Bounds="25.4784427964102,787.428585714287,201.783333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Linq.Expressions.dll" Group="Collapsed" Label="System.Linq.Expressions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@112" Category="CodeSchema_Assembly" Bounds="25.4784427964102,814.428585714287,178.39,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Linq.Parallel.dll" Group="Collapsed" Label="System.Linq.Parallel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@113" Category="CodeSchema_Assembly" Bounds="25.4784427964102,841.428585714287,195.133333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Linq.Queryable.dll" Group="Collapsed" Label="System.Linq.Queryable.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@114" Category="CodeSchema_Assembly" Bounds="25.4784427964102,895.428585714287,161.31,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.Http.dll" Group="Collapsed" Label="System.Net.Http.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@115" Category="CodeSchema_Assembly" Bounds="25.4784427964102,922.428585714287,202.543333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.HttpListener.dll" Group="Collapsed" Label="System.Net.HttpListener.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@116" Category="CodeSchema_Assembly" Bounds="25.4784427964102,949.428585714287,160.3,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.Mail.dll" Group="Collapsed" Label="System.Net.Mail.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@117" Category="CodeSchema_Assembly" Bounds="25.4784427964102,976.428585714287,225.016666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.NameResolution.dll" Group="Collapsed" Label="System.Net.NameResolution.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@118" Category="CodeSchema_Assembly" Bounds="25.4784427964102,1003.42858571429,244.943333333333,24.9999999999999" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.NetworkInformation.dll" Group="Collapsed" Label="System.Net.NetworkInformation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@119" Category="CodeSchema_Assembly" Bounds="25.4784427964102,1030.42858571429,161.086666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.Ping.dll" Group="Collapsed" Label="System.Net.Ping.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@12" Category="CodeSchema_Assembly" Bounds="-343.26155720359,301.428585714287,186.243333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\Microsoft.VisualBasic.dll" Group="Collapsed" Label="Microsoft.VisualBasic.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@120" Category="CodeSchema_Assembly" Bounds="25.4784427964102,1057.42858571429,188.736666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.Primitives.dll" Group="Collapsed" Label="System.Net.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@121" Category="CodeSchema_Assembly" Bounds="25.4784427964102,1084.42858571429,185.093333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.Requests.dll" Group="Collapsed" Label="System.Net.Requests.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@122" Category="CodeSchema_Assembly" Bounds="25.4784427964102,1111.42858571429,179.54,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.Security.dll" Group="Collapsed" Label="System.Net.Security.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@123" Category="CodeSchema_Assembly" Bounds="25.4784427964102,1138.42858571429,201.97,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.ServicePoint.dll" Group="Collapsed" Label="System.Net.ServicePoint.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@124" Category="CodeSchema_Assembly" Bounds="304.131776129743,166.428585714287,177.95,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.Sockets.dll" Group="Collapsed" Label="System.Net.Sockets.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@125" Category="CodeSchema_Assembly" Bounds="304.131776129743,193.428585714287,192.05,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.WebClient.dll" Group="Collapsed" Label="System.Net.WebClient.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@126" Category="CodeSchema_Assembly" Bounds="304.131776129743,220.428585714287,252.98,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.WebHeaderCollection.dll" Group="Collapsed" Label="System.Net.WebHeaderCollection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@127" Category="CodeSchema_Assembly" Bounds="304.131776129744,247.428585714287,190.91,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.WebProxy.dll" Group="Collapsed" Label="System.Net.WebProxy.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@128" Category="CodeSchema_Assembly" Bounds="304.131776129744,301.428585714287,202.02,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.WebSockets.dll" Group="Collapsed" Label="System.Net.WebSockets.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@129" Category="CodeSchema_Assembly" Bounds="304.131776129743,274.428585714287,234.996666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Net.WebSockets.Client.dll" Group="Collapsed" Label="System.Net.WebSockets.Client.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@130" Category="CodeSchema_Assembly" Bounds="304.131776129743,355.428585714287,207.253333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Numerics.Vectors.dll" Group="Collapsed" Label="System.Numerics.Vectors.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@131" Category="CodeSchema_Assembly" Bounds="304.131776129744,382.428585714287,184.633333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.ObjectModel.dll" Group="Collapsed" Label="System.ObjectModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@132" Category="CodeSchema_Assembly" Bounds="304.131776129743,436.428585714287,168.063333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.dll" Group="Collapsed" Label="System.Reflection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@133" Category="CodeSchema_Assembly" Bounds="304.131776129743,409.428585714287,245.873333333334,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.DispatchProxy.dll" Group="Collapsed" Label="System.Reflection.DispatchProxy.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@134" Category="CodeSchema_Assembly" Bounds="304.131776129743,463.428585714287,194.043333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.Emit.dll" Group="Collapsed" Label="System.Reflection.Emit.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@135" Category="CodeSchema_Assembly" Bounds="304.131776129743,490.428585714287,263.75,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.Emit.ILGeneration.dll" Group="Collapsed" Label="System.Reflection.Emit.ILGeneration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@136" Category="CodeSchema_Assembly" Bounds="304.131776129744,517.428585714287,258.903333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.Emit.Lightweight.dll" Group="Collapsed" Label="System.Reflection.Emit.Lightweight.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@137" Category="CodeSchema_Assembly" Bounds="304.131776129743,544.428585714287,226.286666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.Extensions.dll" Group="Collapsed" Label="System.Reflection.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@138" Category="CodeSchema_Assembly" Bounds="304.131776129743,571.428585714287,221.236666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.Metadata.dll" Group="Collapsed" Label="System.Reflection.Metadata.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@139" Category="CodeSchema_Assembly" Bounds="304.131776129743,598.428585714287,221.796666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.Primitives.dll" Group="Collapsed" Label="System.Reflection.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@14" Category="CodeSchema_Assembly" Bounds="-343.26155720359,382.428585714287,139.083333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\netstandard.dll" Group="Collapsed" Label="netstandard.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@140" Category="CodeSchema_Assembly" Bounds="304.131776129743,625.428585714287,251.05,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Reflection.TypeExtensions.dll" Group="Collapsed" Label="System.Reflection.TypeExtensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@141" Category="CodeSchema_Assembly" Bounds="304.131776129744,652.428585714287,208.113333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Resources.Reader.dll" Group="Collapsed" Label="System.Resources.Reader.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@142" Category="CodeSchema_Assembly" Bounds="304.131776129743,679.428585714287,266.693333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Resources.ResourceManager.dll" Group="Collapsed" Label="System.Resources.ResourceManager.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@143" Category="CodeSchema_Assembly" Bounds="304.131776129744,706.428585714287,204.193333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Resources.Writer.dll" Group="Collapsed" Label="System.Resources.Writer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@144" Category="CodeSchema_Assembly" Bounds="304.131776129744,760.428585714287,160.026666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.dll" Group="Collapsed" Label="System.Runtime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@145" Category="CodeSchema_Assembly" Bounds="304.131776129743,733.428585714287,294.416666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.CompilerServices.VisualC.dll" Group="Collapsed" Label="System.Runtime.CompilerServices.VisualC.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@146" Category="CodeSchema_Assembly" Bounds="304.131776129743,787.428585714287,218.25,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.Extensions.dll" Group="Collapsed" Label="System.Runtime.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@147" Category="CodeSchema_Assembly" Bounds="304.131776129743,814.428585714287,205.386666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.Handles.dll" Group="Collapsed" Label="System.Runtime.Handles.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@148" Category="CodeSchema_Assembly" Bounds="304.131776129744,841.428585714287,243.6,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.InteropServices.dll" Group="Collapsed" Label="System.Runtime.InteropServices.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@149" Category="CodeSchema_Assembly" Bounds="304.131776129744,868.428585714287,352.723333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.InteropServices.RuntimeInformation.dll" Group="Collapsed" Label="System.Runtime.InteropServices.RuntimeInformation.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@150" Category="CodeSchema_Assembly" Bounds="304.131776129744,895.428585714287,339.313333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.InteropServices.WindowsRuntime.dll" Group="Collapsed" Label="System.Runtime.InteropServices.WindowsRuntime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@151" Category="CodeSchema_Assembly" Bounds="304.131776129743,922.428585714287,198.93,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.Loader.dll" Group="Collapsed" Label="System.Runtime.Loader.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@152" Category="CodeSchema_Assembly" Bounds="304.131776129743,949.428585714287,212.723333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.Numerics.dll" Group="Collapsed" Label="System.Runtime.Numerics.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@153" Category="CodeSchema_Assembly" Bounds="304.131776129743,1003.42858571429,286.386666666667,24.9999999999999" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.Serialization.Formatters.dll" Group="Collapsed" Label="System.Runtime.Serialization.Formatters.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@154" Category="CodeSchema_Assembly" Bounds="304.131776129743,1030.42858571429,252.4,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.Serialization.Json.dll" Group="Collapsed" Label="System.Runtime.Serialization.Json.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@155" Category="CodeSchema_Assembly" Bounds="304.131776129744,1057.42858571429,280.336666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.Serialization.Primitives.dll" Group="Collapsed" Label="System.Runtime.Serialization.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@156" Category="CodeSchema_Assembly" Bounds="304.131776129743,1084.42858571429,249.523333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Runtime.Serialization.Xml.dll" Group="Collapsed" Label="System.Runtime.Serialization.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@157" Category="CodeSchema_Assembly" Bounds="304.131776129743,1111.42858571429,195,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Security.Claims.dll" Group="Collapsed" Label="System.Security.Claims.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@158" Category="CodeSchema_Assembly" Bounds="304.131776129744,1138.42858571429,293.486666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Security.Cryptography.Algorithms.dll" Group="Collapsed" Label="System.Security.Cryptography.Algorithms.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@159" Category="CodeSchema_Assembly" Bounds="658.855109463077,166.428585714287,254.953333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Security.Cryptography.Csp.dll" Group="Collapsed" Label="System.Security.Cryptography.Csp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@16" Category="CodeSchema_Assembly" Bounds="365.150093717447,-301.644267706971,181.760000000001,85.0000000144" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="NotFetched" FetchedChildrenCount="1" FilePath="$(8b8c600d-69d3-4b80-8143-daf58a251754.OutputPath)" Group="Expanded" Label="GB28181.Service.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@160" Category="CodeSchema_Assembly" Bounds="658.855109463077,193.428585714287,284.64,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Security.Cryptography.Encoding.dll" Group="Collapsed" Label="System.Security.Cryptography.Encoding.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@161" Category="CodeSchema_Assembly" Bounds="658.855109463077,220.428585714287,286.51,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Security.Cryptography.Primitives.dll" Group="Collapsed" Label="System.Security.Cryptography.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@162" Category="CodeSchema_Assembly" Bounds="658.855109463077,247.428585714287,320.466666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Security.Cryptography.X509Certificates.dll" Group="Collapsed" Label="System.Security.Cryptography.X509Certificates.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@163" Category="CodeSchema_Assembly" Bounds="658.855109463077,301.428585714287,205.326666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Security.Principal.dll" Group="Collapsed" Label="System.Security.Principal.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@164" Category="CodeSchema_Assembly" Bounds="658.855109463077,328.428585714287,226.643333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Security.SecureString.dll" Group="Collapsed" Label="System.Security.SecureString.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@165" Category="CodeSchema_Assembly" Bounds="658.855109463077,409.428585714287,188.513333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Text.Encoding.dll" Group="Collapsed" Label="System.Text.Encoding.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@166" Category="CodeSchema_Assembly" Bounds="658.855109463077,436.428585714287,246.736666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Text.Encoding.Extensions.dll" Group="Collapsed" Label="System.Text.Encoding.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@167" Category="CodeSchema_Assembly" Bounds="658.855109463077,463.428585714287,240.483333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Text.RegularExpressions.dll" Group="Collapsed" Label="System.Text.RegularExpressions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@168" Category="CodeSchema_Assembly" Bounds="658.855109463077,490.428585714287,169.146666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Threading.dll" Group="Collapsed" Label="System.Threading.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@169" Category="CodeSchema_Assembly" Bounds="658.855109463077,517.428585714287,233.453333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Threading.Overlapped.dll" Group="Collapsed" Label="System.Threading.Overlapped.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@170" Category="CodeSchema_Assembly" Bounds="658.855109463077,571.428585714287,198.943333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Threading.Tasks.dll" Group="Collapsed" Label="System.Threading.Tasks.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@171" Category="CodeSchema_Assembly" Bounds="658.855109463077,544.428585714287,248.603333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Threading.Tasks.Dataflow.dll" Group="Collapsed" Label="System.Threading.Tasks.Dataflow.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@172" Category="CodeSchema_Assembly" Bounds="658.855109463077,598.428585714287,257.166666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Threading.Tasks.Extensions.dll" Group="Collapsed" Label="System.Threading.Tasks.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@173" Category="CodeSchema_Assembly" Bounds="658.855109463077,625.428585714287,239.236666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Threading.Tasks.Parallel.dll" Group="Collapsed" Label="System.Threading.Tasks.Parallel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@174" Category="CodeSchema_Assembly" Bounds="658.855109463077,652.428585714287,208.446666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Threading.Thread.dll" Group="Collapsed" Label="System.Threading.Thread.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@175" Category="CodeSchema_Assembly" Bounds="658.855109463077,679.428585714287,231.69,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Threading.ThreadPool.dll" Group="Collapsed" Label="System.Threading.ThreadPool.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@176" Category="CodeSchema_Assembly" Bounds="658.855109463077,706.428585714287,201.726666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Threading.Timer.dll" Group="Collapsed" Label="System.Threading.Timer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@177" Category="CodeSchema_Assembly" Bounds="658.855109463077,760.428585714287,210.463333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Transactions.Local.dll" Group="Collapsed" Label="System.Transactions.Local.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@178" Category="CodeSchema_Assembly" Bounds="658.855109463077,787.428585714287,173.65,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.ValueTuple.dll" Group="Collapsed" Label="System.ValueTuple.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@179" Category="CodeSchema_Assembly" Bounds="658.855109463077,841.428585714287,196.963333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Web.HttpUtility.dll" Group="Collapsed" Label="System.Web.HttpUtility.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@18" Category="CodeSchema_Assembly" Bounds="-343.26155720359,868.428585714287,140.593333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Core.dll" Group="Collapsed" Label="System.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@180" Category="CodeSchema_Assembly" Bounds="658.855109463077,949.428585714287,208.136666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Xml.ReaderWriter.dll" Group="Collapsed" Label="System.Xml.ReaderWriter.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@181" Category="CodeSchema_Assembly" Bounds="658.855109463077,1003.42858571429,200.926666666667,24.9999999999999" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Xml.XDocument.dll" Group="Collapsed" Label="System.Xml.XDocument.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@182" Category="CodeSchema_Assembly" Bounds="658.855109463077,1030.42858571429,214.17,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Xml.XmlDocument.dll" Group="Collapsed" Label="System.Xml.XmlDocument.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@183" Category="CodeSchema_Assembly" Bounds="658.855109463077,1057.42858571429,206.45,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Xml.XmlSerializer.dll" Group="Collapsed" Label="System.Xml.XmlSerializer.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@184" Category="CodeSchema_Assembly" Bounds="658.855109463077,1084.42858571429,168.953333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Xml.XPath.dll" Group="Collapsed" Label="System.Xml.XPath.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@185" Category="CodeSchema_Assembly" Bounds="658.855109463077,1111.42858571429,233.876666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Xml.XPath.XDocument.dll" Group="Collapsed" Label="System.Xml.XPath.XDocument.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@186" Category="CodeSchema_Namespace" Bounds="-153.324045777604,585.222812329029,62.1999999999998,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="::" />
<Node Id="@187" Category="CodeSchema_Namespace" Bounds="853.855546222396,190.097812321829,151.716666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Aza.Configuration" />
<Node Id="@188" Category="CodeSchema_Namespace" Bounds="-61.1156224976039,585.222812321829,144.673333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="BlueFace.Sys.Net" />
<Node Id="@190" Category="CodeSchema_Namespace" Bounds="385.150093717447,-261.644267699771,141.760000000001,25" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="8" Group="Collapsed" Label="GB28181Service" />
<Node Id="@191" Category="CodeSchema_Namespace" Bounds="-153.324045777604,530.222812321829,124.106666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Heijden.DNS" />
<Node Id="@193" Category="CodeSchema_Namespace" Bounds="-49.5971417776035,473.535312321829,184.646666666667,25" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="99" Group="Collapsed" Label="SIPSorcery.GB28181.Net" />
<Node Id="@194" Category="CodeSchema_Namespace" Bounds="-60.7127711109369,416.847812321829,206.893333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Net.RTP" />
<Node Id="@195" Category="CodeSchema_Namespace" Bounds="724.67086355573,246.785312321829,224.1,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Persistence" />
<Node Id="@196" Category="CodeSchema_Namespace" Bounds="433.606596889063,303.472812321829,250.203333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Persistence.XML" />
<Node Id="@197" Category="CodeSchema_Namespace" Bounds="554.00554355573,20.0353123218289,203.44,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Servers" />
<Node Id="@198" Category="CodeSchema_Namespace" Bounds="599.206914222397,-36.6521876781711,269.016666666666,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Servers.SIPMessage" />
<Node Id="@199" Category="CodeSchema_Namespace" Bounds="160.17885555573,76.7228123218292,265.1,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Servers.SIPMonitor" />
<Node Id="@2" Category="CodeSchema_Assembly" Bounds="-173.324045777604,-76.6521876853711,1295.05653397333,706.8750000216" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="NotFetched" FetchedChildrenCount="22" FilePath="$(42050b07-b393-4292-a89f-7ece14989e0f.OutputPath)" Group="Expanded" Label="SIPSorcery.28181.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@20" Category="CodeSchema_Assembly" Bounds="658.855109463077,1138.42858571429,148.606666666667,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="$(SystemRoot)\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" Group="Collapsed" Label="WindowsBase.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@200" Category="CodeSchema_Namespace" Bounds="221.939324889063,303.472812321829,181.613333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.SIP" />
<Node Id="@201" Category="CodeSchema_Namespace" Bounds="455.70108755573,360.160312321829,206.06,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.SIP.App" />
<Node Id="@202" Category="CodeSchema_Namespace" Bounds="745.60428755573,303.472812321829,182.25,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Sys" />
<Node Id="@203" Category="CodeSchema_Namespace" Bounds="545.816585955729,585.222812321829,210.236666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Sys.Auth" />
<Node Id="@204" Category="CodeSchema_Namespace" Bounds="551.83372755573,190.097812321829,219.83,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Sys.Config" />
<Node Id="@205" Category="CodeSchema_Namespace" Bounds="819.283730222396,20.0353123218289,218.906666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Sys.Model" />
<Node Id="@207" Category="CodeSchema_Namespace" Bounds="551.560252889063,133.410312321829,208.353333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.GB28181.Sys.XML" />
<Node Id="@208" Category="CodeSchema_Namespace" Bounds="253.958895555729,246.785312321829,131.550000000001,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.SIP" />
<Node Id="@209" Category="CodeSchema_Namespace" Bounds="-28.2621337776037,246.785312321829,155.996666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPSorcery.SIP.App" />
<Node Id="@210" Category="CodeSchema_Class" Bounds="1954.10840328511,364.861529722623,174.756666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="AssemblyStreamState" UseManualLocation="True" />
<Node Id="@211" Category="CodeSchema_Class" Bounds="1210.69173661844,309.861529722622,146.68,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="AudioPSAnalyze" UseManualLocation="True" />
<Node Id="@212" Category="CodeSchema_Delegate" Bounds="80.6377191280815,-2.02536418365247,170.646666666667,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="CatalogQueryHandler" UseManualLocation="True" />
<Node Id="@213" Category="CodeSchema_Class" Bounds="1223.27340328511,364.861529722623,121.516666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Data_Info_s" UseManualLocation="True" />
<Node Id="@214" Category="CodeSchema_Class" Bounds="1547.67173661844,309.861529722622,132.06,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="DNSManager" UseManualLocation="True" />
<Node Id="@215" Category="CodeSchema_Class" Bounds="-89.1106119432627,-245.907185422453,160.47,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="HeartBeatEndPoint" UseManualLocation="True" />
<Node Id="@216" Category="CodeSchema_Class" Bounds="1531.85163192192,84.7990297226222,129.83,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="IceCandidate" UseManualLocation="True" />
<Node Id="@217" Category="CodeSchema_Enum" Bounds="1589.92996525525,141.486529722622,185.673333333334,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="IceCandidateTypesEnum" UseManualLocation="True" />
<Node Id="@218" Category="CodeSchema_Enum" Bounds="1153.64163192192,84.7990297226222,194.25,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="IceConnectionStatesEnum" UseManualLocation="True" />
<Node Id="@219" Category="CodeSchema_Class" Bounds="1070.95506995177,364.861529722623,89.1199999999999,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ICMP" UseManualLocation="True" />
<Node Id="@22" Category="CodeSchema_Assembly" Bounds="25.4784427964102,247.428585714287,159.813333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Drawing.dll" Group="Collapsed" Label="System.Drawing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@220" Category="CodeSchema_Class" Bounds="1050.33840328511,309.861529722622,130.353333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ICMPListener" UseManualLocation="True" />
<Node Id="@221" Category="CodeSchema_Delegate" Bounds="281.590010156155,-508.745564183653,149.826666666667,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="KeepAliveHandler" UseManualLocation="True" />
<Node Id="@222" Category="CodeSchema_Class" Bounds="-74.7380027198684,-355.907185422453,127.51,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="MainProcess" UseManualLocation="True" />
<Node Id="@224" Category="CodeSchema_Class" Bounds="-140.688814510866,-300.907185422453,142.703333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="20" Group="Collapsed" Label="MessageCenter" UseManualLocation="True" />
<Node Id="@225" Category="CodeSchema_Class" Bounds="-135.991890013783,364.861529722623,95.0799999999999,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Mjpeg" UseManualLocation="True" />
<Node Id="@226" Category="CodeSchema_Class" Bounds="1387.37173661844,364.861529722623,155.603333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="NetTestDescriptor" UseManualLocation="True" />
<Node Id="@227" Category="CodeSchema_Class" Bounds="-82.4817993800699,-427.18045589055,106.606666666667,25" CodeSchemaProperty_IsInternal="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Program" UseManualLocation="True" />
<Node Id="@228" Category="CodeSchema_Class" Bounds="-32.5367014114136,-85.2634702773777,106.606666666667,25" CodeSchemaProperty_IsInternal="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Program" UseManualLocation="True" />
<Node Id="@229" Category="CodeSchema_Delegate" Bounds="649.648760156155,-318.242546836727,166.85,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RecordQueryHandler" UseManualLocation="True" />
<Node Id="@230" Category="CodeSchema_Class" Bounds="15.3669094631894,584.861529722623,125.94,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPHeader" UseManualLocation="True" />
<Node Id="@231" Category="CodeSchema_Class" Bounds="20.3956652552527,474.861529722623,121.786666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPPacket" UseManualLocation="True" />
<Node Id="@232" Category="CodeSchema_Class" Bounds="417.857579746271,584.861529722623,122.946666666666,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPReport" UseManualLocation="True" />
<Node Id="@233" Category="CodeSchema_Class" Bounds="671.554969951772,529.861529722623,161.366666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPReportHeader" UseManualLocation="True" />
<Node Id="@234" Category="CodeSchema_Class" Bounds="413.165865255253,474.861529722623,157.213333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPReportPacket" UseManualLocation="True" />
<Node Id="@235" Category="CodeSchema_Delegate" Bounds="146.554976652884,419.861529722623,212.256666666667,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPReportRecievedDelegate" UseManualLocation="True" />
<Node Id="@236" Category="CodeSchema_Class" Bounds="600.379298588586,474.861529722623,166.173333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPReportSampler" UseManualLocation="True" />
<Node Id="@237" Category="CodeSchema_Class" Bounds="779.594446412936,584.861529722623,152.803333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPReportTypes" UseManualLocation="True" />
<Node Id="@238" Category="CodeSchema_Enum" Bounds="570.804346412937,584.861529722623,178.79,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPReportTypesEnum" UseManualLocation="True" />
<Node Id="@239" Category="CodeSchema_Delegate" Bounds="277.024769951772,529.861529722623,201.046666666667,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTCPSampleReadyDelegate" UseManualLocation="True" />
<Node Id="@24" Category="CodeSchema_Assembly" Bounds="658.855109463077,895.428585714287,136.003333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Xml.dll" Group="Collapsed" Label="System.Xml.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@240" Category="CodeSchema_Delegate" Bounds="240.59747974627,584.861529722623,147.26,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPDataReceived" UseManualLocation="True" />
<Node Id="@241" Category="CodeSchema_Delegate" Bounds="796.552731921919,474.861529722623,123.846666666667,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPDataSent" UseManualLocation="True" />
<Node Id="@242" Category="CodeSchema_Class" Bounds="-154.311890013783,419.861529722623,113.4,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPFrame" UseManualLocation="True" />
<Node Id="@243" Category="CodeSchema_Class" Bounds="104.011344405385,529.861529722623,119.066666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPHeader" UseManualLocation="True" />
<Node Id="@244" Category="CodeSchema_Class" Bounds="-124.517768078081,474.861529722623,114.913333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPPacket" UseManualLocation="True" />
<Node Id="@245" Category="CodeSchema_Class" Bounds="862.921736618439,529.861529722623,157.416666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPReceiveRecord" UseManualLocation="True" />
<Node Id="@246" Category="CodeSchema_Delegate" Bounds="172.182431921919,474.861529722623,210.983333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPRemoteEndPointChanged" UseManualLocation="True" />
<Node Id="@247" Category="CodeSchema_Class" Bounds="388.811743319551,419.861529722623,102.68,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPSink" UseManualLocation="True" />
<Node Id="@248" Category="CodeSchema_Delegate" Bounds="508.071536618439,529.861529722623,133.483333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTPSinkClosed" UseManualLocation="True" />
<Node Id="@249" Category="CodeSchema_Class" Bounds="-380.359282959977,364.861529722622,117.163333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPClient" UseManualLocation="True" />
<Node Id="@250" Category="CodeSchema_Class" Bounds="-380.359282959977,309.861529722622,147.44,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPConnection" UseManualLocation="True" />
<Node Id="@251" Category="CodeSchema_Class" Bounds="-446.415937481132,529.861529722623,125.206666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPHeader" UseManualLocation="True" />
<Node Id="@252" Category="CodeSchema_Enum" Bounds="-1252.49836807808,474.861529722623,146.826666666667,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPHeaderError" UseManualLocation="True" />
<Node Id="@253" Category="CodeSchema_Enum" Bounds="-718.677773328354,584.861529722623,178.96,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPHeaderParserError" UseManualLocation="True" />
<Node Id="@254" Category="CodeSchema_Class" Bounds="-287.994534744747,474.861529722623,133.476666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPMessage" UseManualLocation="True" />
<Node Id="@255" Category="CodeSchema_Enum" Bounds="-509.717673328353,584.861529722623,189.32,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPMessageTypesEnum" UseManualLocation="True" />
<Node Id="@256" Category="CodeSchema_Class" Bounds="-451.881301411414,474.861529722623,133.886666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPMethods" UseManualLocation="True" />
<Node Id="@257" Category="CodeSchema_Enum" Bounds="-641.754734744748,474.861529722623,159.873333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPMethodsEnum" UseManualLocation="True" />
<Node Id="@258" Category="CodeSchema_Class" Bounds="-629.057553481937,419.861529722623,129.183333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPRequest" UseManualLocation="True" />
<Node Id="@259" Category="CodeSchema_Enum" Bounds="-854.691501411413,474.861529722623,182.936666666666,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPRequestParserError" UseManualLocation="True" />
<Node Id="@26" Category="CodeSchema_Assembly" Bounds="369.901817247128,-131.652187692572,144.983333333334,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="NotFetched" FilePath="$(cdec4f51-cc42-45a7-8504-80f6f84dfaa6.OutputPath)" Group="Collapsed" Label="GrpcProtocol.dll">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@260" Category="CodeSchema_Class" Bounds="-796.284320148602,419.861529722623,137.226666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPResponse" UseManualLocation="True" />
<Node Id="@261" Category="CodeSchema_Enum" Bounds="-1075.67160141141,474.861529722623,190.98,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPResponseParserError" UseManualLocation="True" />
<Node Id="@262" Category="CodeSchema_Class" Bounds="-1074.72623748113,529.861529722623,202.233333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPResponseStatusCodes" UseManualLocation="True" />
<Node Id="@263" Category="CodeSchema_Enum" Bounds="-704.636037481132,529.861529722623,228.22,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPResponseStatusCodesEnum" UseManualLocation="True" />
<Node Id="@264" Category="CodeSchema_Class" Bounds="-530.166049626643,348.754851276314,119.806666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPServer" UseManualLocation="True" />
<Node Id="@265" Category="CodeSchema_Class" Bounds="-310.661990013783,419.861529722623,126.35,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPSession" UseManualLocation="True" />
<Node Id="@266" Category="CodeSchema_Class" Bounds="-290.397573328353,584.861529722623,174.936666666666,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPTransportHeader" UseManualLocation="True" />
<Node Id="@267" Category="CodeSchema_Class" Bounds="-842.492804147799,529.861529722623,107.856666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="RTSPURL" UseManualLocation="True" />
<Node Id="@268" Category="CodeSchema_Class" Bounds="1841.51329858859,28.111529722622,82.5066666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SDP" UseManualLocation="True" />
<Node Id="@269" Category="CodeSchema_Class" Bounds="2192.09663192192,141.486529722622,205.34,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SDPConnectionInformation" UseManualLocation="True" />
<Node Id="@270" Category="CodeSchema_Class" Bounds="1986.33663192192,84.799029722622,196.860000000001,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SDPMediaAnnouncement" UseManualLocation="True" />
<Node Id="@271" Category="CodeSchema_Class" Bounds="2008.15996525525,141.486529722622,153.213333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SDPMediaFormat" UseManualLocation="True" />
<Node Id="@272" Category="CodeSchema_Enum" Bounds="1992.61996525525,198.174029722622,184.293333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SDPMediaFormatsEnum" UseManualLocation="True" />
<Node Id="@273" Category="CodeSchema_Class" Bounds="1810.01829858859,84.799029722622,145.496666666666,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SDPMediaTypes" UseManualLocation="True" />
<Node Id="@274" Category="CodeSchema_Enum" Bounds="1806.02496525525,141.486529722622,171.483333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SDPMediaTypesEnum" UseManualLocation="True" />
<Node Id="@275" Category="CodeSchema_Delegate" Bounds="281.284485794748,-2.02536418365247,183.533333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="SIPServiceStatusHandler" UseManualLocation="True" />
<Node Id="@276" Category="CodeSchema_Class" Bounds="-1252.49836807808,198.174029722622,180.53,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNAddressAttribute" UseManualLocation="True" />
<Node Id="@277" Category="CodeSchema_Class" Bounds="1709.73173661844,309.861529722622,139.23,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNAppState" UseManualLocation="True" />
<Node Id="@278" Category="CodeSchema_Class" Bounds="-969.24336807808,141.486529722622,138.02,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNAttribute" UseManualLocation="True" />
<Node Id="@279" Category="CodeSchema_Class" Bounds="-759.171701411414,198.174029722622,167.876666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNAttributeTypes" UseManualLocation="True" />
<Node Id="@28" Category="CodeSchema_Assembly" Bounds="25.4784427964102,463.428585714287,257.89,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.IO.Compression.FileSystem.dll" Group="Collapsed" Label="System.IO.Compression.FileSystem.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@280" Category="CodeSchema_Enum" Bounds="-1138.16503474475,254.861529722622,193.863333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNAttributeTypesEnum" UseManualLocation="True" />
<Node Id="@281" Category="CodeSchema_Class" Bounds="-1010.67170141141,198.174029722622,220.876666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNChangeRequestAttribute" UseManualLocation="True" />
<Node Id="@282" Category="CodeSchema_Class" Bounds="-868.861701411413,28.1115297226224,121.256666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNClient" UseManualLocation="True" />
<Node Id="@283" Category="CodeSchema_Class" Bounds="-464.88336807808,141.486529722622,129.3,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNHeader" UseManualLocation="True" />
<Node Id="@284" Category="CodeSchema_Class" Bounds="19.7099652552533,-28.5759702773777,132.113333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNListener" UseManualLocation="True" />
<Node Id="@285" Category="CodeSchema_Class" Bounds="-597.01836807808,84.7990297226224,137.57,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNMessage" UseManualLocation="True" />
<Node Id="@286" Category="CodeSchema_Delegate" Bounds="1344.02163192192,28.1115297226222,179.49,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNMessageReceived" UseManualLocation="True" />
<Node Id="@287" Category="CodeSchema_Class" Bounds="-240.946701411413,198.174029722622,167.426666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNMessageTypes" UseManualLocation="True" />
<Node Id="@288" Category="CodeSchema_Enum" Bounds="-496.940034744747,198.174029722622,193.413333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNMessageTypesEnum" UseManualLocation="True" />
<Node Id="@289" Category="CodeSchema_Delegate" Bounds="-114.466701411414,28.1115297226223,206.466666666667,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNSendMessageDelegate" UseManualLocation="True" />
<Node Id="@290" Category="CodeSchema_Class" Bounds="-502.18336807808,-28.5759702773776,123.9,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNServer" UseManualLocation="True" />
<Node Id="@291" Category="CodeSchema_Delegate" Bounds="-717.240034744747,28.1115297226224,246.013333333333,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNServerRequestInTraceDelegate" UseManualLocation="True" />
<Node Id="@292" Category="CodeSchema_Delegate" Bounds="-409.221701411414,28.1115297226224,263.976666666667,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNServerResponseOutTraceDelegate" UseManualLocation="True" />
<Node Id="@293" Category="CodeSchema_Class" Bounds="943.393298588586,198.174029722622,192.746666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2AddressAttribute" UseManualLocation="True" />
<Node Id="@294" Category="CodeSchema_Class" Bounds="1003.64829858859,141.486529722622,150.236666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2Attribute" UseManualLocation="True" />
<Node Id="@295" Category="CodeSchema_Class" Bounds="1486.58173661844,419.861529722623,202.703333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2AttributeConstants" UseManualLocation="True" />
<Node Id="@296" Category="CodeSchema_Class" Bounds="498.719965255253,198.174029722622,180.093333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2AttributeTypes" UseManualLocation="True" />
<Node Id="@297" Category="CodeSchema_Enum" Bounds="1327.72663192192,254.861529722622,206.08,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2AttributeTypesEnum" UseManualLocation="True" />
<Node Id="@298" Category="CodeSchema_Class" Bounds="1166.21996525525,198.174029722622,233.093333333334,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2ChangeRequestAttribute" UseManualLocation="True" />
<Node Id="@299" Category="CodeSchema_Class" Bounds="708.93663192192,198.174029722622,203.66,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2ErrorCodeAttribute" UseManualLocation="True" />
<Node Id="@30" Category="CodeSchema_Assembly" Bounds="25.4784427964102,220.428585714287,113.083333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.dll" Group="Collapsed" Label="System.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@300" Category="CodeSchema_Class" Bounds="161.008298588587,141.486529722622,141.516666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2Header" UseManualLocation="True" />
<Node Id="@301" Category="CodeSchema_Class" Bounds="972.873298588586,84.7990297226222,149.786666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2Message" UseManualLocation="True" />
<Node Id="@302" Category="CodeSchema_Class" Bounds="-11.055034744747,198.174029722622,179.643333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2MessageTypes" UseManualLocation="True" />
<Node Id="@303" Category="CodeSchema_Enum" Bounds="230.95163192192,198.174029722622,205.63,25" CodeSchemaProperty_IsFinal="True" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2MessageTypesEnum" UseManualLocation="True" />
<Node Id="@304" Category="CodeSchema_Class" Bounds="1461.80996525525,198.174029722622,215.913333333333,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="STUNv2XORAddressAttribute" UseManualLocation="True" />
<Node Id="@305" Category="CodeSchema_Class" Bounds="1441.73663192192,141.486529722622,118.06,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="TurnServer" UseManualLocation="True" />
<Node Id="@306" Category="CodeSchema_Class" Bounds="-10.9117900137833,394.624655111848,127.466666666667,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="UDPChannel" UseManualLocation="True" />
<Node Id="@307" Category="CodeSchema_Class" Bounds="-88.1850347447471,254.861529722622,91.9033333333332,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="Utility" UseManualLocation="True" />
<Node Id="@308" Category="CodeSchema_Class" Bounds="1188.33663192192,28.1115297226222,124.86,25" CodeSchemaProperty_IsPublic="True" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="WebRtcPeer" UseManualLocation="True" />
<Node Id="@309" Category="CodeSchema_Method" Bounds="-242.991974320582,-301.82546418365,130.02,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="Fetched" Label="OnAlarmReceived" UseManualLocation="True" />
<Node Id="@310" Category="CodeSchema_Method" Bounds="-82.716974320582,-301.82546418365,139.47,25.96" CodeSchemaProperty_IsPublic="True" DelayedCrossGroupLinksState="Fetched" Label="OnCatalogReceived" UseManualLocation="True" />
<Node Id="@311" Category="CodeSchema_Method" Bounds="87.1663590127512,-301.82546418365,117.703333333333,25.96" CodeSchemaProperty_IsConstructor="True" CodeSchemaProperty_IsPublic="True" CodeSchemaProperty_IsSpecialName="True" DelayedCrossGroupLinksState="Fetched" Label="MessageCenter" UseManualLocation="True" />
<Node Id="@312" Category="CodeSchema_Method" Bounds="-249.946974320582,-77.9854641836499,172.013333333333,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="Fetched" Label="OnNotifyCatalogReceived" UseManualLocation="True" />
<Node Id="@313" Category="CodeSchema_Method" Bounds="-83.2869743205819,-413.74546418365,156.443333333333,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="Fetched" Label="OnRecordInfoReceived" UseManualLocation="True" />
<Node Id="@314" Category="CodeSchema_Method" Bounds="-49.881974320582,-357.78546418365,89.6333333333333,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="SetRecord" UseManualLocation="True" />
<Node Id="@316" Category="CodeSchema_Method" Bounds="-47.9336409872488,-77.9854641836499,222.916666666667,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="Fetched" Label="OnDeviceConfigDownloadReceived" UseManualLocation="True" />
<Node Id="@317" Category="CodeSchema_Method" Bounds="-249.946974320582,-189.90546418365,138.853333333333,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="DeviceInfoReceived" UseManualLocation="True" />
<Node Id="@318" Category="CodeSchema_Method" Bounds="99.0996923460846,-189.90546418365,154.69,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="Fetched" Label="OnDeviceInfoReceived" UseManualLocation="True" />
<Node Id="@319" Category="CodeSchema_Method" Bounds="-81.0936409872487,-189.90546418365,150.193333333333,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="DeviceStatusReceived" UseManualLocation="True" />
<Node Id="@32" Category="CodeSchema_Assembly" Bounds="-343.26155720359,814.428585714287,188.526666666667,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Configuration.dll" Group="Collapsed" Label="System.Configuration.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@320" Category="CodeSchema_Method" Bounds="137.509692346084,-133.94546418365,166.03,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="Fetched" Label="OnDeviceStatusReceived" UseManualLocation="True" />
<Node Id="@321" Category="CodeSchema_Method" Bounds="-56.4903076539154,-133.94546418365,164,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="Fetched" Label="OnMediaStatusReceived" UseManualLocation="True" />
<Node Id="@322" Category="CodeSchema_Method" Bounds="-249.946974320582,-133.94546418365,163.456666666667,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="Fetched" Label="OnPresetQueryReceived" UseManualLocation="True" />
<Node Id="@323" Category="CodeSchema_Method" Bounds="-249.946974320582,-413.74546418365,136.66,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="NotFetched" Label="OnServiceChanged" UseManualLocation="True" />
<Node Id="@324" Category="CodeSchema_Method" Bounds="-234.766974320582,-357.78546418365,106.3,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="NotFetched" Label="SetSIPService" UseManualLocation="True" />
<Node Id="@325" Category="CodeSchema_Method" Bounds="235.463025679418,-301.82546418365,149.11,25.96" CodeSchemaProperty_IsInternal="True" DelayedCrossGroupLinksState="NotFetched" Label="OnKeepaliveReceived" UseManualLocation="True" />
<Node Id="@326" Category="CodeSchema_Field" Bounds="-53.9753076539154,-245.86546418365,115.986666666667,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="_catalogQueue" UseManualLocation="True" />
<Node Id="@327" Category="CodeSchema_Field" Bounds="92.8646923460847,-245.86546418365,128.306666666667,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="_keepAliveQueue" UseManualLocation="True" />
<Node Id="@328" Category="CodeSchema_Field" Bounds="251.368025679418,-245.86546418365,117.3,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="_keepaliveTime" UseManualLocation="True" />
<Node Id="@329" Category="CodeSchema_Field" Bounds="-249.946974320582,-245.86546418365,165.93,25.96" CodeSchemaProperty_IsPrivate="True" DelayedCrossGroupLinksState="Fetched" Label="_sipCoreMessageService" UseManualLocation="True" />
<Node Id="@34" Category="CodeSchema_Assembly" Bounds="304.131776129743,976.428585714287,226.603333333334,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Runtime.Serialization.dll" Group="Collapsed" Label="System.Runtime.Serialization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@36" Category="CodeSchema_Assembly" Bounds="658.855109463077,976.428585714287,202.58,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Xml.Serialization.dll" Group="Collapsed" Label="System.Xml.Serialization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@38" Category="CodeSchema_Assembly" Bounds="-343.26155720359,625.428585714287,282.816666666667,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ComponentModel.Composition, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.ComponentModel.Composition.dll" Group="Collapsed" Label="System.ComponentModel.Composition.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@4" Category="CodeSchema_Assembly" Bounds="-343.26155720359,922.428585714287,140.376666666667,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Data.dll" Group="Collapsed" Label="System.Data.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@40" Category="CodeSchema_Assembly" Bounds="-343.26155720359,220.428585714287,166.383333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\Microsoft.CSharp.dll" Group="Collapsed" Label="Microsoft.CSharp.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@42" Category="CodeSchema_Assembly" Bounds="658.855109463077,922.428585714287,161.016666666667,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Xml.Linq.dll" Group="Collapsed" Label="System.Xml.Linq.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@44" Category="CodeSchema_Assembly" Bounds="258.114125254668,-186.652187699772,162.22,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="NotFetched" FilePath="$(00172e1f-78f2-443a-ba95-3330b197f685.OutputPath)" Group="Collapsed" Label="GoMicro.Sidecar.dll">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@46" Category="CodeSchema_Assembly" Bounds="304.131776129743,328.428585714287,165.78,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Numerics.dll" Group="Collapsed" Label="System.Numerics.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@48" Category="CodeSchema_Assembly" Bounds="-343.26155720359,652.428585714287,304.246666666667,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.ComponentModel.DataAnnotations.dll" Group="Collapsed" Label="System.ComponentModel.DataAnnotations.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@50" Category="CodeSchema_Assembly" Bounds="658.855109463077,733.428585714287,180.626666666667,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Transactions.dll" Group="Collapsed" Label="System.Transactions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@52" Category="CodeSchema_Assembly" Bounds="658.855109463077,382.428585714287,192.91,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.ServiceProcess.dll" Group="Collapsed" Label="System.ServiceProcess.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@54" Category="CodeSchema_Assembly" Bounds="658.855109463077,868.428585714287,164.453333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Windows, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Windows.dll" Group="Collapsed" Label="System.Windows.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@56" Category="CodeSchema_Assembly" Bounds="25.4784427964102,868.428585714287,135.003333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Net, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Net.dll" Group="Collapsed" Label="System.Net.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@58" Category="CodeSchema_Assembly" Bounds="413.763554304498,660.165797307428,138.533333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="NotFetched" FilePath="$(bcf4602e-348c-46a2-960c-02496f28c950.OutputPath)" Group="Collapsed" Label="Logger4Net.dll">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@6" Category="CodeSchema_Assembly" Bounds="658.855109463077,355.428585714287,213.706666666667,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.ServiceModel.Web.dll" Group="Collapsed" Label="System.ServiceModel.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@60" Category="CodeSchema_Assembly" Bounds="450.334333936609,-186.652187699772,132.423333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="NotFetched" FilePath="$(d4e4c121-ccb2-44fc-91c1-e911e7da5a2d.OutputPath)" Group="Collapsed" Label="GrpcAgent.dll">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@62" Category="CodeSchema_Assembly" Bounds="658.855109463077,274.428585714287,157.62,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Security.dll" Group="Collapsed" Label="System.Security.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@63" Category="CodeSchema_Assembly" Bounds="-343.26155720359,166.428585714287,163.243333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Administrator\.nuget\packages\google.protobuf\3.5.1\lib\netstandard1.0\Google.Protobuf.dll" Group="Collapsed" Label="Google.Protobuf.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@64" Category="CodeSchema_Assembly" Bounds="-343.26155720359,193.428585714287,127.993333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Administrator\.nuget\packages\grpc.core\1.10.0\lib\netstandard1.5\Grpc.Core.dll" Group="Collapsed" Label="Grpc.Core.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@65" Category="CodeSchema_Assembly" Bounds="-343.26155720359,274.428585714287,298.476666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.dependencyinjection\2.0.0\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.dll" Group="Collapsed" Label="Microsoft.Extensions.DependencyInjection.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@66" Category="CodeSchema_Assembly" Bounds="-343.26155720359,247.428585714287,366.74,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.dependencyinjection.abstractions\2.0.0\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll" Group="Collapsed" Label="Microsoft.Extensions.DependencyInjection.Abstractions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@67" Category="CodeSchema_Assembly" Bounds="-343.26155720359,328.428585714287,216.036666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\Microsoft.Win32.Primitives.dll" Group="Collapsed" Label="Microsoft.Win32.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@68" Category="CodeSchema_Assembly" Bounds="-343.26155720359,409.428585714287,178.696666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.AppContext.dll" Group="Collapsed" Label="System.AppContext.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@69" Category="CodeSchema_Assembly" Bounds="-343.26155720359,436.428585714287,152.41,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Buffers.dll" Group="Collapsed" Label="System.Buffers.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@70" Category="CodeSchema_Assembly" Bounds="-343.26155720359,490.428585714287,173.663333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Collections.dll" Group="Collapsed" Label="System.Collections.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@71" Category="CodeSchema_Assembly" Bounds="-343.26155720359,463.428585714287,235.326666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Collections.Concurrent.dll" Group="Collapsed" Label="System.Collections.Concurrent.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@72" Category="CodeSchema_Assembly" Bounds="-343.26155720359,517.428585714287,233.33,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Collections.Immutable.dll" Group="Collapsed" Label="System.Collections.Immutable.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@73" Category="CodeSchema_Assembly" Bounds="-343.26155720359,544.428585714287,239.26,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Collections.NonGeneric.dll" Group="Collapsed" Label="System.Collections.NonGeneric.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@74" Category="CodeSchema_Assembly" Bounds="-343.26155720359,571.428585714287,235.106666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Collections.Specialized.dll" Group="Collapsed" Label="System.Collections.Specialized.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@75" Category="CodeSchema_Assembly" Bounds="-343.26155720359,679.428585714287,212.543333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.ComponentModel.dll" Group="Collapsed" Label="System.ComponentModel.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@76" Category="CodeSchema_Assembly" Bounds="-343.26155720359,598.428585714287,279.553333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.ComponentModel.Annotations.dll" Group="Collapsed" Label="System.ComponentModel.Annotations.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@77" Category="CodeSchema_Assembly" Bounds="-343.26155720359,706.428585714287,306.49,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.ComponentModel.EventBasedAsync.dll" Group="Collapsed" Label="System.ComponentModel.EventBasedAsync.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@78" Category="CodeSchema_Assembly" Bounds="-343.26155720359,733.428585714287,266.276666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.ComponentModel.Primitives.dll" Group="Collapsed" Label="System.ComponentModel.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@79" Category="CodeSchema_Assembly" Bounds="-343.26155720359,760.428585714287,291.87,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.ComponentModel.TypeConverter.dll" Group="Collapsed" Label="System.ComponentModel.TypeConverter.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@8" Category="CodeSchema_Assembly" Bounds="658.855109463077,814.428585714287,139.753333333333,25" CodeSchemaProperty_IsExternal="True" CodeSchemaProperty_StrongName="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" DelayedChildNodesState="NotFetched" FilePath="$(Fx)\System.Web.dll" Group="Collapsed" Label="System.Web.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@80" Category="CodeSchema_Assembly" Bounds="-343.26155720359,787.428585714287,311.266666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Users\Administrator\.nuget\packages\system.configuration.configurationmanager\4.4.1\ref\netstandard2.0\System.Configuration.ConfigurationManager.dll" Group="Collapsed" Label="System.Configuration.ConfigurationManager.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@81" Category="CodeSchema_Assembly" Bounds="-343.26155720359,841.428585714287,158.24,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Console.dll" Group="Collapsed" Label="System.Console.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@82" Category="CodeSchema_Assembly" Bounds="-343.26155720359,895.428585714287,191.93,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Data.Common.dll" Group="Collapsed" Label="System.Data.Common.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@83" Category="CodeSchema_Assembly" Bounds="-343.26155720359,949.428585714287,229.6,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.Contracts.dll" Group="Collapsed" Label="System.Diagnostics.Contracts.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@84" Category="CodeSchema_Assembly" Bounds="-343.26155720359,976.428585714287,214.9,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.Debug.dll" Group="Collapsed" Label="System.Diagnostics.Debug.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@85" Category="CodeSchema_Assembly" Bounds="-343.26155720359,1003.42858571429,271.41,24.9999999999999" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.DiagnosticSource.dll" Group="Collapsed" Label="System.Diagnostics.DiagnosticSource.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@86" Category="CodeSchema_Assembly" Bounds="-343.26155720359,1030.42858571429,256.98,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.FileVersionInfo.dll" Group="Collapsed" Label="System.Diagnostics.FileVersionInfo.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@87" Category="CodeSchema_Assembly" Bounds="-343.26155720359,1057.42858571429,219.23,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.Process.dll" Group="Collapsed" Label="System.Diagnostics.Process.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@88" Category="CodeSchema_Assembly" Bounds="-343.26155720359,1084.42858571429,234.31,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.StackTrace.dll" Group="Collapsed" Label="System.Diagnostics.StackTrace.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@89" Category="CodeSchema_Assembly" Bounds="-343.26155720359,1111.42858571429,301.65,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.TextWriterTraceListener.dll" Group="Collapsed" Label="System.Diagnostics.TextWriterTraceListener.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@90" Category="CodeSchema_Assembly" Bounds="-343.26155720359,1138.42858571429,206.476666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.Tools.dll" Group="Collapsed" Label="System.Diagnostics.Tools.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@91" Category="CodeSchema_Assembly" Bounds="25.4784427964102,166.428585714287,242.83,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.TraceSource.dll" Group="Collapsed" Label="System.Diagnostics.TraceSource.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@92" Category="CodeSchema_Assembly" Bounds="25.4784427964102,193.428585714287,217.13,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Diagnostics.Tracing.dll" Group="Collapsed" Label="System.Diagnostics.Tracing.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@93" Category="CodeSchema_Assembly" Bounds="25.4784427964102,274.428585714287,213.546666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Drawing.Primitives.dll" Group="Collapsed" Label="System.Drawing.Primitives.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@94" Category="CodeSchema_Assembly" Bounds="25.4784427964102,301.428585714287,208.53,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Dynamic.Runtime.dll" Group="Collapsed" Label="System.Dynamic.Runtime.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@95" Category="CodeSchema_Assembly" Bounds="25.4784427964102,355.428585714287,185.153333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Globalization.dll" Group="Collapsed" Label="System.Globalization.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@96" Category="CodeSchema_Assembly" Bounds="25.4784427964102,328.428585714287,239.703333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Globalization.Calendars.dll" Group="Collapsed" Label="System.Globalization.Calendars.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@97" Category="CodeSchema_Assembly" Bounds="25.4784427964102,382.428585714287,243.376666666667,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.Globalization.Extensions.dll" Group="Collapsed" Label="System.Globalization.Extensions.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@98" Category="CodeSchema_Assembly" Bounds="25.4784427964102,409.428585714287,204.403333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\system.interactive.async\3.1.1\lib\netstandard1.3\System.Interactive.Async.dll" Group="Collapsed" Label="System.Interactive.Async.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="@99" Category="CodeSchema_Assembly" Bounds="25.4784427964102,517.428585714287,127.923333333333,25" CodeSchemaProperty_IsExternal="True" DelayedChildNodesState="NotFetched" FilePath="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0\System.IO.dll" Group="Collapsed" Label="System.IO.dll" UseManualLocation="True">
<Category Ref="FileSystem.Category.FileOfType.dll" />
</Node>
<Node Id="_standardGraphExternalsGroup" Category="Externals" Bounds="398.472499964686,715.218852343428,86.99,25" Group="Collapsed" Label="Externals" LayoutSettings="List" />
</Nodes>
<Links>
<Link Source="@16" Target="@10" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@100" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@101" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@102" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@103" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@104" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@105" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@106" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@107" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@108" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@109" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@110" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@111" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@112" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@113" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@114" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@115" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@116" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@117" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@118" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@119" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@12" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@120" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@121" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@122" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@123" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@124" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@125" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@126" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@127" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@128" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@129" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@130" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@131" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@132" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@133" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@134" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@135" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@136" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@137" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@138" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@139" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@14" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@140" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@141" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@142" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@143" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@144" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@145" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@146" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@147" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@148" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@149" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@150" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@151" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@152" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@153" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@154" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@155" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@156" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@157" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@158" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@159" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@160" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@161" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@162" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@163" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@164" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@165" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@166" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@167" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@168" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@169" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@170" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@171" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@172" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@173" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@174" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@175" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@176" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@177" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@178" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@179" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@18" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@180" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@181" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@182" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@183" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@184" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@185" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@190" Category="Contains" FetchingParent="@16" />
<Link Source="@16" Target="@2" Category="CodeMap_ProjectReference" Bounds="338.759887695313,21.4285583496094,11.3811645507813,76.4243240356445" />
<Link Source="@16" Target="@20" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@22" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@24" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@26" Category="CodeMap_ExternalReference" Bounds="162.70182800293,21.4285583496094,77.2173919677734,131.474014282227" />
<Link Source="@16" Target="@28" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@30" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@32" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@34" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@36" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@38" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@4" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@40" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@42" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@44" Category="CodeMap_ProjectReference" Bounds="363.672711883677,-216.660267987789,33.9329838370346,24.7014669547562" />
<Link Source="@16" Target="@46" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@48" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@50" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@52" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@54" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@56" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@58" Category="CodeMap_ExternalReference" Bounds="362.19873046875,21.4285583496094,63.3635559082031,137.777770996094" />
<Link Source="@16" Target="@6" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@60" Category="CodeMap_ProjectReference" Bounds="288.179361860993,21.4285575268818,12.4076111197426,22.1481484235996" />
<Link Source="@16" Target="@62" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@63" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@64" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@65" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@66" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@67" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@68" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@69" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@70" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@71" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@72" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@73" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@74" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@75" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@76" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@77" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@78" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@79" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@8" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@80" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@81" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@82" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@83" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@84" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@85" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@86" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@87" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@88" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@89" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@90" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@91" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@92" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@93" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@94" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@95" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@96" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@97" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@98" Category="CodeMap_ExternalReference" />
<Link Source="@16" Target="@99" Category="CodeMap_ExternalReference" />
<Link Source="@187" Target="@195" Category="References" Bounds="864.923889160156,215.097808837891,44.3009033203125,27.0032348632813" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="2">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@187" Target="@202" Category="References" Bounds="904.189025878906,215.097808837891,75.5430908203125,86.4984741210938" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="5">
<Category Ref="CodeSchema_FieldRead" />
</Link>
<Link Source="@187" Target="@58" Category="References" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="7">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@188" Target="@202" Category="CodeSchema_Calls" Bounds="669.603352657006,-37.1073820744226,199.638915273712,31.969560893465" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="2">
<Category Ref="CodeSchema_FieldRead" />
</Link>
<Link Source="@188" Target="@58" Category="References" Bounds="198.093537851915,120.138304196572,475.140569991103,654.659260128877" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="4">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@190" Target="@212" Category="Contains" FetchingParent="@190" />
<Link Source="@190" Target="@215" Category="Contains" FetchingParent="@190" />
<Link Source="@190" Target="@221" Category="Contains" FetchingParent="@190" />
<Link Source="@190" Target="@222" Category="Contains" FetchingParent="@190" />
<Link Source="@190" Target="@224" Category="Contains" FetchingParent="@190" />
<Link Source="@190" Target="@227" Category="Contains" FetchingParent="@190" />
<Link Source="@190" Target="@229" Category="Contains" FetchingParent="@190" />
<Link Source="@190" Target="@275" Category="Contains" FetchingParent="@190" />
<Link Source="@191" Target="@202" Category="CodeSchema_Calls" Bounds="965.169190164064,-33.7148202831058,9.40595352630498,21.7400577928268" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="2">
<Category Ref="CodeSchema_FieldRead" />
</Link>
<Link Source="@191" Target="@58" Category="References" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="8">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@193" Target="(@1 @192 Type=NetTestDescription)" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="(@1 @192 Type=RTPPayloadTypes)" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="(@1 @192 Type=RTPPayloadTypesEnum)" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="(@1 @192 Type=RTPVP8Header)" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="(@1 @192 Type=RTSPConstants)" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="(@1 @192 Type=RTSPEntityHeaders)" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="(@1 @192 Type=RTSPHeaders)" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="(@1 @192 Type=STUNv2ClassTypesEnum)" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="(@1 @192 Type=SessionDescriptionTypes)" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@210" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@211" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@213" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@214" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@216" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@217" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@218" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@219" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@220" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@225" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@226" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@228" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@230" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@231" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@232" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@233" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@234" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@235" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@236" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@237" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@238" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@239" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@240" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@241" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@242" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@243" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@244" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@245" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@246" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@247" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@248" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@249" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@250" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@251" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@252" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@253" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@254" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@255" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@256" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@257" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@258" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@259" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@260" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@261" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@262" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@263" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@264" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@265" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@266" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@267" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@268" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@269" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@270" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@271" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@272" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@273" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@274" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@276" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@277" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@278" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@279" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@280" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@281" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@282" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@283" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@284" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@285" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@286" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@287" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@288" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@289" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@290" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@291" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@292" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@293" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@294" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@295" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@296" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@297" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@298" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@299" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@300" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@301" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@302" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@303" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@304" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@305" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@306" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@307" Category="Contains" FetchingParent="@193" />
<Link Source="@193" Target="@308" Category="Contains" FetchingParent="@193" />
<Link Source="@194" Target="@202" Category="CodeSchema_Calls" Bounds="873.358276367188,-143.715026855469,56.7724609375,134.830860137939" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="2">
<Category Ref="CodeSchema_FieldRead" />
</Link>
<Link Source="@194" Target="@242" Category="References" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="40">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FieldRead" />
<Category Ref="CodeSchema_FieldWrite" />
</Link>
<Link Source="@194" Target="@243" Category="CodeSchema_FieldRead" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="11" />
<Link Source="@194" Target="@244" Category="References" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="28">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FieldRead" />
</Link>
<Link Source="@194" Target="@58" Category="References" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="4">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@195" Target="@196" Category="CodeSchema_Calls" Bounds="1091.0751953125,-300.450531005859,34.4014892578125,76.7354125976563" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="1" />
<Link Source="@195" Target="@200" Category="References" Bounds="408.342041015625,271.785308837891,365.324523925781,30.8049011230469" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="3" />
<Link Source="@195" Target="@201" Category="References" Bounds="670.742980957031,271.785308837891,330.989196777344,93.7083435058594" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="92">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_ReturnTypeLink" />
</Link>
<Link Source="@195" Target="@202" Category="References" Bounds="836.731811523438,271.785308837891,0,22.6875" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="24">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FieldRead" />
</Link>
<Link Source="@195" Target="@58" Category="References" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="27">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@196" Target="@195" Category="InheritsFrom" Bounds="1088.26208496094,-308.71533203125,34.24365234375,76.8464965820313" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="60">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FieldRead" />
</Link>
<Link Source="@196" Target="@201" Category="References" Bounds="558.731079101563,328.472808837891,0,22.6875" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="93">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@196" Target="@202" Category="CodeSchema_FieldRead" Bounds="349.3125,165.104354858398,141.083129882813,250.544296264648" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="2" />
<Link Source="@196" Target="@58" Category="CodeSchema_Calls" Bounds="310.429255996606,165.104351686298,154.809030924805,378.420382736396" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="50" />
<Link Source="@197" Target="@195" Category="References" Bounds="686.161376953125,45.0353126525879,139.089904785156,193.912517547607" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="11">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@197" Target="@198" Category="References" Bounds="655.731323242188,-8.54638671875,35.1538696289063,28.5816993713379" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="8">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@197" Target="@199" Category="References" Bounds="359.744049072266,44.6415214538574,197.322113037109,30.1924247741699" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="1" />
<Link Source="@197" Target="@200" Category="References" Bounds="409.650970458984,45.0353126525879,186.543304443359,257.730373382568" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="277">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FieldRead" />
<Category Ref="CodeSchema_FieldWrite" />
<Category Ref="CodeSchema_ReturnTypeLink" />
</Link>
<Link Source="@197" Target="@201" Category="References" Bounds="670.74560546875,45.0353126525879,365.986694335938,320.982936859131" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="138">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FieldWrite" />
<Category Ref="CodeSchema_ReturnTypeLink" />
</Link>
<Link Source="@197" Target="@202" Category="CodeSchema_Calls" Bounds="913.077697753906,-418.715606689453,198.598205566406,409.820530891418" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="5">
<Category Ref="CodeSchema_FieldRead" />
</Link>
<Link Source="@197" Target="@207" Category="References" Bounds="655.731323242188,45.0353126525879,0,79.3749961853027" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="4" />
<Link Source="@197" Target="@242" Category="References" IsSourceVirtualized="True" Weight="2" />
<Link Source="@197" Target="@58" Category="References" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="30">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@198" Target="@194" Category="References" Bounds="-43.890998840332,-19.3445320129395,643.113838195801,429.243946075439" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="5">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@198" Target="@197" Category="References" Bounds="698.577697753906,-11.6521873474121,35.15380859375,28.5816974639893" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="36">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FieldWrite" />
</Link>
<Link Source="@198" Target="@199" Category="CodeSchema_Calls" Bounds="876.443494798033,-473.716283267595,53.1929520078604,26.0426465787057" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="2" />
<Link Source="@198" Target="@200" Category="References" Bounds="126.730026245117,-17.8713474273682,472.492813110352,317.036813735962" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="375">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FieldRead" />
<Category Ref="CodeSchema_FieldWrite" />
<Category Ref="CodeSchema_ReturnTypeLink" />
</Link>
<Link Source="@198" Target="@201" Category="References" Bounds="670.747497558594,-12.9137945175171,397.984802246094,379.348700523376" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="19">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FunctionPointer" />
</Link>
<Link Source="@198" Target="@202" Category="CodeSchema_FieldRead" Bounds="349.3125,-178.218078613281,251.71484375,593.866729736328" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="1" />
<Link Source="@198" Target="@205" Category="References" Bounds="776.730529785156,-11.6521873474121,100.360229492188,29.1751594543457" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="9">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@198" Target="@207" Category="References" Bounds="723.188171386719,-11.6521873474121,65.5435180664063,143.18380355835" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="208">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@198" Target="@211" Category="References" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="3">
<Category Ref="CodeSchema_Calls" />
</Link>
<Link Source="@198" Target="@213" Category="References" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="7">
<Category Ref="CodeSchema_Calls" />
<Category Ref="CodeSchema_FieldWrite" />
</Link>
<Link Source="@198" Target="@243" Category="CodeSchema_Calls" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="11">
<Category Ref="CodeSchema_FieldWrite" />
</Link>
<Link Source="@198" Target="@244" Category="CodeSchema_Calls" IsSourceVirtualized="True" IsTargetVirtualized="True" Weight="3">