Subversion Repository Public Repository

ChrisCompleteCodeTrunk

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
SQLite format 3@  ��.A
��o�
�q
h��''�EtableDocumentData1DocumentData1CREATE TABLE "DocumentData1" (
    "DataId" integer primary key not null,
    "Data" blob)�%%�CtableProjectData1ProjectData1CREATE TABLE "ProjectData1" (
    "DataId" integer primary key not null,
    "Data" blob)�''�EtableSolutionData1SolutionData1CREATE TABLE "SolutionData1" (
    "DataId" varchar primary key not null,
    "Data" blob)9M'indexsqlite_autoindex_SolutionData1_1SolutionData1g-#�indexStringInfo1_DataStringInfo1CREATE UNIQUE INDEX "StringInfo1_Data" on "StringInfo1"("Data")P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)�##�ctableStringInfo1StringInfo1CREATE TABLE "StringInfo1" (
    "DataId" integer primary key autoincrement not null,
    "Data" varchar)

<�z��
�
{����I:2'
�
�
�
~
I
<15-23-243m.NETFramework,Version=v4.5.AssemblyAttributes.csU�/C:\Users\bbds\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.cs/<SyntaxTreeIndex>15-13-1415-11-12
15-9-10	15-7-8	15-5-6	15-3-41-2
!Program.csb
�IC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\Program.csB�	TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs� �EC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.csB
�	TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs� 	�EC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs5q.NETFramework,Version=v4.6.1.AssemblyAttributes.csW�3C:\Users\bbds\AppData\Local\Temp\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs+AssemblyInfo.csr�iC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\Properties\AssemblyInfo.csB�	TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs� �EC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs-LFStatementMergeo�cC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj
��#StringInfo1

=
J
|3
�
�
=(
�

��J ���{;���15-23-244m.NETFramework,Version=v4.5.AssemblyAttributes.csV�/C:\Users\bbds\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.cs/<SyntaxTreeIndex>15-13-1415-11-1215-9-10
15-7-8
15-5-6
15-3-41-2!Program.csc�IC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\Program.cs
C�	TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs�!�EC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.csC�	TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
�!�EC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs	6q.NETFramework,Version=v4.6.1.AssemblyAttributes.csX�3C:\Users\bbds\AppData\Local\Temp\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs+AssemblyInfo.css�iC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\Properties\AssemblyInfo.csC�	TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs�!�EC:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs-LFStatementMergeo�c	C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj~��������������������������~y�"��B<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.Linq.dll�	17������H��Ϛ2t. !���SystemXmlSchemaExtensionsGetSchemaInfoValidateXPathExtensionsCreateNavigatorXPathEvaluateXPathSelectElementXPathSelectElementsLinqXNameXNamespaceXObjectXObjectChangeXObjectChangeEventArgsXNodeXNodeDocumentOrderComparerXNodeEqualityComparerXTextXCDataXContainerXElementLoadOptionsSaveOptionsReaderOptionsXDocumentXCommentXProcessingInstructionXDeclarationXDocumentTypeXAttributeXStreamingElementExtensionsAttributesAncestorsAncestorsAndSelfNodesDescendantNodesDescendantsDescendantNodesAndSelfDescendantsAndSelfElementsInDocumentOrderRemoveIXmlLineInfoSerializationIXmlSerializableObjectIEquatableRuntimeSerializationISerializableEnumEventArgsCollectionsIComparerGenericIComparerIEqualityComparerMSInternalXmlLinqComponentModelE�����	��
�*�=�����u*y	*�

'3
>�
�	�	��J
*� h
(54)�4~5��D*"
T*	5[
%'
5&o
�8�
V/	b
�*��
�����
�.5L
Yk@y�
"
67;9:0C66;<&#
=;8,9:8D/.B2D-/313�6��h<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\Microsoft.CSharp.dll�	17L���o�
�1����J_�MicrosoftCSharpRuntimeBinderBinderCSharpArgumentInfoCSharpArgumentInfoFlagsCSharpBinderFlagsRuntimeBinderExceptionRuntimeBinderInternalCompilerExceptionSystemObjectEnumException����
	"
4
K
�
��5�3�,�%�$�"� }yxwsronSB87
60/	
zz��5w��i
\�
�F?��
�	�s�	
$b�>H��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll�	�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll��
<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll�
�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll�	�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll��
<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\mscorlib.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.dll��<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj��<SymbolTreeInfo>_Source_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.dll��5<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.DataSetExtensions.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Net.Http.dll
��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Core.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.Linq.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\Microsoft.CSharp.dll
��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\mscorlib.dll	��	<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Core.dll~�<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.dll��-<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.DataSetExtensions.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Net.Http.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.dll��	<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.Linq~��~��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\mscorlib.dll	



��P
�
���Ѐ����	10���&���sPD#��%5)p2
 !c���0����X�.|�C>�U����y�s�
���c�i��2��h�O"HȢY��\����]o~��L�ؖ��8(���&��wG*a��^���!��r6�!z�b0x__v�ˌ�H��4&s��P�S����Fvg�Z�LoL#m��WC��C�)Â�a�������)DN��6L����7�
h�d�RU�	����E	SearchResultRowLFStatementMerge@Name LFStatementMerge.SearchResultRowm>HitCountmhCreationDatem�LastModifiedm�Typem�	PageCountm$	Program@PMain
(string[])LFStatementMerge.Programtg������R�	10�=�ť���W��O�m�2ڎ�/
��IWǓ�0?�"]P�wက��6�	10G��h����A��#��� K�2
7��əII�u6� NH�sƘ���/��%�ProgramLFStatementMerge@�Main
(string[])LFStatementMerge.Program�S������*�	10��SD��͈���ׁ��8)2S������*�	10��SD��͈���ׁ��8)2g������R�	10�A�B
zX�]�N-:`>��2���,
��IWǓ�0?�"]P�w��������	10#H�D���طFb��Q+2
�N�0L���EK�
)5�hˏV�&�]�֫gX���!��U���-y+�Td#XA$�Hn�S������*�	10��SD��͈���ׁ��8)2
lMoneySchemaImporterExtensionTypeUniqueIdentifierSchemaImporterExtensionStorageStateSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionSqlNotFilledExceptionSqlAlreadyFilledExceptionSqlXmlSqlClientSqlColumnEncryptionKeyStoreProviderSqlColumnEncryptionCertificateStoreProviderSqlColumnEncryptionCngProviderSqlColumnEncryptionCspProviderApplicationIntentSqlCredentialOnChangeEventHandlerSqlRowsCopiedEventArgsSqlRowsCopiedEventHandlerSqlBulkCopySqlBulkCopyColumnMappingSqlBulkCopyColumnMappingCollectionSqlBulkCopyOptionsSqlClientFactorySqlClientMetaDataCollectionNamesSqlClientPermissionSqlClientPermissionAttributeSqlCommandSqlCommandBuilderSqlConnectionSQLDebuggingSqlConnectionStringBuilderSqlDataAdapterSqlDataReaderSqlDependencySqlErrorSqlErrorCollectionSqlExceptionSqlInfoMessageEventArgsSqlInfoMessageEventHandlerSqlNotificationEventArgsSqlNotificationInfoSqlNotificationSourceSqlNotificationTypeSqlParameterSqlParameterCollectionSqlRowUpdatedEventArgsSqlRowUpdatedEventHandlerSqlRowUpdatingEventArgsSqlRowUpdatingEventHandlerSqlTransactionSqlConnectionColumnEncryptionSettingSqlCommandColumnEncryptionSettingSqlAuthenticationMethodSortOrderISQLDebugOleDbOleDbCommandOleDbCommandBuilderOleDbConnectionOleDbConnectionStringBuilderOleDbDataAdapterOleDbDataReaderOleDbEnumeratorOleDbErrorOleDbErrorCollectionOleDbExceptionOleDbFactoryOleDbInfoMessageEventArgsOleDbInfoMessageEventHandlerOleDbLiteralOleDbMetaDataCollectionNamesOleDbMetaDataColumnNamesOleDbParameterOleDbParameterCollectionOleDbPermissionOleDbPermissionAttributeOleDbRowUpdatedEventArgsOleDbRowUpdatedEventHandlerOleDbRowUpdatingEventArgsOleDbRowUpdatingEventHandlerOleDbSchemaGuidOleDbTransactionOleDbTypeOdbcOdbcCommandOdbcCommandBuilderOdbcConnectionOdbcConnectionStringBuilderOdbcDataAdapterOdbcDataReaderOdbcErrorOdbcErrorCollectionOdbcExceptionOdbcFactoryOdbcInfoMessageEventHandlerOdbcInfoMessageEventArgsOdbcMetaDataCollectionNamesOdbcMetaDataColumnNamesOdbcParameterOdbcParameterCollectionOdbcPermissionOdbcPermissionAttributeOdbcRowUpdatingEventHandlerOdbcRowUpdatedEventHandlerOdbcRowUpdatingEventArgsOdbcRowUpdatedEventArgsOdbcTransactionOdbcTypeProviderBaseCommonCatalogLocationDataAdapterDataColumnMappingDataColumnMappingCollectionDataTableMappingDataTableMappingCollectionDbCommandDbCommandBuilderDbConnectionDbConnectionStringBuilderDbDataAdapterDBDataPermissionDBDataPermissionAttributeDbDataReaderDbDataRecordDbDataSourceEnumeratorDbEnumeratorDbExceptionDbParameterDbParameterCollectionDbProviderConfigurationHandlerDbProviderFactoriesDbProviderFactoriesConfigurationHandlerDbProviderFactoryDbProviderSpecificTypePropertyAttributeDbTransactionGroupByBehaviorIdentifierCaseRowUpdatedEventArgsRowUpdatingEventArgsSchemaTableColumnSchemaTableOptionalColumnSupportedJoinOperatorsDbMetaDataCollectionNamesDbMetaDataColumnNamesAcceptRejectRuleInternalDataCollectionBaseTypedDataSetGeneratorStrongTypingExceptionTypedDataSetGeneratorExceptionCommandBehaviorCommandTypeKeyRestrictionBehaviorConflictOptionConnectionStateConstraintConstraintCollectionDataColumnDataColumnChangeEventArgsDataColumnChangeEventHandlerDataColumnCollectionDataExceptionConstraintExceptionDeletedRowInaccessibleExceptionDuplicateNameExceptionInRowChangingEventExceptionInvalidConstraintExceptionMissingPrimaryKeyExceptionNoNullAllowedExceptionReadOnlyExceptionRowNotInTableExceptionVersionNotFoundExceptionDataRelationDataRelationCollectionDataRowDataRowBuilderDataRowActionDataRowChangeEventArgsDataRowChangeEventHandlerDataRowCollectionDataRowStateDataRowVersionDataRowViewSerializationFormatDataSetDataSetSchemaImporterExtensionDataSetDateTimeDataSysDescriptionAttributeDataTableDataTableClearEventArgsDataTableClearEventHandlerDataTableCollectionDataTableNewRowEventArgsDataTableNewRowEventHandlerDataTableReaderDataViewDataViewManagerDataViewRowStateDataViewSettingDataViewSettingCollectionDBConcurrencyExceptionDbTypeFillErrorEventArgsFillErrorEventHandlerInvalidExpressionExceptionEvaluateExceptionSyntaxErrorExceptionForeignKeyConstraintIColumnMappingIColumnMappingCollectionIDataAdapterIDataParameterIDataParameterCollectionIDataReaderIDataRecordIDbCommandIDbConnectionIDbDataAdapterIDbDataParameterIDbTransactionIsolationLevelITableMappingITableMappingCollectionLoadOptionMappingTypeMergeFailedEventArgsMergeFailedEventHandlerMissingMappingActionMissingSchemaActionPropertyAttributesOperationAbortedExceptionParameterDirectionPropertyCollectionStatementCompletedEventArgsStatementCompletedEventHandlerRuleSchemaSerializationModeSchemaTypeSqlDbTypeStateChangeEventArgsStateChangeEventHandlerStatementTypeUniqueConstraintUpdateRowSourceUpdateStatusXmlReadModeXmlWriteModeConfigurationIConfigurationSectionHandlerObjectSystemExceptionAttributeEnumCollectionsICollectionIEnumerableIListHashtableCollectionBaseIDictionaryIEnumeratorComponentModelMarshalByValueComponentICustomTypeDescriptorIEditableObjectIDataErrorInfoINotifyPropertyChangedIListSourceISupportInitializeNotificationISupportInitializeDescriptionAttributeIBindingListViewIBindingListITypedListComponentEventArgsMulticastDelegateRuntimeSerializationISerializableInteropServicesExternalExceptionIDisposableValueTypeIComparableIOStreamIServiceProviderICloneableMarshalByRefObjectSecurityCodeAccessPermissionPermissionsIUnrestrictedPermissionCodeAccessSecurityAttributes����m�����	L�
���		�L���
	-L�
L,
6��L{��
J
Tm��
�
����
���	&4RwY��	���+�!08GWfE	N^j�
�������?X�	<O'v�'�
�����L�	Lb�����		G����
L�	#�L�R;vGUmx�
�
����	sLg�	"	�	���}S��	=
�W��LF
��L��		����
�
��t���
�L;
!	8'L!LA�L��� �.�I�X�f	�o��
������������
�
�#
�1
��
�c
�}
�H
��
��
��	�	�	
�
�+
�G
�W
�f
�u

�
��
��
��
��
��
��
�
�"�0�H�W�o������������	���q���_��
Wh���2L���
�L9
�g
n?5�		��=�	��	=�
=$�/�G"�i��==
=0	{�� �����\+�����9#��
����	!�m=�
��	$��
��
�(�6
�"
���=	�
=C
�'	=P�X�j�j�0
=��==v���D=L=T=����\=�=�����������=��	�/������	�2	�K	�b	�		�d	=~	=|	���6��=�=��%=� ��*=)��@
�=���)�D���L7
�!=�!=�=�=�#=���"=� =<=G =� =O =�"=
#=�=(=Z#=g%=0=}"=�+=o$=�"=�#=M]l~	L~JLMn\nx�S�1	
-:!�U!#):;'��A
�������������@EFGMNOP��IJp
oDEN�>�<.9?@QW3M^O
�"'(�+9S����������FjkqrG�&()�����_vJ"poe�78;gn���3@Lz�78;gn���3@DL
IVTV�����m�� &1�*.78Y$/4[�DB/%�����%05\�EC�024������j)@Ey)l)~)}*.�*.����� #67A�*.7�*.7�*.���,>U-D6��c7b78|78gn�3L�78�XK]ixoqru���<?DRks��Amt+��K`�Fl
��� #67������ #67Ah
��� #67H>S[g^c\fQhW]PYadRX_T`Zbe<*;$����P�����B���C���<��d+��������2A=��?���@��A��s��AoDH��K+��t+��KL,���1���3��R8��q�<r�?
<=?�23DKLRfg�2�3w@AB�BC{GZHnLiMOuR
"
�"�"��B<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.Linq.dll�	17������H��Ϛ2t. !���SystemXmlSchemaExtensionsGetSchemaInfoValidateXPathExtensionsCreateNavigatorXPathEvaluateXPathSelectElementXPathSelectElementsLinqXNameXNamespaceXObjectXObjectChangeXObjectChangeEventArgsXNodeXNodeDocumentOrderComparerXNodeEqualityComparerXTextXCDataXContainerXElementLoadOptionsSaveOptionsReaderOptionsXDocumentXCommentXProcessingInstructionXDeclarationXDocumentTypeXAttributeXStreamingElementExtensionsAttributesAncestorsAncestorsAndSelfNodesDescendantNodesDescendantsDescendantNodesAndSelfDescendantsAndSelfElementsInDocumentOrderRemoveIXmlLineInfoSerializationIXmlSerializableObjectIEquatableRuntimeSerializationISerializableEnumEventArgsCollectionsIComparerGenericIComparerIEqualityComparerMSInternalXmlLinqComponentModelE�����	��
�*�=�����u*y	*�

'3
>�
�	�	��J
*� h
(54)�4~5��D*"
T*	5[
%'
5&o
�8�
V/	b
�*��
�����
�.5L
Yk@y�
"
67;9:0C66;<&#
=;8,9:8D/.B2D-/313�6��h<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\Microsoft.CSharp.dll�	17L���o�
�1����J_�MicrosoftCSharpRuntimeBinderBinderCSharpArgumentInfoCSharpArgumentInfoFlagsCSharpBinderFlagsRuntimeBinderExceptionRuntimeBinderInternalCompilerExceptionSystemObjectEnumException����
	"
4
K
�
�	
	�

\
r&
�	
	�	���	��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.dll�	17��Cr�?ȼ��eE��_���4MicrosoftSqlServerServerSqlContextSqlDataRecordSqlPipeSqlTriggerContextIBinarySerializeInvalidUdtExceptionSqlFacetAttributeDataAccessKindSystemDataAccessKindSqlFunctionAttributeSqlMetaDataSqlMethodAttributeSqlProcedureAttributeSqlTriggerAttributeSqlUserDefinedAggregateAttributeFormatSqlUserDefinedTypeAttributeTriggerActionSystemXmlXmlDataDocumentXmlDocumentSerializationIXmlSerializableAdvancedSchemaImporterExtensionDataSqlSqlDataSourceEnumeratorSqlNotificationRequestSqlTypesINullableSqlBinarySqlBooleanSqlByteSqlBytesSqlCharsSqlDateTimeSqlDecimalSqlDoubleSqlFileStreamSqlGuidSqlInt16SqlInt32SqlInt64SqlMoneySqlSingleSqlCompareOptionsSqlStringSqlTypesSchemaImporterExtensionHelperTypeCharSchemaImporterExtensionTypeNCharSchemaImporterExtensionTypeVarCharSchemaImporterExtensionTypeNVarCharSchemaImporterExtensionTypeTextSchemaImporterExtensionTypeNTextSchemaImporterExtensionTypeVarBinarySchemaImporterExtensionTypeBinarySchemaImporterExtensionTypeVarImageSchemaImporterExtensionTypeDecimalSchemaImporterExtensionTypeNumericSchemaImporterExtensionTypeBigIntSchemaImporterExtensionTypeIntSchemaImporterExtensionTypeSmallIntSchemaImporterExtensionTypeTinyIntSchemaImporterExtensionTypeBitSchemaImporterExtensionTypeFloatSchemaImporterExtensionTypeRealSchemaImporterExtensionTypeDateTimeSchemaImporterExtensionTypeSmallDateTimeSchemaImporterExtensionTypeMoneySchemaImporterExtensionTypeSmal	umentationXmlSchemaElementXmlSchemaExceptionXmlSchemaExternalXmlSchemaFacetXmlSchemaNumericFacetXmlSchemaLengthFacetXmlSchemaMinLengthFacetXmlSchemaMaxLengthFacetXmlSchemaPatternFacetXmlSchemaEnumerationFacetXmlSchemaMinExclusiveFacetXmlSchemaMinInclusiveFacetXmlSchemaMaxExclusiveFacetXmlSchemaMaxInclusiveFacetXmlSchemaTotalDigitsFacetXmlSchemaFractionDigitsFacetXmlSchemaWhiteSpaceFacetXmlSchemaFormXmlSchemaGroupXmlSchemaGroupBaseXmlSchemaGroupRefXmlSchemaIdentityConstraintXmlSchemaXPathXmlSchemaUniqueXmlSchemaKeyXmlSchemaKeyrefXmlSchemaImportXmlSchemaIncludeXmlSchemaInfoXmlSchemaNotationXmlSchemaObjectXmlSchemaObjectCollectionXmlSchemaObjectEnumeratorXmlSchemaObjectTableXmlSchemaParticleXmlSchemaRedefineXmlSchemaSequenceXmlSchemaSetXmlSchemaCompilationSettingsXmlSchemaSimpleContentXmlSchemaSimpleContentExtensionXmlSchemaSimpleContentRestrictionXmlSchemaSimpleTypeXmlSchemaSimpleTypeContentXmlSchemaSimpleTypeListXmlSchemaSimpleTypeRestrictionXmlSchemaSimpleTypeUnionXmlSchemaTypeXmlSchemaUseXmlSchemaValidationExceptionXmlValueGetterXmlSchemaValidationFlagsXmlSchemaValidatorXmlSchemaValidityXmlSeverityTypeXmlTypeCodeXmlSchemaInferenceInferenceOptionXmlSchemaInferenceExceptionXslXslCompiledTransformXsltMessageEncounteredEventArgsXsltMessageEncounteredEventHandlerXsltArgumentListIXsltContextFunctionIXsltContextVariableXsltContextXsltExceptionXsltCompileExceptionXslTransformXsltSettingsXPathIXPathNavigableXPathDocumentXPathExceptionXmlSortOrderXmlCaseOrderXmlDataTypeXPathResultTypeXPathExpressionXPathItemXPathNamespaceScopeXPathNavigatorXPathNodeIteratorXPathNodeTypeResolversXmlKnownDtdsXmlPreloadedResolverXmlConfigurationXmlReaderSectionXsltConfigSectionXmlNamedNodeMapIApplicationResourceStreamResolverIHasXmlNodeIXmlLineInfoIXmlNamespaceResolverNameTableXmlDateTimeSerializationModeXmlConvertXmlExceptionXmlNamespaceManagerXmlNamespaceScopeXmlNameTableXmlNodeOrderXmlNodeTypeXmlQualifiedNameXmlResolverXmlSecureResolverXmlUrlResolverXmlXapResolverConformanceLevelDtdProcessingEntityHandlingNamespaceHandlingNewLineHandlingReadStateValidationTypeWhitespaceHandlingXmlParserContextXmlReaderXmlReaderSettingsXmlSpaceXmlTextReaderFormattingXmlTextWriterXmlValidatingReaderWriteStateXmlWriterXmlOutputMethodXmlWriterSettingsXmlAttributeXmlAttributeCollectionXmlCDataSectionXmlCharacterDataXmlCommentXmlDeclarationXmlDocumentXmlDocumentFragmentXmlDocumentTypeXmlElementXmlEntityXmlEntityReferenceXmlNodeChangedActionXmlImplementationXmlLinkedNodeXmlNodeXmlNodeChangedEventArgsXmlNodeChangedEventHandlerXmlNodeListXmlNodeReaderXmlNotationXmlProcessingInstructionXmlSignificantWhitespaceXmlTextXmlWhitespaceXmlTokenizedTypeConfigurationConfigurationSectionConfigurationElementConfigurationElementCollectionConfigurationSectionGroupConfigurationValidatorBaseObjectCollectionsIEnumerableICollectionCollectionBaseGenericIEnumerableIEnumeratorEnumSystemExceptionIDisposableICloneableEventArgsMulticastDelegateAttributeValueType3����"?�	N Yb?n?�?�?�	dN;
?�
N�
�+D<ZdH
L
ZYZ�N�	N�
Z�	$"Z�
Nz	�No	��	�FZ�
?�/QZ]Z`8�?�?�(�(	�NgZr	ZxZ^N�	Z�	Z
BZ�?*A!}
�(
�
.
Z�
�?�???#?7?H?[?o?�?�?�?�?%�N'?	?n8�8�Z�	N�Z	.
Z%+N�?�?�?? ?5?�8LZK?XZ�?�?`?u
?>nZ}Z�?�?�
Z�Z�
ZJ{Z�Z�?�Z�Z�Z�
Z�?�?�?�?�	Z�Z�?�Z�?Z�?�6
Z
?	?#?3?ZD!?�Z�Z�Z)Z�Z0ZGZ�?�?aZ�Zl
Z�ZyZ,Z�Z�6�Z�Z�	Z�o�Ze?z?Z�?�	8�8�8�8�8�888"898S8b8u8o8�8� 8�"8�8�8	8$	8>	8R	8H8c	8|	8�	8?
8�?�	8�?�	8�	8

8�
88(8:8K8�8�?�8�
88�
8�8�8�	8�
8�
8
8X
8r
8�	8�8�	8�8�88808*
8�?A8�
?R8c8�8�8�!8�8�8
8%
8C
8�
8[

8t8h
8t
8�
8�
8�
8�
8f8ZF'?)?�?m??�?�?

?�??�?.?�
E?�
8�Z2�Z�Zb?�
Z�
Z�Zr?�
8�? ZZ�
8�
Z#	Z;Z.ZYZ
$ds	|���
U/Z2(�(�(o�(�
(F(e"(�(�(249�p����������#9BCIJLgh�������:�����������)*12!"%��d����%�2'r���135TV
X�����������
$iq'#&�O��. '��$��������&�buv}���dd�kjn�kswx~��a$%+�$�e{�PR/0����f|�QS0AEFGHM[\^_cly�����	Dm9K�]`z�;��� ����Ut>�,<
=@7"a$�����������������������������������������������������������������(���������-.+
��� ���F<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.dll�	17����m��aP�a�R���*MicrosoftWin32MSInternalXmlXPathCacheSystemXmlSerializationConfigurationDateTimeSerializationSectionDateTimeSerializationModeSchemaImporterExtensionElementSchemaImporterExtensionElementCollectionSchemaImporterExtensionsSectionSerializationSectionGroupXmlSerializerSectionRootedPathValidatorAdvancedSchemaImporterExtensionSchemaImporterExtensionCollectionCodeExporterCodeGenerationOptionsCodeIdentifierCodeIdentifiersImportContextIXmlSerializableIXmlTextParserSchemaImporterSoapAttributeAttributeSoapAttributeOverridesSoapAttributesSoapCodeExporterSoapElementAttributeSoapEnumAttributeSoapIgnoreAttributeSoapIncludeAttributeSoapReflectionImporterSoapSchemaExporterSoapSchemaImporterSoapSchemaMemberSoapTypeAttributeXmlAnyAttributeAttributeXmlAnyElementAttributeXmlAnyElementAttributesXmlArrayAttributeXmlArrayItemAttributeXmlArrayItemAttributesXmlAttributeAttributeXmlAttributeOverridesXmlAttributesXmlChoiceIdentifierAttributeXmlCodeExporterXmlElementAttributeXmlElementAttributesXmlEnumAttributeXmlIgnoreAttributeXmlIncludeAttributeXmlMappingAccessXmlMappingXmlMemberMappingXmlMembersMappingXmlNamespaceDeclarationsAttributeXmlReflectionImporterXmlReflectionMemberXmlRootAttributeXmlSchemaExporterXmlSchemaImporterXmlSchemaProviderAttributeXmlSchemasXmlSchemaEnumeratorXmlSerializationGeneratedCodeXmlSerializationReaderXmlSerializationFixupCallbackXmlSerializationCollectionFixupCallbackXmlSerializationReadCallbackXmlSerializationWriterXmlSerializationWriteCallbackXmlSerializerAssemblyAttributeXmlDeserializationEventsXmlSerializerImplementationXmlSerializerXmlSerializerFactoryXmlSerializerNamespacesXmlSerializerVersionAttributeXmlTextAttributeXmlTypeAttributeXmlTypeMappingXmlAttributeEventHandlerXmlAttributeEventArgsXmlElementEventHandlerXmlElementEventArgsXmlNodeEventHandlerXmlNodeEventArgsUnreferencedObjectEventHandlerUnreferencedObjectEventArgsSchemaXmlSchemaDatatypeVarietyIXmlSchemaInfoValidationEventArgsValidationEventHandlerXmlAtomicValueXmlSchemaXmlSchemaAllXmlSchemaAnnotatedXmlSchemaAnnotationXmlSchemaAnyXmlSchemaAnyAttributeXmlSchemaAppInfoXmlSchemaAttributeXmlSchemaAttributeGroupXmlSchemaAttributeGroupRefXmlSchemaChoiceXmlSchemaCollectionXmlSchemaCollectionEnumeratorXmlSchemaComplexContentXmlSchemaComplexContentExtensionXmlSchemaComplexContentRestrictionXmlSchemaComplexTypeXmlSchemaContentXmlSchemaContentModelXmlSchemaContentProcessingXmlSchemaContentTypeXmlSchemaDatatypeXmlSchemaDerivationMethodXmlSchemaDoc
y�jy��z���<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.dll�	17�G�(�������d�^S̄���MicrosoftVisualBasicVBCodeProviderCSharpCSharpCodeProviderWin32SafeHandlesSafeProcessHandleSafeX509ChainHandleSafeHandleZeroOrMinusOneIsInvalidPowerModeChangedEventArgsPowerModeChangedEventHandlerPowerModesSessionEndedEventArgsSessionEndedEventHandlerSessionEndingEventArgsSessionEndingEventHandlerSessionEndReasonsSessionSwitchEven�h�-�2<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.DataSetExtensions.dll�	17�M���lͦ�K ᕱj���O�SystemDataDataRowComparerDataTableExtensionsAsEnumerableCopyToDataTableAsDataViewEnumerableRowCollectionOrderedEnumerableRowCollectionEnumerableRowCollectionExtensionsWhereOrderByOrderByDescendingThenByThenByDescendingSelectCastDataRowExtensionsFieldSetFieldTypedTableBaseTypedTableBaseExtensionsWhereOrderByOrderByDescendingSelectAsEnumerableElementAtOrDefaultDataTableObjectCollectionsGenericIEqualityComparerIEnumerable$����G
,K!�x8
�i	W!Q�!�	����r�-!�4!h�E!�	���(!
	!
 


 �(��N<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Net.Http.dll�	17�/<��E-Zߍ�M	)c��SystemNetHttpHeadersAuthenticationHeaderValueCacheControlHeaderValueContentDispositionHeaderValueContentRangeHeaderValueEntityTagHeaderValueHttpContentHeadersHttpHeadersHttpHeaderValueCollectionHttpRequestHeadersHttpResponseHeadersMediaTypeHeaderValueMediaTypeWithQualityHeaderValueNameValueHeaderValueNameValueWithParametersHeaderValueProductHeaderValueProductInfoHeaderValueRangeConditionHeaderValueRangeHeaderValueRangeItemHeaderValueRetryConditionHeaderValueStringWithQualityHeaderValueTransferCodingHeaderValueTransferCodingWithQualityHeaderValueViaHeaderValueWarningHeaderValueFormUrlEncodedContentMultipartContentMultipartFormDataContentHttpClientHandlerHttpCompletionOptionByteArrayContentDelegatingHandlerHttpRequestExceptionHttpMessageHandlerHttpMessageInvokerHttpClientHttpContentHttpMethodHttpRequestMessageHttpResponseMessageMessageProcessingHandlerStreamContentStringContentClientCertificateOptionCollectionsGenericIEnumerableICollectionIEnumerableEnumExceptionObjectIDisposableIEquatableICloneable<�����-x�7Da�x�7�	7G�
	,
�������
��!�3�
7�
�7��
�
7��F\l."7�7Pbx���^
k
��$'55(4"(()
-	%*./012368:;!$'	%&*+./0123689:; %&*+89tArgsSessionSwitchEventHandlerSessionSwitchReasonSystemEventsTimerElapsedEventArgsTimerElapsedEventHandlerUserPreferenceCategoryUserPreferenceChangedEventArgsUserPreferenceChangedEventHandlerUserPreferenceChangingEventArgsUserPreferenceChangingEventHandlerIntranetZoneCredentialPolicyUnsafeNativeMethodsIMarshalSystemDrawingWebAspNetHostingPermissionLevelAspNetHostingPermissionAttributeAspNetHostingPermissionTimersElapsedEventArgsElapsedEventHandlerTimerTimersDescriptionAttributeConfigurationInternalIConfigErrorInfoSchemeSettingElementSchemeSettingElementCollectionUriSectionIriParsingElementIdnElementApplicationSettingsBaseSettingsLoadedEventHandlerSettingsSavingEventHandlerSettingChangingEventHandlerSettingChangingEventArgsSettingsLoadedEventArgsConfigurationExceptionConfigurationSettingsConfigXmlDocumentDictionarySectionHandlerIApplicationSettingsProviderIConfigurationSectionHandlerIConfigurationSystemIgnoreSectionHandlerIPersistComponentSettingsISettingsProviderServiceLocalFileSettingsProviderNameValueFileSectionHandlerNameValueSectionHandlerSettingsAttributeDictionaryApplicationScopedSettingAttributeDefaultSettingValueAttributeNoSettingsVersionUpgradeAttributeSettingAttributeSettingsDescriptionAttributeSettingsGroupDescriptionAttributeSettingsGroupNameAttributeSettingsManageabilityAttributeSettingsProviderAttributeSettingsSerializeAsAttributeSpecialSettingAttributeUserScopedSettingAttributeSettingsManageabilitySpecialSettingSettingsBaseSettingsContextSettingsPropertySettingsPropertyCollectionSettingsPropertyIsReadOnlyExceptionSettingsPropertyNotFoundExceptionSettingsPropertyValueSettingsPropertyValueCollectionSettingsPropertyWrongTypeExceptionSettingsProviderSettingsProviderCollectionSettingsSerializeAsSingleTagSectionHandlerApplicationSettingsGroupUserSettingsGroupClientSettingsSectionSettingElementCollectionSettingElementSettingValueElementAppSettingsReaderConfigurationElementConfigurationElementCollectionConfigurationSectionProviderProviderBaseProviderCollectionConfigurationSectionGroupNetWebSocketsClientWebSocketClientWebSocketOptionsHttpListenerWebSocketContextWebSocketWebSocketCloseStatusWebSocketContextWebSocketErrorWebSocketExceptionWebSocketMessageTypeWebSocketReceiveResultWebSocketStateMimeContentDispositionContentTypeDispositionTypeNamesMediaTypeNamesTextApplicationImageTransferEncodingMailAlternateViewAlternateViewCollectionAttachmentBaseAttachmentAttachmentCollectionLinkedResourceLinkedResourceCollectionMailAddressMailAddressCollectionDeliveryNotificationOptionsMailMessageMailPrioritySendCompletedEventHandlerSmtpDeliveryMethodSmtpDeliveryFormatSmtpClientSmtpExceptionSmtpFailedRecipientExceptionSmtpFailedRecipientsExceptionSmtpAccessSmtpPermissionAttributeSmtpPermissionSmtpStatusCodeNetworkInformationDuplicateAddressDetectionStateIcmpV4StatisticsIcmpV6StatisticsNetworkInterfaceTypeIPAddressInformationIPAddressInformationCollectionIPGlobalPropertiesIPGlobalStatisticsScopeLevelIPInterfacePropertiesIPInterfaceStatisticsIPv4InterfaceStatisticsIPStatusUnicastIPAddressInformationUnicastIPAddressInformationCollectionMulticastIPAddressInformationMulticastIPAddressInformationCollectionIPAddressCollectionGatewayIPAddressInformationGatewayIPAddressInformationCollectionIPv4InterfacePropertiesIPv6InterfacePropertiesNetworkAvailabilityEventArgsNetworkChangeNetworkAddressChangedEventHandlerNetworkAvailabilityChangedEventHandlerNetworkInformationExceptionNetworkInformationAccessNetworkInformationPermissionAttributeNetworkInformationPermissionNetworkInterfaceNetworkInterfaceComponentNetBiosNodeTypeOperationalStatusPhysicalAddressPingCompletedEventHandlerPingCompletedEventArgsPingPingExceptionPingOptionsPingReplyPrefixOriginSuffixOriginTcpConnectionInformationTcpStateTcpStatisticsUdpStatisticsCacheRequestCacheLevelRequestCachePolicyHttpRequestCacheLevelHttpCacheAgeControlHttpRequestCachePolicyConfigurationUnicodeDecodingConformanceUnicodeEncodingConformanceAuthenticationModuleElementAuthenticationModuleElementCollectionAuthenticationModulesSectionBypassElementBypassElementCollectionConnectionManagementElementConnectionManagementElementCollectionConnectionManagementSectionDefaultProxySectionHttpWebRequestElementHttpListenerElementHttpListenerTimeoutsElementHttpCachePolicyElementFtpCachePolicyElementIpv6ElementMailSettingsSectionGroupModuleElementNetSectionGroupPerformanceCountersElementProxyElementBypassOnLocalValuesUseSystemDefaultValuesAutoDetectValuesRequestCachingSectionSettingsSectionServicePointManagerElementSmtpSectionSmtpNetworkElementSmtpSpecifiedPickupDirectoryElementSocketElementWebProxyScriptElementWebRequestModuleElementWebRequestModuleElementCollectionWebRequestModulesSectionWebUtilityElementSecurityAuthenticatedStreamAuthenticationLevelProtectionLevelNegotiateStreamSslPolicyErrorsEncryptionPolicyRemoteCertificateValidationCallbackLocalCertificateSelectionCallbackSslStreamSocketsSocketExceptionAddressFamilyIOControlCodeIPProtectionLevelLingerOptionMulticastOptionIPv6MulticastOptionNetworkStreamProtocolFamilyProtocolTypeSelectModeSocketInformationOptionsSocketInformationSocketSocketAsyncOperationSendPacketsElementSocketClientAccessPolicyProtocolSocketAsyncEventArgsSocketErrorSocketFlagsSocketOptionLevelSocketOptionNameSocketShutdownSocketTypeTcpClientTcpListenerTransmitFileOptionsUdpClientUdpReceiveResultIPPacketInformationICredentialPolicyAuthenticationManagerAuthenticationSchemesAuthenticationSchemeSelectorAuthorizationCookieCookieCollectionCookieContainerCookieExceptionCredentialCacheDnsGetHostByNameGetHostByAddressResolveBeginGetHostByNameEndGetHostByNameBeginResolveEndResolveDnsEndPointDnsPermissionAttributeDnsPermissionEndPointFileWebRequestFileWebResponseFtpStatusCodeWebRequestMethodsFtpHttpFileFtpWebRequestFtpWebResponseGlobalProxySelectionHttpListenerBasicIdentityHttpListenerExtendedProtectionSelectorHttpListenerContextHttpListenerExceptionHttpListenerPrefixCollectionHttpListenerRequestHttpListenerResponseHttpListenerTimeoutManagerHttpRequestHeaderHttpResponseHeaderHttpStatusCodeHttpVersionDecompressionMethodsHttpWebRequestHttpWebResponseIAuthenticationModuleICertificatePolicyICredentialsICredentialsByHostHttpContinueDelegateIPAddressIPEndPointIPHostEntryIWebProxyIWebRequestCreateNetworkAccessNetworkCredentialProtocolViolationExceptionTransportContextBindIPEndPointServicePointSecurityProtocolTypeServicePointManagerSocketAddressSocketPermissionAttributeSocketPermissionEndpointPermissionTransportTypeWebClientOpenReadCompletedEventHandlerOpenReadCompletedEventArgsOpenWriteCompletedEventHandlerOpenWriteCompletedEventArgsDownloadStringCompletedEventHandlerDownloadStringCompletedEventArgsDownloadDataCompletedEventHandlerDownloadDataCompletedEventArgsUploadStringCompletedEventHandlerUploadStringCompletedEventArgsUploadDataCompletedEventHandlerUploadDataCompletedEventArgsUploadFileCompletedEventHandlerUploadFileCompletedEventArgsUploadValuesCompletedEventHandlerUploadValuesCompletedEventArgsDownloadProgressChangedEventHandlerDownloadProgressChangedEventArgsUploadProgressChangedEventHandlerUploadProgressChangedEventArgsWebExceptionWebExceptionStatusWebHeaderCollectionWebPermissionAttributeWebPermissionWebProxyWebRequestWebResponseWebUtilityWriteStreamClosedEventArgsWriteStreamClosedEventHandlerIWebProxyScriptICloseExIAutoWebProxySecurityClaimsDynamicRoleClaimProviderAddDynamicRoleClaimsAuthenticationExtendedProtectionConfigurationExtendedProtectionPolicyElementServiceNameElementCollectionServiceNameElementChannelBindingChannelBindingKindExtendedProtectionPolicyExtendedProtectionPolicyTypeConverterPolicyEnforcementProtectionScenarioServiceNameCollectionTokenBindingTypeTokenBindingAuthenticationExceptionInvalidCredentialExceptionSslProtocolsExchangeAlgorithmTypeCipherAlgorithmTypeHashAlgorithmTypeCryptographyX509CertificatesX500DistinguishedNameFlagsX500DistinguishedNameX509NameTypeX509IncludeOptionPublicKeyX509Certificate2X509FindTypeX509Certificate2CollectionX509Certificate2EnumeratorX509ChainStatusFlagsX509ChainStatusX509ChainX509ChainElementX509ChainElementCollectionX509ChainElementEnumeratorX509RevocationModeX509RevocationFlagX509VerificationFlagsX509ChainPolicyX509ExtensionX509KeyUsageFlagsX509KeyUsageExtensionX509BasicConstraintsExtensionX509EnhancedKeyUsageExtensionX509SubjectKeyIdentifierHashAlgorithmX509SubjectKeyIdentifierExtensionX509ExtensionCollectionX509ExtensionEnumeratorStoreLocationOpenFlagsStoreNameX509StoreX509CertificateCollectionX509CertificateEnumeratorX509CertificateAsnEncodedDataAsnEncodedDataCollectionAsnEncodedDataEnumeratorOidGroupOidOidCollectionOidEnumeratorPermissionsStorePermissionStorePermissionAttributeStorePermissionFlagsTypeDescriptorPermissionFlagsTypeDescriptorPermissionTypeDescriptorPermissionAttributeResourcePermissionBaseResourcePermissionBaseEntryCodeAccessSecurityAttributeIUnrestrictedPermissionAccessControlSemaphoreRightsSemaphoreAccessRuleSemaphoreAuditRuleSemaphoreSecurityAccessRuleAuditRuleNativeObjectSecurityCodeAccessPermissionPrincipalGenericIdentityWindowsInputICommandMarkupValueSerializerAttributeMediaSoundPlayerSystemSoundsSystemSoundCollectionsSpecializedBitVector32SectionCollectionsUtilHybridDictionaryINotifyCollectionChangedIOrderedDictionaryListDictionaryNameObjectCollectionBaseKeysCollectionNameValueCollectionNotifyCollectionChangedActionNotifyCollectionChangedEventArgsNotifyCollectionChangedEventHandlerOrderedDictionaryStringCollectionStringEnumeratorStringDictionaryObjectModelObservableCollectionReadOnlyObservableCollectionCollectionReadOnlyCollectionGenericLinkedListEnumeratorLinkedListNodeQueueEnumeratorSortedListStackEnumeratorSortedDictionaryEnumeratorKeyCollectionEnumeratorValueCollectionEnumeratorSortedSetEnumeratorISetICollectionIEnumerableIReadOnlyCollectionIDictionaryIReadOnlyDictionaryIEnumeratorConcurrentBlockingCollectionConcurrentBagIProducerConsumerCollectionHashtableIEnumerableICollectionReadOnlyCollectionBaseIEnumeratorCollectionBaseIDictionaryIListIDictionaryEnumeratorDictionaryBaseThreadingSemaphoreBarrierPostPhaseExceptionBarrierThreadExceptionEventArgsThreadExceptionEventHandlerWaitHandleRuntimeVersioningFrameworkNameInteropServicesComTypesADVFDATADIRDVASPECTFORMATETCIAdviseSinkIDataObjectIEnumFORMATETCIEnumSTATDATASTATDATASTGMEDIUMTYMEDWindowsRuntimeHandleCollectorDefaultParameterValueAttributeStandardOleMarshalObjectExternalExceptionSerializationISerializableIDeserializationCallbackReflectionICustomTypeProviderIOPortsHandshakeParitySerialErrorSerialErrorReceivedEventArgsSerialErrorReceivedEventHandlerSerialPinChangeSerialPinChangedEventArgsSerialPinChangedEventHandlerSerialPortSerialDataSerialDataReceivedEventArgsSerialDataReceivedEventHandlerStopBitsCompressionCompressionModeCompressionLevelDeflateStreamGZipStreamInvalidDataExceptionNotifyFiltersErrorEventArgsErrorEventHandlerFileSystemEventArgsFileSystemEventHandlerFileSystemWatcherInternalBufferOverflowExceptionIODescriptionAttributeRenamedEventArgsRenamedEventHandlerWaitForChangedResultWatcherChangeTypesStreamTextWriterDiagnosticsCodeAnalysisExcludeFromCodeCoverageAttributeBooleanSwitchConsoleTraceListenerCorrelationManagerDebugFlushCloseAssertFailPrintWriteWriteLineWriteIfWriteLineIfIndentUnindentDefaultTraceListenerDelimitedListTraceListenerEventTypeFilterSourceFilterSourceLevelsSourceSwitchSwitchSwitchAttributeSwitchLevelAttributeTextWriterTraceListenerTraceTraceEventCacheTraceEventTypeTraceFilterTraceLevelTraceListenerTraceListenerCollectionTraceOptionsTraceSourceTraceSwitchXmlWriterTraceListenerCounterCreationDataCounterCreationDataCollectionCounterSampleCounterSampleCalculatorDataReceivedEventHandlerDataReceivedEventArgsDiagnosticsConfigurationHandlerEntryWrittenEventArgsEntryWrittenEventHandlerEventInstanceEventLogEventLogEntryEventLogEntryCollectionEventLogEntryTypeEventLogPermissionEventLogPermissionAccessEventLogPermissionAttributeEventLogPermissionEntryEventLogPermissionEntryCollectionEventLogTraceListenerEventSourceCreationDataFileVersionInfoICollectDataInstanceDataInstanceDataCollectionInstanceDataCollectionCollectionMonitoringDescriptionAttributeOverflowActionPerformanceCounterPerformanceCounterCategoryPerformanceCounterCategoryTypePerformanceCounterInstanceLifetimePerformanceCounterManagerPerformanceCounterPermissionPerformanceCounterPermissionAccessPerformanceCounterPermissionAttributePerformanceCounterPermissionEntryPerformanceCounterPermissionEntryCollectionPerformanceCounterTypeProcessProcessModuleProcessModuleCollectionProcessPriorityClassProcessStartInfoProcessThreadProcessThreadCollectionProcessWindowStyleStopwatchThreadPriorityLevelThreadStateThreadWaitReasonComponentModelDesignSerializationComponentSerializationServiceContextStackDefaultSerializationProviderAttributeDesignerLoaderDesignerSerializerAttributeIDesignerLoaderHostIDesignerLoaderHost2IDesignerLoaderServiceIDesignerSerializationManagerIDesignerSerializationProviderIDesignerSerializationServiceINameCreationServiceInstanceDescriptorMemberRelationshipServiceMemberRelationshipResolveNameEventArgsResolveNameEventHandlerRootDesignerSerializerAttributeSerializationStoreTypeDescriptionProviderServiceActiveDesignerEventArgsActiveDesignerEventHandlerCheckoutExceptionCommandIDComponentChangedEventArgsComponentChangedEventHandlerComponentChangingEventArgsComponentChangingEventHandlerComponentEventArgsComponentEventHandlerComponentRenameEventArgsComponentRenameEventHandlerDesignerOptionServiceDesignerOptionCollectionDesignerTransactionDesignerTransactionCloseEventArgsDesignerTransactionCloseEventHandlerDesignerVerbDesignerVerbCollectionDesigntimeLicenseContextDesigntimeLicenseContextSerializerDesignerCollectionDesignerEventArgsDesignerEventHandlerHelpContextTypeHelpKeywordAttributeHelpKeywordTypeIComponentChangeServiceIComponentDiscoveryServiceIComponentInitializerIDesignerIDesignerEventServiceIDesignerFilterIDesignerHostIDesignerHostTransactionStateIDesignerOptionServiceIDictionaryServiceIEventBindingServiceIExtenderListServiceIExtenderProviderServiceIHelpServiceIInheritanceServiceIMenuCommandServiceIReferenceServiceIResourceServiceIRootDesignerISelectionServiceIServiceContainerITreeDesignerITypeDescriptorFilterServiceITypeDiscoveryServiceITypeResolutionServiceMenuCommandSelectionTypesServiceCreatorCallbackServiceContainerStandardCommandsStandardToolWindowsViewTechnologyAddingNewEventArgsAddingNewEventHandlerAmbientValueAttributeArrayConverterAsyncCompletedEventArgsAsyncCompletedEventHandlerAsyncOperationAsyncOperationManagerAttributeCollectionAttributeProviderAttributeBackgroundWorkerComponentEditorBaseNumberConverterBindableAttributeBindableSupportBindingDirectionBindingListBooleanConverterBrowsableAttributeByteConverterCancelEventArgsCancelEventHandlerCategoryAttributeCharConverterCollectionChangeActionCollectionChangeEventArgsCollectionChangeEventHandlerCollectionConverterComplexBindingPropertiesAttributeComponentComponentCollectionComponentConverterComponentResourceManagerContainerContainerFilterServiceCultureInfoConverterCustomTypeDescriptorDataErrorsChangedEventArgsDataObjectAttributeDataObjectFieldAttributeDataObjectMethodAttributeDataObjectMethodTypeDateTimeConverterDateTimeOffsetConverterDecimalConverterDefaultBindingPropertyAttributeDefaultEventAttributeDefaultPropertyAttributeDefaultValueAttributeDescriptionAttributeDesignerAttributeDesignerCategoryAttributeDesignerSerializationVisibilityDesignerSerializationVisibilityAttributeDesignOnlyAttributeDesignTimeVisibleAttributeDisplayNameAttributeDoubleConverterDoWorkEventArgsDoWorkEventHandlerEditorAttributeEditorBrowsableAttributeEditorBrowsableStateEnumConverterEventDescriptorEventDescriptorCollectionEventHandlerListExpandableObjectConverterExtenderProvidedPropertyAttributeGuidConverterHandledEventArgsHandledEventHandlerIBindingListIBindingListViewICancelAddNewIChangeTrackingIComNativeDescriptorHandlerIComponentIContainerICustomTypeDescriptorIDataErrorInfoIEditableObjectIExtenderProviderIIntellisenseBuilderIListSourceImmutableObjectAttributeINestedContainerINestedSiteInitializationEventAttributeINotifyDataErrorInfoINotifyPropertyChangedINotifyPropertyChangingInstallerTypeAttributeInstanceCreationEditorInt16ConverterInt32ConverterInt64ConverterInvalidAsynchronousStateExceptionInvalidEnumArgumentExceptionIRaiseItemChangedEventsIRevertibleChangeTrackingISiteISupportInitializeISupportInitializeNotificationISynchronizeInvokeITypeDescriptorContextITypedListLicenseLicenseContextLicenseExceptionLicenseManagerLicenseProviderLicenseProviderAttributeLicenseUsageModeLicFileLicenseProviderListBindableAttributeListChangedEventArgsListChangedEventHandlerListChangedTypeListSortDescriptionListSortDescriptionCollectionListSortDirectionLocalizableAttributeLookupBindingPropertiesAttributeMarshalByValueComponentMaskedTextProviderMaskedTextResultHintMemberDescriptorMergablePropertyAttributeMultilineStringConverterNestedContainerNullableConverterPasswordPropertyTextAttributeProgressChangedEventArgsProgressChangedEventHandlerPropertyChangedEventArgsPropertyChangedEventHandlerPropertyChangingEventArgsPropertyChangingEventHandlerPropertyDescriptorPropertyDescriptorCollectionProvidePropertyAttributeReadOnlyAttributeRecommendedAsConfigurableAttributeReferenceConverterRefreshEventArgsRefreshEventHandlerRunInstallerAttributeRunWorkerCompletedEventArgsRunWorkerCompletedEventHandlerSByteConverterSettingsBindableAttributeSingleConverterStringConverterSyntaxCheckTimeSpanConverterToolboxItemFilterAttributeToolboxItemFilterTypeTypeConverterStandardValuesCollectionTypeConverterAttributeTypeDescriptionProviderTypeDescriptionProviderAttributeTypeDescriptorTypeListConverterUInt16ConverterUInt32ConverterUInt64ConverterWarningExceptionWin32ExceptionInheritanceAttributeInheritanceLevelNotifyParentPropertyAttributeParenthesizePropertyNameAttributePropertyTabAttributePropertyTabScopeRefreshPropertiesRefreshPropertiesAttributeToolboxItemAttributeCodeDomCompilerCodeCompilerCodeDomProviderCodeGeneratorCodeGeneratorOptionsCodeParserCompilerErrorCompilerErrorCollectionCompilerInfoCompilerParametersCompilerResultsExecutorGeneratedCodeAttributeGeneratorSupportICodeCompilerICodeGeneratorICodeParserIndentedTextWriterLanguageOptionsTempFileCollectionCodeArgumentReferenceExpressionCodeArrayCreateExpressionCodeArrayIndexerExpressionCodeAssignStatementCodeAttachEventStatementCodeAttributeArgumentCodeAttributeArgumentCollectionCodeAttributeDeclarationCodeAttributeDeclarationCollectionCodeBaseReferenceExpressionCodeBinaryOperatorExpressionCodeBinaryOperatorTypeCodeCastExpressionCodeCatchClauseCodeCatchClauseCollectionCodeChecksumPragmaCodeCommentCodeCommentStatementCodeCommentStatementCollectionCodeCompileUnitCodeConditionStatementCodeConstructorCodeDefaultValueExpressionCodeDelegateCreateExpressionCodeDelegateInvokeExpressionCodeDirectionExpressionCodeDirectiveCodeDirectiveCollectionCodeEntryPointMethodCodeEventReferenceExpressionCodeExpressionCodeExpressionCollectionCodeExpressionStatementCodeFieldReferenceExpressionCodeGotoStatementCodeIndexerExpressionCodeIterationStatementCodeLabeledStatementCodeLinePragmaCodeMemberEventCodeMemberFieldCodeMemberMethodCodeMemberPropertyCodeMethodInvokeExpressionCodeMethodReferenceExpressionCodeMethodReturnStatementCodeNamespaceCodeNamespaceCollectionCodeNamespaceImportCodeNamespaceImportCollectionCodeObjectCodeObjectCreateExpressionCodeParameterDeclarationExpressionCodeParameterDeclarationExpressionCollectionCodePrimitiveExpressionCodePropertyReferenceExpressionCodePropertySetValueReferenceExpressionCodeRegionDirectiveCodeRegionModeCodeRemoveEventStatementCodeSnippetCompileUnitCodeSnippetExpressionCodeSnippetStatementCodeSnippetTypeMemberCodeStatementCodeStatementCollectionCodeThisReferenceExpressionCodeThrowExceptionStatementCodeTryCatchFinallyStatementCodeTypeConstructorCodeTypeDeclarationCodeTypeDeclarationCollectionCodeTypeDelegateCodeTypeMemberCodeTypeMemberCollectionCodeTypeOfExpressionCodeTypeParameterCodeTypeParameterCollectionCodeTypeReferenceOptionsCodeTypeReferenceCodeTypeReferenceCollectionCodeTypeReferenceExpressionCodeVariableDeclarationStatementCodeVariableReferenceExpressionFieldDirectionMemberAttributesTextRegularExpressionsRegexMatchEvaluatorCaptureCaptureCollectionRegexCompilationInfoGroupGroupCollectionMatchMatchCollectionRegexMatchTimeoutExceptionRegexOptionsRegexRunnerRegexRunnerFactoryUriParserUriUriBuilderUriFormatExceptionUriHostNameTypeUriPartialUriTypeConverterUriKindUriComponentsUriFormatUriIdnScopeGenericUriParserOptionsGenericUriParserHttpStyleUriParserFtpStyleUriParserFileStyleUriParserNewsStyleUriParserGopherStyleUriParserLdapStyleUriParserNetPipeStyleUriParserNetTcpStyleUriParserEventArgsMulticastDelegateEnumObjectFormatExceptionSystemExceptionXmlXmlDocumentAttributeICloneableExceptionIDisposableInvalidOperationExceptionMarshalByRefObjectValueTypeIEquatableResourcesResourceManagerIServiceProviderArgumentExceptionTimeoutExceptionw�����#
4	$
W4n4�?�8�9�j
��(�t

x�
x$9�P
��!���)���xR�99�U"�c"�{"��0� 0�0�,G9�^9�x9��9��

x�
x�
x�Q	��9��9�$	�3�4'�30����%���E�Z�v
���9�Y(�@(��9��//�9�:�:�*:����$�s'�5:�],
)E:��
�
�bW:
���d:�s:��O�O�:�kmym�:
��4n'�4R�C	FR	F�,0$4�#�1,)Hv0HvIHvcHvvHv�Hv�Hv�Hv�H"v�HvIv3IvIIv[IvjIv�Iv�Iv�Iv�Iv�F��Iv�Iv�IvJv Jv<JvXJvoJ
v|Jv�F��F��Jv�Jv�Jv�Jv�JvKvG
�G�Kv-KvBKvXKvlKvzKv�Kv�Kv�Kv�Kv�Kv�Kv
L
vLv.LvALv^L
vhLv�L"v�L,v/G
��Lv�LvM'v-Mv@MvNMvfMv|Mv�Mv�Mv�M
v�Mv�Mv�MvNv0NvCNvVNvsNv�Nv�Nv�Nv�Nv�NvOvOv-Ov�NvHO vhOvI&
��'��:��:��:��:��$��$��4	�Fv9G
�FG�]G�iG�{G�;!�";	��4�4�4�4+;�>;��9�5 5_2�55M5P;��2E�*'�*��*��( i'
��'
�
m`
�.
�����?���	�U�j�!�<%�a�j,)h;	�q;�
�
��2E��������~,).)#.)@.
)M.)���4"�(��;��;��(��;��;��;��;�
<�|.)d.)!<�2<��,)I<���Y<�x<�R) �<�|��2%E���,)�<�+
��,)
x�<�m2��<��<�I6[6l6�2E}5h5�<�=(��2E�5�5!�5$�5�5?=�6'6"R=�&,��.) (�{�l=�*
���%�F
�0��=�M�,!�� �_#� ��#��=��=�����(��Q�=��=��=������3�/S�Q�
/�.)�.)�Q��=
��&
[v&
h�&
�&
�	'
��&
��&
%?+'M+'�Q	��=�>� >��.
)�.)�.
)�.)/)'/)9/)Q/)l/)�/!)�/)�/)
-)�Q	�Y'=, X�G�0>��'�m��%m��I>!��) �,�Ov�:(Q�^+'q+'�+'�/)[�i��,�(	��Q��(
)�:��x
�Q��
����
��
%��G��G�e&�M$��P��P��/�
/��LQ��O�Oj>
�+
�C) w>��>��)	��'�'	��6�6�6�:7F��F��������"�7�S�f�z���h	F"FJF������Q����������$��(�����
��>��>��>
���>��Q
���6�F��G
��G��G��/)�'�'�h$�>��>
��6�6�6C�����>
��(�4�?��)?��(��)F�6	77%7
27�2E
3E3EO743EQ3Eo3E�'�@'�(�e7R��
�$?��'�"'��'�^'�)�)
�FR
�w7�73?��7���7�7D?�(�X?�[
�{�7c?��3E�,�G�{?��?�F�3F��?��$��?��?��?�c$L�?�	@��/)�/)
0 )�3E@�-@�;@�;��+'�('LJI@!�3'+'j@�R��)�w
��+'%�Z	��
�j�~�c
�������m���������'�
��
���������@�-'�K'��7�7�@���
8
8�)
F(8hR�'���@��@��@��@�98
�@�F8b8A
�w8�#�x	������&
�L%��G�`Q�A�$A�2A�BA�PA�_A�wA��A���l&
��&��
x�
x�A��A��A��A�&%��A��A�B�*!3$�-B�AB �p
��
x�
x%x0x�p$L+R�aB�xB��B�PP�O�$�>
��Ov�B��3E�3E�8�B�		
� 
�-0)�Q�S
�p
'����B�4%�Z%�=�X�$�3�B�6	�%�rQ�-��Q��
�A!�b&��4
�����������%����V��
�:Q��!�m%��% ��%#�2+
'CF��B��Q�&�&��"��"
��"
��"��!	]��y�����4��%�K0)`F!��)��B�Y0)k0)�0)�0")�0)�0)�0")1%)A1!)b1+)<��1)�"4E���m�T��
����	��m�)'�J�J�
J��D$	4�,�1)�1
)�1)�1)�1)�1
)�1)2)C�4C�OC�gC��C��C��C��C��F��F��3�m�������C����	V��	]�&��C�S&��'�-&�D"�0D��)
�BD�RD��F��F��O�O"P<PHPSP�O�#3�+'�+'�FF���/�3E�3EYR$T#�j#�PR	�4EeD��(�zD��D�?Jn!*J*[*�D�S�g��
��$=�������8�
�7(	��#�#�#�#<x7��*
��*��*��)�	*�%*�s2
�)
''4ED*�S*�l*��*
��8�8�mY�=�������J�J�JJ*J;JQJjJ������g�o����D����!�5�(�����O��!�;#�^!�����"���m��������������D���
xy
xgxUx�
x�x�x���x�x���#��x�
�i�#�I �
�}�[����������A�(�T����
��&��&
�'	��$�-)%-)1-)�$������3M'K	3�&��8p) �8PE�)�')	��*�(2	)�!
]"	]�"��"��"�,'�%��D��%��%���=-)C-)R-)�D��}J�Q��$��$��	��������
��G�L
��O�,
'f-)`(�x(�.(	�12)D2)O2)�R���J�J���E�mm�F�E�.E�}-)�-)�-)�-)�-
)�-
)�-)�-)�-)�-)`
�����c
�0)�CE
�hE�~E��E �94�E�#�3#!��"��E��	����
��E��E��E�
�.
%�m����,hJ����������!���k!�A� !�nP�qP
��P
��P	�{P��P��P��P�eP	��P
��
��P��J�J�!JJ*"J��A�u�&�v$~=R	�+�(
'�8	��+'�(
�F�,'��p	�������(
��5�&�=
���;�R!�s�G��		F�	F�	F�	F�	F�	F�	F9	
��	FR
���:�F�\$�5) �,�,�,	�,\�v��]�]>!]F"] ] ]9 ]"]-"[��v 	] ]� ]� ]� ]g ]S ][!]!
]�!]�!] ]�])!]!]�]� ]� ]"	]�!!]x!%]� ]�Q��Qt�-)�w(�W(�TVY� ChR����UxCI@JG���m���
����!�@�UWZ�!Div^/�<��95
7S=���tq��VyDJAKH�;�n���)����"M �L��X[�j�x.�����5�3@BDG�|�}�=�19���������D$1)��E(7��7�����������iP�M����Umjidonslr�����;�	�>��/��BH?�������_a����������9:��Beos�����6*d��u��]���!�,���blmpq|*0����/G:��������+3��QR�H7HT?AE��.���
 y{~��-.1245;�,��:=��������g�>�>�����v?n����Z^_`abghp\#����p�����\hi����[%>�3�����������*[^cf{�����#����YZ_`bcqr���������� '�L�����G�^`f���~�����k�IJ���!+,-LH!�|}���2479>���n���h�RQPONST]K���p5?N��Ml������	���w��^��W
2�6����b�V	1�5����"W	1�5����"��1��zK\]����2wN�z\�O�)��/E�_z+B������<��S���8;IoO�0`,C�<P�	R-�w�=b�	G]:��($a.u����,���|*su�u�ad\""B
�\efgkty�&	��j$8AK����
%(-@Ardlvw���
&c���
�����%��2mq���.�,��`g�*p����\h����K[%>��^#;Y��r����J���mq��0mq��.�,��`g�*p���\h����K[%>��^#;Y��r����J��hnor�4su�#}�������G0/9|��>}���}�+���>? !k{~����^pRQPONST>3���Z��_�� �FQLG���K�C��&�2�
��84
	�(�6�4�7X79>���?SA� 
j�!kz�;����-���&��&��'��6c=2RQPONST��,�����(#N����
�Zah\RQPONSTTfWX[YfkVeq�[�d�$_agku{��������9%:�<��*p�������h�RQPONST��*�
��;Y��r���		@
h����[%>�A��K��RQPONST8�-8�x�@����v��e�g�"`�+����;��;?;5E3.{������!�������X�MJMR`��IL���"%�Dcf���sKO��#`&I�L���FQ�����zYZ[bcepqrsy}��������������\]jn|���������th��
imtz�������ox��������m���~l�l�~���
I����OpenOptionsCngKeyUsagesCngPropertyOptionsCngUIProtectionLevelsRSACngSHA1CngSHA256CngSHA256CryptoServiceProviderSHA384CngSHA384CryptoServiceProviderSHA512CngSHA512CryptoServiceProviderSignatureVerificationResultStrongNameSignatureInformationAesAsymmetricAlgorithmMD5RSASHA1SHA256SHA384SHA512ManifestKindsAccessControlObjectSecurityAccessRuleAuditRuleNativeObjectSecurityRuntimeInteropServicesComAwareEventInfoSafeBufferCompilerServicesExecutionScopeDynamicAttributeCallSiteCallSiteBinderCallSiteHelpersCallSiteOpsCreateMatchmakerSetNotMatchedGetMatchClearMatchAddRuleUpdateRulesGetRulesGetRuleCacheMoveRuleGetCachedRulesBindRuntimeOpsExpandoTryGetValueExpandoTrySetValueExpandoTryDeleteValueExpandoCheckVersionExpandoPromoteClassQuoteMergeRuntimeVariablesCreateRuntimeVariablesRuleCacheClosureDebugInfoGeneratorIRuntimeVariablesReadOnlyCollectionBuilderStrongBoxIStrongBoxSerializationISerializableIDeserializationCallbackLinqExpressionsBinaryExpressionExpressionBlockExpressionCatchBlockConditionalExpressionConstantExpressionDebugInfoExpressionDefaultExpressionDynamicExpressionElementInitExpressionTypeExpressionVisitorDynamicExpressionVisitorGotoExpressionKindGotoExpressionIArgumentProviderIDynamicExpressionIndexExpressionInvocationExpressionLabelExpressionLabelTargetLambdaExpressionListInitExpressionLoopExpressionMemberAssignmentMemberBindingTypeMemberBindingMemberExpressionMemberInitExpressionMemberListBindingMemberMemberBindingMethodCallExpressionNewArrayExpressionNewExpressionParameterExpressionRuntimeVariablesExpressionSwitchCaseSwitchExpressionSymbolDocumentInfoTryExpressionTypeBinaryExpressionUnaryExpressionIQueryableIQueryProviderIOrderedQueryableQueryableAsQueryableWhereOfTypeCastSelectSelectManyJoinGroupJoinOrderByOrderByDescendingThenByThenByDescendingTakeTakeWhileSkipSkipWhileGroupByDistinctConcatZipUnionIntersectExceptFirstFirstOrDefaultLastLastOrDefaultSingleSingleOrDefaultElementAtElementAtOrDefaultDefaultIfEmptyContainsReverseSequenceEqualAnyAllCountLongCountMinMaxSumAverageAggregateEnumerableWhereSelectSelectManyTakeTakeWhileSkipSkipWhileJoinGroupJoinOrderByOrderByDescendingThenByThenByDescendingGroupByConcatZipDistinctUnionIntersectExceptReverseSequenceEqualAsEnumerableToArrayToListToDictionaryToLookupDefaultIfEmptyOfTypeCastFirstFirstOrDefaultLastLastOrDefaultSingleSingleOrDefaultElementAtElementAtOrDefaultAnyAllCountLongCountContainsAggregateSumMinMaxAverageIOrderedEnumerableIGroupingILookupLookupEnumerableQueryEnumerableExecutorParallelEnumerableAsParallelAsOrderedAsUnorderedAsSequentialWithDegreeOfParallelismWithCancellationWithExecutionModeWithMergeOptionsForAllWhereSelectZipJoinGroupJoinSelectManyOrderByOrderByDescendingThenByThenByDescendingGroupByAggregateCountLongCountSumMinMaxAverageAnyAllContainsTakeTakeWhileSkipSkipWhileConcatSequenceEqualDistinctUnionIntersectExceptAsEnumerableToArrayToListToDictionaryToLookupReverseOfTypeCastFirstFirstOrDefaultLastLastOrDefaultSingleSingleOrDefaultDefaultIfEmptyElementAtElementAtOrDefaultParallelMergeOptionsParallelExecutionModeOrderedParallelQueryParallelQueryManagementInstrumentationManagementEntityAttributeManagementHostingModelWmiConfigurationAttributeManagementMemberAttributeManagementNewInstanceAttributeManagementBindAttributeManagementCreateAttributeManagementRemoveAttributeManagementEnumeratorAttributeManagementProbeAttributeManagementTaskAttributeManagementKeyAttributeManagementReferenceAttributeManagementConfigurationTypeManagementConfigurationAttributeManagementCommitAttributeManagementNameAttributeInstrumentationBaseExceptionInstrumentationExceptionInstanceNotFoundExceptionDiagnosticsPerformanceDataCounterDataCounterSetInstanceCounterDataSetCounterSetCounterSetInstanceCounterSetInstanceTypeCounterTypeEventingReaderEventBookmarkEventLogTypeEventLogIsolationEventLogModeEventLogConfigurationEventLogLinkEventLogStatusEventPropertyEventLogPropertySelectorEventRecordEventKeywordEventLevelEventLogRecordEventLogReaderEventLogWatcherEventRecordWrittenEventArgsEventLogQuerySessionAuthenticationPathTypeEventLogSessionEventMetadataEventOpcodeEventTaskEventLogExceptionEventLogNotFoundExceptionEventLogReadingExceptionEventLogProviderDisabledExceptionEventLogInvalidDataExceptionEventLogInformationProviderMetadataStandardEventLevelStandardEventTaskStandardEventOpcodeStandardEventKeywordsEventDescriptorEventProviderWriteEventErrorCodeEventProviderTraceListenerEventSchemaTraceListenerTraceLogRetentionOptionUnescapedXmlDiagnosticDataTextWriterTraceListenerTraceListenerActionFuncMulticastDelegateEnumObjectIDisposableValueTypeComponentModelINotifyPropertyChangedIEquatableReflectionEventInfoAttributeExceptionEventArgs������
~�
-��	*�[�[�
[�	�0	Qx	c��ZQWc�]�]��WQTc5��Qh	Q^
Q+c|QqQ�[�	��	* ���PQqcF��h	
*�h`��hn	Dv	D�	D�	Dv��QAco
��	
*�
D�[[r[3[9[�[I[[�[�[a[l[�[�[�[�[�
E�%	�@	qf���Q�cy�����]Q8c�
h��9QZc�W�
W�W� WW&W�h�	*�
r~���
D��b�%Q*c	hh����Q�c��^	D����,h=hT
h�[�[�[�$[�[[��[[�	�3	Q	c��<Qc��H��
:+5
��	�?
ew��	i1d�e�
eue�e	e�eXe�eie�e�e�!e0
e�e�e�eZe�eLeei
eve�
e�
����ee�d�	e��Q�c�	�P	DP
ra
hc
r;
r
r)
rV
�;����z��Q�c��Q�c�Q3�'B�	*�u�unh�	*|hqnbn�	*�	*)����)Q�c�	��	QY	ck�.�7��B?��w�R�H��h�BJ��Bl��
�	�h�B��Z�tE���b�~�	q	��	Q�	ci��h�h���

Y��
D
�U��

D���QUc}��������Q�c�
�
Q�
c7������	�>	Q_	c%���
�0�2� ���G���y�������K������`����
~*[F&[��MQkc�[l[���
�����
�
�*
�3�3�3R3��h3$3<3{
r=
�	��JQhc�	*7�]]�Q
�c

�L��B�p��Q;c���Qbc��QicwLbN�
p
�Re�d4]D]R
]�
]�]��_]*
]�]�]e"	v
r9���E�
D�
�!��Q@c�[J��[�
	D	�

D�
�6	
���!uxu�uu)u<uTuju����QEc�
��
QK
c(
��
QG
c
q=e�h�h�	
*�[�[�[�	[�[�[
	[[�[1	[:[��Q�c��Qc��rQ�c�	�v	Q�	cbe,eOe>e���
	Dp[��GQnc�

��
��
����eQ�c�	�i	Q�	c����	d��Qzc��Q�c�	���A��QN��QH��QZ��Q 
d�d���

��
��
��h�d
��Q�c������	*]	����Q6c	9�Q�Q�Q�Q����[��Q�cFvy}wyz{|tx>�`)	�012[a\X 8rw369:=@��SR��*�VW����V�����DIf��/$&ln�12457>?s!�nu��'()*rp0]h�c�
��QT�.~��)���RUST������������������b�f�/4sUST�������b���h���h�����
�T������������;����5�6F4_@?�_YZA^m"NXbc�������(m�n������125;>A<otopsqtvg"&'mo������������Ci�''�h����������
������TPT�!%IJ\^j����+,8BCUs�����j�j~���8C�k�)(-.��������������������
���3�	��j<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Core.dll�	17�9_<bƗ�J<N\�am,ꭰ�3MicrosoftWin32SafeHandlesSafeNCryptHandleSafeNCryptKeyHandleSafeNCryptProviderHandleSafeNCryptSecretHandleSafePipeHandleSafeMemoryMappedFileHandleSafeMemoryMappedViewHandleSafeHandleZeroOrMinusOneIsInvalidSystemThreadingTasksTaskExtensionsUnwrapLockRecursionPolicyReaderWriterLockSlimCollectionsGenericHashSetEnumeratorICollectionIEnumerableISetIReadOnlyCollectionIEnumeratorIDictionaryIListIEnumerableIEnumeratorObjectModelCollectionReadOnlyCollectionIListICollectionIOMemoryMappedFilesMemoryMappedFileAccessMemoryMappedFileOptionsMemoryMappedFileMemoryMappedViewAccessorMemoryMappedViewStreamMemoryMappedFileRightsMemoryMappedFileSecurityPipesPipeDirectionPipeTransmissionModePipeOptionsAnonymousPipeServerStreamAnonymousPipeClientStreamPipeStreamImpersonationWorkerNamedPipeServerStreamNamedPipeClientStreamPipeStreamPipeAccessRightsPipeAccessRulePipeAuditRulePipeSecurityHandleInheritabilityUnmanagedMemoryAccessorUnmanagedMemoryStreamStreamDynamicBinaryOperationBinderBindingRestrictionsCallInfoConvertBinderCreateInstanceBinderDeleteIndexBinderDeleteMemberBinderDynamicMetaObjectDynamicMetaObjectBinderDynamicObjectExpandoObjectGetIndexBinderGetMemberBinderIDynamicMetaObjectProviderIInvokeOnGetBinderInvokeBinderInvokeMemberBinderSetIndexBinderSetMemberBinderUnaryOperationBinderSecurityCryptographyX509CertificatesAuthenticodeSignatureInformationRSACertificateExtensionsGetRSAPublicKeyGetRSAPrivateKeyECDsaCertificateExtensionsGetECDsaPrivateKeyGetECDsaPublicKeyTimestampInformationTrustStatusAesCryptoServiceProviderAesManagedCngAlgorithmCngAlgorithmGroupCngKeyHandleOpenOptionsCngKeyCngKeyBlobFormatCngKeyCreationParametersCngPropertyCngPropertyCollectionCngProviderCngUIPolicyECDiffieHellmanECDiffieHellmanPublicKeyECDiffieHellmanKeyDerivationFunctionECDiffieHellmanCngECDiffieHellmanCngPublicKeyECDsaECDsaCngECKeyXmlFormatManifestSignatureInformationManifestSignatureInformationCollectionMD5CngCngExportPoliciesCngKeyCreationOptionsCngKey!thodRC2RC2CryptoServiceProviderRfc2898DeriveBytesRIPEMD160RIPEMD160ManagedRSAParametersRSARSASignaturePaddingRSASignaturePaddingModeRSACryptoServiceProviderRSAEncryptionPaddingRSAEncryptionPaddingModeRSAOAEPKeyExchangeDeformatterRSAOAEPKeyExchangeFormatterRSAPKCS1KeyExchangeDeformatterRSAPKCS1KeyExchangeFormatterRSAPKCS1SignatureDeformatterRSAPKCS1SignatureFormatterRijndaelRijndaelManagedRijndaelManagedTransformSHA1SHA1CryptoServiceProviderSHA1ManagedSHA256SHA256ManagedSHA384SHA384ManagedSHA512SHA512ManagedSignatureDescriptionSymmetricAlgorithmTripleDESTripleDESCryptoServiceProviderPermissionsEnvironmentPermissionAccessEnvironmentPermissionFileDialogPermissionAccessFileDialogPermissionFileIOPermissionAccessFileIOPermissionHostProtectionResourceHostProtectionAttributeIsolatedStorageContainmentIsolatedStoragePermissionIsolatedStorageFilePermissionPermissionStateSecurityActionSecurityAttributeCodeAccessSecurityAttributeEnvironmentPermissionAttributeFileDialogPermissionAttributeFileIOPermissionAttributeKeyContainerPermissionAttributePrincipalPermissionAttributeReflectionPermissionAttributeRegistryPermissionAttributeSecurityPermissionAttributeUIPermissionAttributeZoneIdentityPermissionAttributeStrongNameIdentityPermissionAttributeSiteIdentityPermissionAttributeUrlIdentityPermissionAttributePublisherIdentityPermissionAttributeIsolatedStoragePermissionAttributeIsolatedStorageFilePermissionAttributePermissionSetAttributeReflectionPermissionFlagReflectionPermissionPrincipalPermissionSecurityPermissionFlagSecurityPermissionSiteIdentityPermissionStrongNameIdentityPermissionStrongNamePublicKeyBlobUIPermissionWindowUIPermissionClipboardUIPermissionUrlIdentityPermissionZoneIdentityPermissionGacIdentityPermissionAttributeGacIdentityPermissionIUnrestrictedPermissionKeyContainerPermissionFlagsKeyContainerPermissionAccessEntryKeyContainerPermissionAccessEntryCollectionKeyContainerPermissionAccessEntryEnumeratorKeyContainerPermissionPublisherIdentityPermissionRegistryPermissionAccessRegistryPermissionIBuiltInPermissionClaimsClaimClaimsIdentityClaimsPrincipalClaimTypesClaimValueTypesPrincipalGenericIdentityGenericPrincipalIIdentityIPrincipalPrincipalPolicyTokenAccessLevelsTokenImpersonationLevelWindowsAccountTypeWindowsIdentityWindowsImpersonationContextWindowsBuiltInRoleWindowsPrincipalIdentityReferenceIdentityReferenceCollectionNTAccountWellKnownSidTypeSecurityIdentifierIdentityNotMappedExceptionPolicyAllMembershipConditionApplicationDirectoryApplicationDirectoryMembershipConditionApplicationSecurityInfoApplicationSecurityManagerDetermineApplicationTrustApplicationVersionMatchApplicationTrustApplicationTrustCollectionApplicationTrustEnumeratorCodeGroupEvidenceEvidenceBaseFileCodeGroupFirstMatchCodeGroupIIdentityPermissionFactoryIMembershipConditionIApplicationTrustManagerTrustManagerUIContextTrustManagerContextCodeConnectAccessNetCodeGroupPermissionRequestEvidencePolicyExceptionPolicyLevelPolicyStatementAttributePolicyStatementSiteSiteMembershipConditionStrongNameStrongNameMembershipConditionUnionCodeGroupUrlUrlMembershipConditionZoneZoneMembershipConditionGacInstalledGacMembershipConditionHashHashMembershipConditionPublisherPublisherMembershipConditionIConstantMembershipConditionIReportMatchMembershipConditionIUnionSemanticCodeGroupIDelayEvaluatedEvidenceUtilSecurityElementXmlSyntaxExceptionSuppressUnmanagedCodeSecurityAttributeUnverifiableCodeAttributeAllowPartiallyTrustedCallersAttributePartialTrustVisibilityLevelSecurityCriticalScopeSecurityCriticalAttributeSecurityTreatAsSafeAttributeSecuritySafeCriticalAttributeSecurityTransparentAttributeSecurityRuleSetSecurityRulesAttributeCodeAccessPermissionIEvidenceFactoryIPermissionISecurityEncodableISecurityPolicyEncodableIStackWalkHostSecurityManagerOptionsHostSecurityManagerNamedPermissionSetPermissionSetReadOnlyPermissionSetSecureStringSecurityContextSourceSecurityContextSecurityExceptionSecurityStateHostProtectionExceptionPolicyLevelTypeSecurityManagerIsGrantedGetZoneAndOriginLoadPolicyLevelFromFileLoadPolicyLevelFromStringSavePolicyLevelResolvePolicyCurrentThreadRequiresSecurityConte"xtCaptureResolveSystemPolicyResolvePolicyGroupsPolicyHierarchySavePolicySecurityZoneVerificationExceptionISecurityElementFactoryResourcesIResourceReaderIResourceWriterMissingManifestResourceExceptionMissingSatelliteAssemblyExceptionNeutralResourcesLanguageAttributeResourceManagerResourceReaderResourceSetResourceWriterSatelliteContractVersionAttributeUltimateResourceFallbackLocationGlobalizationCalendarCalendarAlgorithmTypeCalendarWeekRuleCharUnicodeInfoCompareOptionsCompareInfoCultureInfoCultureNotFoundExceptionCultureTypesDateTimeStylesDateTimeFormatInfoDaylightTimeDigitShapesGregorianCalendarGregorianCalendarTypesHebrewCalendarHijriCalendarUmAlQuraCalendarChineseLunisolarCalendarEastAsianLunisolarCalendarJapaneseLunisolarCalendarJulianCalendarKoreanLunisolarCalendarPersianCalendarTaiwanLunisolarCalendarIdnMappingJapaneseCalendarKoreanCalendarRegionInfoSortKeyStringInfoTaiwanCalendarTextElementEnumeratorTextInfoThaiBuddhistCalendarTimeSpanStylesNumberFormatInfoNumberStylesUnicodeCategorySortVersionDiagnosticsSymbolStoreISymbolBinderISymbolBinder1ISymbolDocumentISymbolDocumentWriterISymbolMethodISymbolNamespaceISymbolReaderISymbolScopeISymbolVariableISymbolWriterSymAddressKindSymDocumentTypeSymLanguageTypeSymLanguageVendorSymbolTokenContractsInternalContractHelperRaiseContractFailedEventTriggerFailurePureAttributeContractClassAttributeContractClassForAttributeContractInvariantMethodAttributeContractReferenceAssemblyAttributeContractRuntimeIgnoredAttributeContractVerificationAttributeContractPublicPropertyNameAttributeContractArgumentValidatorAttributeContractAbbreviatorAttributeContractOptionAttributeContractAssumeAssertRequiresEnsuresEnsuresOnThrowResultValueAtReturnOldValueInvariantForAllExistsEndContractBlockContractFailureKindContractFailedEventArgsCodeAnalysisSuppressMessageAttributeTracingInternalEventActivityOptionsEventSourceEventSourceSettingsEventListenerEventCommandEventArgsEventWrittenEventArgsEventSourceAttributeEventAttributeNonEventAttributeEventCommandEventManifestOptionsEventSourceExceptionEventLevelEventTaskEventOpcodeEventChannelEventKeywordsEventDataAttributeEventFieldTagsEventFieldAttributeEventFieldFormatEventIgnoreAttributeEventSourceOptionsEventTagsConditionalAttributeDebuggerDebuggerStepThroughAttributeDebuggerStepperBoundaryAttributeDebuggerHiddenAttributeDebuggerNonUserCodeAttributeDebuggableAttributeDebuggingModesDebuggerBrowsableStateDebuggerBrowsableAttributeDebuggerTypeProxyAttributeDebuggerDisplayAttributeDebuggerVisualizerAttributeStackTraceStackFrameCollectionsConcurrentConcurrentStackIProducerConsumerCollectionConcurrentDictionaryConcurrentQueuePartitionerOrderablePartitionerEnumerablePartitionerOptionsObjectModelCollectionReadOnlyCollectionReadOnlyDictionaryKeyCollectionValueCollectionKeyedCollectionGenericComparerDictionaryEnumeratorKeyCollectionEnumeratorValueCollectionEnumeratorEqualityComparerICollectionIComparerIDictionaryIEnumerableIEnumeratorIEqualityComparerIListIReadOnlyCollectionIReadOnlyListIReadOnlyDictionaryKeyNotFoundExceptionKeyValuePairListEnumeratorCaseInsensitiveComparerCaseInsensitiveHashCodeProviderCollectionBaseDictionaryBaseReadOnlyCollectionBaseQueueArrayListBitArrayStackComparerHashtableDictionaryEntryICollectionIComparerIDictionaryIDictionaryEnumeratorIEnumerableIEnumeratorIEqualityComparerIHashCodeProviderIListSortedListIStructuralEquatableIStructuralComparableStructuralComparisonsThreadingTasksTaskTaskFactoryParallelOptionsParallelParallelLoopStateParallelLoopResultTaskStatusTaskCreationOptionsTaskContinuationOptionsTaskCanceledExceptionTaskSchedulerExceptionTaskSchedulerUnobservedTaskExceptionEventArgsTaskCompletionSourceConcurrentExclusiveSchedulerPairAbandonedMutexExceptionAsyncLocalAsyncLocalValueChangedArgsAutoResetEventSendOrPostCallbackSynchronizationContextCompressedStackEventResetModeEventWaitHandleContextCallbackAsyncFlowControlExecutionContextInterlockedIncrementDecrementExchangeCompareExchangeAddHostExecutionContextHostExecutionContextManagerLockCookieLockRecursionExceptionManualResetEventMonitorEnterExitIsEnteredWaitPulsePulseAllMutexNativeOv#erlappedOverlappedParameterizedThreadStartReaderWriterLockSemaphoreFullExceptionSynchronizationLockExceptionThreadThreadAbortExceptionThreadInterruptedExceptionRegisteredWaitHandleWaitCallbackWaitOrTimerCallbackIOCompletionCallbackThreadPoolSetMaxThreadsGetMaxThreadsSetMinThreadsGetMinThreadsGetAvailableThreadsRegisterWaitForSingleObjectUnsafeRegisterWaitForSingleObjectQueueUserWorkItemUnsafeQueueUserWorkItemUnsafeQueueNativeOverlappedBindHandleThreadPriorityThreadStartThreadStateThreadStateExceptionThreadStartExceptionTimeoutTimerCallbackTimerVolatileReadWriteWaitHandleWaitHandleExtensionsGetSafeWaitHandleSetSafeWaitHandleWaitHandleCannotBeOpenedExceptionApartmentStateSpinLockSpinWaitCountdownEventLazyThreadSafetyModeLazyInitializerThreadLocalSemaphoreSlimManualResetEventSlimCancellationTokenRegistrationCancellationTokenSourceCancellationTokenIAsyncLocalIThreadPoolWorkItemStubHelpersReflectionEmitAssemblyBuilderAssemblyBuilderAccessConstructorBuilderDynamicILInfoDynamicMethodEventBuilderEventTokenFieldBuilderFieldTokenILGeneratorLabelLocalBuilderMethodBuilderExceptionHandlerCustomAttributeBuilderMethodRentalMethodTokenModuleBuilderPEFileKindsOpCodesOpCodeOpCodeTypeStackBehaviourOperandTypeFlowControlParameterBuilderParameterTokenPropertyBuilderPropertyTokenSignatureHelperSignatureTokenStringTokenPackingSizeTypeBuilderGenericTypeParameterBuilderEnumBuilderTypeTokenUnmanagedMarshalAmbiguousMatchExceptionModuleResolveEventHandlerAssemblyAssemblyCopyrightAttributeAssemblyTrademarkAttributeAssemblyProductAttributeAssemblyCompanyAttributeAssemblyDescriptionAttributeAssemblyTitleAttributeAssemblyConfigurationAttributeAssemblyDefaultAliasAttributeAssemblyInformationalVersionAttributeAssemblyFileVersionAttributeAssemblyCultureAttributeAssemblyVersionAttributeAssemblyKeyFileAttributeAssemblyDelaySignAttributeAssemblyAlgorithmIdAttributeAssemblyFlagsAttributeAssemblyMetadataAttributeAssemblySignatureKeyAttributeAssemblyKeyNameAttributeAssemblyNameAssemblyNameProxyAssemblyNameFlagsAssemblyContentTypeProcessorArchitectureCustomAttributeExtensionsGetCustomAttributeGetCustomAttributesIsDefinedCustomAttributeFormatExceptionBinderBindingFlagsCallingConventionsConstructorInfoCustomAttributeDataCustomAttributeNamedArgumentCustomAttributeTypedArgumentDefaultMemberAttributeEventAttributesEventInfoFieldAttributesFieldInfoGenericParameterAttributesICustomAttributeProviderIReflectableTypeIntrospectionExtensionsGetTypeInfoRuntimeReflectionExtensionsGetRuntimePropertiesGetRuntimeEventsGetRuntimeMethodsGetRuntimeFieldsGetRuntimePropertyGetRuntimeEventGetRuntimeMethodGetRuntimeFieldGetRuntimeBaseDefinitionGetRuntimeInterfaceMapGetMethodInfoInterfaceMappingInvalidFilterCriteriaExceptionIReflectManifestResourceInfoResourceLocationMemberFilterMemberInfoMemberTypesMethodAttributesMethodBaseMethodImplAttributesMethodInfoMissingPortableExecutableKindsImageFileMachineModuleObfuscateAssemblyAttributeObfuscationAttributeExceptionHandlingClauseOptionsExceptionHandlingClauseMethodBodyLocalVariableInfoParameterAttributesParameterInfoParameterModifierPointerPropertyAttributesPropertyInfoReflectionContextReflectionTypeLoadExceptionResourceAttributesStrongNameKeyPairTargetExceptionTargetInvocationExceptionTargetParameterCountExceptionTypeAttributesTypeDelegatorTypeFilterTypeInfoDeploymentInternalIsolationManifestInternalApplicationIdentityHelperGetInternalAppIdInternalActivationContextHelperGetActivationContextDataGetApplicationComponentManifestGetDeploymentComponentManifestRuntimeDesignerServicesWindowsRuntimeDesignerContextVersioningComponentGuaranteesOptionsComponentGuaranteesAttributeResourceConsumptionAttributeResourceExposureAttributeResourceScopeVersioningHelperMakeVersionSafeNameTargetFrameworkAttributeConstrainedExecutionCriticalFinalizerObjectConsistencyCerReliabilityContractAttributePrePrepareMethodAttributeSerializationFormattersBinaryBinaryFormatterFormatterTypeStyleFormatterAssemblyStyleTypeFilterLevelISoapMessageIFieldInfoInternalRMInternalSTSoapMessageSoapFaultServerFaultFormatterConverterFormatterServicesGetSerializableMembersGetUninitialize$dObjectGetSafeUninitializedObjectPopulateObjectMembersGetObjectDataGetSurrogateForCyclicalReferenceGetTypeFromAssemblyIDeserializationCallbackIFormatterIFormatterConverterIObjectReferenceISerializableISerializationSurrogateISurrogateSelectorOptionalFieldAttributeOnSerializingAttributeOnSerializedAttributeOnDeserializingAttributeOnDeserializedAttributeSerializationBinderSerializationExceptionSerializationInfoSerializationEntrySerializationInfoEnumeratorStreamingContextStreamingContextStatesFormatterObjectIDGeneratorObjectManagerSafeSerializationEventArgsISafeSerializationDataSerializationObjectManagerSurrogateSelectorExceptionServicesHandleProcessCorruptedStateExceptionsAttributeFirstChanceExceptionEventArgsExceptionDispatchInfoRemotingMetadataW3cXsd2001ISoapXsdSoapDateTimeSoapDurationSoapTimeSoapDateSoapYearMonthSoapYearSoapMonthDaySoapDaySoapMonthSoapHexBinarySoapBase64BinarySoapIntegerSoapPositiveIntegerSoapNonPositiveIntegerSoapNonNegativeIntegerSoapNegativeIntegerSoapAnyUriSoapQNameSoapNotationSoapNormalizedStringSoapTokenSoapLanguageSoapNameSoapIdrefsSoapEntitiesSoapNmtokenSoapNmtokensSoapNcNameSoapIdSoapIdrefSoapEntitySoapOptionXmlFieldOrderOptionSoapTypeAttributeSoapMethodAttributeSoapFieldAttributeSoapParameterAttributeSoapAttributeProxiesProxyAttributeRealProxyServicesEnterpriseServicesHelperITrackingHandlerTrackingServicesContextsCrossContextDelegateContextContextPropertyIContextAttributeIContextPropertyIContextPropertyActivatorContextAttributeIContributeClientContextSinkIContributeDynamicSinkIContributeEnvoySinkIContributeObjectSinkIContributeServerContextSinkIDynamicPropertyIDynamicMessageSinkSynchronizationAttributeLifetimeClientSponsorILeaseISponsorLeaseStateLifetimeServicesChannelsChannelServicesIClientChannelSinkStackIClientResponseChannelSinkStackClientChannelSinkStackIServerChannelSinkStackIServerResponseChannelSinkStackServerChannelSinkStackIChannelIChannelSenderIChannelReceiverIChannelReceiverHookIClientChannelSinkProviderIServerChannelSinkProviderIClientFormatterSinkProviderIServerFormatterSinkProviderIClientChannelSinkServerProcessingIServerChannelSinkIChannelSinkBaseIClientFormatterSinkIChannelDataStoreChannelDataStoreITransportHeadersTransportHeadersSinkProviderDataBaseChannelSinkWithPropertiesBaseChannelWithPropertiesBaseChannelObjectWithPropertiesISecurableChannelMessagingAsyncResultIMessageIMessageCtrlIMessageSinkIMethodMessageIMethodCallMessageIMethodReturnMessageIRemotingFormatterReturnMessageMethodCallConstructionCallMethodResponseConstructionResponseInternalMessageWrapperMethodCallMessageWrapperMethodReturnMessageWrapperOneWayAttributeMessageSurrogateFilterRemotingSurrogateSelectorHeaderHeaderHandlerCallContextILogicalThreadAffinativeLogicalCallContextIInternalMessageISerializationRootObjectActivationIActivatorActivatorLevelIConstructionCallMessageIConstructionReturnMessageUrlAttributeIObjectHandleWellKnownObjectModeIRemotingTypeInfoIChannelInfoIEnvoyInfoObjRefRemotingConfigurationConfigureRegisterActivatedServiceTypeRegisterWellKnownServiceTypeRegisterActivatedClientTypeRegisterWellKnownClientTypeGetRegisteredActivatedServiceTypesGetRegisteredWellKnownServiceTypesGetRegisteredActivatedClientTypesGetRegisteredWellKnownClientTypesIsRemotelyActivatedClientTypeIsWellKnownClientTypeIsActivationAllowedTypeEntryActivatedClientTypeEntryActivatedServiceTypeEntryWellKnownClientTypeEntryWellKnownServiceTypeEntryCustomErrorsModesRemotingExceptionServerExceptionRemotingTimeoutExceptionRemotingServicesIsTransparentProxyIsObjectOutOfContextGetRealProxyGetSessionIdForMethodMessageGetLifetimeServiceGetObjectUriSetObjectUriForMarshalMarshalGetObjectDataUnmarshalConnectDisconnectGetEnvoyChainForProxyGetObjRefForProxyGetMethodBaseFromMethodMessageIsMethodOverloadedIsOneWayGetServerTypeForUriExecuteMessageLogRemotingStageInternalRemotingServicesSoapServicesObjectHandleCompilerServicesStringFreezingAttributeContractHelperRaiseContractFailedEventTriggerFailureAccessedThroughPropertyAttributeCallConvCdeclCallConvStdcallCallConvThiscallCallConvFastcallRuntimeHelpersInitializeArrayGetObjectValuePrepareMethodPre%pareDelegatePrepareContractedDelegateGetHashCodeEqualsEnsureSufficientExecutionStackProbeForSufficientStackPrepareConstrainedRegionsPrepareConstrainedRegionsNoOPExecuteCodeWithGuaranteedCleanupTryCodeCleanupCodeCompilerGeneratedAttributeCustomConstantAttributeDateTimeConstantAttributeDiscardableAttributeDecimalConstantAttributeDisablePrivateReflectionAttributeCompilationRelaxationsCompilationRelaxationsAttributeCompilerGlobalScopeAttributeExtensionAttributeFixedBufferAttributeIndexerNameAttributeInternalsVisibleToAttributeIsVolatileMethodImplOptionsMethodCodeTypeMethodImplAttributeFixedAddressValueTypeAttributeUnsafeValueTypeAttributeRequiredAttributeAttributeLoadHintDefaultDependencyAttributeDependencyAttributeCompilerMarshalOverrideHasCopySemanticsAttributeIsBoxedIsByValueIsConstIsExplicitlyDereferencedIsImplicitlyDereferencedIsJitIntrinsicIsLongIsPinnedIsSignUnspecifiedByteIsUdtReturnScopelessEnumAttributeSpecialNameAttributeIsCopyConstructedSuppressIldasmAttributeNativeCppClassAttributeTypeForwardedToAttributeTypeForwardedFromAttributeReferenceAssemblyAttributeRuntimeCompatibilityAttributeRuntimeWrappedExceptionConditionalWeakTableCreateValueCallbackCallerFilePathAttributeCallerLineNumberAttributeCallerMemberNameAttributeStateMachineAttributeIteratorStateMachineAttributeAsyncStateMachineAttributeAsyncVoidMethodBuilderAsyncTaskMethodBuilderIAsyncStateMachineINotifyCompletionICriticalNotifyCompletionTaskAwaiterConfiguredTaskAwaitableConfiguredTaskAwaiterYieldAwaitableYieldAwaiterFormattableStringFactoryIDispatchConstantAttributeIUnknownConstantAttributeInteropServicesTCEAdapterGenWindowsRuntimeDefaultInterfaceAttributeInterfaceImplementedInVersionAttributeReadOnlyArrayAttributeWriteOnlyArrayAttributeReturnValueNameAttributeEventRegistrationTokenEventRegistrationTokenTableIActivationFactoryWindowsRuntimeMarshalAddEventHandlerRemoveEventHandlerRemoveAllEventHandlersGetActivationFactoryStringToHStringPtrToStringHStringFreeHStringWindowsRuntimeMetadataResolveNamespaceNamespaceResolveEventArgsDesignerNamespaceResolveEventArgsExpandoIExpandoComTypesBIND_OPTSIBindCtxIConnectionPointContainerIConnectionPointIEnumMonikerCONNECTDATAIEnumConnectionsIEnumConnectionPointsIEnumStringIEnumVARIANTFILETIMEIMonikerIPersistFileIRunningObjectTableSTATSTGIStreamDESCKINDBINDPTRITypeCompTYPEKINDTYPEFLAGSIMPLTYPEFLAGSTYPEATTRFUNCDESCIDLFLAGIDLDESCPARAMFLAGPARAMDESCTYPEDESCELEMDESCDESCUNIONVARKINDVARDESCDESCUNIONDISPPARAMSEXCEPINFOFUNCKINDINVOKEKINDCALLCONVFUNCFLAGSVARFLAGSITypeInfoSYSKINDLIBFLAGSTYPELIBATTRITypeLibITypeLib2ITypeInfo2_Activator_Attribute_Thread_Type_Assembly_MemberInfo_MethodBase_MethodInfo_ConstructorInfo_FieldInfo_PropertyInfo_EventInfo_ParameterInfo_Module_AssemblyNameArrayWithOffsetUnmanagedFunctionPointerAttributeTypeIdentifierAttributeAllowReversePInvokeCallsAttributeDispIdAttributeComInterfaceTypeInterfaceTypeAttributeComDefaultInterfaceAttributeClassInterfaceTypeClassInterfaceAttributeComVisibleAttributeTypeLibImportClassAttributeLCIDConversionAttributeComRegisterFunctionAttributeComUnregisterFunctionAttributeProgIdAttributeImportedFromTypeLibAttributeIDispatchImplTypeIDispatchImplAttributeComSourceInterfacesAttributeComConversionLossAttributeTypeLibTypeFlagsTypeLibFuncFlagsTypeLibVarFlagsTypeLibTypeAttributeTypeLibFuncAttributeTypeLibVarAttributeVarEnumUnmanagedTypeMarshalAsAttributeComImportAttributeGuidAttributePreserveSigAttributeInAttributeOutAttributeOptionalAttributeDllImportSearchPathDefaultDllImportSearchPathsAttributeDllImportAttributeStructLayoutAttributeFieldOffsetAttributeComAliasNameAttributeAutomationProxyAttributePrimaryInteropAssemblyAttributeCoClassAttributeComEventInterfaceAttributeTypeLibVersionAttributeComCompatibleVersionAttributeBestFitMappingAttributeDefaultCharSetAttributeSetWin32ContextInIDispatchAttributeManagedToNativeComInteropStubAttributeCallingConventionCharSetCOMExceptionCriticalHandleExternalExceptionGCHandleTypeGCHandleHandleRefICustomMarshaler_ExceptionInvalidOleVariantTypeExceptionLayoutKindCustomQueryInterfaceModeMarshalPtrToStringAnsiPtrToStringUniPtrToStringAutoSizeOfUnsafeAd&drOfPinnedArrayElementCopyReadByteReadInt16ReadInt32ReadIntPtrReadInt64WriteByteWriteInt16WriteInt32WriteIntPtrWriteInt64GetLastWin32ErrorGetHRForLastWin32ErrorPrelinkPrelinkAllNumParamBytesGetExceptionPointersGetExceptionCodeStructureToPtrPtrToStructureDestroyStructureGetHINSTANCEThrowExceptionForHRGetExceptionForHRGetHRForExceptionGetUnmanagedThunkForManagedMethodPtrGetManagedThunkForUnmanagedMethodPtrGetThreadFromFiberCookieAllocHGlobalFreeHGlobalReAllocHGlobalStringToHGlobalAnsiStringToHGlobalUniStringToHGlobalAutoGetTypeLibNameGetTypeLibGuidGetTypeLibLcidGetTypeLibGuidForAssemblyGetTypeLibVersionForAssemblyGetTypeInfoNameGetTypeForITypeInfoGetTypeFromCLSIDGetITypeInfoForTypeGetIUnknownForObjectGetIUnknownForObjectInContextGetIDispatchForObjectGetIDispatchForObjectInContextGetComInterfaceForObjectGetComInterfaceForObjectInContextGetObjectForIUnknownGetUniqueObjectForIUnknownGetTypedObjectForIUnknownCreateAggregatedObjectCleanupUnusedObjectsInCurrentContextAreComObjectsAvailableForCleanupIsComObjectAllocCoTaskMemStringToCoTaskMemUniStringToCoTaskMemAutoStringToCoTaskMemAnsiFreeCoTaskMemReAllocCoTaskMemReleaseComObjectFinalReleaseComObjectGetComObjectDataSetComObjectDataCreateWrapperOfTypeReleaseThreadCacheIsTypeVisibleFromComQueryInterfaceAddRefReleaseFreeBSTRStringToBSTRPtrToStringBSTRGetNativeVariantForObjectGetObjectForNativeVariantGetObjectsForNativeVariantsGetStartComSlotGetEndComSlotGetMethodInfoForComSlotGetComSlotForMethodInfoGenerateGuidForTypeGenerateProgIdForTypeBindToMonikerGetActiveObjectChangeWrapperHandleStrengthGetDelegateForFunctionPointerGetFunctionPointerForDelegateSecureStringToBSTRSecureStringToCoTaskMemAnsiSecureStringToCoTaskMemUnicodeZeroFreeBSTRZeroFreeCoTaskMemAnsiZeroFreeCoTaskMemUnicodeSecureStringToGlobalAllocAnsiSecureStringToGlobalAllocUnicodeZeroFreeGlobalAllocAnsiZeroFreeGlobalAllocUnicodeMarshalDirectiveExceptionRuntimeEnvironmentSEHExceptionSafeBufferSafeHandleBStrWrapperCurrencyWrapperDispatchWrapperErrorWrapperUnknownWrapperVariantWrapperComMemberTypeExtensibleClassFactoryICustomAdapterICustomFactoryCustomQueryInterfaceResultICustomQueryInterfaceInvalidComObjectExceptionAssemblyRegistrationFlagsIRegistrationServicesTypeLibImporterFlagsTypeLibExporterFlagsImporterEventKindExporterEventKindITypeLibImporterNotifySinkITypeLibExporterNotifySinkITypeLibConverterITypeLibExporterNameProviderObjectCreationDelegateRegistrationClassContextRegistrationConnectionTypeRegistrationServicesSafeArrayRankMismatchExceptionSafeArrayTypeMismatchExceptionTypeLibConverterBIND_OPTSUCOMIBindCtxUCOMIConnectionPointContainerUCOMIConnectionPointUCOMIEnumMonikerCONNECTDATAUCOMIEnumConnectionsUCOMIEnumConnectionPointsUCOMIEnumStringUCOMIEnumVARIANTFILETIMEUCOMIMonikerUCOMIPersistFileUCOMIRunningObjectTableSTATSTGUCOMIStreamDESCKINDBINDPTRUCOMITypeCompTYPEKINDTYPEFLAGSIMPLTYPEFLAGSTYPEATTRFUNCDESCIDLFLAGIDLDESCPARAMFLAGPARAMDESCTYPEDESCELEMDESCDESCUNIONVARDESCDESCUNIONDISPPARAMSEXCEPINFOFUNCKINDINVOKEKINDCALLCONVFUNCFLAGSVARFLAGSUCOMITypeInfoSYSKINDLIBFLAGSTYPELIBATTRUCOMITypeLibComEventsHelperCombineRemove_AssemblyBuilder_ConstructorBuilder_CustomAttributeBuilder_EnumBuilder_EventBuilder_FieldBuilder_ILGenerator_LocalBuilder_MethodBuilder_MethodRental_ModuleBuilder_ParameterBuilder_PropertyBuilder_SignatureHelper_TypeBuilderHostingApplicationActivatorActivationArgumentsMemoryFailPointGCLargeObjectHeapCompactionModeGCLatencyModeGCSettingsAssemblyTargetedPatchBandAttributeTargetedPatchingOptOutAttributeProfileOptimizationSetProfileRootStartProfileTextStringBuilderASCIIEncodingDecoderDecoderExceptionFallbackDecoderExceptionFallbackBufferDecoderFallbackExceptionDecoderFallbackDecoderFallbackBufferDecoderReplacementFallbackDecoderReplacementFallbackBufferEncoderEncoderExceptionFallbackEncoderExceptionFallbackBufferEncoderFallbackExceptionEncoderFallbackEncoderFallbackBufferEncoderReplacementFallbackEncoderReplacementFallbackBufferEncodingEncodingInfoEncodingProviderNormalizationFormUnicodeEncodingUTF7EncodingUTF8EncodingUTF32EncodingAggregateExceptionAppContextObjectICloneableActionFuncComparisonConverterPredicat'eArrayArraySegmentIComparableIEquatableTupleStringStringSplitOptionsStringComparerStringComparisonExceptionDateTimeDateTimeKindDateTimeOffsetSystemExceptionOutOfMemoryExceptionStackOverflowExceptionDataMisalignedExceptionExecutionEngineExceptionDelegateMulticastDelegateMemberAccessExceptionActivatorAccessViolationExceptionApplicationExceptionResolveEventArgsAssemblyLoadEventArgsResolveEventHandlerAssemblyLoadEventHandlerAppDomainInitializerAppDomainCrossAppDomainDelegateAppDomainManagerInitializationOptionsAppDomainManager_AppDomainAppDomainSetupIAppDomainSetupLoaderOptimizationLoaderOptimizationAttributeAppDomainUnloadedExceptionActivationContextContextFormApplicationIdentityApplicationIdArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionArgIteratorArithmeticExceptionArrayTypeMismatchExceptionAsyncCallbackAttributeAttributeTargetsAttributeUsageAttributeBadImageFormatExceptionBitConverterGetBytesToInt16ToInt32ToInt64ToUInt16ToUInt32ToUInt64ToSingleToDoubleDoubleToInt64BitsInt64BitsToDoubleBooleanBufferBlockCopyGetByteSetByteByteLengthMemoryCopyByteCannotUnloadAppDomainExceptionCharCharEnumeratorCLSCompliantAttributeTypeUnloadedExceptionConsoleBeepClearResetColorMoveBufferAreaSetBufferSizeSetWindowSizeSetWindowPositionSetCursorPositionReadKeySetInSetOutSetErrorWriteLineWriteConsoleCancelEventHandlerConsoleCancelEventArgsConsoleColorConsoleKeyConsoleKeyInfoConsoleModifiersConsoleSpecialKeyContextMarshalExceptionBase64FormattingOptionsConvertToBooleanToCharToSByteToByteToInt16ToUInt16ToInt32ToUInt32ToInt64ToUInt64ToSingleToDoubleToDecimalToDateTimeToStringToBase64StringToBase64CharArrayFromBase64StringFromBase64CharArrayContextBoundObjectContextStaticAttributeDayOfWeekDBNullDecimalDivideByZeroExceptionDoubleDuplicateWaitObjectExceptionEnumEntryPointNotFoundExceptionDllNotFoundExceptionEnvironmentVariableTargetEnvironmentExitFailFastExpandEnvironmentVariablesGetCommandLineArgsGetEnvironmentVariableGetEnvironmentVariablesSetEnvironmentVariableGetLogicalDrivesGetFolderPathSpecialFolderOptionSpecialFolderEventArgsEventHandlerFieldAccessExceptionFlagsAttributeFormatExceptionFormattableStringGCCollectionModeGCNotificationStatusGCAddMemoryPressureRemoveMemoryPressureGetGenerationCollectCollectionCountKeepAliveWaitForPendingFinalizersSuppressFinalizeReRegisterForFinalizeGetTotalMemoryRegisterForFullGCNotificationCancelFullGCNotificationWaitForFullGCApproachWaitForFullGCCompleteTryStartNoGCRegionEndNoGCRegionGuidIAsyncResultICustomFormatterIDisposableIFormatProviderIFormattableIndexOutOfRangeExceptionIObservableIObserverIProgressInsufficientMemoryExceptionInsufficientExecutionStackExceptionLazyInt16Int32Int64IntPtrInvalidCastExceptionInvalidOperationExceptionInvalidProgramExceptionInvalidTimeZoneExceptionIConvertibleIServiceProviderLocalDataStoreSlotMarshalByRefObjectMathAcosAsinAtanAtan2CeilingCosCoshFloorSinTanSinhTanhRoundSqrtLogLog10ExpPowAbsMaxMinSignMethodAccessExceptionMidpointRoundingMissingFieldExceptionMissingMemberExceptionMissingMethodExceptionMulticastNotSupportedExceptionNonSerializedAttributeNotFiniteNumberExceptionNotImplementedExceptionNotSupportedExceptionNullReferenceExceptionObjectDisposedExceptionObsoleteAttributeOperatingSystemOperationCanceledExceptionOverflowExceptionParamArrayAttributePlatformIDPlatformNotSupportedExceptionProgressRandomRankExceptionRuntimeArgumentHandleRuntimeTypeHandleRuntimeMethodHandleRuntimeFieldHandleModuleHandleSByteSerializableAttributeSingleSTAThreadAttributeMTAThreadAttributeTimeoutExceptionTimeSpanTimeZoneTimeZoneInfoAdjustmentRuleTransitionTimeTimeZoneNotFoundExceptionTypeTypeAccessExceptionTypeCodeTypedReferenceTypeInitializationExceptionTypeLoadExceptionUInt16UInt32UInt64UIntPtrUnauthorizedAccessExceptionUnhandledExceptionEventArgsUnhandledExceptionEventHandlerValueTypeVersionVoidWeakReferenceThreadStaticAttributeNullableCompareEqualsITuple������W
��o
��W	��i�XX
��W
��i�X��i��i�j
�9X
�<]
�j
�"X
�%j�1j
��W(��W�>j�X�Lj
�QX�Yj�gj�CX�xj�,X
��j��W��W��j�:,�yoe
��#�#�#�	#4M 	
#�n�Z
#�#"#�#�xo�m��Ju�Ju�H
u�j%Ap��n	��H3:-��Tw?v��bi�{�=irm�V��aiv_i!%��X!�N3Qk0��m
�o	�ko��o��o%��o�'p��j%l��'�o�pp
�]p�������2����a i�p�}p��p��p��p��m�4*	��m��p�eX��k
��xo�
&~3Q�4Qb1�q1��3Q4Q�5Q�3Q�4Q:4Q�4Q�3Q|4Q5Q�f�fW4%Q�4Qb5Q+o�So�,5Qz5Q�5Q�5Q�3Q*f�E5Qk"�4Q�3Q�4Q�fA$D;$D@iS isi�i�i�p
��,�Q,
�[,��F{�R
S�R�xo�xoq	�q�q��
#		#�	#�	#�[�u,�3q�js��F��F��F�Zr.U\��<w�<������U	�g	�56Q�/
�;6Q�V�h��c
i=*�Jq��q	��q�Re��q����q��q
�d
l
�
EH{qW]i�TM
�MaMpM_RvR�R�\�G6Q�v�1��0�1��q��)��)��xo�<6�ciBF��Du�D�r�r��\��
q 
�

i���������
��0Y�Y��N�qa$i^r.�D�OD
Q)r��[�	�b��$���L	�qv�_(
��)�xv��'��[��i�8\�4Z�Y�\��i��\��Z��X��e
�:	#w	#$	#?
#�|�+-��
�
J*��(��m
�5OKO�NjO�P�L��;\�;\##�,��Y�Z��U��Y�GY��'
��', �
(�'z&�8R�
�dI	vgS~S(	Lx2Vh��<6Sr��r��r�s�s
�$s�2s�Bs�m<�zG{�G{�1�Y6Q5CB�CB>t��,�Rp5Ss�<CBCuPt�3$R$R�#"R#R$#R�$R�$RM�"�=# R$R�##R]#"R#R�"	��#R
#�s��m	��]i�xo�xo�0�[ai��LR%nbi�<6�\����%��o�!CBi5i�
)i�
)iW
��#�#�#�#QiAi<
i(
ii�
�
�
]e��+��	#2�h6Q�5Q6Q{6Q�6Q�NKun]��e��n�.n��N�
6n�Bn��
 
ft	�ot�'��&�<'�&'�p'��&��&��& ��&�V'��'�'�ut��N�k��k��k��k�l��k�l�6l �-	��Ol\�oPL[$�"Tu�6Q�n�|��O�P�:
�xi]i�V�h�`i,W	�i	�CW	S/i	T�U!u�;��^i�T�!��(
�*�[*� 
�	��
���8	#�#O!�NL
x�#le��X�LW
8i
�|t�p[�9[��t��t��q��	����	��i�i�
i�i�i�t��1
��1
�� 
$Wi�^1QVl�]l�ul��l��l��l��l��l �	m�m�m�O�$DLw
���O$DV$DN��-��B��t��t�*3�8(�(
��(
7�)
S)
P�t�N�3�}��t�)��|��M�{e�%��u	�~%��6Q�1��%��%�@%�&�(&�;&�&��u�K&��6	Q�%
��%
�3%
��%��%��Tu�Tu�,�%�j%��%�_&� %�q&	��%	��1
��,��##�#$#U%�U�]�VW	Bi	�%n	��@62�k9QM9Q?@�#-�lN ��Lx�,��n��$D��	O
u��-�you��U��f��e��O�\�u��u��6Q�1��6	Q�[��1
���
�{�i
�}�c����������!�2�:�O��#Z	�c
�K#_#m�;#r#yVXh�9bi~@6v�P�O�u��xo�2��$D�u�v��S�?	�=w�=��<
��=�=w�bib
i�_ijUw+tUtU�i�i�m��V�h�yW	ei	�_WKi���������=v�v�]�]��j�k
�)v�
k
�|ci�ci�(��
#g
#�6Q'
#3�';�5Uw�ci?;��
O�.��q�Vq��`i�`!i0u�Nbieci!O0OR��5{�5{�ci^;�B�Ac
iBu�Xu�Lx�^i�^i�^i�u
��*��cidv
��M��^i_iQ^i�`i�`i�:�d`iw`i�`iVOgO@^i�O�O�Kx2��u�:_$i�.
�@Lx+8
�Nci�.
��bi>
x�K
xai�bici�Kx�M�/Lx�KxJ!v�I"v@J!v�I"v�7��7��7��7��7�8��7��7�x7��7��=x(0h�=xxLx�Kx2ci> x����^_i�v�BaiA`i2>xT`iR7�2`i�_i�_i�_i�_i`i�=x(ai_$i�bY�W
� 
0 
Yw��Z
�P@.6#]	��P�

i"
i�R*	�2H{8H
{F 
T 

�i�i�
i�i�
i

i

i=-�Q-�l��j��������l��Tu�H
3�o���+1�]w� S�U��3E�1F�3IuIE�YE�;E�
F��E�mE��D�F��E��D��m
�j*�)��m�u*	�&)	�V�UT��H3�H3KCB\CBlCB�CB�CB�CB�CB�CB�x�CSiO
i�e�7Q�e�iw�,]��e���6��E>�~*�/)��*��SZ��Y�yw�W�h��V�h�!

DBDBMV=V�*�:)��*�E)�&VbVmV?I
u�*�P)��m
���UCJ=
w�w��w�]>
�g>��*�7	��zH{\DQ�1��*�a)�PH{	9Q���F{G{G{+G{G{=G{�V�V
�h
��Y��f�[�-	��O�w�r#�M�v�2S�w#��w�x�x� x��q�;T&u88Q�X�-��"R�:��$�;��:!��G{�LuT=
w^=
w�O�S�%x�;7Q+x�f�H8QF]�?x�Xx�ox�$	DgW
Si
���I
uz>��w��w	��.���-��V@
�'�w	�f)��)�y)
�f8Q+7QCf�QG{"Iup�`�o��V�Jv�?��P�P	�ai�PyQ6	{�F�@�8�J��-	��>
��H{�>��E��E��D��E��D��x��PP	��PQ!Q^Lx>=w�@`|Kx������$����;&����"���<�Z��:	�pLx'QbDQaJv/Qb
�jKx�V�*+��*��biDQ�>��O
~Jv�!
��!��!�
"�""
�/"�?"
�L"�X"�g"
��R61��B�RF��|��V	�W	�W
�W�W	�f��f��f��f����S��!
� 
� 
�v	��(
��(
Ja��!�+�6+������(�f
i�)�3
	i�
i�)��#!!
� 
�1�d]
�x��0��0�uY�jD
Q�W�i�GDutDQ�)��o�p�gPi����1��x��9Ql-
�v-�yo	yohH{�Lxx
iB<]�\&��:n8Q�-��0��]��Kx�Z��x�e��
i�x�yo�
i�
i�n��8Q�8
Q�8Q�q
��j���H{�F	u�@u!y��8Q�8
Q�9
Q�1
�pG
{�G{�OP�8Q�O�8
Q-2��G{�G{92�	6y�yo�8QFy�~ �[y�qy��!�9QD2
�{�e3Q�-�x�Omr.U{��n��y��-��#�#�#�
#���Uu�Q�#�-���!��%��y�-m��y��y��y�	�|��y��!
�!
x^
i9Q99Q�m��	#Q	#C#�	#g�z��Lu�?��?
�T(�	#IIu,z�w$D?�?��G{�>��>�c2�\2�i2
��2�=z�Lz�([��>�$([�_n�fz��-
��2��
iO+�h+�W+�@+�wz�W	i	��9Q�2��9
Q�-��9Q�2�
W	�h	�F�(�
i����Q2��(��
�a�4�� 
�
i�z
��z��9QP�-��<�2�_�G��=x�8Qyo�m	�g^in^
i6N�ON��M��M��M
��<6�Z��[�	�����JO	#N��5QXk��Y��z��#�9Q�2��9Q�2
��Bu�B!�]i�]i�biXUw�]i�^i/	�w��$�8��-��-�#
R.#�bi/*�G/�MK�"L�z�i�z
�q#*
#�
i�
i0_�O�O�]i�-��]	i�]	i^	i�]
i�r.aTui(�*�{(���bi�_i�B	!�Qs
�T1
��9Q���w�:Q/!

�IvmIvs.��v�/��Iv�Ivg�1g�Kg��ov	#�	#�o,oo9o����)�h	#�	#HooYo�bi)bi�bi�<6�@�OIu"KuZKuH{BKu�i�Uw
UwPv�MPG$D�v�cr
.o�@o��Ux�
�����:Q�;\<\�8Q����W	�%<
\���#�d$DcG
{�Tu�
iKiSibi	ii%i�xo2i_iwi�i�i�i%
i�i�ii1i5iHie�|;��z�R e�{��M�z�]7Q�z�!R��_g�}g�>e
��He
�h�oG!�'��?�9�!�
���#{�OQ����di'diBdi�di�d i]�C�Q�����v�a�����$�
#A���D���������
�������
�2e�
.��0
��,�({��<
�0?�j?�C?�Y?�|?�@�E�3Ku|=w�E��Bu"��O�
O{r
.�q�^bi��Oe��r.ou��r.�r.�BO��{O�.
��.
��Kx�r.kk90h�b�\#��r.�r
.zi~i�i�i�
i�i�
i�i�
iyo�i�2��2��xo={��xosF�n�����r��]i�A
`�B
|8A`�@`�@`A`�@`�A`;B
`s=	w�B|+A
`,B`2B	`�A
`HA`�A`h=wsB|"A	`A`�A`"B
`�A`B`B`|A`fA`�A`�A`EB
|�B|SA`�A	`�Lu�@`�A	`bB|A`�@
`�*
�9!
�!
�u
��u�eQy0��0�yoE*�s2��'
�sn��'
�yk�RC{��V�h����?��?������m��k
�n�n��L@!

��m��bi�ai�ai�ai�_i�_i�_iIUw�2���
����%�1:Q����[�+��^iI1��v��Q�$��&�.@�t"��!��"��"��"��"��i/DB�,�#.��W�i�}�	#Pn�J!
� 
�xo�xo9k�B:QU<\Q:Qj:Q1+�\S�+�,��+��+�5+�,+��+
��+�z+
�T
��k�X!
m!

�'
�u!
?.�E.�#+	�Y.��0��.
��/��/��/-��/��/��|��^i�/�g{��/��/
�w{��!
{��{��{�
tU�sU�i�s	U�sU�sU�s
U�s	U�q��sU^q��sUeq��sUlq��sUYj�sU�q��sU�sUsq��sU{q��sU�q��sU�$�	C��{�cF�&MK�"L	i
i�����N�:w��m��{��{��V�h��:Q3��{��:
QWi��{��J	u�:
Q/=w�V	�h	��Q�Q�X��:Q�{��V�h��W�i��g�lf��Z�^Z�ZY�Xf�}Z�NZ��Z�nZ�!\�|�53	�>r��g��g��g� h�h��g�9h�Hh�`h�lh�|h��h��h
�vi
��i�!|�'|�-|�3|�N�_�9�'�7 �a 
:|�U|�p|��!
>m����e�tX!�>3�1�H��Z
�L	x�+ ��]io/�X/�&/!�5P����H3Z�����em
�Mm�Ym���j$
D�(��(J�|	�<W(i��Z��Wni��e�5W+��|��;
�2<\�|��/��@
|�-��.�w�%w��v�
0
�J0!�0��.��|
��JuIu�Ju	������T��;��TuuUu�r.0_�
O�O^	i^
i!^
i6^
i+^i�r	.wTu�
�c
is
��
�OB|���S�S�`dildi�di�di�di��o�t�����cbF_�hj1�6K5RQ����.U��	r�JZlo�6��R[j�����O�;��)������+����C7�������eqf�pn�����:;<�����s`a?OSTVW�-.��&~J��,������
s��nWQm���R�][���DKL����I2`�Y
P�# "��HJ78PQ�S��:�"#����_hZK��h��������!g}{�z��fu��4�[��R}��y���:���v]_vx���t������91��2�v�x�J,.K+ON<-;3*7HCB?(IEDL8=6/@A>450N��;AR�����"������y�`������������

�%sji��v�8XEa�wxMi���������<��eoghnpok�J.T�1245�������v���P[]_Q����*������&$.,-�l*d�%l'T���roB����TX(���U�/.>j��pqnX�0��u����5��J#%
$����EL���~m��J��v~��5���j��Z�o����-�eyu�l�F�N�7��V�hU=����I����D_`����lm����������VW��POY�?TSlfGI=cc����Z�f��i6f5���c��;���V7���en����rs�����uv�����:"�fZ��h���x`����������`ba1
>�P���!]���0�V�{Hc�04�>�bi����t�dz��]�A_h���[u�s���2`�YP}`��_a�`�HSB#_a��;aV-��I2`�Ydc��P#� "�HJ78PQ�S�s._ah��;aV-�����I2`�YBCdc��P#� "�HJ78PQ�st���S�_�_�Rsa��Z���3���
���������� ��()*+^�u���"�D������\�VW���}~��&NH3��� x�d���(�)�c���+,fgab������jk������TS��/0	
������a�HS�a# "�HJ78PQ���SD�h��������
���� �()*[�&�Th������������ ()*}h�������
���� ��()*[��R�3<�Fj�
{j�31���5R[]����������+j�c�rt
�A:g}���V}1���`i<�
1�������r
���� �()*b�����r
��}}<��;�\�;s*L[^b��@q����������8�2���'Zg_���A!������DV�w�G�m�����6	�z/3I,?�i��G~Gg-K��U��Cm����`���EB��������$���������/GHMPQSOFEN� 
�n��kr�lpwso�xqht|�y��������t�����)"<�l(���Fl���kD���U��O����_9C����M�g�
k������M�������d��G��[\]�t���u
�+<W�euv�����^������sI}�����������u�L���c�`y<nc�V����Z\��fn�gy`�����������?OU�.&~J��,����K�ExE00��9��)j(a�)c��k)b��d��m+e��me^����2�)�I��:gh7��=�;��V��e��������W��������@b !@q�qr���n�;<���������������SWS�${,H��9*i2
SWS�,9i3SWS�${,H��9*i�&UY=Tk�-�|%I+����������r��t`���	?O&~J��,�?O�&~J��,I?O&~J��,�	?O&~J��,.NU�#zF��)4�Rj�70R�7�#zF��)^z�����s���1�5�3F����4G���d�P J���#"� J����?e����/�'�gf'�_A�x`��Pg������#�0����gYgu��}q|:�:Lu������������gii:99���LKK�[YY�	y����� �
��v�t���y�9���12kmwz��)M:2G�K+ON<-;3*7HCB?(IEDL8=6/@A>450L"<M<<�GS�O��@=�=������497<?��:;�>�>�;>5�%����������7�8��JK�����7�8��JK���8�K��7�J�������7J7�8K8����f1_"��U�)�U�)�G��a,*+()�d6LMK������������
~~��>	���<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\mscorlib.dll�	17$)���S���H)iy�hW���MicrosoftWin32SafeHandlesSafeFileHandleSafeRegistryHandleSafeWaitHandleSafeHandleZeroOrMinusOneIsInvalidSafeHandleMinusOneIsInvalidCriticalHandleZeroOrMinusOneIsInvalidCriticalHandleMinusOneIsInvalidSafeAccessTokenHandleRegistryGetValueSetValueRegistryHiveRegistryKeyRegistryValueOptionsRegistryKeyPermissionCheckRegistryOptionsRegistryValueKindRegistryViewRuntimeHostingReflectionSystemConfigurationAssembliesAssemblyHashAssemblyHashAlgorithmAssemblyVersionCompatibilityIOIsolatedStorageIsolatedStorageScopeIsolatedStorageIsolatedStorageFileStreamIsolatedStorageExceptionIsolatedStorageSecurityOptionsIsolatedStorageSecurityStateINormalizeForIsolatedStorageIsolatedStorageFileBinaryReaderBinaryWriterBufferedStreamDirectoryCreateDirectoryExistsSetCreationTimeUtcSetLastWriteTimeUtcSetLastAccessTimeUtcSetAccessControlGetLogicalDrivesGetDirectoryRootGetCurrentDirectorySetCurrentDirectoryMoveDeleteDirectoryInfoSearchOptionDirectoryNotFoundExceptionDriveTypeDriveInfoDriveNotFoundExceptionEndOfStreamExceptionFileDeleteDecryptEncryptExistsSetCreationTimeUtcGetCreationTimeGetCreationTimeUtcSetLastAccessTimeUtcGetLastAccessTimeGetLastAccessTimeUtcSetLastWriteTimeUtcGetLastWriteTimeGetLastWriteTimeUtcGetAttributesSetAttributesSetAccessControlReadAllTextWriteAllTextReadAllBytesWriteAllBytesMoveFileAccessFileInfoFileLoadExceptionFileModeFileNotFoundExceptionFileOptionsFileShareFileStreamFileSystemInfoFileAttributesIOExceptionMemoryStreamPathGetFullPathGetTempPathGetTempFileNamePathTooLongExceptionSeekOriginStreamStreamReaderStreamWriterStringReaderStringWriterTextReaderTextWriterUnmanagedMemoryAccessorUnmanagedMemoryStreamSecurityAccessControlInheritanceFlagsPropagationFlagsAuditFlagsSecurityInfosResourceTypeAccessControlSectionsAccessControlActionsAceTypeAceFlagsGenericAceKnownAceCustomAceCompoundAceTypeCompoundAceAceQualifierQualifiedAceCommonAceObjectAceFlagsObjectAceAceEnumeratorGenericAclRawAclCommonAclSystemAclDiscretionaryAclCryptoKeyRightsCryptoKeyAccessRuleCryptoKeyAuditRuleCryptoKeySecurityEventWaitHandleRightsEventWaitHandleAccessRuleEventWaitHandleAuditRuleEventWaitHandleSecurityFileSystemRightsFileSystemAccessRuleFileSystemAuditRuleFileSystemSecurityFileSecurityDirectorySecurityMutexRightsMutexAccessRuleMutexAuditRuleMutexSecurityNativeObjectSecurityAccessControlModificationObjectSecurityAccessRuleAuditRuleCommonObjectSecurityDirectoryObjectSecurityPrivilegeNotHeldExceptionRegistryRightsRegistryAccessRuleRegistryAuditRuleRegistrySecurityAccessControlTypeAuthorizationRuleObjectAccessRuleObjectAuditRuleAuthorizationRuleCollectionControlFlagsGenericSecurityDescriptorRawSecurityDescriptorCommonSecurityDescriptorCryptographyX509CertificatesX509ContentTypeX509KeyStorageFlagsX509CertificateCipherModePaddingModeKeySizesCryptographicExceptionCryptographicUnexpectedOperationExceptionICryptoTransformRandomNumberGeneratorRNGCryptoServiceProviderAesAsymmetricAlgorithmAsymmetricKeyExchangeDeformatterAsymmetricKeyExchangeFormatterAsymmetricSignatureDeformatterAsymmetricSignatureFormatterFromBase64TransformModeToBase64TransformFromBase64TransformCryptoAPITransformCspProviderFlagsCspParametersCryptoConfigCryptoStreamModeCryptoStreamDESDESCryptoServiceProviderDeriveBytesDSAParametersDSADSACryptoServiceProviderDSASignatureDeformatterDSASignatureFormatterHMACHMACMD5HMACRIPEMD160HMACSHA1HMACSHA256HMACSHA384HMACSHA512HashAlgorithmHashAlgorithmNameKeyNumberCspKeyContainerInfoICspAsymmetricAlgorithmKeyedHashAlgorithmMACTripleDESMD5MD5CryptoServiceProviderMaskGenerationMethodPasswordDeriveBytesPKCS1MaskGenerationMe 
����.��R<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.Linq.dll�	3������H��Ϛ2t. !���ancestorsancestorsandselfattributescollectionscomponentmodelcreatenavigatordescendantnodesdescendantnodesandselfdescendantsdescendantsandselfelementsenumeventargsextensionsgenericgetschemainfoicompareriequalitycompareriequatableindocumentorderinternaliserializableixmllineinfoixmlserializablelinqloadoptionsmsnodesobjectreaderoptionsremoveruntimesaveoptionsschemaserializationsystemvalidatexattributexcdataxcommentxcontainerxdeclarationxdocumentxdocumenttypexelementxmlxnamexnamespacexnodexnodedocumentordercomparerxnodeequalitycomparerxobjectxobjectchangexobjectchangeeventargsxpathxpathevaluatexpathselectelementxpathselectelementsxprocessinginstructionxstreamingelementxtext=	
	

#.<KZp {"�$�$�	*�
+�+�
,�	,�,�
,�0�1�
111$2(43454:6@
7M7S7Z7e7k
7x8~9�
9�9�9�
:�:�	:�
:�:�:�:�
:�:�::;
;,;B;G
;T;f<y<�<�<<
		
12

	$
	 
#
4
"
)+:
!;',.
6	(
*8	%-/0<7&359�C
��z<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\Microsoft.CSharp.dll�	3L���o�
�1����J_�bindercsharpcsharpargumentinfocsharpargumentinfoflagscsharpbinderflagsenumexceptionmicrosoftobjectruntimebinderruntimebinderexceptionruntimebinderinternalcompilerexceptionsystem


5FJ	S	\b
o�&�		
 2inderdeletememberbinderdiagnosticsdistinctdynamicdynamicattributedynamicexpressiondynamicexpressionvisitordynamicmetaobjectdynamicmetaobjectbinderdynamicobjectecdiffiehellmanecdiffiehellmancngecdiffiehellmancngpublickeyecdiffiehellmankeyderivationfunctionecdiffiehellmanpublickeyecdsaecdsacertificateextensionsecdsacngeckeyxmlformatelementatelementatordefaultelementinitenumenumerableenumerableexecutorenumerablequeryenumeratoreventargseventbookmarkeventdescriptoreventinfoeventingeventkeywordeventleveleventlogconfigurationeventlogexceptioneventloginformationeventloginvaliddataexceptioneventlogisolationeventloglinkeventlogmodeeventlognotfoundexceptioneventlogpropertyselectoreventlogproviderdisabledexceptioneventlogqueryeventlogreadereventlogreadingexceptioneventlogrecordeventlogsessioneventlogstatuseventlogtypeeventlogwatchereventmetadataeventopcodeeventpropertyeventprovidereventprovidertracelistenereventrecordeventrecordwritteneventargseventschematracelistenereventtaskexceptexceptionexecutionscopeexpandocheckversionexpandoobjectexpandopromoteclassexpandotrydeletevalueexpandotrygetvalueexpandotrysetvalueexpressionexpressionsexpressiontypeexpressionvisitorfirstfirstordefaultforallfuncgenericgetcachedrulesgetecdsaprivatekeygetecdsapublickeygetindexbindergetmatchgetmemberbindergetrsaprivatekeygetrsapublickeygetrulecachegetrulesgotoexpressiongotoexpressionkindgroupbygroupjoinhandleinheritabilityhashsetiargumentprovidericollectionideserializationcallbackidictionaryidisposableidynamicexpressionidynamicmetaobjectproviderienumerableienumeratoriequatableigroupingiinvokeongetbinderilistilookupindexexpressioninotifypropertychangedinstancenotfoundexceptioninstrumentationinstrumentationbaseexceptioninstrumentationexceptioninteropservicesintersectinvocationexpressioninvokebinderinvokememberbinderioiorderedenumerableiorderedqueryableiqueryableiqueryproviderireadonlycollectioniruntimevariablesiserializableisetistrongboxjoinlabelexpressionlabeltargetlambdaexpressionlastlastordefaultlinqlistinitexpressionlockrecursionpolicylongcountl3ookuploopexpressionmanagementmanagementbindattributemanagementcommitattributemanagementconfigurationattributemanagementconfigurationtypemanagementcreateattributemanagemententityattributemanagementenumeratorattributemanagementhostingmodelmanagementkeyattributemanagementmemberattributemanagementnameattributemanagementnewinstanceattributemanagementprobeattributemanagementreferenceattributemanagementremoveattributemanagementtaskattributemanifestkindsmanifestsignatureinformationmanifestsignatureinformationcollectionmaxmd5md5cngmemberassignmentmemberbindingmemberbindingtypememberexpressionmemberinitexpressionmemberlistbindingmembermemberbindingmemorymappedfilememorymappedfileaccessmemorymappedfileoptionsmemorymappedfilerightsmemorymappedfilesmemorymappedfilesecuritymemorymappedviewaccessormemorymappedviewstreammergeruntimevariablesmethodcallexpressionmicrosoftminmoverulemulticastdelegatenamedpipeclientstreamnamedpipeserverstreamnativeobjectsecuritynewarrayexpressionnewexpressionobjectobjectmodelobjectsecurityoftypeorderbyorderbydescendingorderedparallelqueryparallelenumerableparallelexecutionmodeparallelmergeoptionsparallelqueryparameterexpressionpathtypeperformancedatapipeaccessrightspipeaccessrulepipeauditrulepipedirectionpipeoptionspipespipesecuritypipestreampipestreamimpersonationworkerpipetransmissionmodeprovidermetadataqueryablequotereaderreaderwriterlockslimreadonlycollectionreadonlycollectionbuilderreflectionreversersarsacertificateextensionsrsacngrulecacheruntimeruntimeopsruntimevariablesexpressionsafebuffersafehandlessafehandlezeroorminusoneisinvalidsafememorymappedfilehandlesafememorymappedviewhandlesafencrypthandlesafencryptkeyhandlesafencryptproviderhandlesafencryptsecrethandlesafepipehandlesecurityselectselectmanysequenceequalserializationsessionauthenticationsetindexbindersetmemberbindersetnotmatchedsha1sha1cngsha256sha256cngsha256cryptoserviceprovidersha384sha384cngsha384cryptoserviceprovidersha512sha512cngsha512cryptoserviceprovidersignatureverificationresultsinglesingleordefaultskipskipwhilestandard4eventkeywordsstandardeventlevelstandardeventopcodestandardeventtaskstreamstrongboxstrongnamesignatureinformationsumswitchcaseswitchexpressionsymboldocumentinfosystemtaketakewhiletaskextensionstaskstextwritertracelistenerthenbythenbydescendingthreadingtimestampinformationtoarraytodictionarytolisttolookuptracelistenertracelogretentionoptiontruststatustryexpressiontypebinaryexpressionunaryexpressionunaryoperationbinderunescapedxmldiagnosticdataunionunmanagedmemoryaccessorunmanagedmemorystreamunwrapupdaterulesvaluetypewherewin32withcancellationwithdegreeofparallelismwithexecutionmodewithmergeoptionswmiconfigurationattributewriteeventerrorcodex509certificateszip�


$
('2?
8I	9R<U?nA�G�J�	P�
R�U�Y�Z�\�	b�	b� be
g'q<
x@�S�b�j�r��������
��
����������������*�A�R�^�i�~��������
�������������,�4
�A�F�Q
�[�m �����������������*�8�I5�[�f�n�u����������
������$C[`z��	���	�
	�
��

�	
�
	%1
;Pat������!
& >"L#[$i$u&�
'�'�
'�
'�(�,�,�,	,,	.&.40G
0T1g4|6�7�
7�8�8�8�8�:�;�;�<�<	=	>)	>7	B?	CN	E^	Fm	Fy	F�	F�	F�	F�		H�	K�	L�	M�	M�	M
M
N
N(
NB
PM
PX

Pb
	Pk
P}
P�
Q�
Q�
Q�
Q�
Q�
R�
R
R	R"R6RBRTRVThUy
U�V�V�V�
W�W�
Y�[�[�[�[�\
^^_%_8	_A_G_U
___v`� `�a�a�a�a
b/
cE
c^
cu
e�
e�
e�
f�
f�

fi &iFiIjLjRjb
joj�j�j�j�j�j�k�lll,lDl\lrl�l�	l�l�l�l�l�l�l�l
ln#o.o<oBoIpZqnq�q�q�
q�q�q�r�r�r�
r
rr#r(s4
s>s[sos	t�t�u�v�w�w�
w�w�x�z�z	z
z
zz8
zBzM!znz�{�{�{�{�{�{{	{
{
{&
{3{H|V|e
|r|v}}}�	~�����	������	�������+�/	�8�M�_�r����	������
����������	������"�2	�;�O�V�b�h�p
�}����
�������������.�4�?	�H�M�R�b�y������������	


,01[\xz���85`��
%	2X
a��
	!
/
9?��	+��=���)�U�{]_y}��^e"p	��
�L	j
 	#	(�
��
#6*g��cCt��'-T
�
����4;H��Y

.	>R������/hc
s�%&
l�����n$:�f�&)G��
H
b	m	Q	�
 3	Pw
�S|��
���	6���,W����0+~�
Ik
~	�rFJU�>E78
<KV�	A�v-B
Lu��r=D	@
��4a�Ei
NO�
�q�
M��
Y�K�Z�*h���d
ov��$����	��
��m
V�{�
��t
�	2���	B�T��;�i
�o���5My1
?��s����(n���
�FZ
7G\���
�	X	@
"��pw���'dj^b!J�_	�<9

C
g��	DuA3kfz[.]|}IW:x`NOlPQRS�e	q��
�������.<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Core.dll�	3�9_<bƗ�J<N\�am,ꭰ�accesscontrolaccessruleactionaddruleaesaescryptoserviceprovideraesmanagedaggregateallanonymouspipeclientstreamanonymouspipeserverstreamanyasenumerableasorderedasparallelasqueryableassequentialasunorderedasymmetricalgorithmattributeauditruleauthenticodesignatureinformationaveragebinaryexpressionbinaryoperationbinderbindbindingrestrictionsblockexpressioncallinfocallsitecallsitebindercallsitehelperscallsiteopscastcatchblockclearmatchclosurecngalgorithmcngalgorithmgroupcngexportpoliciescngkeycngkeyblobformatcngkeycreationoptionscngkeycreationparameterscngkeyhandleopenoptionscngkeyopenoptionscngkeyusagescngpropertycngpropertycollectioncngpropertyoptionscngprovidercnguipolicycnguiprotectionlevelscollectioncollectionscomawareeventinfocompilerservicescomponentmodelconcatconditionalexpressionconstantexpressioncontainsconvertbindercountcounterdatacountersetcountersetinstancecountersetinstancecounterdatasetcountersetinstancetypecountertypecreateinstancebindercreatematchmakercreateruntimevariablescryptographydebuginfoexpressiondebuginfogeneratordefaultexpressiondefaultifemptydeleteindexb1
���
��v<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Net.Http.dll�	3�/<��E-Zߍ�M	)c��authenticationheadervaluebytearraycontentcachecontrolheadervalueclientcertificateoptioncollectionscontentdispositionheadervaluecontentrangeheadervaluedelegatinghandlerentitytagheadervalueenumexceptionformurlencodedcontentgenericheadershttphttpclienthttpclienthandlerhttpcompletionoptionhttpcontenthttpcontentheadershttpheadershttpheadervaluecollectionhttpmessagehandlerhttpmessageinvokerhttpmethodhttprequestexceptionhttprequestheadershttprequestmessagehttpresponseheadershttpresponsemessageicloneableicollectionidisposableienumerableiequatablemediatypeheadervaluemediatypewithqualityheadervaluemessageprocessinghandlermultipartcontentmultipartformdatacontentnamevalueheadervaluenamevaluewithparametersheadervaluenetobjectproductheadervalueproductinfoheadervaluerangeconditionheadervaluerangeheadervaluerangeitemheadervalueretryconditionheadervaluestreamcontentstringcontentstringwithqualityheadervaluesystemtransfercodingheadervaluetransfercodingwithqualityheadervalueviaheadervaluewarningheadervalue:)@Wb����	�'�*�*�+�
+�+
++)+;,F,_,q,�
-�-�-�0�0�0�
0�000
1 141S1k1{1�1�"4�4�5�5�5�67#878P
8]
8j8�8�8�$8�8�99
		
$(*-
/

237
	
#&).%+

 '!"	,685	0149
�	-���{���r<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.dll�	3��Cr�?ȼ��eE��_��acceptrejectruleadvancedapplicationintentattributecataloglocationcodeaccesspermissioncodeaccesssecurityattributecollectionbasecollectionscommandbehaviorcommandtypecommoncomponentcomponentmodelconfigurationconflictoptionconnectionstateconstraintconstraintcollectionconstraintexceptiondatadataaccesskinddataadapterdatacolumndatacolumnchangeeventargsdatacolumnchangeeventhandlerdatacolumncollectiondatacolumnmappingdatacolumnmappingcollectiondataexceptiondatarelationdatarelationcollectiondatarowdatarowactiondatarowbuilderdatarowchangeeventargsdatarowchangeeventhandlerdatarowcollectiondatarowstatedatarowversiondatarowviewdatasetdatasetdatetimedatasetschemaimporterextensiondatasysdescriptionattributedatatabledatatablecleareventargsdatatablecleareventhandlerdatatablecollectiondatatablemappingdatatablemappingcollectiondatatablenewroweventargsdatatablenewroweventhandlerdatatablereader9�P�5�z<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.DataSetExtensions.dll�	3�M���lͦ�K ᕱj���O�asdataviewasenumerablecastcollectionscopytodatatabledatadatarowcomparerdatarowextensionsdatatabledatatableextensionselementatordefaultenumerablerowcollectionenumerablerowcollectionextensionsfieldgenericienumerableiequalitycomparerobjectorderbyorderbydescendingorderedenumerablerowcollectionselectsetfieldsystemthenbythenbydescendingtypedtablebasetypedtablebaseextensionswhere

%48GX	at��!�������"(06<LZr	
	

	


:dataviewdataviewmanagerdataviewrowstatedataviewsettingdataviewsettingcollectiondbcommanddbcommandbuilderdbconcurrencyexceptiondbconnectiondbconnectionstringbuilderdbdataadapterdbdatapermissiondbdatapermissionattributedbdatareaderdbdatarecorddbdatasourceenumeratordbenumeratordbexceptiondbmetadatacollectionnamesdbmetadatacolumnnamesdbparameterdbparametercollectiondbproviderconfigurationhandlerdbproviderfactoriesdbproviderfactoriesconfigurationhandlerdbproviderfactorydbproviderspecifictypepropertyattributedbtransactiondbtypedeletedrowinaccessibleexceptiondescriptionattributeduplicatenameexceptionenumevaluateexceptioneventargsexternalexceptionfillerroreventargsfillerroreventhandlerforeignkeyconstraintformatgroupbybehaviorhashtableibinaryserializeibindinglistibindinglistviewicloneableicollectionicolumnmappingicolumnmappingcollectionicomparableiconfigurationsectionhandlericustomtypedescriptoridataadapteridataerrorinfoidataparameteridataparametercollectionidatareaderidatarecordidbcommandidbconnectionidbdataadapteridbdataparameteridbtransactionidentifiercaseidictionaryidisposableieditableobjectienumerableienumeratorilistilistsourceinotifypropertychangedinrowchangingeventexceptioninternaldatacollectionbaseinteropservicesinullableinvalidconstraintexceptioninvalidexpressionexceptioninvalidudtexceptionioiserializableiserviceproviderisolationlevelisqldebugisupportinitializeisupportinitializenotificationitablemappingitablemappingcollectionitypedlistiunrestrictedpermissionixmlserializablekeyrestrictionbehaviorloadoptionmappingtypemarshalbyrefobjectmarshalbyvaluecomponentmergefailedeventargsmergefailedeventhandlermicrosoftmissingmappingactionmissingprimarykeyexceptionmissingschemaactionmulticastdelegatenonullallowedexceptionobjectodbcodbccommandodbccommandbuilderodbcconnectionodbcconnectionstringbuilderodbcdataadapterodbcdatareaderodbcerrorodbcerrorcollectionodbcexceptionodbcfactoryodbcinfomessageeventargsodbcinfomessageeventhandlerodbcmetadatacollectionnamesodbcmetadatacolumnnamesodbcparameterodbcparametercollectionodbcpermis;sionodbcpermissionattributeodbcrowupdatedeventargsodbcrowupdatedeventhandlerodbcrowupdatingeventargsodbcrowupdatingeventhandlerodbctransactionodbctypeoledboledbcommandoledbcommandbuilderoledbconnectionoledbconnectionstringbuilderoledbdataadapteroledbdatareaderoledbenumeratoroledberroroledberrorcollectionoledbexceptionoledbfactoryoledbinfomessageeventargsoledbinfomessageeventhandleroledbliteraloledbmetadatacollectionnamesoledbmetadatacolumnnamesoledbparameteroledbparametercollectionoledbpermissionoledbpermissionattributeoledbrowupdatedeventargsoledbrowupdatedeventhandleroledbrowupdatingeventargsoledbrowupdatingeventhandleroledbschemaguidoledbtransactionoledbtypeonchangeeventhandleroperationabortedexceptionparameterdirectionpermissionspropertyattributespropertycollectionproviderbasereadonlyexceptionrownotintableexceptionrowupdatedeventargsrowupdatingeventargsruleruntimeschemaimporterextensionschemaserializationmodeschematablecolumnschematableoptionalcolumnschematypesecurityserializationserializationformatserversortordersqlsqlalreadyfilledexceptionsqlauthenticationmethodsqlbinarysqlbooleansqlbulkcopysqlbulkcopycolumnmappingsqlbulkcopycolumnmappingcollectionsqlbulkcopyoptionssqlbytesqlbytessqlcharssqlclientsqlclientfactorysqlclientmetadatacollectionnamessqlclientpermissionsqlclientpermissionattributesqlcolumnencryptioncertificatestoreprovidersqlcolumnencryptioncngprovidersqlcolumnencryptioncspprovidersqlcolumnencryptionkeystoreprovidersqlcommandsqlcommandbuildersqlcommandcolumnencryptionsettingsqlcompareoptionssqlconnectionsqlconnectioncolumnencryptionsettingsqlconnectionstringbuildersqlcontextsqlcredentialsqldataadaptersqldatareadersqldatarecordsqldatasourceenumeratorsqldatetimesqldbtypesqldebuggingsqldecimalsqldependencysqldoublesqlerrorsqlerrorcollectionsqlexceptionsqlfacetattributesqlfilestreamsqlfunctionattributesqlguidsqlinfomessageeventargssqlinfomessageeventhandlersqlint16sqlint32sqlint64sqlmetadatasqlmethodattributesqlmoneysqlnotfilledexceptionsqlnotificationeventargssqlnotificationinfosqlnotificationreque<stsqlnotificationsourcesqlnotificationtypesqlnullvalueexceptionsqlparametersqlparametercollectionsqlpipesqlprocedureattributesqlrowscopiedeventargssqlrowscopiedeventhandlersqlrowupdatedeventargssqlrowupdatedeventhandlersqlrowupdatingeventargssqlrowupdatingeventhandlersqlserversqlsinglesqlstringsqltransactionsqltriggerattributesqltriggercontextsqltruncateexceptionsqltypeexceptionsqltypessqltypesschemaimporterextensionhelpersqluserdefinedaggregateattributesqluserdefinedtypeattributesqlxmlstatechangeeventargsstatechangeeventhandlerstatementcompletedeventargsstatementcompletedeventhandlerstatementtypestoragestatestreamstrongtypingexceptionsupportedjoinoperatorssyntaxerrorexceptionsystemsystemdataaccesskindsystemexceptiontriggeractiontypebigintschemaimporterextensiontypebinaryschemaimporterextensiontypebitschemaimporterextensiontypecharschemaimporterextensiontypedatetimeschemaimporterextensiontypeddatasetgeneratortypeddatasetgeneratorexceptiontypedecimalschemaimporterextensiontypefloatschemaimporterextensiontypeintschemaimporterextensiontypemoneyschemaimporterextensiontypencharschemaimporterextensiontypentextschemaimporterextensiontypenumericschemaimporterextensiontypenvarcharschemaimporterextensiontyperealschemaimporterextensiontypesmalldatetimeschemaimporterextensiontypesmallintschemaimporterextensiontypesmallmoneyschemaimporterextensiontypetextschemaimporterextensiontypetinyintschemaimporterextensiontypeuniqueidentifierschemaimporterextensiontypevarbinaryschemaimporterextensiontypevarcharschemaimporterextensiontypevarimageschemaimporterextensionuniqueconstraintupdaterowsourceupdatestatusvaluetypeversionnotfoundexceptionxmlxmldatadocumentxmldocumentxmlreadmodexmlwritemodeq%)	+20A6U6p=~
?�I�M�X�	c�c�
g�g�h�
l�mrrz-z8
B	�[
�w������
��������
�����7�H�T�b�m=�t������	�������	��3�K�f�u�}��������	���������
�%�5�N�Z�f�|���������������'�9�J'�q
�~������������	������#�7�=�L	�U�e�q�
������� 8CN
X
	e
s���
�������5D	Mg���
���	��!�
!	"	
"(	$?	&O	(e	
)o	)z	*�	*�	+�	+�		-�	-�	-
.
/)
1?
1E
1I
1T
1f
1t
2�
4�
6�
	7�
7�

9�
9�
9�
:;.;E
;R;i<w<�<�<�<�<�==	>>>-><>X>h?w?�
?�?�?�@�@�@�@�A
A3
CA
DY
Dh
D�
D�
D�
D�
D�
D�
D	DD$D=DOEZFlF~F�F�F�F�F�G�G�G�GG"G;
GEGM
HZHmHs	I|IJ�J�	J�
K�K�K�"KMM N(O0	P9QI QiV|V�+V�V�W�#W"
Z,Z=!Z^Zo
Z|$Z�Z�
Z�
Z�Z�
Z�
[�[[	[$[0
[:
\G	\P\X\j\v\�
\�\�\�\�\�\�]�^�^^^^2^J^]_s`�`�`�`�`�`�`�abe3eLece}	e�	e�	e�e�e�e�e�e�e�%e f;fVf\fpf�f�f�
f�f�f�f�f
ff$f8fG
fT!fu!f�f�i�#j�jj)"jK kkk� k� m� m�"m#n.nM(nu#n�%p�p�"p�+p)$pM"po#p�p�p�p�	p�p�p�p�p�ppp

2L NPS��"��<P$c
	 6VY[]	v�
���,
a�J	gu
��s
���$/?���.
8W	

*
->Ddl�
9
k�
	
5T����j
(
7;<	e{����
c�
�i%
	&GQ�0M�l
"1O�����)_j
�	o	@nz
�F,4BH�����:������>B	\
���
�IK+~��!�	MCF
rt	��#.�
���$9R'=�3���o�	�I�"Um}�
�
Ah�����xf#�E�6y	q


�(NU��@ ^bX|
��OXZ����J
w�^`��:ip��	4��
!g)D�C'��	


��	5p�������AS��	n� 	
	�%������-k&����
�*2�8L

��
h�
m	E?�`+;�=VYa�R_
3KH7/0
1GdQTW][Ze\bf?ctionschemaimporterextensionelementschemaimporterextensionelementcollectionschemaimporterextensionssectionserializationserializationsectiongroupsoapattributeattributesoapattributeoverridessoapattributessoapcodeexportersoapelementattributesoapenumattributesoapignoreattributesoapincludeattributesoapreflectionimportersoapschemaexportersoapschemaimportersoapschemamembersoaptypeattributesystemsystemexceptionunreferencedobjecteventargsunreferencedobjecteventhandlervalidationeventargsvalidationeventhandlervalidationtypevaluetypewhitespacehandlingwin32writestatexmlxmlanyattributeattributexmlanyelementattributexmlanyelementattributesxmlarrayattributexmlarrayitemattributexmlarrayitemattributesxmlatomicvaluexmlattributexmlattributeattributexmlattributecollectionxmlattributeeventargsxmlattributeeventhandlerxmlattributeoverridesxmlattributesxmlcaseorderxmlcdatasectionxmlcharacterdataxmlchoiceidentifierattributexmlcodeexporterxmlcommentxmlconfigurationxmlconvertxmldatatypexmldatetimeserializationmodexmldeclarationxmldeserializationeventsxmldocumentxmldocumentfragmentxmldocumenttypexmlelementxmlelementattributexmlelementattributesxmlelementeventargsxmlelementeventhandlerxmlentityxmlentityreferencexmlenumattributexmlexceptionxmlignoreattributexmlimplementationxmlincludeattributexmlknowndtdsxmllinkednodexmlmappingxmlmappingaccessxmlmembermappingxmlmembersmappingxmlnamednodemapxmlnamespacedeclarationsattributexmlnamespacemanagerxmlnamespacescopexmlnametablexmlnodexmlnodechangedactionxmlnodechangedeventargsxmlnodechangedeventhandlerxmlnodeeventargsxmlnodeeventhandlerxmlnodelistxmlnodeorderxmlnodereaderxmlnodetypexmlnotationxmloutputmethodxmlparsercontextxmlpreloadedresolverxmlprocessinginstructionxmlqualifiednamexmlreaderxmlreadersectionxmlreadersettingsxmlreflectionimporterxmlreflectionmemberxmlresolverxmlrootattributexmlschemaxmlschemaallxmlschemaannotatedxmlschemaannotationxmlschemaanyxmlschemaanyattributexmlschemaappinfoxmlschemaattributexmlschemaattributegroupxmlschemaattributegrouprefxmlschemachoicexmlschemacollectionxmlsch@emacollectionenumeratorxmlschemacompilationsettingsxmlschemacomplexcontentxmlschemacomplexcontentextensionxmlschemacomplexcontentrestrictionxmlschemacomplextypexmlschemacontentxmlschemacontentmodelxmlschemacontentprocessingxmlschemacontenttypexmlschemadatatypexmlschemadatatypevarietyxmlschemaderivationmethodxmlschemadocumentationxmlschemaelementxmlschemaenumerationfacetxmlschemaenumeratorxmlschemaexceptionxmlschemaexporterxmlschemaexternalxmlschemafacetxmlschemaformxmlschemafractiondigitsfacetxmlschemagroupxmlschemagroupbasexmlschemagrouprefxmlschemaidentityconstraintxmlschemaimportxmlschemaimporterxmlschemaincludexmlschemainferencexmlschemainferenceexceptionxmlschemainfoxmlschemakeyxmlschemakeyrefxmlschemalengthfacetxmlschemamaxexclusivefacetxmlschemamaxinclusivefacetxmlschemamaxlengthfacetxmlschemaminexclusivefacetxmlschemamininclusivefacetxmlschemaminlengthfacetxmlschemanotationxmlschemanumericfacetxmlschemaobjectxmlschemaobjectcollectionxmlschemaobjectenumeratorxmlschemaobjecttablexmlschemaparticlexmlschemapatternfacetxmlschemaproviderattributexmlschemaredefinexmlschemasxmlschemasequencexmlschemasetxmlschemasimplecontentxmlschemasimplecontentextensionxmlschemasimplecontentrestrictionxmlschemasimpletypexmlschemasimpletypecontentxmlschemasimpletypelistxmlschemasimpletyperestrictionxmlschemasimpletypeunionxmlschematotaldigitsfacetxmlschematypexmlschemauniquexmlschemausexmlschemavalidationexceptionxmlschemavalidationflagsxmlschemavalidatorxmlschemavalidityxmlschemawhitespacefacetxmlschemaxpathxmlsecureresolverxmlserializationcollectionfixupcallbackxmlserializationfixupcallbackxmlserializationgeneratedcodexmlserializationreadcallbackxmlserializationreaderxmlserializationwritecallbackxmlserializationwriterxmlserializerxmlserializerassemblyattributexmlserializerfactoryxmlserializerimplementationxmlserializernamespacesxmlserializersectionxmlserializerversionattributexmlseveritytypexmlsignificantwhitespacexmlsortorderxmlspacexmltextxmltextattributexmltextreaderxmltextwriterxmltokenizedtypexmltypeattributexmltypecodeAxmltypemappingxmlurlresolverxmlvalidatingreaderxmlvaluegetterxmlwhitespacexmlwriterxmlwritersettingsxmlxapresolverxpathxpathdocumentxpathexceptionxpathexpressionxpathitemxpathnamespacescopexpathnavigatorxpathnodeiteratorxpathnodetypexpathresulttypexslxslcompiledtransformxsltargumentlistxsltcompileexceptionxsltconfigsectionxsltcontextxsltexceptionxsltmessageencounteredeventargsxsltmessageencounteredeventhandlerxsltransformxsltsettings-	 "%7+E0T5b:m
;z<�B�E�E�J�JNR8
WEYS[W	_`
cjhq"k�
m�o�q�r�t�y�
y�{�{�{}~'~7�E�T�h�|	��������	������	��	��������!�8�V(�~��
�����������
�!�2�E�Y�o�����������������+�9	�B�T�Y
�c�f�~���������������,�A�Y�n
�{����������
����
�����*�B�M�`�o
�y��������	���������#�6�B
�O
�Y�i�y����!�����������	�	�6	�F	�Y	d	p	
}	�	�	�	�	�	�	�			�		



-
@
K
[
	d
p
�

�
�
�
�
�
�
	+Hd{ �"����$5Mf|�������

#
1
C
T
o
~
�
�
�
�

�
�
�
 " < S!m#�#�#�#�#�#�###*#?#Y$j
$t%�%�%�%�!%�%�&&+&I&a&z
&�&�&�&�&�&�&�&&&0'&W&t&�&�&�&�&�
&&!&5&P&g&{&�&�&�&�(�(�(�
)�
)**$*/*=*K*^*l
+y	+�,�,�,�
,�,�,�	,�,�,�,
,,',*,>,N,b,s,~
,�,�",�,�,,



	%,38$9:=>LM��"�	�	
d#(AZ`b
"\
�	
&f-
/@r�	TDv����)���� n�
6<��
m������$
'.0JS+2	U
	il�!Qx7�*	p{	�

�	;
P�
�
]�	�
)�
��
$
5
?e
�u4BFR
Y
1H
K�
CO}�
�	�V����*
Xo����EW^���t��%Gj��
�q|	~����[IN�	���
�
h��
����g��&��
��k�"�z���c
_aw
�����s�����y
��
�#	���
�
!	+������
�
���	��
��
��
����� 	��������'�(,
����	��<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj�	3"WTxM��I�N<t�P��Jylfstatementmergeprogram�g��J<SymbolTreeInfo>_Source_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj�	17"WTxM��I�N<t�P��JyLFStatementMergeProgram������z���r<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.dll�	3����m��aP�a�R��advancedattributecachecodeexportercodegenerationoptionscodeidentifiercodeidentifierscollectionbasecollectionsconfigurationconfigurationelementconfigurationelementcollectionconfigurationsectionconfigurationsectiongroupconfigurationvalidatorbaseconformanceleveldatetimeserializationmodedatetimeserializationsectiondtdprocessingentityhandlingenumeventargsformattinggenericiapplicationresourcestreamresolvericloneableicollectionidisposableienumerableienumeratorihasxmlnodeimportcontextinferenceoptioninternalixmllineinfoixmlnamespaceresolverixmlschemainfoixmlserializableixmltextparserixpathnavigableixsltcontextfunctionixsltcontextvariablemicrosoftmsmulticastdelegatenamespacehandlingnametablenewlinehandlingobjectreadstateresolversrootedpathvalidatorschemaschemaimporterschemaimporterextensionschemaimporterextensioncolle>DsumpragmacodecommentcodecommentstatementcodecommentstatementcollectioncodecompilercodecompileunitcodeconditionstatementcodeconstructorcodedefaultvalueexpressioncodedelegatecreateexpressioncodedelegateinvokeexpressioncodedirectionexpressioncodedirectivecodedirectivecollectioncodedomcodedomprovidercodeentrypointmethodcodeeventreferenceexpressioncodeexpressioncodeexpressioncollectioncodeexpressionstatementcodefieldreferenceexpressioncodegeneratorcodegeneratoroptionscodegotostatementcodeindexerexpressioncodeiterationstatementcodelabeledstatementcodelinepragmacodemembereventcodememberfieldcodemembermethodcodememberpropertycodemethodinvokeexpressioncodemethodreferenceexpressioncodemethodreturnstatementcodenamespacecodenamespacecollectioncodenamespaceimportcodenamespaceimportcollectioncodeobjectcodeobjectcreateexpressioncodeparameterdeclarationexpressioncodeparameterdeclarationexpressioncollectioncodeparsercodeprimitiveexpressioncodepropertyreferenceexpressioncodepropertysetvaluereferenceexpressioncoderegiondirectivecoderegionmodecoderemoveeventstatementcodesnippetcompileunitcodesnippetexpressioncodesnippetstatementcodesnippettypemembercodestatementcodestatementcollectioncodethisreferenceexpressioncodethrowexceptionstatementcodetrycatchfinallystatementcodetypeconstructorcodetypedeclarationcodetypedeclarationcollectioncodetypedelegatecodetypemembercodetypemembercollectioncodetypeofexpressioncodetypeparametercodetypeparametercollectioncodetypereferencecodetypereferencecollectioncodetypereferenceexpressioncodetypereferenceoptionscodevariabledeclarationstatementcodevariablereferenceexpressioncollectioncollectionbasecollectionchangeactioncollectionchangeeventargscollectionchangeeventhandlercollectionconvertercollectionscollectionsutilcommandidcompilercompilererrorcompilererrorcollectioncompilerinfocompilerparameterscompilerresultscomplexbindingpropertiesattributecomponentcomponentchangedeventargscomponentchangedeventhandlercomponentchangingeventargscomponentchangingeventhandlercomponentcollectioncomponentconvertercomponentEeditorcomponenteventargscomponenteventhandlercomponentmodelcomponentrenameeventargscomponentrenameeventhandlercomponentresourcemanagercomponentserializationservicecompressioncompressionlevelcompressionmodecomtypesconcurrentconcurrentbagconfigurationconfigurationelementconfigurationelementcollectionconfigurationexceptionconfigurationsectionconfigurationsectiongroupconfigurationsettingsconfigxmldocumentconnectionmanagementelementconnectionmanagementelementcollectionconnectionmanagementsectionconsoletracelistenercontainercontainerfilterservicecontentdispositioncontenttypecontextstackcookiecookiecollectioncookiecontainercookieexceptioncorrelationmanagercountercreationdatacountercreationdatacollectioncountersamplecountersamplecalculatorcredentialcachecryptographycsharpcsharpcodeprovidercultureinfoconvertercustomtypedescriptordatadirdataerrorschangedeventargsdataobjectattributedataobjectfieldattributedataobjectmethodattributedataobjectmethodtypedatareceivedeventargsdatareceivedeventhandlerdatetimeconverterdatetimeoffsetconverterdebugdecimalconverterdecompressionmethodsdefaultbindingpropertyattributedefaulteventattributedefaultparametervalueattributedefaultpropertyattributedefaultproxysectiondefaultserializationproviderattributedefaultsettingvalueattributedefaulttracelistenerdefaultvalueattributedeflatestreamdelimitedlisttracelistenerdeliverynotificationoptionsdescriptionattributedesigndesignerattributedesignercategoryattributedesignercollectiondesignereventargsdesignereventhandlerdesignerloaderdesigneroptioncollectiondesigneroptionservicedesignerserializationvisibilitydesignerserializationvisibilityattributedesignerserializerattributedesignertransactiondesignertransactioncloseeventargsdesignertransactioncloseeventhandlerdesignerverbdesignerverbcollectiondesignonlyattributedesigntimelicensecontextdesigntimelicensecontextserializerdesigntimevisibleattributediagnosticsdiagnosticsconfigurationhandlerdictionarybasedictionarysectionhandlerdisplaynameattributedispositiontypenamesdnsdnsendpointdnspermissiondnspermissionattriFbutedoubleconverterdownloaddatacompletedeventargsdownloaddatacompletedeventhandlerdownloadprogresschangedeventargsdownloadprogresschangedeventhandlerdownloadstringcompletedeventargsdownloadstringcompletedeventhandlerdoworkeventargsdoworkeventhandlerdrawingduplicateaddressdetectionstatedvaspectdynamicroleclaimprovidereditorattributeeditorbrowsableattributeeditorbrowsablestateelapsedeventargselapsedeventhandlerencryptionpolicyendgethostbynameendpointendpointpermissionendresolveentrywritteneventargsentrywritteneventhandlerenumenumconverterenumeratorerroreventargserroreventhandlereventargseventdescriptoreventdescriptorcollectioneventhandlerlisteventinstanceeventlogeventlogentryeventlogentrycollectioneventlogentrytypeeventlogpermissioneventlogpermissionaccesseventlogpermissionattributeeventlogpermissionentryeventlogpermissionentrycollectioneventlogtracelistenereventsourcecreationdataeventtypefilterexceptionexchangealgorithmtypeexcludefromcodecoverageattributeexecutorexpandableobjectconverterextendedprotectionextendedprotectionpolicyextendedprotectionpolicyelementextendedprotectionpolicytypeconverterextendedprotectionselectorextenderprovidedpropertyattributeexternalexceptionfailfielddirectionfilefilestyleuriparserfilesystemeventargsfilesystemeventhandlerfilesystemwatcherfileversioninfofilewebrequestfilewebresponseflushformatetcformatexceptionframeworknameftpftpcachepolicyelementftpstatuscodeftpstyleuriparserftpwebrequestftpwebresponsegatewayipaddressinformationgatewayipaddressinformationcollectiongeneratedcodeattributegeneratorsupportgenericgenericidentitygenericuriparsergenericuriparseroptionsgethostbyaddressgethostbynameglobalproxyselectiongopherstyleuriparsergroupgroupcollectionguidconvertergzipstreamhandlecollectorhandledeventargshandledeventhandlerhandshakehashalgorithmtypehashtablehelpcontexttypehelpkeywordattributehelpkeywordtypehttphttpcacheagecontrolhttpcachepolicyelementhttpcontinuedelegatehttplistenerhttplistenerbasicidentityhttplistenercontexthttplistenerelementhttplistenerexceptionhttplistenerprefixcolleGctionhttplistenerrequesthttplistenerresponsehttplistenertimeoutmanagerhttplistenertimeoutselementhttplistenerwebsocketcontexthttprequestcachelevelhttprequestcachepolicyhttprequestheaderhttpresponseheaderhttpstatuscodehttpstyleuriparserhttpversionhttpwebrequesthttpwebrequestelementhttpwebresponsehybriddictionaryiadvisesinkiapplicationsettingsprovideriauthenticationmoduleiautowebproxyibindinglistibindinglistviewicanceladdnewicertificatepolicyichangetrackingicloneableicloseexicmpv4statisticsicmpv6statisticsicodecompilericodegeneratoricodeparsericollectdataicollectionicommandicomnativedescriptorhandlericomponenticomponentchangeserviceicomponentdiscoveryserviceicomponentinitializericonfigerrorinfoiconfigurationsectionhandlericonfigurationsystemicontainericredentialpolicyicredentialsicredentialsbyhosticustomtypedescriptoricustomtypeprovideridataerrorinfoidataobjectideserializationcallbackidesigneridesignereventserviceidesignerfilteridesignerhostidesignerhosttransactionstateidesignerloaderhostidesignerloaderhost2idesignerloaderserviceidesigneroptionserviceidesignerserializationmanageridesignerserializationprovideridesignerserializationserviceidictionaryidictionaryenumeratoridictionaryserviceidisposableidnelementieditableobjectienumerableienumeratorienumformatetcienumstatdataiequatableieventbindingserviceiextenderlistserviceiextenderprovideriextenderproviderserviceignoresectionhandlerihelpserviceiinheritanceserviceiintellisensebuilderilistilistsourceimageimarshalimenucommandserviceimmutableobjectattributeinamecreationserviceindentindentedtextwriterinestedcontainerinestedsiteinheritanceattributeinheritancelevelinitializationeventattributeinotifycollectionchangedinotifydataerrorinfoinotifypropertychangedinotifypropertychanginginputinstallertypeattributeinstancecreationeditorinstancedatainstancedatacollectioninstancedatacollectioncollectioninstancedescriptorint16converterint32converterint64converterinternalinternalbufferoverflowexceptioninteropservicesintranetzonecredentialpolicyinvalidasynchronousstateexceptioninvalidcreHdentialexceptioninvaliddataexceptioninvalidenumargumentexceptioninvalidoperationexceptionioiocontrolcodeiodescriptionattributeiordereddictionaryipaddressipaddresscollectionipaddressinformationipaddressinformationcollectionipendpointipersistcomponentsettingsipglobalpropertiesipglobalstatisticsiphostentryipinterfacepropertiesipinterfacestatisticsippacketinformationipprotectionleveliproducerconsumercollectionipstatusipv4interfacepropertiesipv4interfacestatisticsipv6elementipv6interfacepropertiesipv6multicastoptioniraiseitemchangedeventsireadonlycollectionireadonlydictionaryireferenceserviceiresourceserviceirevertiblechangetrackingiriparsingelementirootdesigneriselectionserviceiserializableiservicecontaineriserviceproviderisetisettingsproviderserviceisiteisupportinitializeisupportinitializenotificationisynchronizeinvokeitreedesigneritypedescriptorcontextitypedescriptorfilterserviceitypediscoveryserviceitypedlistityperesolutionserviceiunrestrictedpermissioniwebproxyiwebproxyscriptiwebrequestcreatekeycollectionkeyscollectionlanguageoptionsldapstyleuriparserlicenselicensecontextlicenseexceptionlicensemanagerlicenseproviderlicenseproviderattributelicenseusagemodelicfilelicenseproviderlingeroptionlinkedlistlinkedlistnodelinkedresourcelinkedresourcecollectionlistbindableattributelistchangedeventargslistchangedeventhandlerlistchangedtypelistdictionarylistsortdescriptionlistsortdescriptioncollectionlistsortdirectionlocalcertificateselectioncallbacklocalfilesettingsproviderlocalizableattributelookupbindingpropertiesattributemailmailaddressmailaddresscollectionmailmessagemailprioritymailsettingssectiongroupmarkupmarshalbyrefobjectmarshalbyvaluecomponentmaskedtextprovidermaskedtextresulthintmatchmatchcollectionmatchevaluatormediamediatypenamesmemberattributesmemberdescriptormemberrelationshipmemberrelationshipservicemenucommandmergablepropertyattributemicrosoftmimemoduleelementmonitoringdescriptionattributemulticastdelegatemulticastipaddressinformationmulticastipaddressinformationcollectionmulticastoptionmultilinestringconverIternameobjectcollectionbasenamevaluecollectionnamevaluefilesectionhandlernamevaluesectionhandlernativeobjectsecuritynegotiatestreamnestedcontainernetnetbiosnodetypenetpipestyleuriparsernetsectiongroupnettcpstyleuriparsernetworkaccessnetworkaddresschangedeventhandlernetworkavailabilitychangedeventhandlernetworkavailabilityeventargsnetworkchangenetworkcredentialnetworkinformationnetworkinformationaccessnetworkinformationexceptionnetworkinformationpermissionnetworkinformationpermissionattributenetworkinterfacenetworkinterfacecomponentnetworkinterfacetypenetworkstreamnewsstyleuriparsernosettingsversionupgradeattributenotifycollectionchangedactionnotifycollectionchangedeventargsnotifycollectionchangedeventhandlernotifyfiltersnotifyparentpropertyattributenullableconverterobjectobjectmodelobservablecollectionoidoidcollectionoidenumeratoroidgroupopenflagsopenreadcompletedeventargsopenreadcompletedeventhandleropenwritecompletedeventargsopenwritecompletedeventhandleroperationalstatusordereddictionaryoverflowactionparenthesizepropertynameattributeparitypasswordpropertytextattributeperformancecounterperformancecountercategoryperformancecountercategorytypeperformancecounterinstancelifetimeperformancecountermanagerperformancecounterpermissionperformancecounterpermissionaccessperformancecounterpermissionattributeperformancecounterpermissionentryperformancecounterpermissionentrycollectionperformancecounterselementperformancecountertypepermissionsphysicaladdresspingpingcompletedeventargspingcompletedeventhandlerpingexceptionpingoptionspingreplypolicyenforcementportspowermodechangedeventargspowermodechangedeventhandlerpowermodesprefixoriginprincipalprintprocessprocessmoduleprocessmodulecollectionprocesspriorityclassprocessstartinfoprocessthreadprocessthreadcollectionprocesswindowstyleprogresschangedeventargsprogresschangedeventhandlerpropertychangedeventargspropertychangedeventhandlerpropertychangingeventargspropertychangingeventhandlerpropertydescriptorpropertydescriptorcollectionpropertytabattributepropertytabscopeprotectionleJvelprotectionscenarioprotocolfamilyprotocoltypeprotocolviolationexceptionprovidepropertyattributeproviderproviderbaseprovidercollectionproxyelementpublickeyqueuereadonlyattributereadonlycollectionreadonlycollectionbasereadonlyobservablecollectionrecommendedasconfigurableattributereferenceconverterreflectionrefresheventargsrefresheventhandlerrefreshpropertiesrefreshpropertiesattributeregexregexcompilationinforegexmatchtimeoutexceptionregexoptionsregexrunnerregexrunnerfactoryregularexpressionsremotecertificatevalidationcallbackrenamedeventargsrenamedeventhandlerrequestcachelevelrequestcachepolicyrequestcachingsectionresolveresolvenameeventargsresolvenameeventhandlerresourcemanagerresourcepermissionbaseresourcepermissionbaseentryresourcesrootdesignerserializerattributeruninstallerattributeruntimerunworkercompletedeventargsrunworkercompletedeventhandlersafehandlessafehandlezeroorminusoneisinvalidsafeprocesshandlesafex509chainhandlesbyteconverterschemesettingelementschemesettingelementcollectionscopelevelsectionsecuritysecurityprotocoltypeselectiontypesselectmodesemaphoresemaphoreaccessrulesemaphoreauditrulesemaphorerightssemaphoresecuritysendcompletedeventhandlersendpacketselementserialdataserialdatareceivedeventargsserialdatareceivedeventhandlerserialerrorserialerrorreceivedeventargsserialerrorreceivedeventhandlerserializationserializationstoreserialpinchangeserialpinchangedeventargsserialpinchangedeventhandlerserialportservicecontainerservicecreatorcallbackservicenamecollectionservicenameelementservicenameelementcollectionservicepointservicepointmanagerservicepointmanagerelementsessionendedeventargssessionendedeventhandlersessionendingeventargssessionendingeventhandlersessionendreasonssessionswitcheventargssessionswitcheventhandlersessionswitchreasonsettingattributesettingchangingeventargssettingchangingeventhandlersettingelementsettingelementcollectionsettingsattributedictionarysettingsbasesettingsbindableattributesettingscontextsettingsdescriptionattributesettingsgroupdescriptionattributesettingsgroupnameattribKutesettingsloadedeventargssettingsloadedeventhandlersettingsmanageabilitysettingsmanageabilityattributesettingspropertysettingspropertycollectionsettingspropertyisreadonlyexceptionsettingspropertynotfoundexceptionsettingspropertyvaluesettingspropertyvaluecollectionsettingspropertywrongtypeexceptionsettingsprovidersettingsproviderattributesettingsprovidercollectionsettingssavingeventhandlersettingssectionsettingsserializeassettingsserializeasattributesettingvalueelementsingleconvertersingletagsectionhandlersmtpaccesssmtpclientsmtpdeliveryformatsmtpdeliverymethodsmtpexceptionsmtpfailedrecipientexceptionsmtpfailedrecipientsexceptionsmtpnetworkelementsmtppermissionsmtppermissionattributesmtpsectionsmtpspecifiedpickupdirectoryelementsmtpstatuscodesocketsocketaddresssocketasynceventargssocketasyncoperationsocketclientaccesspolicyprotocolsocketelementsocketerrorsocketexceptionsocketflagssocketinformationsocketinformationoptionssocketoptionlevelsocketoptionnamesocketpermissionsocketpermissionattributesocketssocketshutdownsockettypesorteddictionarysortedlistsortedsetsoundplayersourcefiltersourcelevelssourceswitchspecializedspecialsettingspecialsettingattributesslpolicyerrorssslprotocolssslstreamstackstandardcommandsstandardolemarshalobjectstandardtoolwindowsstandardvaluescollectionstatdatastgmediumstopbitsstopwatchstorelocationstorenamestorepermissionstorepermissionattributestorepermissionflagsstreamstringcollectionstringconverterstringdictionarystringenumeratorsuffixoriginswitchswitchattributeswitchlevelattributesyntaxchecksystemsystemeventssystemexceptionsystemsoundsystemsoundstcpclienttcpconnectioninformationtcplistenertcpstatetcpstatisticstempfilecollectiontexttextwritertextwritertracelistenerthreadexceptioneventargsthreadexceptioneventhandlerthreadingthreadprioritylevelthreadstatethreadwaitreasontimeoutexceptiontimertimerelapsedeventargstimerelapsedeventhandlertimerstimersdescriptionattributetimespanconvertertokenbindingtokenbindingtypetoolboxitemattributetoolboxitemfilterattributetoolboxitemfiltertypetracetraceeveLntcachetraceeventtypetracefiltertraceleveltracelistenertracelistenercollectiontraceoptionstracesourcetraceswitchtransferencodingtransmitfileoptionstransportcontexttransporttypetymedtypeconvertertypeconverterattributetypedescriptionprovidertypedescriptionproviderattributetypedescriptionproviderservicetypedescriptortypedescriptorpermissiontypedescriptorpermissionattributetypedescriptorpermissionflagstypelistconverterudpclientudpreceiveresultudpstatisticsuint16converteruint32converteruint64converterunicastipaddressinformationunicastipaddressinformationcollectionunicodedecodingconformanceunicodeencodingconformanceunindentunsafenativemethodsuploaddatacompletedeventargsuploaddatacompletedeventhandleruploadfilecompletedeventargsuploadfilecompletedeventhandleruploadprogresschangedeventargsuploadprogresschangedeventhandleruploadstringcompletedeventargsuploadstringcompletedeventhandleruploadvaluescompletedeventargsuploadvaluescompletedeventhandleruriuribuilderuricomponentsuriformaturiformatexceptionurihostnametypeuriidnscopeurikinduriparseruripartialurisectionuritypeconverteruserpreferencecategoryuserpreferencechangedeventargsuserpreferencechangedeventhandleruserpreferencechangingeventargsuserpreferencechangingeventhandleruserscopedsettingattributeusersettingsgroupusesystemdefaultvaluesvaluecollectionvalueserializerattributevaluetypevbcodeproviderversioningviewtechnologyvisualbasicwaitforchangedresultwaithandlewarningexceptionwatcherchangetypeswebwebclientwebexceptionwebexceptionstatuswebheadercollectionwebpermissionwebpermissionattributewebproxywebproxyscriptelementwebrequestwebrequestmethodswebrequestmoduleelementwebrequestmoduleelementcollectionwebrequestmodulessectionwebresponsewebsocketwebsocketclosestatuswebsocketcontextwebsocketerrorwebsocketexceptionwebsocketmessagetypewebsocketreceiveresultwebsocketswebsocketstatewebutilitywebutilityelementwin32win32exceptionwindowswindowsruntimewritewriteifwritelinewritelineifwritestreamclosedeventargswritestreamclosedeventhandlerx500distinguishednamex500distinguishednameflagsxM509basicconstraintsextensionx509certificatex509certificate2x509certificate2collectionx509certificate2enumeratorx509certificatecollectionx509certificateenumeratorx509certificatesx509chainx509chainelementx509chainelementcollectionx509chainelementenumeratorx509chainpolicyx509chainstatusx509chainstatusflagsx509enhancedkeyusageextensionx509extensionx509extensioncollectionx509extensionenumeratorx509findtypex509includeoptionx509keyusageextensionx509keyusageflagsx509nametypex509revocationflagx509revocationmodex509storex509subjectkeyidentifierextensionx509subjectkeyidentifierhashalgorithmx509verificationflagsxmlxmldocumentxmlwritertracelistenerg



.	%H.\	2n;�
<�B�
S�
Z�g�	l�!u�{
�(�9�J�X�f�~���� 	�������� �.�C
�M�[�o	�x��	��	������
�)%Nj�
� �%�(�+�2�3
48*F9HIITMbMmS
[�
e�j�
j�q�r�
x�
y���	��0�A�O�a
�n�����������������	�1	�J�d�w��������"����4�J�\�k�����������������-�I�e�|
�����������
	#	?	
L	`	q	�	�	 �	!�	#�	)�	)�	+�	-
.5
2N

4[
7r
7�
7�

;�
;�
"?�
,?
?@5CT'C{D�D�F�I�NI�J�M
MM,MGNbQ~Q�Q�Q�Q�T�T�T
W
W7
WH
[c
\~
\�
 \�
^�

^�
^�
^_c8eKfVhe	lnmv
n�n�n�q�u�!w�	y�y
z&|@|]~p����������������.�9�I�X�`
�j
�w
���������������:%�_�z��	�����������������
��/�L
�Y�p�������������������0�D�Y�q����������������,�?%�d������
�����������/�A�R�f�t������(����!�7$�[�g�}����"���������4�H\_j
w���!� �# >#	a
p�������%5EM_
 i#~$�$�
%�
&�&�'�	)�-�--
--&
.30J0[0m0�0�0�!1�2�22	341 7Q<Y=r=�=�=�%=�>�!?A,A0E>EBETEgE}E�E�F�H�H�	J�N�
N�R�S�
S	S
S'V5WP%WuW�X�Y�Y�Z�Z�[�
\�\	]]"_1
c>
cHdWgghz	j�l�	l�l�n�o�q�s�s�Ossu5vHz[{p{�{�|�|�}�} } }/ �@ �R �` �r �} �� �� �� �� �� �� �� 
�!�!�$!
�1!�C!�R!
�\!�d!�t!��!
��!��!��!��!��!��!��!
��!�"�"�4"�D"�`"�t"
�~"��"��"��"��"��"��"��"�#	�#�$#�3#
�@#�]#�p#��#��#��#��#��#�$�$�($�:$�E$
�O$�^$�i$�t$��$
��$
��$��$��$��$��$��$�
%�%�1%�6%�A%�F%�N%�a%�y%��%��%��%��%��%��%��%�&�&�,&�B&�Y&�^&�t&��&��&��& ��&��&��&��&�'�'�/'�>'�Z'!�{'��'��'��'��'��'
��'�(�(	�(�1(�E(�c(
�m(��(��(��(��(��(��(��(�)�)�&)�=)�T)�_)�v)��)��)��)��)��)��)�*�*
�*�/*
�<*�M*�]*�a*�y*�~*��*��*��*
��*��*��*�+
�+�4+�K+	�T+�c+�t+
��+��+��+��+��+��+��+��+��+�
,�,�0,�<,
�F,�T,�b,�z,��,��,��,��,��,��,�-�-!�9-�R-�f- �-�-�-�-�-�-�-�-�-....3.B.P.U.c.s.�.	�.	�.	�.
�.	
�.
�.

�.

/
/
8/'_/n/�/�/�/�/�/�/000'0<0K0_0
l0!�0&�0�0
�0P�0�0121N1%s1�1�1�1
�1�1!�1
2 -2#P2
]2z2�2�2�2�2�2
�2
�2�2	�2�2303N3_3p3~3!�3�3�3�3�34".4G4c4"�4%�4!�4+�45&515@5D5Z5 s5
 �5 �5	!�5"�5"�5$�5$�5
$�5$�5	$�5$6$
6
$6$.6$B6$R6
$_6$v6$�6$�6$�6$�6$�6%7%#7%57%Q7%e7%u7%�7%�7%�7%�7%�7%�7%�7&�7&8&8	&8("8(38(E8([8(w8"(�8(�8
(�8(�8*�8*�8*9+9,9,69-B9.M9._9.q9#.�9.�9.�9.�9/�9/�9/�9/
:/!:/0:0F:0a:	3j:3�:3�:4�:5�:5�:5�:!5
;5;5.;5<;5P;5n;
5x;5;7�;7�;7�;
8�;	8�;8�;8�;8�;8<8<8,<
86<9Q<9o<9z<:�<:�<
:�<:�<:�<:�<:=
:"=;2=;H=<]=<o=<�==�==�==�==�==�==>= >=1>>G>>`>>s>>�>>�>>�>>�>>�>A�>A?A?C+?CG?!Ch?C�?C�?C�?C�?C�?C�?C@#C3@!DT@Di@D�@"E�@E�@E�@E�@EAEAE)AEEAEXAEgAE~A
E�A
E�AE�AE�A
F�AF�AG�AGBGBG3BG>B#GaBGoBGuB
G�BG�BG�B G�B
H�BH�BH�BH�BJ
CK%CK6CKFCKVCKoCKvCK�C
K�CL�C
L�C	L�CM�CM�CN�CN�CO�CO�CODODO+D	O4DOQ9DOIDOaDOtDO�DP�D	Q�DR�D	R�D
R�D	R�DR�DR�DR�DRESES$ET4ETDETPETVETeETyET�ET�ET�ET�ET�EU�E	U�EU�EU�EU�E
V�EVFVF
VFV4FVLFVgF	VpFV�FV�FW�FW�FW�FX�FX�FX�FXGXGXGX-GXAGX[GXpGXuGY�GY�GY�G
Z�G
Z�GZ�GZ�GZ�GZ�GZ�GZHZ H
Z-HZ2H
Z?HZUHZlH Z�HZ�HZ�HZ�H!Z�HZIZI	Z(IZ8I
ZEIZTI[cI\rI\�I%\�I\�I]�I]�I]J]J]<J^XJ^wJ^�J!^�J^�J!^�J^K!^4K^7K
_AK
_NK	_WK_iK_xK`�K`�K	`�K
`�K
`�K`�K`�K`�K!`L`+L"`ML`gL`xL`�L`�L`�L	`�L`�L
`�L`�L`�LcM
c
McMc/Mc2M	c;McGMcYMclM
cyMc�Mc�Mc�M
c�Mc�Mc�M!c�McNc"N	c+Nc?NcONc]NcoNd�Nd�N
d�Nd�N
d�Nd�Nd�Nd�Nd�Nd�Nd�NdO	d	OdOd.OdKOd`OdzOd�Od�Od�Oe�Oe�OePePe,P	e5PeEPe_PeyPe�Pe�Pe�Pf�P
f�Pf�PfQfQf Qf5QfFQfRQfdQfvQ	fQ!f�Q%f�Qf�Qf�Qf�Qff

	
	
"#+7XY`b#�"��S �`'�8	�_�����	�~�� 0=	o)z}�

$<	�T26?P
y���,kv�
�	H�	!>
H
�B
fr{	����'�Ri�GZ	F�_b��
��^$������_�L3t���)*��(Ne
�*G
I�B

I��D
n�
OE	�
�
��z
W]c���z����x|��3[
��j*,���>��S	

E

F5�����	�D
N�Zk�
�JU��Lmq�	���%9[
d�	�Ad��.o�%��!&
/	hu
�4R5-
�	)-OQS��$1��L�^�i� ���eZa�'�	�.8:
��sq 69�?V�]�^�l�W�
�	B@Cgw����/
Mp��
]�f;
t#*M��
�	�Uv�j�
��3
A
}���	�0�l�
K
��x	;
L�/���UL��8	C�T��
�� I�	
�
s�	FD!<�

�
�W�T
xu�u
Q���
v��	|��5a�Wb\�����Y����+,
m������<P#-
��4�jp
q������
��V�
���`\
��	�#iU�	J
>�
�����e�A�����
��a>[
	�}�
��3(.	l�
�]!�`��i1g�	�+9
�
�CM��������
�
�=��0bq?�����gR
���2�~T$c-�#����\EFR�
�����E�}���	��7P	����	`�
@c	n�	o
�YpEG@
�
�j�O��3	$7O
w
~����J��#�H��	���
���
r�	P����"	 g�Y�	�hQB�	�
�	&@��
�4n|F

�
G�
��	6�2�
:	"s�Q�?�?J�
�
=�
�=2�Br�'���%w9:��h
��Xe��[���
6_	��
{I�	���
��%�&!���7�1�.+^�
d����
��"R	)�
�
K�
X�	�wH
_��	�r��
��
�"��5f�\	� bDymy�k�
���	�1�{
�;
�l
���u	���X|�
�
�\�

�	�
h�J��vy
�	���d
P�����( "�z
�Q�	�
�V��
<����5.�	�N�%���N����GaT
=t9^�	�A
�
��	+&
��6��	�	K
'��&o	!�,
4	{��OKn	�	����
W7s����0�~R
:�
�0
�	�	f�p[�	�@
�	;�
�(�������4�S���-C���
�
�
�
���/�
2���
t	
M��a� m
����;	N�
1V:I�8HKY*xU���k��DfXZ	c,C��	8�
��]�(<		���/	
V>	����dS
)	AeZM	c
>>��z���z<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.dll�	3�G�(�������d�^S̄��Raccesscontrolaccessruleactivedesignereventargsactivedesignereventhandleradddynamicroleclaimsaddingneweventargsaddingneweventhandleraddressfamilyadvfalternateviewalternateviewcollectionambientvalueattributeapplicationapplicationscopedsettingattributeapplicationsettingsbaseapplicationsettingsgroupappsettingsreaderargumentexceptionarrayconverterasnencodeddataasnencodeddatacollectionasnencodeddataenumeratoraspnethostingpermissionaspnethostingpermissionattributeaspnethostingpermissionlevelassertasynccompletedeventargsasynccompletedeventhandlerasyncoperationasyncoperationmanagerattachmentattachmentbaseattachmentcollectionattributeattributecollectionattributeproviderattributeauditruleauthenticatedstreamauthenticationauthenticationexceptionauthenticationlevelauthenticationmanagerauthenticationmoduleelementauthenticationmoduleelementcollectionauthenticationmodulessectionauthenticationschemesauthenticationschemeselectorauthorizationautodetectvaluesbackgroundworkerbarrierbarrierpostphaseexceptionbasenumberconverterbegingethostbynamebeginresolvebindableattributebindablesupportbindingdirectionbindinglistbindipendpointbitvector32blockingcollectionbooleanconverterbooleanswitchbrowsableattributebypasselementbypasselementcollectionbypassonlocalvaluesbyteconvertercachecanceleventargscanceleventhandlercapturecapturecollectioncategoryattributechannelbindingchannelbindingkindcharconvertercheckoutexceptioncipheralgorithmtypeclaimsclientsettingssectionclientwebsocketclientwebsocketoptionsclosecodeaccesspermissioncodeaccesssecurityattributecodeanalysiscodeargumentreferenceexpressioncodearraycreateexpressioncodearrayindexerexpressioncodeassignstatementcodeattacheventstatementcodeattributeargumentcodeattributeargumentcollectioncodeattributedeclarationcodeattributedeclarationcollectioncodebasereferenceexpressioncodebinaryoperatorexpressioncodebinaryoperatortypecodecastexpressioncodecatchclausecodecatchclausecollectioncodecheckCUirectoryapplicationdirectorymembershipconditionapplicationexceptionapplicationidapplicationidentityapplicationsecurityinfoapplicationsecuritymanagerapplicationtrustapplicationtrustcollectionapplicationtrustenumeratorapplicationversionmatcharecomobjectsavailableforcleanupargiteratorargumentexceptionargumentnullexceptionargumentoutofrangeexceptionarithmeticexceptionarrayarraylistarraysegmentarraytypemismatchexceptionarraywithoffsetasciiencodingasinassembliesassemblyassemblyalgorithmidattributeassemblybuilderassemblybuilderaccessassemblycompanyattributeassemblyconfigurationattributeassemblycontenttypeassemblycopyrightattributeassemblycultureattributeassemblydefaultaliasattributeassemblydelaysignattributeassemblydescriptionattributeassemblyfileversionattributeassemblyflagsattributeassemblyhashassemblyhashalgorithmassemblyinformationalversionattributeassemblykeyfileattributeassemblykeynameattributeassemblyloadeventargsassemblyloadeventhandlerassemblymetadataattributeassemblynameassemblynameflagsassemblynameproxyassemblyproductattributeassemblyregistrationflagsassemblysignaturekeyattributeassemblytargetedpatchbandattributeassemblytitleattributeassemblytrademarkattributeassemblyversionattributeassemblyversioncompatibilityassertassumeasymmetricalgorithmasymmetrickeyexchangedeformatterasymmetrickeyexchangeformatterasymmetricsignaturedeformatterasymmetricsignatureformatterasynccallbackasyncflowcontrolasynclocalasynclocalvaluechangedargsasyncresultasyncstatemachineattributeasynctaskmethodbuilderasyncvoidmethodbuilderatanatan2attributeattributetargetsattributeusageattributeauditflagsauditruleauthorizationruleauthorizationrulecollectionautomationproxyattributeautoreseteventbadimageformatexceptionbase64formattingoptionsbasechannelobjectwithpropertiesbasechannelsinkwithpropertiesbasechannelwithpropertiesbeepbestfitmappingattributebinarybinaryformatterbinaryreaderbinarywriterbind_optsbinderbindhandlebindingflagsbindptrbindtomonikerbitarraybitconverterblockcopybooleanbstrwrapperbufferbufferedstreambytebytelengthcalendarcalendarValgorithmtypecalendarweekrulecallcontextcallconvcallconvcdeclcallconvfastcallcallconvstdcallcallconvthiscallcallerfilepathattributecallerlinenumberattributecallermembernameattributecallingconventioncallingconventionscancelfullgcnotificationcancellationtokencancellationtokenregistrationcancellationtokensourcecannotunloadappdomainexceptioncaseinsensitivecomparercaseinsensitivehashcodeproviderceilingcerchangewrapperhandlestrengthchanneldatastorechannelschannelservicescharcharenumeratorcharsetcharunicodeinfochineselunisolarcalendarciphermodeclaimclaimsclaimsidentityclaimsprincipalclaimtypesclaimvaluetypesclassinterfaceattributeclassinterfacetypecleanupcodecleanupunusedobjectsincurrentcontextclearclientchannelsinkstackclientsponsorclscompliantattributecoclassattributecodeaccesspermissioncodeaccesssecurityattributecodeanalysiscodeconnectaccesscodegroupcollectcollectioncollectionbasecollectioncountcollectionscomaliasnameattributecombinecomcompatibleversionattributecomconversionlossattributecomdefaultinterfaceattributecomeventinterfaceattributecomeventshelpercomexceptioncomimportattributecominterfacetypecommembertypecommonacecommonaclcommonobjectsecuritycommonsecuritydescriptorcomparecompareexchangecompareinfocompareoptionscomparercomparisoncompilationrelaxationscompilationrelaxationsattributecompilergeneratedattributecompilerglobalscopeattributecompilermarshaloverridecompilerservicescomponentguaranteesattributecomponentguaranteesoptionscompoundacecompoundacetypecompressedstackcomregisterfunctionattributecomsourceinterfacesattributecomtypescomunregisterfunctionattributecomvisibleattributeconcurrentconcurrentdictionaryconcurrentexclusiveschedulerpairconcurrentqueueconcurrentstackconditionalattributeconditionalweaktableconfigurationconfigureconfiguredtaskawaitableconfiguredtaskawaiterconnectconnectdataconsistencyconsoleconsolecanceleventargsconsolecanceleventhandlerconsolecolorconsolekeyconsolekeyinfoconsolemodifiersconsolespecialkeyconstrainedexecutionconstructioncallconstructionresponseconstructorbuilderconstructorinfoWcontextcontextattributecontextboundobjectcontextcallbackcontextformcontextmarshalexceptioncontextpropertycontextscontextstaticattributecontractcontractabbreviatorattributecontractargumentvalidatorattributecontractclassattributecontractclassforattributecontractfailedeventargscontractfailurekindcontracthelpercontractinvariantmethodattributecontractoptionattributecontractpublicpropertynameattributecontractreferenceassemblyattributecontractruntimeignoredattributecontractscontractverificationattributecontrolflagsconvertconvertercopycoscoshcountdowneventcreateaggregatedobjectcreatedirectorycreatevaluecallbackcreatewrapperoftypecriticalfinalizerobjectcriticalhandlecriticalhandleminusoneisinvalidcriticalhandlezeroorminusoneisinvalidcrossappdomaindelegatecrosscontextdelegatecryptoapitransformcryptoconfigcryptographicexceptioncryptographicunexpectedoperationexceptioncryptographycryptokeyaccessrulecryptokeyauditrulecryptokeyrightscryptokeysecuritycryptostreamcryptostreammodecspkeycontainerinfocspparameterscspproviderflagscultureinfoculturenotfoundexceptionculturetypescurrencywrappercurrentthreadrequiressecuritycontextcapturecustomacecustomattributebuildercustomattributedatacustomattributeextensionscustomattributeformatexceptioncustomattributenamedargumentcustomattributetypedargumentcustomconstantattributecustomerrorsmodescustomqueryinterfacemodecustomqueryinterfaceresultdatamisalignedexceptiondatetimedatetimeconstantattributedatetimeformatinfodatetimekinddatetimeoffsetdatetimestylesdaylighttimedayofweekdbnulldebuggableattributedebuggerdebuggerbrowsableattributedebuggerbrowsablestatedebuggerdisplayattributedebuggerhiddenattributedebuggernonusercodeattributedebuggerstepperboundaryattributedebuggerstepthroughattributedebuggertypeproxyattributedebuggervisualizerattributedebuggingmodesdecimaldecimalconstantattributedecoderdecoderexceptionfallbackdecoderexceptionfallbackbufferdecoderfallbackdecoderfallbackbufferdecoderfallbackexceptiondecoderreplacementfallbackdecoderreplacementfallbackbufferdecrementdecryptdefaultcharsetattribXutedefaultdependencyattributedefaultdllimportsearchpathsattributedefaultinterfaceattributedefaultmemberattributedelegatedeletedependencyattributedeploymentderivebytesdesdesckinddescryptoserviceproviderdescuniondesignernamespaceresolveeventargsdesignerservicesdestroystructuredetermineapplicationtrustdiagnosticsdictionarydictionarybasedictionaryentrydigitshapesdirectorydirectoryinfodirectorynotfoundexceptiondirectoryobjectsecuritydirectorysecuritydisableprivatereflectionattributediscardableattributedisconnectdiscretionaryacldispatchwrapperdispidattributedispparamsdividebyzeroexceptiondllimportattributedllimportsearchpathdllnotfoundexceptiondoubledoubletoint64bitsdriveinfodrivenotfoundexceptiondrivetypedsadsacryptoserviceproviderdsaparametersdsasignaturedeformatterdsasignatureformatterduplicatewaitobjectexceptiondynamicilinfodynamicmethodeastasianlunisolarcalendarelemdescemitencoderencoderexceptionfallbackencoderexceptionfallbackbufferencoderfallbackencoderfallbackbufferencoderfallbackexceptionencoderreplacementfallbackencoderreplacementfallbackbufferencodingencodinginfoencodingproviderencryptendcontractblockendnogcregionendofstreamexceptionensuresensuresonthrowensuresufficientexecutionstackenterenterpriseserviceshelperentrypointnotfoundexceptionenumenumbuilderenumerablepartitioneroptionsenumeratorenvironmentenvironmentpermissionenvironmentpermissionaccessenvironmentpermissionattributeenvironmentvariabletargetequalitycomparerequalserrorwrappereventactivityoptionseventargseventattributeeventattributeseventbuildereventchanneleventcommandeventcommandeventargseventdataattributeeventfieldattributeeventfieldformateventfieldtagseventhandlereventignoreattributeeventinfoeventkeywordseventleveleventlistenereventmanifestoptionseventopcodeeventregistrationtokeneventregistrationtokentableeventresetmodeeventsourceeventsourceattributeeventsourceexceptioneventsourceoptionseventsourcesettingseventtagseventtaskeventtokeneventwaithandleeventwaithandleaccessruleeventwaithandleauditruleeventwaithandlerightseventwaithandlesecurityeventYwritteneventargsevidenceevidencebaseexcepinfoexceptionexceptiondispatchinfoexceptionhandlerexceptionhandlingclauseexceptionhandlingclauseoptionsexceptionservicesexchangeexecutecodewithguaranteedcleanupexecutemessageexecutioncontextexecutionengineexceptionexistsexitexpexpandenvironmentvariablesexpandoexportereventkindextensibleclassfactoryextensionattributeexternalexceptionfailfastfieldaccessexceptionfieldattributesfieldbuilderfieldinfofieldoffsetattributefieldtokenfilefileaccessfileattributesfilecodegroupfiledialogpermissionfiledialogpermissionaccessfiledialogpermissionattributefileinfofileiopermissionfileiopermissionaccessfileiopermissionattributefileloadexceptionfilemodefilenotfoundexceptionfileoptionsfilesecurityfilesharefilestreamfilesystemaccessrulefilesystemauditrulefilesysteminfofilesystemrightsfilesystemsecurityfiletimefinalreleasecomobjectfirstchanceexceptioneventargsfirstmatchcodegroupfixedaddressvaluetypeattributefixedbufferattributeflagsattributefloorflowcontrolforallformatexceptionformattablestringformattablestringfactoryformatterformatterassemblystyleformatterconverterformattersformatterservicesformattertypestylefreebstrfreecotaskmemfreehglobalfreehstringfrombase64chararrayfrombase64stringfrombase64transformfrombase64transformmodefuncfuncdescfuncflagsfunckindgacidentitypermissiongacidentitypermissionattributegacinstalledgacmembershipconditiongcgccollectionmodegchandlegchandletypegclargeobjectheapcompactionmodegclatencymodegcnotificationstatusgcsettingsgenerateguidfortypegenerateprogidfortypegenericgenericacegenericaclgenericidentitygenericparameterattributesgenericprincipalgenericsecuritydescriptorgenerictypeparameterbuildergetactivationcontextdatagetactivationfactorygetactiveobjectgetapplicationcomponentmanifestgetattributesgetavailablethreadsgetbytegetbytesgetcominterfaceforobjectgetcominterfaceforobjectincontextgetcommandlineargsgetcomobjectdatagetcomslotformethodinfogetcreationtimegetcreationtimeutcgetcurrentdirectorygetcustomattributegetcustomattributesgetdelegateforfunctionpointergetdeploymeZntcomponentmanifestgetdirectoryrootgetendcomslotgetenvironmentvariablegetenvironmentvariablesgetenvoychainforproxygetexceptioncodegetexceptionforhrgetexceptionpointersgetfolderpathgetfullpathgetfunctionpointerfordelegategetgenerationgethashcodegethinstancegethrforexceptiongethrforlastwin32errorgetidispatchforobjectgetidispatchforobjectincontextgetinternalappidgetitypeinfofortypegetiunknownforobjectgetiunknownforobjectincontextgetlastaccesstimegetlastaccesstimeutcgetlastwin32errorgetlastwritetimegetlastwritetimeutcgetlifetimeservicegetlogicaldrivesgetmanagedthunkforunmanagedmethodptrgetmaxthreadsgetmethodbasefrommethodmessagegetmethodinfogetmethodinfoforcomslotgetminthreadsgetnativevariantforobjectgetobjectdatagetobjectforiunknowngetobjectfornativevariantgetobjectsfornativevariantsgetobjecturigetobjectvaluegetobjrefforproxygetrealproxygetregisteredactivatedclienttypesgetregisteredactivatedservicetypesgetregisteredwellknownclienttypesgetregisteredwellknownservicetypesgetruntimebasedefinitiongetruntimeeventgetruntimeeventsgetruntimefieldgetruntimefieldsgetruntimeinterfacemapgetruntimemethodgetruntimemethodsgetruntimepropertiesgetruntimepropertygetsafeuninitializedobjectgetsafewaithandlegetserializablemembersgetservertypeforurigetsessionidformethodmessagegetstartcomslotgetsurrogateforcyclicalreferencegettempfilenamegettemppathgetthreadfromfibercookiegettotalmemorygettypedobjectforiunknowngettypeforitypeinfogettypefromassemblygettypefromclsidgettypeinfogettypeinfonamegettypelibguidgettypelibguidforassemblygettypeliblcidgettypelibnamegettypelibversionforassemblygetuninitializedobjectgetuniqueobjectforiunknowngetunmanagedthunkformanagedmethodptrgetvaluegetzoneandoriginglobalizationgregoriancalendargregoriancalendartypesguidguidattributehandleprocesscorruptedstateexceptionsattributehandlerefhascopysemanticsattributehashhashalgorithmhashalgorithmnamehashmembershipconditionhashtableheaderheaderhandlerhebrewcalendarhijricalendarhmachmacmd5hmacripemd160hmacsha1hmacsha256hmacsha384hmacsha512hostexecutioncontexthostexecution[contextmanagerhostinghostprotectionattributehostprotectionexceptionhostprotectionresourcehostsecuritymanagerhostsecuritymanageroptionsiactivationfactoryiactivatoriappdomainsetupiapplicationtrustmanageriasynclocaliasyncresultiasyncstatemachineibindctxibuiltinpermissionichannelichanneldatastoreichannelinfoichannelreceiverichannelreceiverhookichannelsenderichannelsinkbaseiclientchannelsinkiclientchannelsinkprovidericlientchannelsinkstackiclientformattersinkiclientformattersinkprovidericlientresponsechannelsinkstackicloneableicollectionicomparableicomparericonnectionpointiconnectionpointcontainericonstantmembershipconditioniconstructioncallmessageiconstructionreturnmessageicontextattributeicontextpropertyicontextpropertyactivatoricontributeclientcontextsinkicontributedynamicsinkicontributeenvoysinkicontributeobjectsinkicontributeservercontextsinkiconvertibleicriticalnotifycompletionicryptotransformicspasymmetricalgorithmicustomadaptericustomattributeprovidericustomfactoryicustomformattericustommarshalericustomqueryinterfaceidelayevaluatedevidenceidentitynotmappedexceptionidentityreferenceidentityreferencecollectionideserializationcallbackidictionaryidictionaryenumeratoridispatchconstantattributeidispatchimplattributeidispatchimpltypeidisposableidldescidlflagidnmappingidynamicmessagesinkidynamicpropertyienumconnectionpointsienumconnectionsienumerableienumeratorienummonikerienumstringienumvariantienvoyinfoiequalitycompareriequatableievidencefactoryiexpandoifieldinfoiformatprovideriformattableiformatteriformatterconverterihashcodeprovideriidentityiidentitypermissionfactoryiinternalmessageileaseilgeneratorilistilogicalthreadaffinativeimagefilemachineimembershipconditionimessageimessagectrlimessagesinkimethodcallmessageimethodmessageimethodreturnmessageimonikerimpltypeflagsimportedfromtypelibattributeimportereventkindinattributeincrementindexernameattributeindexoutofrangeexceptioninheritanceflagsinitializearrayinormalizeforisolatedstorageinotifycompletioninsufficientexecutionstackexceptioninsufficientmemoryexceptionint1\6int32int64int64bitstodoubleinterfaceimplementedinversionattributeinterfacemappinginterfacetypeattributeinterlockedinternalinternalactivationcontexthelperinternalapplicationidentityhelperinternalmessagewrapperinternalremotingservicesinternalrminternalstinternalsvisibletoattributeinteropservicesintptrintrospectionextensionsinvalidcastexceptioninvalidcomobjectexceptioninvalidfiltercriteriaexceptioninvalidolevarianttypeexceptioninvalidoperationexceptioninvalidprogramexceptioninvalidtimezoneexceptioninvariantinvokekindioiobjecthandleiobjectreferenceiobservableiobserveriocompletioncallbackioexceptionipermissionipersistfileiprincipaliproducerconsumercollectioniprogressireadonlycollectionireadonlydictionaryireadonlylistireflectireflectabletypeiregistrationservicesiremotingformatteriremotingtypeinfoireportmatchmembershipconditioniresourcereaderiresourcewriterirunningobjecttableisactivationallowedisafeserializationdataisboxedisbyvalueiscomobjectisconstiscopyconstructedisdefinedisecurablechannelisecurityelementfactoryisecurityencodableisecuritypolicyencodableisenterediserializableiserializationrootobjectiserializationsurrogateiserverchannelsinkiserverchannelsinkprovideriserverchannelsinkstackiserverformattersinkprovideriserverresponsechannelsinkstackiserviceproviderisexplicitlydereferencedisgrantedisimplicitlydereferencedisjitintrinsicislongismethodoverloadedisoapmessageisoapxsdisobjectoutofcontextisolatedstorageisolatedstoragecontainmentisolatedstorageexceptionisolatedstoragefileisolatedstoragefilepermissionisolatedstoragefilepermissionattributeisolatedstoragefilestreamisolatedstoragepermissionisolatedstoragepermissionattributeisolatedstoragescopeisolatedstoragesecurityoptionsisolatedstoragesecuritystateisolationisonewayispinnedisponsorisremotelyactivatedclienttypeissignunspecifiedbyteistackwalkistransparentproxyistreamistructuralcomparableistructuralequatableistypevisiblefromcomisudtreturnisurrogateselectorisvolatileiswellknownclienttypeisymbolbinderisymbolbinder1isymboldocumentisymboldocumentwriterisymbolmethodisymbol]namespaceisymbolreaderisymbolscopeisymbolvariableisymbolwriteriteratorstatemachineattributeithreadpoolworkitemitrackinghandleritransportheadersitupleitypecompitypeinfoitypeinfo2itypelibitypelib2itypelibconverteritypelibexporternameprovideritypelibexporternotifysinkitypelibimporternotifysinkiunionsemanticcodegroupiunknownconstantattributeiunrestrictedpermissionjapanesecalendarjapaneselunisolarcalendarjuliancalendarkeepalivekeycollectionkeycontainerpermissionkeycontainerpermissionaccessentrykeycontainerpermissionaccessentrycollectionkeycontainerpermissionaccessentryenumeratorkeycontainerpermissionattributekeycontainerpermissionflagskeyedcollectionkeyedhashalgorithmkeynotfoundexceptionkeynumberkeysizeskeyvaluepairknownacekoreancalendarkoreanlunisolarcalendarlabellayoutkindlazylazyinitializerlazythreadsafetymodelcidconversionattributeleasestatelibflagslifetimelifetimeserviceslistloaderoptimizationloaderoptimizationattributeloadhintloadpolicylevelfromfileloadpolicylevelfromstringlocalbuilderlocaldatastoreslotlocalvariableinfolockcookielockrecursionexceptionloglog10logicalcallcontextlogremotingstagemactripledesmakeversionsafenamemanagedtonativecominteropstubattributemanifestmanifestresourceinfomanualreseteventmanualreseteventslimmarshalmarshalasattributemarshalbyrefobjectmarshaldirectiveexceptionmaskgenerationmethodmathmaxmd5md5cryptoserviceprovidermemberaccessexceptionmemberfiltermemberinfomembertypesmemorycopymemoryfailpointmemorystreammessagesurrogatefiltermessagingmetadatamethodaccessexceptionmethodattributesmethodbasemethodbodymethodbuildermethodcallmethodcallmessagewrappermethodcodetypemethodimplattributemethodimplattributesmethodimploptionsmethodinfomethodrentalmethodresponsemethodreturnmessagewrappermethodtokenmicrosoftmidpointroundingminmissingmissingfieldexceptionmissingmanifestresourceexceptionmissingmemberexceptionmissingmethodexceptionmissingsatelliteassemblyexceptionmodulemodulebuildermodulehandlemoduleresolveeventhandlermonitormovemovebufferareamtathreadattributemulticastdelegatemulticastnotsupportedex^ceptionmutexmutexaccessrulemutexauditrulemutexrightsmutexsecuritynamedpermissionsetnamespaceresolveeventargsnativecppclassattributenativeobjectsecuritynativeoverlappednetcodegroupneutralresourceslanguageattributenoneventattributenonserializedattributenormalizationformnotfinitenumberexceptionnotimplementedexceptionnotsupportedexceptionntaccountnullablenullreferenceexceptionnumberformatinfonumberstylesnumparambytesobfuscateassemblyattributeobfuscationattributeobjectobjectaccessruleobjectaceobjectaceflagsobjectauditruleobjectcreationdelegateobjectdisposedexceptionobjecthandleobjectidgeneratorobjectmanagerobjectmodelobjectsecurityobjrefobsoleteattributeoldvalueondeserializedattributeondeserializingattributeonewayattributeonserializedattributeonserializingattributeopcodeopcodesopcodetypeoperandtypeoperatingsystemoperationcanceledexceptionoptionalattributeoptionalfieldattributeorderablepartitioneroutattributeoutofmemoryexceptionoverflowexceptionoverlappedpackingsizepaddingmodeparallelparallelloopresultparallelloopstateparalleloptionsparamarrayattributeparamdescparameterattributesparameterbuilderparameterinfoparameterizedthreadstartparametermodifierparametertokenparamflagpartialtrustvisibilitylevelpartitionerpasswordderivebytespathpathtoolongexceptionpefilekindspermissionrequestevidencepermissionspermissionsetpermissionsetattributepermissionstatepersiancalendarpkcs1maskgenerationmethodplatformidplatformnotsupportedexceptionpointerpolicypolicyexceptionpolicyhierarchypolicylevelpolicyleveltypepolicystatementpolicystatementattributepopulateobjectmembersportableexecutablekindspowpredicateprelinkprelinkallprepareconstrainedregionsprepareconstrainedregionsnooppreparecontracteddelegatepreparedelegatepreparemethodprepreparemethodattributepreservesigattributeprimaryinteropassemblyattributeprincipalprincipalpermissionprincipalpermissionattributeprincipalpolicyprivilegenotheldexceptionprobeforsufficientstackprocessorarchitectureprofileoptimizationprogidattributeprogresspropagationflagspropertyattributespropertybuilderpropertyinf_opropertytokenproxiesproxyattributeptrtostringansiptrtostringautoptrtostringbstrptrtostringhstringptrtostringuniptrtostructurepublisherpublisheridentitypermissionpublisheridentitypermissionattributepublishermembershipconditionpulsepulseallpureattributequalifiedacequeryinterfacequeuequeueuserworkitemraisecontractfailedeventrandomrandomnumbergeneratorrankexceptionrawaclrawsecuritydescriptorrc2rc2cryptoserviceproviderreadreadallbytesreadalltextreadbytereaderwriterlockreadint16readint32readint64readintptrreadkeyreadonlyarrayattributereadonlycollectionreadonlycollectionbasereadonlydictionaryreadonlypermissionsetrealloccotaskmemreallochglobalrealproxyreferenceassemblyattributereflectionreflectioncontextreflectionpermissionreflectionpermissionattributereflectionpermissionflagreflectiontypeloadexceptionregioninforegisteractivatedclienttyperegisteractivatedservicetyperegisteredwaithandleregisterforfullgcnotificationregisterwaitforsingleobjectregisterwellknownclienttyperegisterwellknownservicetyperegistrationclasscontextregistrationconnectiontyperegistrationservicesregistryregistryaccessruleregistryauditruleregistryhiveregistrykeyregistrykeypermissioncheckregistryoptionsregistrypermissionregistrypermissionaccessregistrypermissionattributeregistryrightsregistrysecurityregistryvaluekindregistryvalueoptionsregistryviewreleasereleasecomobjectreleasethreadcachereliabilitycontractattributeremotingremotingconfigurationremotingexceptionremotingservicesremotingsurrogateselectorremotingtimeoutexceptionremoveremovealleventhandlersremoveeventhandlerremovememorypressurerequiredattributeattributerequiresreregisterforfinalizeresetcolorresolveeventargsresolveeventhandlerresolvenamespaceresolvepolicyresolvepolicygroupsresolvesystempolicyresourceattributesresourceconsumptionattributeresourceexposureattributeresourcelocationresourcemanagerresourcereaderresourcesresourcescoperesourcesetresourcetyperesourcewriterresultreturnmessagereturnvaluenameattributerfc2898derivebytesrijndaelrijndaelmanagedrijndaelmanagedtransformripemd160ripemd160manag`edrngcryptoserviceproviderroundrsarsacryptoserviceproviderrsaencryptionpaddingrsaencryptionpaddingmodersaoaepkeyexchangedeformatterrsaoaepkeyexchangeformatterrsaparametersrsapkcs1keyexchangedeformatterrsapkcs1keyexchangeformatterrsapkcs1signaturedeformatterrsapkcs1signatureformatterrsasignaturepaddingrsasignaturepaddingmoderuntimeruntimeargumenthandleruntimecompatibilityattributeruntimeenvironmentruntimefieldhandleruntimehelpersruntimemethodhandleruntimereflectionextensionsruntimetypehandleruntimewrappedexceptionsafeaccesstokenhandlesafearrayrankmismatchexceptionsafearraytypemismatchexceptionsafebuffersafefilehandlesafehandlesafehandleminusoneisinvalidsafehandlessafehandlezeroorminusoneisinvalidsaferegistryhandlesafeserializationeventargssafewaithandlesatellitecontractversionattributesavepolicysavepolicylevelsbytescopelessenumattributesearchoptionsecurestringsecurestringtobstrsecurestringtocotaskmemansisecurestringtocotaskmemunicodesecurestringtoglobalallocansisecurestringtoglobalallocunicodesecuritysecurityactionsecurityattributesecuritycontextsecuritycontextsourcesecuritycriticalattributesecuritycriticalscopesecurityelementsecurityexceptionsecurityidentifiersecurityinfossecuritymanagersecuritypermissionsecuritypermissionattributesecuritypermissionflagsecurityrulesattributesecurityrulesetsecuritysafecriticalattributesecuritystatesecuritytransparentattributesecuritytreatassafeattributesecurityzoneseekoriginsehexceptionsemaphorefullexceptionsemaphoreslimsendorpostcallbackserializableattributeserializationserializationbinderserializationentryserializationexceptionserializationinfoserializationinfoenumeratorserializationobjectmanagerserverchannelsinkstackserverexceptionserverfaultserverprocessingservicessetaccesscontrolsetattributessetbuffersizesetbytesetcomobjectdatasetcreationtimeutcsetcurrentdirectorysetcursorpositionsetenvironmentvariableseterrorsetinsetlastaccesstimeutcsetlastwritetimeutcsetmaxthreadssetminthreadssetobjecturiformarshalsetoutsetprofilerootsetsafewaithandlesetvaluesetwin32contextinidispatchattraibutesetwindowpositionsetwindowsizesha1sha1cryptoserviceprovidersha1managedsha256sha256managedsha384sha384managedsha512sha512managedsignsignaturedescriptionsignaturehelpersignaturetokensinsinglesinhsinkproviderdatasitesiteidentitypermissionsiteidentitypermissionattributesitemembershipconditionsizeofsoapanyurisoapattributesoapbase64binarysoapdatesoapdatetimesoapdaysoapdurationsoapentitiessoapentitysoapfaultsoapfieldattributesoaphexbinarysoapidsoapidrefsoapidrefssoapintegersoaplanguagesoapmessagesoapmethodattributesoapmonthsoapmonthdaysoapnamesoapncnamesoapnegativeintegersoapnmtokensoapnmtokenssoapnonnegativeintegersoapnonpositiveintegersoapnormalizedstringsoapnotationsoapoptionsoapparameterattributesoappositiveintegersoapqnamesoapservicessoaptimesoaptokensoaptypeattributesoapyearsoapyearmonthsortedlistsortkeysortversionspecialfolderspecialfolderoptionspecialnameattributespinlockspinwaitsqrtstackstackbehaviourstackframestackoverflowexceptionstacktracestartprofilestatemachineattributestathreadattributestatstgstreamstreamingcontextstreamingcontextstatesstreamreaderstreamwriterstringstringbuilderstringcomparerstringcomparisonstringfreezingattributestringinfostringreaderstringsplitoptionsstringtobstrstringtocotaskmemansistringtocotaskmemautostringtocotaskmemunistringtohglobalansistringtohglobalautostringtohglobalunistringtohstringstringtokenstringwriterstrongnamestrongnameidentitypermissionstrongnameidentitypermissionattributestrongnamekeypairstrongnamemembershipconditionstrongnamepublickeyblobstructlayoutattributestructuralcomparisonsstructuretoptrstubhelperssuppressfinalizesuppressildasmattributesuppressmessageattributesuppressunmanagedcodesecurityattributesurrogateselectorsymaddresskindsymbolstoresymboltokensymdocumenttypesymlanguagetypesymlanguagevendorsymmetricalgorithmsynchronizationattributesynchronizationcontextsynchronizationlockexceptionsyskindsystemsystemaclsystemexceptiontaiwancalendartaiwanlunisolarcalendartantanhtargetedpatchingoptoutattributetargetexceptiontargetframeworkattributetargetinvocationexceptbiontargetparametercountexceptiontasktaskawaitertaskcanceledexceptiontaskcompletionsourcetaskcontinuationoptionstaskcreationoptionstaskfactorytaskstaskschedulertaskschedulerexceptiontaskstatustceadaptergentexttextelementenumeratortextinfotextreadertextwriterthaibuddhistcalendarthreadthreadabortexceptionthreadingthreadinterruptedexceptionthreadlocalthreadpoolthreadprioritythreadstartthreadstartexceptionthreadstatethreadstateexceptionthreadstaticattributethrowexceptionforhrtimeouttimeoutexceptiontimertimercallbacktimespantimespanstylestimezonetimezoneinfotimezonenotfoundexceptiontobase64chararraytobase64stringtobase64transformtobooleantobytetochartodatetimetodecimaltodoubletoint16toint32toint64tokenaccesslevelstokenimpersonationleveltosbytetosingletostringtouint16touint32touint64tracingtrackingservicestransitiontimetransportheaderstriggerfailuretripledestripledescryptoserviceprovidertrustmanagercontexttrustmanageruicontexttrycodetrystartnogcregiontupletypetypeaccessexceptiontypeattrtypeattributestypebuildertypecodetypedelegatortypedesctypedreferencetypeentrytypefiltertypefilterleveltypeflagstypeforwardedfromattributetypeforwardedtoattributetypeidentifierattributetypeinfotypeinitializationexceptiontypekindtypelibattrtypelibconvertertypelibexporterflagstypelibfuncattributetypelibfuncflagstypelibimportclassattributetypelibimporterflagstypelibtypeattributetypelibtypeflagstypelibvarattributetypelibvarflagstypelibversionattributetypeloadexceptiontypetokentypeunloadedexceptionucomibindctxucomiconnectionpointucomiconnectionpointcontainerucomienumconnectionpointsucomienumconnectionsucomienummonikerucomienumstringucomienumvariantucomimonikerucomipersistfileucomirunningobjecttableucomistreamucomitypecompucomitypeinfoucomitypelibuint16uint32uint64uintptruipermissionuipermissionattributeuipermissionclipboarduipermissionwindowultimateresourcefallbacklocationumalquracalendarunauthorizedaccessexceptionunhandledexceptioneventargsunhandledexceptioneventhandlerunicodecategoryunicodeencodingunioncodegroupunknownwrapperunmanagedfuncticonpointerattributeunmanagedmarshalunmanagedmemoryaccessorunmanagedmemorystreamunmanagedtypeunmarshalunobservedtaskexceptioneventargsunsafeaddrofpinnedarrayelementunsafequeuenativeoverlappedunsafequeueuserworkitemunsaferegisterwaitforsingleobjectunsafevaluetypeattributeunverifiablecodeattributeurlurlattributeurlidentitypermissionurlidentitypermissionattributeurlmembershipconditionutf32encodingutf7encodingutf8encodingutilvalueatreturnvaluecollectionvaluetypevardescvarenumvarflagsvariantwrappervarkindverificationexceptionversionversioningversioninghelpervoidvolatilew3cxsd2001waitwaitcallbackwaitforfullgcapproachwaitforfullgccompletewaitforpendingfinalizerswaithandlewaithandlecannotbeopenedexceptionwaithandleextensionswaitortimercallbackweakreferencewellknownclienttypeentrywellknownobjectmodewellknownservicetypeentrywellknownsidtypewin32windowsaccounttypewindowsbuiltinrolewindowsidentitywindowsimpersonationcontextwindowsprincipalwindowsruntimewindowsruntimedesignercontextwindowsruntimemarshalwindowsruntimemetadatawritewriteallbyteswritealltextwritebytewriteint16writeint32writeint64writeintptrwritelinewriteonlyarrayattributex509certificatex509certificatesx509contenttypex509keystorageflagsxmlfieldorderoptionxmlsyntaxexceptionyieldawaitableyieldawaiterzerofreebstrzerofreecotaskmemansizerofreecotaskmemunicodezerofreeglobalallocansizerofreeglobalallocunicodezonezoneidentitypermissionzoneidentitypermissionattributezonemembershipconditiondI
#

#	*	--
	6:
?D
BWLg
O~Y�
e�
g�
l�
r�

w���
���������

���,�=�K�[
�h�x�����
��
��
���������
 �*
�4L
Yamtx~��
 � �#�	$�%�%�+
/9=+B.I@PVUdYp%\�!
a�k�k�
o�	s�v|%�7�E�_�s��'����
��������#�=�W�n ��������������	����!�0
�=�A
�K�S�o~��
���
)+0E3a;};�@�C�%H�H�M	MN6OOO[SlU}W�\�	\�"e�h	j	o5	oQ	pW	s]	vp	 {�	{�	|�	|�	
��	�

�
�)
�4
�N
�d
�z
�~
��
	��
��
��

��
	��
��
��
�
��/�F�e����
������������	����
����
��$�0	�9�@�K�Q�_�c
�m�u�����
�
��
�

 2
 C
 U
$m
$~
$�
%�
(�
)�
+1
2:+=;@CBRDVDdEkGzK�
O�S�U�X�[�
]�`�d�kp$t5w:zP
|]�r����������	e����
�������%�,�I�c�����������
��	��	���	�!�(�7�B�P�X
�b�x������������*�5�D�S�o��������
���� ��� �4�H
�U	�^�u��������������
�
"6FZl{��� �!�!�"�%�(*
-&".H1^5w8�8�>� ?�?�#?	"?+?J	@SCpC|C�	I�J�K�P�S�S�S�S�S�WXY4%[Y]o^�`�b�c�)d�d�h�hj l1m=oMq`
qmu}u�z�z�~�+�	�����1�O�k���������������+�7�E�S�_	�h�n������������� �$�@�Z�u�����������������5 �U	�^�e�|��$�����������

���"�*�B	�K!�l�|������
��������	��
����)�:!�[�o
�y������
������������	��5	�>�A�Y
�f�}����
��
�����
 + : O g �  � � 	� 	� 
� 
� 

� 
� !!0!5!
M!
h!l!w!�!
�!�!f�!�!�!""%"1"E"	N"\"k"w"�"�" �" �"$�"%�"%�"%�"%#	(#
*#
,'#
,4#,H#-S#-i#/�#/�#/�#/�#/�#/�#0�#	0�#	1�#
4$4$7.$9F$:[$;r$<�$=�$>�$	?�$	A�$A�$B�$E�$E%E%G % G@%GN%K^%Nv%N|%O�%O�%S�%S�%S�%V�%X�%X�%Y�%Y
&[&[%&	[.&[B&
\L&]P&
^Z&^h&
^u&a�&b�&c�&c�&c�&c�&f'f'g 'i5'i@'iL'	jU'
j_'js'l�'m�'n�'n�'n�'q�'q�'q(q!(q5(qC(qH(qS(qY(sh(uy(z�(	{�(|�(|�(
}�(�(��(��(
�)�)�)�-)�=)�P)�g)�k)�s)	�|)��)��)��)��)��)��)��)��)��)�*
�+*�?*
�I*�\*�q*�x*
��*
��*��*��*��*��*��*�+�%+�4+�S+
�`+�s+�z+��+��+!��+��+��+��+�,�,�(,�:,�M,�j,��,��,
��,��,��,��,��,�-�-
�)-�4-�Q-
�^-�i-�u-��-��-��-��-��-��-�.�#.�4.�H.�Y.�i.�|.��.��.$��.
��.��.
��.�/
�/�7/
�D/�X/�q/��/��/��/��/��/!��/"�0!�'0"�I0�a0�p0��0��0��0��0��0��0��0��0�1�'1�=1�P1�l1�{1 ��1��1��1��1��1��1�2�2�*2�52�D2�R2�k2�y2��2��2��2��2$��2��23
3g-3C3G3
T3.�3	�3�3�3
�3�3�3	�3�3
�34
444
,4
44

>4

H4
R4f4�4�4�4�4�4�4�45
5$5<5G5S5e5m55�5�5�5�5!�5#�5#�5#�5#6#)6%=6%Y6%x6
&�6(�6(�6	(�6(�6*�6*�6+�6,7,)7.97.R7.n7.�7.�7.�7.�71�72�72�7282#82;82I82Y82i82~82�83�83�84�84�85�8898-98C99T9:_9:f9:m9
<w9>�9>�9@�9@�9@�9A�9A�9C�9C�9
D:D:
D:D-:D5:
E?:GN:HZ:
Id:Iw:M�:	M�:N�:N�:N�:O�:O�:O�:P�:P
;P;P!;P-;P?;PM;Qa;Ti;
Uv;V�;W�;W�;	W�;X�;X�;X�;X<Y<Y/<#ZR<Zm<Zr<[w<\|<\�<&\�<\�<\�<\�<]�<_=!_,=`B=`Z=
`d=
an=b�=b�=c�=d�=e�=e�=g>g>g7>gN>hf>	ho>
iy>k{>
k�>k�>k�>	k�>m�>m�>o�>p�>
p�>p?	p?p#?p6?
pC?qK?q[?qp?s�?s�?s�?s�?s�?s�?s�?s@t@	v@w'@w.@w?@	wH@wY@yp@{�@|�@	}�@
�@��@��@��@�A�"A�>A�]A�mA��A	��A��A��A��A��A��A��A��A�B�B�5B�HB�eB&��B��B��B"��B��B�C�-C	�6C�>C�FC�NC�kC��C
��C��C��C��C��C��C��C��C
�D�D
�)D�h7D�FD�[D
�hD�xD
��D��D��D
��D��D��D��D��D�E	�
E	�E
� E�(E	�1E�BE�^E�xE��E��E��E��E��E�F�F	�F
�&F�<F!�]F+��F+��F��F��F��F�G�"G	�+G�3G�?G�GG�UG�lG�qG
�{G�G��G��G��G
��G��G��G��G��G��G�H�H�3H�LH�XH�jH�{H
��H��H��H��H��H��H��H��H&�
I�I�&I�6I�JI�QI�cI�uI��I��I��I��I��I��I��I��I
��I��I
�J�J�J�5J	�>J�FJ�[J�kJ
�uJ
�J
��J
��J��J��J��J��J��J
��J�
K�K�2K�=K	�FK�VK�YK�`K�uK ��K��K��K!��K��K
��K�L�L�!L�%L�3L�EL�VL�tL�yL��L��L��L
��L��L��L��L�M�M� M!�AM�RM�hM�yM��M��M��M	��M��M��M��M�N
�
N�'N�;N�AN�QN	�ZN�hN�wN��N��N��N��N
��N��N��N��N��N�O�O�5O�DO�YO�oO�uO�|O
��O��O��O��O��O��O��O�P�P�&P
�0P�;P�FP�NP�`P�qP��P��P	��P��P��P
��P��P��P�Q	�Q�'Q�2Q�EQ�IQ�]Q�hQ��Q��Q
��Q��Q��Q��Q��Q
��Q�
R�R�R�)R�8R�CR�RR�aR�yR��R��R��R	��R��R
��R��R��R�S� S
�-S�FS�ZS�yS	��S��S��S��S��S��S�T�T�'T�/T�?T�QT�`Ti�lT
�yT��T��T��T��T��T��T��T��T	��T�
U$�1U�MU�RU�ZU
�gU�sU��U��U��U��U��U��U
��U��U��U��U�
V�V�V(V0V@V	IV	RV	[V
eVlV�V�V�V�V�V�V�V	�V	W
	W	-W	AW	^W	vW	�W
	�W	�W	�W	�W	X	X	9X	UX	mX
�X
�X
�X
�X
�X�X�X�XYY0YKY
YYiYzY�Y�Y�Y�Y�Y�Y�Y�Y
ZZ6ZNZTZjZ|Z�Z�Z�Z�Z
�Z�Z�Z[
[$[7[I[e[~[�[�[�[	�[
�[�[�[�[�[
�[\#\+\:\R\	[\k\�\�\�\�\�\�\�\]
]2]N]j]�]�]�]�]�]�]�]^^,^G^X^o^�^�^�^
�^�^
�^�^_!)_;_U_c_!�_
�_�_�_�_�_�_�_�_`8` X```n``�`�`�`�`�`�`a
aa1aLabaxa�a�a
�a �a �a �a
 �a b"!b
".b"@b"Ub
"bb"ub"�b#�b#�b#�b#�b#�b#c#c##c#+c#;c
#Hc
#Uc#\c#lc#~c#�c#�c#�c#�c#�c#�c#�c
#�c
#d#d$"d$0d$Ad$Id#%ld%}d
%�d%�d&�d&�d&�d
'�d(�d
)�d*�d
*�d*�d-e.e. e/#e0)e0-e0=e0Ae0We0vej0�e0�e
0�e
0�e0�e0�e0�e0�e0�e1�e
1�e	1f2f
2f2%f	2.f
28f2Cf2Of2Zf2mf	2vf2�f2�f
2�f2�f3�f3�f4�f4�f4�f4
g
4g4*g4=g	4Fg4Rg4Zg	4cg4tg4|g
4�g
4�g4�g4�g
4�g4�g4�g4�g4�g4�g4�g5h
5
h5 h
5*h56h5Kh5]h5dh6jh6zh6�h6�h6�h6�h
6�h6�h6�h7�h
7�h7i7i7$i79i7Ni7bi7ui7�i7�i7�i7�i7�i
7�i7�i%7j7j79j7Pj7ej8zj8�j8�j8�j8�j8�j&8�j8	k8k8"k8-k9<k9Kk9\k9nk9�k9�k9�k9�k9�k	9�k9�k9�k9l9l9	l9(l97l9Ol9hl9�l9�l9�l:�l:�l:�l:�l:�l:�l
:m:m
:$m
:1m:5m:Jm:Rm
:\m
:fm:zm:�m:�m	:�m:�m;�m
;�m;�m;�m;�m;n;n;-n<@n<Gn<Wn<\n
<in<qn<n<�n<�n<�n<�n<�n<�n	=�n=�n=�n
=�n	=o=o=o>o?!o?2o?Io?Po?Xo?`o?ho@poAxoAoA�oA�oA�oA�o	A�oA�oA�oA
pApB#pB(pB,pB?pCGpCUpC`pChp
CupC}pC�p	C�p
C�pC�p	C�pC�pC�pC�pCqC"qC*qC5qCEqCYqDmqD}qD�qD�qD�qD�qD�qD�qD	rDr	D#rD8rDDrDXrDurD�rD�rD�rD�rD�rD�rD�rDsDs
Ds
D)sD5sD;sEAsFGsFNsFZsFosF�sF�s F�sF�sF�sF�sFtF)tkF8tFFtFTt!FutF�tF�tF�t
F�t	F�t F�tFuF uF7u!FXuFpuF�uF�uF�uF�uF�uF�u
F�uF�uGvG
v
GvG&v	G/vG6vG=vGEvGSvGZvGovGvv
G�vG�vG�vG�v
G�vG�vG�vG�vG�vG�v
Gw!G#wG7wGJw
GWwGowG�wG�wG�wG�wG�wG�wG�wG�wGxGxG9xGNxGdxGix
GvxG�x	G�x
G�x
G�x
H�xH�x	H�xH�xH�xH�xHyHyH(yH:yHHyHTyH`yHuyH�yH�yH�yH�yH�yH�yHH

		 #'/1259ABK!NSX\ak��� [#a%p'�$	*�
�d	��
Hb����	�
3
DL
��	�6
Y	l&Mh�.3
y�[��4
�%0W�����r/
	
"4ce
���Q�-	��
Q�
^	}�
d�
S	
!,��6P

+���	NRe,��
��}V	G
(	<�jR
�
����5[���
l�	|:�	���
?8
;|���
	�'Si0��`g��@
Y	K��
_
�=`
��`$
)>
CVins�:B�F	EP��
���R�U�
�
�=OQ
�D �-�=�-0���Z��	7f�
ma�	95.��	h
��	q�>��$
	�R[u����o
T�	��_�	�X��
�Z�Gl
}��7AC�k��>B
?Jt�
�F���Y	l]�
�
6nw���
�;V�
���Iv �7�HI���#�g�	�
	"
���	��� /2i&��
��
�9gq�����
�8|Z1E�
�<	�	!��~�i�T�pUmpz����

�*x)�\�@�����
ADy�
F�

c����o�
��*B}t��2<	���V	jw�#t�B�w�
G��
���
�
b��q�	�
UJ��R��z�\��F�z�+������J�4qo�x	{��m�B
����j�)���rw��>�rL
�C���)qX
~�g��
�x�A���?F,�&
tc
mw�����
X�������b|��]��{��"T�*�P�������,����'�

�eM	�
'n
���k3�����(
{�	�
$����	D��U��#�7��(
e�Ww��+v�	�+,E�
�lJ�C���	�!���
<�
��"��
�	�	�	��_
��
�	�%���	�
��da		
%u���
H���r�	J�
�O��1
-�	&���
�4
��
�6���
������?��C�
c��^�
�{�
�;����pDy5<K��	
t&u"�
� (��J
��[_�m
N��	�-	��
L��n�	�8h
%
�	��o�
�
�`|
!LI��.��
�	�	
�� ���O��D
�j
�
+G03G���W�O�>	��	M6
�	�%a	�
e�����UvzC
M
���S
#��l
�\`>���A\
8�n�
��	q�
����
�F�����;��k�A���AW�]!�?Sb��
�
Q��
h\�
.��y@��	�*� "o��	/z
[	4=���L�	5	I
�~
�V2��H�=�~�
>�{��X<����)c/�'���F���GC
��
Ldf
s�����	]�'��	v���W�	�
�s��M�<!
�d� �"N�,-p�K
;��

��4���
�s
�
k&	9	8��
�{��
�	�!6�H�0p4�1�,Q|
�
d
�	^
?��
�

��
�	
h�-"�(3
qv��8�E��,�����%	�
��f�����
7
�"a!9������	����	:u
�
�	$
=�N
�+K�GLx	
7�
�v�
2�9Oy��
�	^1m�r	^��g�Y��
>��9E	In���s��*�N:
	Y
@u��
�
f�a
�_
�h��O
I��K�
�	�~m	�
�Y����81-�@	�����
�'
H�l
]
Z���h	�
&s���j�
��
u$�
~9X��b��	�
��!T
fZ�6���<���.dr��	���
��p
]�
^	�;����	����
��#	�biB	�7��/���)�
Y��
?���
�PV��	�V(��
���
��
5���
�%���Q�
�5��
��0��J�
T���
1
k	^
�S0��+��
2W
�*��
=�
�x�6��o�

�@�PNe	������	�
3��?�;Iy:c���K�n
�iD���X
��( ����fo
`+�
�	�GM	$3�TF
j/�
�	���x���v��;�t{��
D�
2_��	��
:��	�
�
��
T	Z	
�z�k
2@�Ei3�	��H	}����W��s��}��$)*
0	�
7�
z�����U�	��
��\	.)y

���1}�.�g:��Q
5�.���E
$M�u�x	b
�f�H(
��%
:�[

���_��#	�	'
E�
�&]`lw�	�~�	 
c�
�
C��
�
R�S�	���
��

|Pj�
P�eB	R���t�
��rA�
U8 ����/Z�@�
		�
g�
O
�
�m
�#������
=���4
XXL�	��<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj�	3��6��W�̈́p[wyP��lfstatementmergeprogram��8���r<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\mscorlib.dll�	3$)���S���H)iy�hW��|_activator_appdomain_assembly_assemblybuilder_assemblyname_attribute_constructorbuilder_constructorinfo_customattributebuilder_enumbuilder_eventbuilder_eventinfo_exception_fieldbuilder_fieldinfo_ilgenerator_localbuilder_memberinfo_methodbase_methodbuilder_methodinfo_methodrental_module_modulebuilder_parameterbuilder_parameterinfo_propertybuilder_propertyinfo_signaturehelper_thread_type_typebuilderabandonedmutexexceptionabsaccesscontrolaccesscontrolactionsaccesscontrolmodificationaccesscontrolsectionsaccesscontroltypeaccessedthroughpropertyattributeaccessruleaccessviolationexceptionaceenumeratoraceflagsacequalifieracetypeacosactionactivatedclienttypeentryactivatedservicetypeentryactivationactivationargumentsactivationcontextactivatoractivatorleveladdaddeventhandleraddmemorypressureaddrefadjustmentruleaesaggregateexceptionallmembershipconditionalloccotaskmemallochglobalallowpartiallytrustedcallersattributeallowreversepinvokecallsattributeambiguousmatchexceptionapartmentstateappcontextappdomainappdomaininitializerappdomainmanagerappdomainmanagerinitializationoptionsappdomainsetupappdomainunloadedexceptionapplicationactivatorapplicationdT
]]� �
�B<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll�	17�K�j�Ì/���	��� o2�MSInternalXmlLinqComponentModelSystemXmlLinqXNameXNamespaceXObjectXObjectChangeXObjectChangeEventArgsXNodeXNodeDocumentOrderComparerXNodeEqualityComparerXTextXCDataXContainerXElementLoadOptionsSaveOptionsReaderOptionsXDocumentXCommentXProcessingInstructionXDeclarationXDocumentTypeXAttributeXStreamingElementExtensionsAttributesAncestorsAncestorsAndSelfNodesDescendantNodesDescendantsDescendantNodesAndSelfDescendantsAndSelfElementsInDocumentOrderRemoveXPathExtensionsCreateNavigatorXPathEvaluateXPathSelectElementXPathSelectElementsSchemaExtensionsGetSchemaInfoValidateIXmlLineInfoSerializationIXmlSerializableObjectIEquatableRuntimeSerializationISerializableEnumEventArgsCollectionsIComparerGenericIComparerIEqualityComparerE����H	Q>
�*�f�u���*�	*4

'�
>�%
�	�	��i
*� �
(:5S)
4(5�ac*�
�s*�5z
%F
52
���
�	
�
%*,1
ej�;B
O�5�
��#�
"
67;9:0C66;<&#
=;8,9:8D/.B2D-/313qaImporterExtensionCollectionConfigurationDateTimeSerializationSectionDateTimeSerializationModeSchemaImporterExtensionElementSchemaImporterExtensionElementCollectionSchemaImporterExtensionsSectionSerializationSectionGroupXmlSerializerSectionRootedPathValidatorCodeExporterCodeGenerationOptionsCodeIdentifierCodeIdentifiersImportContextIXmlSerializableIXmlTextParserSchemaImporterSoapAttributeAttributeSoapAttributeOverridesSoapAttributesSoapCodeExporterSoapElementAttributeSoapEnumAttributeSoapIgnoreAttributeSoapIncludeAttributeSoapReflectionImporterSoapSchemaExporterSoapSchemaImporterSoapSchemaMemberSoapTypeAttributeXmlAnyAttributeAttributeXmlAnyElementAttributeXmlAnyElementAttributesXmlArrayAttributeXmlArrayItemAttributeXmlArrayItemAttributesXmlAttributeAttributeXmlAttributeOverridesXmlAttributesXmlChoiceIdentifierAttributeXmlCodeExporterXmlElementAttributeXmlElementAttributesXmlEnumAttributeXmlIgnoreAttributeXmlIncludeAttributeXmlMappingAccessXmlMappingXmlMemberMappingXmlMembersMappingXmlNamespaceDeclarationsAttributeXmlReflectionImporterXmlReflectionMemberXmlRootAttributeXmlSchemaExporterXmlSchemaImporterXmlSchemaProviderAttributeXmlSchemasXmlSchemaEnumeratorXmlSerializationGeneratedCodeXmlSerializationReaderXmlSerializationFixupCallbackXmlSerializationCollectionFixupCallbackXmlSerializationReadCallbackXmlSerializationWriterXmlSerializationWriteCallbackXmlSerializerAssemblyAttributeXmlDeserializationEventsXmlSerializerImplementationXmlSerializerXmlSerializerFactoryXmlSerializerNamespacesXmlSerializerVersionAttributeXmlTextAttributeXmlTypeAttributeXmlTypeMappingXmlAttributeEventHandlerXmlAttributeEventArgsXmlElementEventHandlerXmlElementEventArgsXmlNodeEventHandlerXmlNodeEventArgsUnreferencedObjectEventHandlerUnreferencedObjectEventArgsXmlNamedNodeMapIApplicationResourceStreamResolverIHasXmlNodeIXmlLineInfoIXmlNamespaceResolverXmlNameTableNameTableXmlDateTimeSerializationModeXmlConvertXmlExceptionXmlNamespaceManagerXmlNamespaceScopeXmlNodeOrderXmlNodeTypeXmlResolverXmlQualifiedNameXmlSecureResolverXmlUrlResolverXmlXapResolverConformanceLevelDtdProcessingEntityHandlingXmlWriterNamespaceHandlingNewLineHandlingReadStateValidationTypeWhitespaceHandlingXmlReaderXmlParserContextXmlReaderSettingsXmlSpaceXmlTextReaderFormattingXmlTextWriterXmlValidatingReaderWriteStateXmlOutputMethodXmlWriterSettingsXmlNodeXmlAttributeXmlAttributeCollectionXmlLinkedNodeXmlCharacterDataXmlCDataSectionXmlNodeListXmlCommentXmlDeclarationXmlDocumentXmlDocumentFragmentXmlDocumentTypeXmlElementXmlEntityXmlEntityReferenceXmlNodeChangedActionXmlImplementationXmlNodeChangedEventArgsXmlNodeChangedEventHandlerXmlNodeReaderXmlNotationXmlProcessingInstructionXmlSignificantWhitespaceXmlTextXmlWhitespaceXmlTokenizedTypeObjectCollectionsIEnumerableICollectionIEnumeratorCollectionBaseGenericIEnumerableIEnumeratorEnumSystemExceptionIDisposableICloneableEventArgsMulticastDelegateAttributeValueTypeMSInternalXmlCacheXPathMicrosoftWin323����o	?�	N�Y�
?�
?�
?�
?k	?N�	
?
N';Yr�Z�	�	
�
Z�Z�N�	NY
Zy	�"Z�
NU	�NJ	�`	��Z�

?R��/�Z�Z�8�
?�
?�	(	(	��N�Z�	Z�Z9N�	Ze	Z�

�Z�
?w	�	!�	

(
7

b	
ZV


?#?9?G?W?k?|?�?�?�?�?�?�?�N[?=?�8�8�Z�	NZ
.�
Z�%�N�??,?C?T?i?�8�Z?�Z�?�?�?�
?�Z�Z�?�?

Z|Z
Z�ZZ?%Z0ZCZR
Z�?�??�?\	ZeZ
?Z
?�Z*
?n6�
ZM

?=
?W
?g
?vZx
!?Z-Z�Z�ZwZ�Z�Z-??Z>Z�
ZJZ�Z�Z#Zz6�Z`Z	Z�o3Z�
?�
?UZ�
?	8P88\8o8{8�8�8�8�8�8�88�878^ 8~"8�8N8"8�8�8�8�8�888�8?.8�
?@8Q8�
8e8�8>8�8�88�
?'8@8a87
8�8	8t8828�8�8�8�8D8_88U8n8�8-8�8�
?�8

?�8�8�8�8!8;8N8h88�8L8�
8�8�8�8�888�8�8pZz'?]?*?�?G?�?�?A
?�?N?&?b?o

y?&8�ZDZZ�?L
Zc
Z)Z�?58�?�ZpZ�8
Z�	Z�Z�Z�Y�Z�
�6�	E��X
'�Z�(�(6	(�o�()	
(�(�"(J	(V	(249��p��������������������"%!)*12#9BCIJLgh�������:���d��%��2'r���135TV
X����������
$iq'#&��O�� .'��$��������&�a$%+�$�b�uv}��dd��kswx~�kjn�R/e{�P0�S0���f|�Q"a$������������������������������� �������������������������������������(��]`z�;��������,>�-.+AEFGHM[\^_cly�����	Dm9K����Ut<
=@7
���)���\<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll�	17�l���[�&<y�zO$z�*SystemConfigurationConfigurationSectionConfigurationElementConfigurationElementCollectionConfigurationSectionGroupConfigurationValidatorBaseXmlSchemaIXmlSchemaInfoXmlSchemaDatatypeVarietyXmlSchemaDatatypeValidationEventArgsValidationEventHandlerXmlAtomicValueXmlSchemaObjectXmlSchemaXmlSchemaAnnotatedXmlSchemaParticleXmlSchemaGroupBaseXmlSchemaAllXmlSchemaAnnotationXmlSchemaAnyXmlSchemaAnyAttributeXmlSchemaAppInfoXmlSchemaAttributeXmlSchemaAttributeGroupXmlSchemaAttributeGroupRefXmlSchemaChoiceXmlSchemaCollectionXmlSchemaCollectionEnumeratorXmlSchemaContentModelXmlSchemaComplexContentXmlSchemaContentXmlSchemaComplexContentExtensionXmlSchemaComplexContentRestrictionXmlSchemaTypeXmlSchemaComplexTypeXmlSchemaContentProcessingXmlSchemaContentTypeXmlSchemaDerivationMethodXmlSchemaDocumentationXmlSchemaElementXmlSchemaExceptionXmlSchemaExternalXmlSchemaFacetXmlSchemaNumericFacetXmlSchemaLengthFacetXmlSchemaMinLengthFacetXmlSchemaMaxLengthFacetXmlSchemaPatternFacetXmlSchemaEnumerationFacetXmlSchemaMinExclusiveFacetXmlSchemaMinInclusiveFacetXmlSchemaMaxExclusiveFacetXmlSchemaMaxInclusiveFacetXmlSchemaTotalDigitsFacetXmlSchemaFractionDigitsFacetXmlSchemaWhiteSpaceFacetXmlSchemaFormXmlSchemaGroupXmlSchemaGroupRefXmlSchemaIdentityConstraintXmlSchemaXPathXmlSchemaUniqueXmlSchemaKeyXmlSchemaKeyrefXmlSchemaImportXmlSchemaIncludeXmlSchemaInfoXmlSchemaNotationXmlSchemaObjectCollectionXmlSchemaObjectEnumeratorXmlSchemaObjectTableXmlSchemaRedefineXmlSchemaSequenceXmlSchemaSetXmlSchemaCompilationSettingsXmlSchemaSimpleContentXmlSchemaSimpleContentExtensionXmlSchemaSimpleContentRestrictionXmlSchemaSimpleTypeXmlSchemaSimpleTypeContentXmlSchemaSimpleTypeListXmlSchemaSimpleTypeRestrictionXmlSchemaSimpleTypeUnionXmlSchemaUseXmlSchemaValidationExceptionXmlValueGetterXmlSchemaValidationFlagsXmlSchemaValidatorXmlSchemaValidityXmlSeverityTypeXmlTypeCodeXmlSchemaInferenceInferenceOptionXmlSchemaInferenceExceptionXmlConfigurationXmlReaderSectionXsltConfigSectionXPathXPathItemIXPathNavigableXPathNavigatorXPathNodeIteratorXPathDocumentXPathExceptionXmlSortOrderXmlCaseOrderXmlDataTypeXPathResultTypeXPathExpressionXPathNamespaceScopeXPathNodeTypeResolversXmlKnownDtdsXmlPreloadedResolverXslXsltContextXslCompiledTransformXsltMessageEncounteredEventArgsXsltMessageEncounteredEventHandlerXsltArgumentListIXsltContextFunctionIXsltContextVariableXsltExceptionXsltCompileExceptionXslTransformXsltSettingsSerializationAdvancedSchemaImporterExtensionSchemp
���,��R<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll�	3�K�j�Ì/���	��� o2�ancestorsancestorsandselfattributescollectionscomponentmodelcreatenavigatordescendantnodesdescendantnodesandselfdescendantsdescendantsandselfelementsenumeventargsextensionsgenericgetschemainfoicompareriequalitycompareriequatableindocumentorderinternaliserializableixmllineinfoixmlserializablelinqloadoptionsmsnodesobjectreaderoptionsremoveruntimesaveoptionsschemaserializationsystemvalidatexattributexcdataxcommentxcontainerxdeclarationxdocumentxdocumenttypexelementxmlxnamexnamespacexnodexnodedocumentordercomparerxnodeequalitycomparerxobjectxobjectchangexobjectchangeeventargsxpathxpathevaluatexpathselectelementxpathselectelementsxprocessinginstructionxstreamingelementxtext=	
	

#.<KZp {"�$�$�	*�
+�+�
,�	,�,�
,�0�1�
111$2(43454:6@
7M7S7Z7e7k
7x8~9�
9�9�9�
:�:�	:�
:�:�:�:�
:�:�::;
;,;B;G
;T;f<y<�<�<<
		
12

	$
	 
#
4
"
)+:
!;',.
6	(
*8	%-/0<7&359ubcPermissionAttributeOdbcRowUpdatingEventHandlerOdbcRowUpdatedEventHandlerOdbcRowUpdatingEventArgsOdbcRowUpdatedEventArgsOdbcTransactionOdbcTypeOleDbOleDbCommandOleDbCommandBuilderOleDbConnectionOleDbConnectionStringBuilderOleDbDataAdapterOleDbDataReaderOleDbEnumeratorOleDbErrorOleDbErrorCollectionOleDbExceptionOleDbFactoryOleDbInfoMessageEventArgsOleDbInfoMessageEventHandlerOleDbLiteralOleDbMetaDataCollectionNamesOleDbMetaDataColumnNamesOleDbParameterOleDbParameterCollectionOleDbPermissionOleDbPermissionAttributeOleDbRowUpdatedEventArgsOleDbRowUpdatedEventHandlerOleDbRowUpdatingEventArgsOleDbRowUpdatingEventHandlerOleDbSchemaGuidOleDbTransactionOleDbTypeSqlClientApplicationIntentSqlCredentialOnChangeEventHandlerSqlRowsCopiedEventArgsSqlRowsCopiedEventHandlerSqlBulkCopySqlBulkCopyColumnMappingSqlBulkCopyColumnMappingCollectionSqlBulkCopyOptionsSqlClientFactorySqlClientMetaDataCollectionNamesSqlClientPermissionSqlClientPermissionAttributeSqlCommandSqlCommandBuilderSqlConnectionSQLDebuggingSqlConnectionStringBuilderSqlDataAdapterSqlDataReaderSqlDependencySqlErrorSqlErrorCollectionSqlExceptionSqlInfoMessageEventArgsSqlInfoMessageEventHandlerSqlNotificationEventArgsSqlNotificationInfoSqlNotificationSourceSqlNotificationTypeSqlParameterSqlParameterCollectionSqlRowUpdatedEventArgsSqlRowUpdatedEventHandlerSqlRowUpdatingEventArgsSqlRowUpdatingEventHandlerSqlTransactionSortOrderISQLDebugSqlTypesINullableSqlBinarySqlBooleanSqlByteSqlBytesSqlCharsSqlDateTimeSqlDecimalSqlDoubleSqlFileStreamSqlGuidSqlInt16SqlInt32SqlInt64SqlMoneySqlSingleSqlCompareOptionsSqlStringSqlTypesSchemaImporterExtensionHelperTypeCharSchemaImporterExtensionTypeNCharSchemaImporterExtensionTypeVarCharSchemaImporterExtensionTypeNVarCharSchemaImporterExtensionTypeTextSchemaImporterExtensionTypeNTextSchemaImporterExtensionTypeVarBinarySchemaImporterExtensionTypeBinarySchemaImporterExtensionTypeVarImageSchemaImporterExtensionTypeDecimalSchemaImporterExtensionTypeNumericSchemaImporterExtensionTypeBigIntSchemaImporterExtensionTypeIntSchemaImporterExtensionTypeSmallIntSchemaImporterExtensionTypeTinyIntSchemaImporterExtensionTypeBitSchemaImporterExtensionTypeFloatSchemaImporterExtensionTypeRealSchemaImporterExtensionTypeDateTimeSchemaImporterExtensionTypeSmallDateTimeSchemaImporterExtensionTypeMoneySchemaImporterExtensionTypeSmallMoneySchemaImporterExtensionTypeUniqueIdentifierSchemaImporterExtensionStorageStateSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionSqlNotFilledExceptionSqlAlreadyFilledExceptionSqlXmlSqlSqlDataSourceEnumeratorSqlNotificationRequestIDataRecordAcceptRejectRuleInternalDataCollectionBaseTypedDataSetGeneratorDataExceptionStrongTypingExceptionTypedDataSetGeneratorExceptionCommandBehaviorCommandTypeIDataAdapterIColumnMappingIColumnMappingCollectionITableMappingITableMappingCollectionIDbCommandIDbConnectionIDbDataAdapterKeyRestrictionBehaviorIDataReaderIDataParameterIDbDataParameterIDataParameterCollectionIDbTransactionConflictOptionConnectionStateConstraintConstraintCollectionDataColumnDataColumnChangeEventArgsDataColumnChangeEventHandlerDataColumnCollectionConstraintExceptionDeletedRowInaccessibleExceptionDuplicateNameExceptionInRowChangingEventExceptionInvalidConstraintExceptionMissingPrimaryKeyExceptionNoNullAllowedExceptionReadOnlyExceptionRowNotInTableExceptionVersionNotFoundExceptionDataRelationDataRelationCollectionDataRowDataRowBuilderDataRowActionDataRowChangeEventArgsDataRowChangeEventHandlerDataRowCollectionDataRowStateDataRowVersionDataRowViewSerializationFormatDataSetDataSetSchemaImporterExtensionDataSetDateTimeDataSysDescriptionAttributeDataTableDataTableClearEventArgsDataTableClearEventHandlerDataTableCollectionDataTableNewRowEventArgsDataTableNewRowEventHandlerDataTableReaderDataViewDataViewManagerDataViewRowStateDataViewSettingDataViewSettingCollectionDBConcurrencyExceptionDbTypeFillErrorEventArgsFillErrorEventHandlerInvalidExpressionExceptionEvaluateExceptionSyntaxErrorExceptionForeignKeyConstraintIsolationLevelLoadOptionMappingTypeMergeFailedEventArgsMergeFailedEventHandlerMissingMappingActionMissingSchemaActionPropertyvAttributesOperationAbortedExceptionParameterDirectionPropertyCollectionStatementCompletedEventArgsStatementCompletedEventHandlerRuleSchemaSerializationModeSchemaTypeSqlDbTypeStateChangeEventArgsStateChangeEventHandlerStatementTypeUniqueConstraintUpdateRowSourceUpdateStatusXmlReadModeXmlWriteModeXmlXmlDataDocumentSerializationIXmlSerializableAdvancedSchemaImporterExtensionXmlDocumentEnumObjectCollectionsICollectionIEnumerableIListHashtableIDictionaryIEnumeratorCollectionBaseSystemExceptionIDisposableComponentModelMarshalByValueComponentICustomTypeDescriptorIEditableObjectIDataErrorInfoINotifyPropertyChangedIListSourceISupportInitializeNotificationISupportInitializeDescriptionAttributeIBindingListViewIBindingListITypedListComponentEventArgsMulticastDelegateRuntimeSerializationISerializableInteropServicesExternalExceptionMarshalByRefObjectICloneableSecurityCodeAccessPermissionPermissionsIUnrestrictedPermissionCodeAccessSecurityAttributeAttributeIServiceProviderValueTypeIComparableIOStreamMicrosoftSqlServerServerSqlContextSqlDataRecordSqlPipeSqlTriggerContextIBinarySerializeInvalidUdtExceptionSqlFacetAttributeDataAccessKindSystemDataAccessKindSqlFunctionAttributeSqlMetaDataSqlMethodAttributeSqlProcedureAttributeSqlTriggerAttributeSqlUserDefinedAggregateAttributeFormatSqlUserDefinedTypeAttributeTriggerActionl����d����	E9o����	�E��3�	E
E���
�%/Ep�H�
��Sd]
3H
:Uk�������	%<V�i��������	�����
�)5KW��bm���'��'
8�W�EW�	E:�(|��		<���]
E�	���E*�NSqH


$a�.�	�E?�	�	�	r\m.+��		6�=L��E
��E��		��}�
��
��T�2�
�KE���	����E��E��������'�6�D	�M�`
�m���x������
�����s�A�[�&������������������
�(�<�J�V�o���������������0�K�d������	���0��B���<O�
El�ct�
gE
�G
g�.x		��
�
6�		6�	
6��5"�W��	6�	6�	6�	i�y ������
��� 
6�
���

��
��$
�
��
��	6�	���	
61
��		6>�F�X�_��	
6���	6d�{��	6�	6
6����
6�
6�����
������
6����$�������
	� 	�9	�P	��	�
	61
	6j	���+��
6v
6�	:
%6� ���
6��To�
j
6��j�h~��E,
��!6F!6R6_
6�#6H�"6p 6�6� 6~
 6 6�"6�
#6�6�(6
#6
%6�
60"6?
+6"$6�
"6g#6��	E�5E8g�g)RW0
�"'(�+9S����������	?cdjk_vC����!"��@F^H�0�N!#):;@EFGMNOP��IJ�������������
��: &3e�g�n78;3@L��z�g�n78;3@DL��G>�5�
BOTV�����f�|g�n783Lxqrou<?DR���ksA��poDEmtK��$� &1�*.78Y$/4[�=;����(�%05\�><�������)+-j)@Ey)l)~)}*.�*.�����
/0:�*.7�*.7�*.���,7U-D6��c7b78�78�XD]b`�
<=?�23DKLRfd2A���������$g�2�3q<�r?�w@AsA��B�BCoD{GZHtK��$nLiMOQ'289uR<���=���?��@��A��H��P���K��$L��%B���C������,���*R��1����
e
���
/0������
/0:h
���
/0A7LT`W\U_JaPVIRZ]KQXMYS[^5#4�Fih
�I	��A��z<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll�	3�
UBK�&۷ji<���"6�~�bindercsharpcsharpargumentinfocsharpargumentinfoflagscsharpbinderflagsenumexceptionmicrosoftobjectruntimebinderruntimebinderexceptionruntimebinderinternalcompilerexceptionsystem


5FJ	S	\b
o�&�		
 �4��h<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll�	17�
UBK�&۷ji<���"6�~�MicrosoftCSharpRuntimeBinderBinderCSharpArgumentInfoCSharpArgumentInfoFlagsCSharpBinderFlagsRuntimeBinderExceptionRuntimeBinderInternalCompilerExceptionSystemObjectEnumException����
	"
4
K
�
�	
	�

\
r&
�	�$���P<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll�	17����������ނ�#[2�2SystemConfigurationIConfigurationSectionHandlerDataCommonCatalogLocationDataAdapterDataColumnMappingDataColumnMappingCollectionDataTableMappingDataTableMappingCollectionDbCommandDbCommandBuilderDbConnectionDbConnectionStringBuilderDbDataAdapterDBDataPermissionDBDataPermissionAttributeDbDataReaderDbDataRecordDbDataSourceEnumeratorDbEnumeratorDbExceptionDbParameterDbParameterCollectionDbProviderConfigurationHandlerDbProviderFactoriesDbProviderFactoriesConfigurationHandlerDbProviderFactoryDbProviderSpecificTypePropertyAttributeDbTransactionGroupByBehaviorIdentifierCaseRowUpdatedEventArgsRowUpdatingEventArgsSchemaTableColumnSchemaTableOptionalColumnSupportedJoinOperatorsDbMetaDataCollectionNamesDbMetaDataColumnNamesProviderBaseOdbcOdbcCommandOdbcCommandBuilderOdbcConnectionOdbcConnectionStringBuilderOdbcDataAdapterOdbcDataReaderOdbcErrorOdbcErrorCollectionOdbcExceptionOdbcFactoryOdbcInfoMessageEventHandlerOdbcInfoMessageEventArgsOdbcMetaDataCollectionNamesOdbcMetaDataColumnNamesOdbcParameterOdbcParameterCollectionOdbcPermissionOdt
���&�
�N<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll�	17!O�%��M�E�}ӣ���SystemNetHttpHeadersAuthenticationHeaderValueCacheControlHeaderValueContentDispositionHeaderValueContentRangeHeaderValueEntityTagHeaderValueHttpHeadersHttpContentHeadersHttpHeaderValueCollectionHttpRequestHeadersHttpResponseHeadersMediaTypeHeaderValueMediaTypeWithQualityHeaderValueNameValueHeaderValueNameValueWithParametersHeaderValueProductHeaderValueProductInfoHeaderValueRangeConditionHeaderValueRangeHeaderValueRangeItemHeaderValueRetryConditionHeaderValueStringWithQualityHeaderValueTransferCodingHeaderValueTransferCodingWithQualityHeaderValueViaHeaderValueWarningHeaderValueHttpContentByteArrayContentFormUrlEncodedContentMultipartContentMultipartFormDataContentHttpMessageHandlerHttpClientHandlerHttpCompletionOptionDelegatingHandlerHttpRequestExceptionHttpMessageInvokerHttpClientHttpMethodHttpRequestMessageHttpResponseMessageMessageProcessingHandlerStreamContentStringContentClientCertificateOptionObjectIDisposableCollectionsGenericIEnumerableICollectionIEnumerableEnumExceptionIEquatableICloneable<����R-x�7Da�x�7�	7b�
	,

��G�����
��!�3�
7�
�7��
�
7��Fw�."7�7Pbx���^
k
��$'5-	%*./012368:;!(45"(()
$'	%&*+./0123689:; %&*+89
���~��v<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll�	3!O�%��M�E�}ӣ���authenticationheadervaluebytearraycontentcachecontrolheadervalueclientcertificateoptioncollectionscontentdispositionheadervaluecontentrangeheadervaluedelegatinghandlerentitytagheadervalueenumexceptionformurlencodedcontentgenericheadershttphttpclienthttpclienthandlerhttpcompletionoptionhttpcontenthttpcontentheadershttpheadershttpheadervaluecollectionhttpmessagehandlerhttpmessageinvokerhttpmethodhttprequestexceptionhttprequestheadershttprequestmessagehttpresponseheadershttpresponsemessageicloneableicollectionidisposableienumerableiequatablemediatypeheadervaluemediatypewithqualityheadervaluemessageprocessinghandlermultipartcontentmultipartformdatacontentnamevalueheadervaluenamevaluewithparametersheadervaluenetobjectproductheadervalueproductinfoheadervaluerangeconditionheadervaluerangeheadervaluerangeitemheadervalueretryconditionheadervaluestreamcontentstringcontentstringwithqualityheadervaluesystemtransfercodingheadervaluetransfercodingwithqualityheadervalueviaheadervaluewarningheadervalue:)@Wb����	�'�*�*�+�
+�+
++)+;,F,_,q,�
-�-�-�0�0�0�
0�000
1 141S1k1{1�1�"4�4�5�5�5�67#878P
8]
8j8�8�8�$8�8�99
		
$(*-
/

237
	
#&).%+

 '!"	,685	0149{escendingTakeTakeWhileSkipSkipWhileGroupByDistinctConcatZipUnionIntersectExceptFirstFirstOrDefaultLastLastOrDefaultSingleSingleOrDefaultElementAtElementAtOrDefaultDefaultIfEmptyContainsReverseSequenceEqualAnyAllCountLongCountMinMaxSumAverageAggregateEnumerableWhereSelectSelectManyTakeTakeWhileSkipSkipWhileJoinGroupJoinOrderByOrderByDescendingThenByThenByDescendingGroupByConcatZipDistinctUnionIntersectExceptReverseSequenceEqualAsEnumerableToArrayToListToDictionaryToLookupDefaultIfEmptyOfTypeCastFirstFirstOrDefaultLastLastOrDefaultSingleSingleOrDefaultElementAtElementAtOrDefaultAnyAllCountLongCountContainsAggregateSumMinMaxAverageIOrderedEnumerableIGroupingILookupLookupParallelEnumerableAsParallelAsOrderedAsUnorderedAsSequentialWithDegreeOfParallelismWithCancellationWithExecutionModeWithMergeOptionsForAllWhereSelectZipJoinGroupJoinSelectManyOrderByOrderByDescendingThenByThenByDescendingGroupByAggregateCountLongCountSumMinMaxAverageAnyAllContainsTakeTakeWhileSkipSkipWhileConcatSequenceEqualDistinctUnionIntersectExceptAsEnumerableToArrayToListToDictionaryToLookupReverseOfTypeCastFirstFirstOrDefaultLastLastOrDefaultSingleSingleOrDefaultDefaultIfEmptyElementAtElementAtOrDefaultEnumerableQueryEnumerableExecutorParallelMergeOptionsParallelExecutionModeParallelQueryOrderedParallelQueryRuntimeCompilerServicesExecutionScopeDynamicAttributeCallSiteBinderCallSiteCallSiteHelpersCallSiteOpsCreateMatchmakerSetNotMatchedGetMatchClearMatchAddRuleUpdateRulesGetRulesGetRuleCacheMoveRuleGetCachedRulesBindRuntimeOpsExpandoTryGetValueExpandoTrySetValueExpandoTryDeleteValueExpandoCheckVersionExpandoPromoteClassQuoteMergeRuntimeVariablesCreateRuntimeVariablesIRuntimeVariablesRuleCacheClosureDebugInfoGeneratorReadOnlyCollectionBuilderIStrongBoxStrongBoxInteropServicesComAwareEventInfoSafeBufferSerializationISerializableIDeserializationCallbackSecurityCryptographyX509CertificatesAuthenticodeSignatureInformationTimestampInformationTrustStatusAesCryptoServiceProviderAesManagedCngAlgorithmCngAlgorithmGroupCngKeyHandleOpenOptionsCngKeyCngKeyBlobFormatCngKeyCreationParametersCngPropertyCngPropertyCollectionCngProviderCngUIPolicyECDiffieHellmanECDiffieHellmanPublicKeyECDiffieHellmanKeyDerivationFunctionECDiffieHellmanCngECDiffieHellmanCngPublicKeyECDsaECDsaCngECKeyXmlFormatManifestSignatureInformationManifestSignatureInformationCollectionMD5CngCngExportPoliciesCngKeyCreationOptionsCngKeyOpenOptionsCngKeyUsagesCngPropertyOptionsCngUIProtectionLevelsSHA1CngSHA256CngSHA256CryptoServiceProviderSHA384CngSHA384CryptoServiceProviderSHA512CngSHA512CryptoServiceProviderSignatureVerificationResultStrongNameSignatureInformationAesAsymmetricAlgorithmMD5SHA1SHA256SHA384SHA512ManifestKindsAccessControlAccessRuleAuditRuleNativeObjectSecurityObjectSecurityDynamicDynamicMetaObjectBinderBinaryOperationBinderBindingRestrictionsCallInfoConvertBinderCreateInstanceBinderDeleteIndexBinderDeleteMemberBinderDynamicMetaObjectIDynamicMetaObjectProviderDynamicObjectGetMemberBinderExpandoObjectGetIndexBinderIInvokeOnGetBinderInvokeBinderInvokeMemberBinderSetIndexBinderSetMemberBinderUnaryOperationBinderDiagnosticsEventingReaderEventBookmarkEventLogTypeEventLogIsolationEventLogModeEventLogConfigurationEventLogLinkEventLogStatusEventPropertyEventLogPropertySelectorEventRecordEventKeywordEventLevelEventLogRecordEventLogReaderEventLogWatcherEventRecordWrittenEventArgsEventLogQuerySessionAuthenticationPathTypeEventLogSessionEventMetadataEventOpcodeEventTaskEventLogExceptionEventLogNotFoundExceptionEventLogReadingExceptionEventLogProviderDisabledExceptionEventLogInvalidDataExceptionEventLogInformationProviderMetadataStandardEventLevelStandardEventTaskStandardEventOpcodeStandardEventKeywordsEventDescriptorEventProviderWriteEventErrorCodeEventProviderTraceListenerPerformanceDataCounterDataCounterSetInstanceCounterDataSetCounterSetCounterSetInstanceCounterSetInstanceTypeCounterTypeEventSchemaTraceListenerTraceLogRetentionOptionUnescapedXmlDiagnosticDataTextWriterTraceListenerTraceListenerCollectionsGenericHashSetEnumeratorIEnumerableIListICollectionIDictionaryISetIEnumeratorIEnumerableI|ListICollectionObjectModelCollectionReadOnlyCollectionIEnumeratorIOPipesPipeDirectionPipeTransmissionModePipeOptionsPipeStreamAnonymousPipeServerStreamAnonymousPipeClientStreamPipeStreamImpersonationWorkerNamedPipeServerStreamNamedPipeClientStreamPipeAccessRightsPipeAccessRulePipeAuditRulePipeSecurityMemoryMappedFilesMemoryMappedFileAccessMemoryMappedFileOptionsMemoryMappedFileMemoryMappedViewAccessorMemoryMappedViewStreamMemoryMappedFileRightsMemoryMappedFileSecurityHandleInheritabilityStreamUnmanagedMemoryAccessorUnmanagedMemoryStreamThreadingTasksTaskExtensionsUnwrapLockRecursionPolicyReaderWriterLockSlimActionFuncMulticastDelegateAttributeEnumExceptionObjectReflectionEventInfoIEquatableIDisposableValueTypeComponentModelINotifyPropertyChangedEventArgs������
s�
z��*^[�
[�

[z	�		I	[a�	I�[�U�U^�	I�[�
I�	I�
I�[�I�Ia[�	��	t
 ���	I[��h�*h$�"hkD]DsD�DW
I�[3
��
*�D�
[�
[H[	[[Y[[�
[n[[7[B[�[W[b[�[-
=��
�/f����	II[=�R�r�	I�[*
hd�	I�[�O
OO� O!O7O7h�*gX
sd��Dw���
I�[Kh\h1��
IA[��MD����nh�h�
hm[�[�[�$[|[�[�[�[C	�
	I�	[L�
I�[����
��
��
��
�	�J
]���	a<d�]�
]�]�]]�]c]�]t]�]�]�!];
]]�]�]e]�]W]]t
]�]�
]�
����] ]Bd�	]�
I`[�	�?D?g�
hRg*ggg

�������
[
If[`
Ik[?	I���B�*�h�*�h�*�*������	I:[N	W		I�	[����B��8
}����hB��IB���
��	��hB�������E��������f�	
	IW	[���h�hT������
����D+

}���
DJS	I�[
��'�n
Iy[!
r

I}
[��7�S�i	�		I�	[��I��
�k�m�M �2���������4���M���������
s[&[��	I�[t[B[d�W
�t���������+R+h+�+A��+�+�+jg��	��	I�[�*���U�U����
���"B�Q
I�[Wj	I�[^q	I�[����
��
�
��]]�d
UU(
U[
U|UV�5U�
U�UhU']�	�egD�f�7=�D�
��J
I�[�	D(��
D�

���!jxj�jj)j<jTjjjP
� J	I�[&
`	
I�
[�
�	
I�
[

fH]hh�
*w[�[{[�	[�[�[�	[�[�[	[
[%[.
I�[4�
I�[=�	I-[A	�		I1	[m]7]Z]I]���	D@[��	I�[-
�7�G��0�	I [4	�		I$	[?�:��do�	I
[u�	I[1	��
��)
I�6
I�0
I�B
I�
dZd�
�Y
�f�z�hqd�	
IR[��M��*�	�E	I�[	1	I�I	I/	I���d
[�P	IO[Bknrlnopqim6�X
�i~)KJ��"8rv369:=@������~N�����VW�SYTP()*
	��������������L`���������<G[I��L��.}�!���(')*ge0]`�12457>?s��$&ln��������������������ZRUST�'^��������LLH�!%IJ\^j�����#$0:;Mh�����k��! %&''�`�`�����C�125;>�4s�������ZUST�'^�;��A<otopsqtu_�����������(mm"NXbc�������n�����������������������������WW87QR9V�-�.>,
3	C3��x���r<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll�	3�l���[�&<y�zO$zadvancedattributecachecodeexportercodegenerationoptionscodeidentifiercodeidentifierscollectionbasecollectionsconfigurationconfigurationelementconfigurationelementcollectionconfigurationsectionconfigurationsectiongroupconfigurationvalidatorbaseconformanceleveldatetimeserializationmodedatetimeserializationsectiondtdprocessingentityhandlingenumeventargsformattinggenericiapplicationresourcestreamresolvericloneableicollectionidisposableienumerableienumeratorihasxmlnodeimportcontextinferenceoptioninternalixmllineinfoixmlnamespaceresolverixmlschemainfoixmlserializableixmltextparserixpathnavigableixsltcontextfunctionixsltcontextvariablemicrosoftmsmulticastdelegatenamespacehandlingnametablenewlinehandlingobjectreadstateresolversrootedpathvalidatorschemaschemaimporterschemaimporterextensionschemaimporterextensioncolle��*���\<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll�	17S���>���b��3n7H;��2MicrosoftWin32SafeHandlesSafeNCryptHandleSafeNCryptKeyHandleSafeNCryptProviderHandleSafeNCryptSecretHandleSafePipeHandleSafeMemoryMappedFileHandleSafeMemoryMappedViewHandleSafeHandleZeroOrMinusOneIsInvalidSystemManagementInstrumentationManagementEntityAttributeManagementHostingModelWmiConfigurationAttributeManagementMemberAttributeManagementNewInstanceAttributeManagementBindAttributeManagementCreateAttributeManagementRemoveAttributeManagementEnumeratorAttributeManagementProbeAttributeManagementTaskAttributeManagementKeyAttributeManagementReferenceAttributeManagementConfigurationTypeManagementConfigurationAttributeManagementCommitAttributeManagementNameAttributeInstrumentationBaseExceptionInstrumentationExceptionInstanceNotFoundExceptionLinqExpressionsExpressionVisitorExpressionBinaryExpressionBlockExpressionCatchBlockConditionalExpressionConstantExpressionDebugInfoExpressionDefaultExpressionDynamicExpressionElementInitExpressionTypeDynamicExpressionVisitorGotoExpressionKindGotoExpressionIndexExpressionInvocationExpressionLabelExpressionLabelTargetLambdaExpressionListInitExpressionLoopExpressionMemberBindingMemberAssignmentMemberBindingTypeMemberExpressionMemberInitExpressionMemberListBindingMemberMemberBindingMethodCallExpressionNewArrayExpressionNewExpressionParameterExpressionRuntimeVariablesExpressionSwitchCaseSwitchExpressionSymbolDocumentInfoTryExpressionTypeBinaryExpressionUnaryExpressionIQueryableIQueryProviderIOrderedQueryableQueryableAsQueryableWhereOfTypeCastSelectSelectManyJoinGroupJoinOrderByOrderByDescendingThenByThenByDz
~�~
�'��5 w��i
\�
�F?�
�	�s�	
$b�>H��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll<SymbolT|�{<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll%��
<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll�
<Symbol~�<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll&��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll>�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll��
<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll?l<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\mscorlib.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.dll��<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csprojg<SymbolTreeInfo>_Source_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.dllU<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.dll��5<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.DataSetExtensions.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Net.Http.dll
��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Core.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.Li��)<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll#�<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\mscorlib.dll	��	<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Core.dll~�<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.dll��-<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.DataSetExtensions.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Net.Http.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.dll��	<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.dll��<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.Linq.dll��	<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\Microsoft.CSharp.dll
N���t�8X�^
��*
J�&�
�	�	w�<Nax�s<SymbolTreeInfo>_SpellChecker_C:\Program Files\Laserfiche\SDK 10.2\bin\10.2\net-4.0\Laserfiche.RepositoryAccess.dll4t�k<SymbolTreeInfo>_Metadata_C:\Program Files\Laserfiche\SDK 10.2\bin\10.2\net-4.0\Laserfiche.RepositoryAccess.dll3x�s<SymbolTreeInfo>_SpellChecker_C:\Program Files\Laserfiche\SDK 10.2\bin\10.2\net-4.0\Laserfiche.DocumentServices.dll.t�k<SymbolTreeInfo>_Metadata_C:\Program Files\Laserfiche\SDK 10.2\bin\10.2\net-4.0\Laserfiche.DocumentServices.dll-��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll(��<SymbolTreeInfo>_Source_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csprojx��1<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll$��
<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll"��
<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll!��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll ��<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csprojw��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\mscorlib.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Xml.Linq.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Net.Http.dll
��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.dll��5<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Data.DataSetExtensions.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Core.dll��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\Microsoft.CSharp.dll
��<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll�	�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll�	�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll�
�<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll�ctionschemaimporterextensionelementschemaimporterextensionelementcollectionschemaimporterextensionssectionserializationserializationsectiongroupsoapattributeattributesoapattributeoverridessoapattributessoapcodeexportersoapelementattributesoapenumattributesoapignoreattributesoapincludeattributesoapreflectionimportersoapschemaexportersoapschemaimportersoapschemamembersoaptypeattributesystemsystemexceptionunreferencedobjecteventargsunreferencedobjecteventhandlervalidationeventargsvalidationeventhandlervalidationtypevaluetypewhitespacehandlingwin32writestatexmlxmlanyattributeattributexmlanyelementattributexmlanyelementattributesxmlarrayattributexmlarrayitemattributexmlarrayitemattributesxmlatomicvaluexmlattributexmlattributeattributexmlattributecollectionxmlattributeeventargsxmlattributeeventhandlerxmlattributeoverridesxmlattributesxmlcaseorderxmlcdatasectionxmlcharacterdataxmlchoiceidentifierattributexmlcodeexporterxmlcommentxmlconfigurationxmlconvertxmldatatypexmldatetimeserializationmodexmldeclarationxmldeserializationeventsxmldocumentxmldocumentfragmentxmldocumenttypexmlelementxmlelementattributexmlelementattributesxmlelementeventargsxmlelementeventhandlerxmlentityxmlentityreferencexmlenumattributexmlexceptionxmlignoreattributexmlimplementationxmlincludeattributexmlknowndtdsxmllinkednodexmlmappingxmlmappingaccessxmlmembermappingxmlmembersmappingxmlnamednodemapxmlnamespacedeclarationsattributexmlnamespacemanagerxmlnamespacescopexmlnametablexmlnodexmlnodechangedactionxmlnodechangedeventargsxmlnodechangedeventhandlerxmlnodeeventargsxmlnodeeventhandlerxmlnodelistxmlnodeorderxmlnodereaderxmlnodetypexmlnotationxmloutputmethodxmlparsercontextxmlpreloadedresolverxmlprocessinginstructionxmlqualifiednamexmlreaderxmlreadersectionxmlreadersettingsxmlreflectionimporterxmlreflectionmemberxmlresolverxmlrootattributexmlschemaxmlschemaallxmlschemaannotatedxmlschemaannotationxmlschemaanyxmlschemaanyattributexmlschemaappinfoxmlschemaattributexmlschemaattributegroupxmlschemaattributegrouprefxmlschemachoicexmlschemacollectionxmlsch�emacollectionenumeratorxmlschemacompilationsettingsxmlschemacomplexcontentxmlschemacomplexcontentextensionxmlschemacomplexcontentrestrictionxmlschemacomplextypexmlschemacontentxmlschemacontentmodelxmlschemacontentprocessingxmlschemacontenttypexmlschemadatatypexmlschemadatatypevarietyxmlschemaderivationmethodxmlschemadocumentationxmlschemaelementxmlschemaenumerationfacetxmlschemaenumeratorxmlschemaexceptionxmlschemaexporterxmlschemaexternalxmlschemafacetxmlschemaformxmlschemafractiondigitsfacetxmlschemagroupxmlschemagroupbasexmlschemagrouprefxmlschemaidentityconstraintxmlschemaimportxmlschemaimporterxmlschemaincludexmlschemainferencexmlschemainferenceexceptionxmlschemainfoxmlschemakeyxmlschemakeyrefxmlschemalengthfacetxmlschemamaxexclusivefacetxmlschemamaxinclusivefacetxmlschemamaxlengthfacetxmlschemaminexclusivefacetxmlschemamininclusivefacetxmlschemaminlengthfacetxmlschemanotationxmlschemanumericfacetxmlschemaobjectxmlschemaobjectcollectionxmlschemaobjectenumeratorxmlschemaobjecttablexmlschemaparticlexmlschemapatternfacetxmlschemaproviderattributexmlschemaredefinexmlschemasxmlschemasequencexmlschemasetxmlschemasimplecontentxmlschemasimplecontentextensionxmlschemasimplecontentrestrictionxmlschemasimpletypexmlschemasimpletypecontentxmlschemasimpletypelistxmlschemasimpletyperestrictionxmlschemasimpletypeunionxmlschematotaldigitsfacetxmlschematypexmlschemauniquexmlschemausexmlschemavalidationexceptionxmlschemavalidationflagsxmlschemavalidatorxmlschemavalidityxmlschemawhitespacefacetxmlschemaxpathxmlsecureresolverxmlserializationcollectionfixupcallbackxmlserializationfixupcallbackxmlserializationgeneratedcodexmlserializationreadcallbackxmlserializationreaderxmlserializationwritecallbackxmlserializationwriterxmlserializerxmlserializerassemblyattributexmlserializerfactoryxmlserializerimplementationxmlserializernamespacesxmlserializersectionxmlserializerversionattributexmlseveritytypexmlsignificantwhitespacexmlsortorderxmlspacexmltextxmltextattributexmltextreaderxmltextwriterxmltokenizedtypexmltypeattributexmltypecode�xmltypemappingxmlurlresolverxmlvalidatingreaderxmlvaluegetterxmlwhitespacexmlwriterxmlwritersettingsxmlxapresolverxpathxpathdocumentxpathexceptionxpathexpressionxpathitemxpathnamespacescopexpathnavigatorxpathnodeiteratorxpathnodetypexpathresulttypexslxslcompiledtransformxsltargumentlistxsltcompileexceptionxsltconfigsectionxsltcontextxsltexceptionxsltmessageencounteredeventargsxsltmessageencounteredeventhandlerxsltransformxsltsettings-	 "%7+E0T5b:m
;z<�B�E�E�J�JNR8
WEYS[W	_`
cjhq"k�
m�o�q�r�t�y�
y�{�{�{}~'~7�E�T�h�|	��������	������	��	��������!�8�V(�~��
�����������
�!�2�E�Y�o�����������������+�9	�B�T�Y
�c�f�~���������������,�A�Y�n
�{����������
����
�����*�B�M�`�o
�y��������	���������#�6�B
�O
�Y�i�y����!�����������	�	�6	�F	�Y	d	p	
}	�	�	�	�	�	�	�			�		



-
@
K
[
	d
p
�

�
�
�
�
�
�
	+Hd{ �"����$5Mf|�������

#
1
C
T
o
~
�
�
�
�

�
�
�
 " < S!m#�#�#�#�#�#�###*#?#Y$j
$t%�%�%�%�!%�%�&&+&I&a&z
&�&�&�&�&�&�&�&&&0'&W&t&�&�&�&�&�
&&!&5&P&g&{&�&�&�&�(�(�(�
)�
)**$*/*=*K*^*l
+y	+�,�,�,�
,�,�,�	,�,�,�,
,,',*,>,N,b,s,~
,�,�",�,�,,



	%,38$9:=>LM��"�	�	
d#(AZ`b
"\
�	
&f-
/@r�	TDv����)���� n�
6<��
m������$
'.0JS+2	U
	il�!Qx7�*	p{	�

�	;
P�
�
]�	�
)�
��
$
5
?e
�u4BFR
Y
1H
K�
CO}�
�	�V����*
Xo����EW^���t��%Gj��
�q|	~����[IN�	���
�
h��
����g��&��
��k�"�z���c
_aw
�����s�����y
��
�#	���
�
!	+������
�
���	��
��
��
����� 	��������'�(,�attributedeclarationcollectioncodebasereferenceexpressioncodebinaryoperatorexpressioncodebinaryoperatortypecodecastexpressioncodecatchclausecodecatchclausecollectioncodechecksumpragmacodecommentcodecommentstatementcodecommentstatementcollectioncodecompilercodecompileunitcodeconditionstatementcodeconstructorcodedefaultvalueexpressioncodedelegatecreateexpressioncodedelegateinvokeexpressioncodedirectionexpressioncodedirectivecodedirectivecollectioncodedomcodedomprovidercodeentrypointmethodcodeeventreferenceexpressioncodeexpressioncodeexpressioncollectioncodeexpressionstatementcodefieldreferenceexpressioncodegeneratorcodegeneratoroptionscodegotostatementcodeindexerexpressioncodeiterationstatementcodelabeledstatementcodelinepragmacodemembereventcodememberfieldcodemembermethodcodememberpropertycodemethodinvokeexpressioncodemethodreferenceexpressioncodemethodreturnstatementcodenamespacecodenamespacecollectioncodenamespaceimportcodenamespaceimportcollectioncodeobjectcodeobjectcreateexpressioncodeparameterdeclarationexpressioncodeparameterdeclarationexpressioncollectioncodeparsercodeprimitiveexpressioncodepropertyreferenceexpressioncodepropertysetvaluereferenceexpressioncoderegiondirectivecoderegionmodecoderemoveeventstatementcodesnippetcompileunitcodesnippetexpressioncodesnippetstatementcodesnippettypemembercodestatementcodestatementcollectioncodethisreferenceexpressioncodethrowexceptionstatementcodetrycatchfinallystatementcodetypeconstructorcodetypedeclarationcodetypedeclarationcollectioncodetypedelegatecodetypemembercodetypemembercollectioncodetypeofexpressioncodetypeparametercodetypeparametercollectioncodetypereferencecodetypereferencecollectioncodetypereferenceexpressioncodetypereferenceoptionscodevariabledeclarationstatementcodevariablereferenceexpressioncollectioncollectionbasecollectionchangeactioncollectionchangeeventargscollectionchangeeventhandlercollectionconvertercollectionscollectionsutilcommandidcompilercompilererrorcompilererrorcollectioncompilerinfocompilerparameterscompilerresultscomplexbindingproperti�esattributecomponentcomponentchangedeventargscomponentchangedeventhandlercomponentchangingeventargscomponentchangingeventhandlercomponentcollectioncomponentconvertercomponenteditorcomponenteventargscomponenteventhandlercomponentmodelcomponentrenameeventargscomponentrenameeventhandlercomponentresourcemanagercomponentserializationservicecompressioncompressionlevelcompressionmodecomtypesconcurrentconcurrentbagconfigurationconfigurationelementconfigurationelementcollectionconfigurationexceptionconfigurationsectionconfigurationsectiongroupconfigurationsettingsconfigxmldocumentconnectionmanagementelementconnectionmanagementelementcollectionconnectionmanagementsectionconsoletracelistenercontainercontainerfilterservicecontentdispositioncontenttypecontextstackcookiecookiecollectioncookiecontainercookieexceptioncorrelationmanagercountercreationdatacountercreationdatacollectioncountersamplecountersamplecalculatorcredentialcachecryptographycsharpcsharpcodeprovidercultureinfoconvertercustomtypedescriptordatadirdataerrorschangedeventargsdataobjectattributedataobjectfieldattributedataobjectmethodattributedataobjectmethodtypedatareceivedeventargsdatareceivedeventhandlerdatetimeconverterdatetimeoffsetconverterdebugdecimalconverterdecompressionmethodsdefaultbindingpropertyattributedefaulteventattributedefaultparametervalueattributedefaultpropertyattributedefaultproxysectiondefaultserializationproviderattributedefaultsettingvalueattributedefaulttracelistenerdefaultvalueattributedeflatestreamdelimitedlisttracelistenerdeliverynotificationoptionsdescriptionattributedesigndesignerattributedesignercategoryattributedesignercollectiondesignereventargsdesignereventhandlerdesignerloaderdesigneroptioncollectiondesigneroptionservicedesignerserializationvisibilitydesignerserializationvisibilityattributedesignerserializerattributedesignertransactiondesignertransactioncloseeventargsdesignertransactioncloseeventhandlerdesignerverbdesignerverbcollectiondesignonlyattributedesigntimelicensecontextdesigntimelicensecontextserializerdesigntimevisible�attributediagnosticsdiagnosticsconfigurationhandlerdictionarybasedictionarysectionhandlerdisplaynameattributedispositiontypenamesdnsdnsendpointdnspermissiondnspermissionattributedoubleconverterdownloaddatacompletedeventargsdownloaddatacompletedeventhandlerdownloadprogresschangedeventargsdownloadprogresschangedeventhandlerdownloadstringcompletedeventargsdownloadstringcompletedeventhandlerdoworkeventargsdoworkeventhandlerdrawingduplicateaddressdetectionstatedvaspectdynamicroleclaimprovidereditorattributeeditorbrowsableattributeeditorbrowsablestateelapsedeventargselapsedeventhandlerencryptionpolicyendgethostbynameendpointendpointpermissionendresolveentrywritteneventargsentrywritteneventhandlerenumenumconverterenumeratorerroreventargserroreventhandlereventargseventdescriptoreventdescriptorcollectioneventhandlerlisteventinstanceeventlogeventlogentryeventlogentrycollectioneventlogentrytypeeventlogpermissioneventlogpermissionaccesseventlogpermissionattributeeventlogpermissionentryeventlogpermissionentrycollectioneventlogtracelistenereventsourcecreationdataeventtypefilterexceptionexchangealgorithmtypeexcludefromcodecoverageattributeexecutorexpandableobjectconverterextendedprotectionextendedprotectionpolicyextendedprotectionpolicyelementextendedprotectionpolicytypeconverterextendedprotectionselectorextenderprovidedpropertyattributeexternalexceptionfailfielddirectionfilefilestyleuriparserfilesystemeventargsfilesystemeventhandlerfilesystemwatcherfileversioninfofilewebrequestfilewebresponseflushformatetcformatexceptionframeworknameftpftpcachepolicyelementftpstatuscodeftpstyleuriparserftpwebrequestftpwebresponsegatewayipaddressinformationgatewayipaddressinformationcollectiongeneratedcodeattributegeneratorsupportgenericgenericidentitygenericuriparsergenericuriparseroptionsgethostbyaddressgethostbynameglobalproxyselectiongopherstyleuriparsergroupgroupcollectionguidconvertergzipstreamhandlecollectorhandledeventargshandledeventhandlerhandshakehashalgorithmtypehashtablehelpcontexttypehelpkeywordattributehelpkeywordtypehttphttpca�cheagecontrolhttpcachepolicyelementhttpcontinuedelegatehttplistenerhttplistenerbasicidentityhttplistenercontexthttplistenerelementhttplistenerexceptionhttplistenerprefixcollectionhttplistenerrequesthttplistenerresponsehttplistenertimeoutmanagerhttplistenertimeoutselementhttplistenerwebsocketcontexthttprequestcachelevelhttprequestcachepolicyhttprequestheaderhttpresponseheaderhttpstatuscodehttpstyleuriparserhttpversionhttpwebrequesthttpwebrequestelementhttpwebresponsehybriddictionaryiadvisesinkiapplicationsettingsprovideriauthenticationmoduleiautowebproxyibindinglistibindinglistviewicanceladdnewicertificatepolicyichangetrackingicloneableicloseexicmpv4statisticsicmpv6statisticsicodecompilericodegeneratoricodeparsericollectdataicollectionicommandicomnativedescriptorhandlericomponenticomponentchangeserviceicomponentdiscoveryserviceicomponentinitializericonfigerrorinfoiconfigurationsectionhandlericonfigurationsystemicontainericredentialpolicyicredentialsicredentialsbyhosticustomtypedescriptoricustomtypeprovideridataerrorinfoidataobjectideserializationcallbackidesigneridesignereventserviceidesignerfilteridesignerhostidesignerhosttransactionstateidesignerloaderhostidesignerloaderhost2idesignerloaderserviceidesigneroptionserviceidesignerserializationmanageridesignerserializationprovideridesignerserializationserviceidictionaryidictionaryenumeratoridictionaryserviceidisposableidnelementieditableobjectienumerableienumeratorienumformatetcienumstatdataiequatableieventbindingserviceiextenderlistserviceiextenderprovideriextenderproviderserviceignoresectionhandlerihelpserviceiinheritanceserviceiintellisensebuilderilistilistsourceimageimarshalimenucommandserviceimmutableobjectattributeinamecreationserviceindentindentedtextwriterinestedcontainerinestedsiteinheritanceattributeinheritancelevelinitializationeventattributeinotifycollectionchangedinotifydataerrorinfoinotifypropertychangedinotifypropertychanginginputinstallertypeattributeinstancecreationeditorinstancedatainstancedatacollectioninstancedatacollectioncollectioninstancedes�criptorint16converterint32converterint64converterinternalinternalbufferoverflowexceptioninteropservicesintranetzonecredentialpolicyinvalidasynchronousstateexceptioninvalidcredentialexceptioninvaliddataexceptioninvalidenumargumentexceptioninvalidoperationexceptionioiocontrolcodeiodescriptionattributeiordereddictionaryipaddressipaddresscollectionipaddressinformationipaddressinformationcollectionipendpointipersistcomponentsettingsipglobalpropertiesipglobalstatisticsiphostentryipinterfacepropertiesipinterfacestatisticsippacketinformationipprotectionleveliproducerconsumercollectionipstatusipv4interfacepropertiesipv4interfacestatisticsipv6elementipv6interfacepropertiesipv6multicastoptioniraiseitemchangedeventsireferenceserviceiresourceserviceirevertiblechangetrackingiriparsingelementirootdesigneriselectionserviceiserializableiservicecontaineriserviceproviderisetisettingsproviderserviceisiteisupportinitializeisupportinitializenotificationisynchronizeinvokeitreedesigneritypedescriptorcontextitypedescriptorfilterserviceitypediscoveryserviceitypedlistityperesolutionserviceiunrestrictedpermissioniwebproxyiwebproxyscriptiwebrequestcreatekeycollectionkeyscollectionlanguageoptionsldapstyleuriparserlicenselicensecontextlicenseexceptionlicensemanagerlicenseproviderlicenseproviderattributelicenseusagemodelicfilelicenseproviderlingeroptionlinkedlistlinkedlistnodelinkedresourcelinkedresourcecollectionlistbindableattributelistchangedeventargslistchangedeventhandlerlistchangedtypelistdictionarylistsortdescriptionlistsortdescriptioncollectionlistsortdirectionlocalcertificateselectioncallbacklocalfilesettingsproviderlocalizableattributelookupbindingpropertiesattributemailmailaddressmailaddresscollectionmailmessagemailprioritymailsettingssectiongroupmarkupmarshalbyrefobjectmarshalbyvaluecomponentmaskedtextprovidermaskedtextresulthintmatchmatchcollectionmatchevaluatormediamediatypenamesmemberattributesmemberdescriptormemberrelationshipmemberrelationshipservicemenucommandmergablepropertyattributemicrosoftmimemoduleelementmonitoringdescr�iptionattributemulticastdelegatemulticastipaddressinformationmulticastipaddressinformationcollectionmulticastoptionmultilinestringconverternameobjectcollectionbasenamevaluecollectionnamevaluefilesectionhandlernamevaluesectionhandlernativeobjectsecuritynegotiatestreamnestedcontainernetnetbiosnodetypenetpipestyleuriparsernetsectiongroupnettcpstyleuriparsernetworkaccessnetworkaddresschangedeventhandlernetworkavailabilitychangedeventhandlernetworkavailabilityeventargsnetworkchangenetworkcredentialnetworkinformationnetworkinformationaccessnetworkinformationexceptionnetworkinformationpermissionnetworkinformationpermissionattributenetworkinterfacenetworkinterfacecomponentnetworkinterfacetypenetworkstreamnewsstyleuriparsernosettingsversionupgradeattributenotifycollectionchangedactionnotifycollectionchangedeventargsnotifycollectionchangedeventhandlernotifyfiltersnotifyparentpropertyattributenullableconverterobjectobjectmodelobservablecollectionoidoidcollectionoidenumeratoroidgroupopenflagsopenreadcompletedeventargsopenreadcompletedeventhandleropenwritecompletedeventargsopenwritecompletedeventhandleroperationalstatusordereddictionaryoverflowactionparenthesizepropertynameattributeparitypasswordpropertytextattributeperformancecounterperformancecountercategoryperformancecountercategorytypeperformancecounterinstancelifetimeperformancecountermanagerperformancecounterpermissionperformancecounterpermissionaccessperformancecounterpermissionattributeperformancecounterpermissionentryperformancecounterpermissionentrycollectionperformancecounterselementperformancecountertypepermissionsphysicaladdresspingpingcompletedeventargspingcompletedeventhandlerpingexceptionpingoptionspingreplypolicyenforcementportspowermodechangedeventargspowermodechangedeventhandlerpowermodesprefixoriginprincipalprintprocessprocessmoduleprocessmodulecollectionprocesspriorityclassprocessstartinfoprocessthreadprocessthreadcollectionprocesswindowstyleprogresschangedeventargsprogresschangedeventhandlerpropertychangedeventargspropertychangedeventhandlerpropertycha�ngingeventargspropertychangingeventhandlerpropertydescriptorpropertydescriptorcollectionpropertytabattributepropertytabscopeprotectionlevelprotectionscenarioprotocolfamilyprotocoltypeprotocolviolationexceptionprovidepropertyattributeproviderproviderbaseprovidercollectionproxyelementpublickeyqueuereadonlyattributereadonlycollectionreadonlycollectionbasereadonlyobservablecollectionrecommendedasconfigurableattributereferenceconverterreflectionrefresheventargsrefresheventhandlerrefreshpropertiesrefreshpropertiesattributeregexregexcompilationinforegexmatchtimeoutexceptionregexoptionsregexrunnerregexrunnerfactoryregularexpressionsremotecertificatevalidationcallbackrenamedeventargsrenamedeventhandlerrequestcachelevelrequestcachepolicyrequestcachingsectionresolveresolvenameeventargsresolvenameeventhandlerresourcemanagerresourcepermissionbaseresourcepermissionbaseentryresourcesrootdesignerserializerattributeruninstallerattributeruntimerunworkercompletedeventargsrunworkercompletedeventhandlersafehandlessafehandlezeroorminusoneisinvalidsbyteconverterschemesettingelementschemesettingelementcollectionscopelevelsectionsecuritysecurityprotocoltypeselectiontypesselectmodesemaphoresemaphoreaccessrulesemaphoreauditrulesemaphorerightssemaphoresecuritysendcompletedeventhandlersendpacketselementserialdataserialdatareceivedeventargsserialdatareceivedeventhandlerserialerrorserialerrorreceivedeventargsserialerrorreceivedeventhandlerserializationserializationstoreserialpinchangeserialpinchangedeventargsserialpinchangedeventhandlerserialportservicecontainerservicecreatorcallbackservicenamecollectionservicenameelementservicenameelementcollectionservicepointservicepointmanagerservicepointmanagerelementsessionendedeventargssessionendedeventhandlersessionendingeventargssessionendingeventhandlersessionendreasonssessionswitcheventargssessionswitcheventhandlersessionswitchreasonsettingattributesettingchangingeventargssettingchangingeventhandlersettingelementsettingelementcollectionsettingsattributedictionarysettingsbasesettingsbindableattribut�esettingscontextsettingsdescriptionattributesettingsgroupdescriptionattributesettingsgroupnameattributesettingsloadedeventargssettingsloadedeventhandlersettingsmanageabilitysettingsmanageabilityattributesettingspropertysettingspropertycollectionsettingspropertyisreadonlyexceptionsettingspropertynotfoundexceptionsettingspropertyvaluesettingspropertyvaluecollectionsettingspropertywrongtypeexceptionsettingsprovidersettingsproviderattributesettingsprovidercollectionsettingssavingeventhandlersettingssectionsettingsserializeassettingsserializeasattributesettingvalueelementsingleconvertersingletagsectionhandlersmtpaccesssmtpclientsmtpdeliveryformatsmtpdeliverymethodsmtpexceptionsmtpfailedrecipientexceptionsmtpfailedrecipientsexceptionsmtpnetworkelementsmtppermissionsmtppermissionattributesmtpsectionsmtpspecifiedpickupdirectoryelementsmtpstatuscodesocketsocketaddresssocketasynceventargssocketasyncoperationsocketclientaccesspolicyprotocolsocketelementsocketerrorsocketexceptionsocketflagssocketinformationsocketinformationoptionssocketoptionlevelsocketoptionnamesocketpermissionsocketpermissionattributesocketssocketshutdownsockettypesorteddictionarysortedlistsortedsetsoundplayersourcefiltersourcelevelssourceswitchspecializedspecialsettingspecialsettingattributesslpolicyerrorssslprotocolssslstreamstackstandardcommandsstandardolemarshalobjectstandardtoolwindowsstandardvaluescollectionstatdatastgmediumstopbitsstopwatchstorelocationstorenamestorepermissionstorepermissionattributestorepermissionflagsstreamstringcollectionstringconverterstringdictionarystringenumeratorsuffixoriginswitchswitchattributeswitchlevelattributesyntaxchecksystemsystemeventssystemexceptionsystemsoundsystemsoundstcpclienttcpconnectioninformationtcplistenertcpstatetcpstatisticstempfilecollectiontexttextwritertextwritertracelistenerthreadexceptioneventargsthreadexceptioneventhandlerthreadingthreadprioritylevelthreadstatethreadwaitreasontimeoutexceptiontimertimerelapsedeventargstimerelapsedeventhandlertimerstimersdescriptionattributetimespanconvertertoolboxi�temattributetoolboxitemfilterattributetoolboxitemfiltertypetracetraceeventcachetraceeventtypetracefiltertraceleveltracelistenertracelistenercollectiontraceoptionstracesourcetraceswitchtransferencodingtransmitfileoptionstransportcontexttransporttypetymedtypeconvertertypeconverterattributetypedescriptionprovidertypedescriptionproviderattributetypedescriptionproviderservicetypedescriptortypedescriptorpermissiontypedescriptorpermissionattributetypedescriptorpermissionflagstypelistconverterudpclientudpreceiveresultudpstatisticsuint16converteruint32converteruint64converterunicastipaddressinformationunicastipaddressinformationcollectionunicodedecodingconformanceunicodeencodingconformanceunindentunsafenativemethodsuploaddatacompletedeventargsuploaddatacompletedeventhandleruploadfilecompletedeventargsuploadfilecompletedeventhandleruploadprogresschangedeventargsuploadprogresschangedeventhandleruploadstringcompletedeventargsuploadstringcompletedeventhandleruploadvaluescompletedeventargsuploadvaluescompletedeventhandleruriuribuilderuricomponentsuriformaturiformatexceptionurihostnametypeuriidnscopeurikinduriparseruripartialurisectionuritypeconverteruserpreferencecategoryuserpreferencechangedeventargsuserpreferencechangedeventhandleruserpreferencechangingeventargsuserpreferencechangingeventhandleruserscopedsettingattributeusersettingsgroupusesystemdefaultvaluesvaluecollectionvalueserializerattributevaluetypevbcodeproviderversioningviewtechnologyvisualbasicwaitforchangedresultwaithandlewarningexceptionwatcherchangetypeswebwebclientwebexceptionwebexceptionstatuswebheadercollectionwebpermissionwebpermissionattributewebproxywebproxyscriptelementwebrequestwebrequestmethodswebrequestmoduleelementwebrequestmoduleelementcollectionwebrequestmodulessectionwebresponsewebsocketwebsocketclosestatuswebsocketcontextwebsocketerrorwebsocketexceptionwebsocketmessagetypewebsocketreceiveresultwebsocketswebsocketstatewebutilitywebutilityelementwin32win32exceptionwindowswindowsruntimewritewriteifwritelinewritelineifwritestreamclosedeventargswrite�streamclosedeventhandlerx500distinguishednamex500distinguishednameflagsx509basicconstraintsextensionx509certificatex509certificate2x509certificate2collectionx509certificate2enumeratorx509certificatecollectionx509certificateenumeratorx509certificatesx509chainx509chainelementx509chainelementcollectionx509chainelementenumeratorx509chainpolicyx509chainstatusx509chainstatusflagsx509enhancedkeyusageextensionx509extensionx509extensioncollectionx509extensionenumeratorx509findtypex509includeoptionx509keyusageextensionx509keyusageflagsx509nametypex509revocationflagx509revocationmodex509storex509subjectkeyidentifierextensionx509subjectkeyidentifierhashalgorithmx509verificationflagsxmlxmldocumentxmlwritertracelistenera



.	%H.\	2n;�
<�B�
S�
Z�g�	l�!u�{
�(�9�J�X�f�~���� 	�������� �.�C
�M�[�o	�x��	��	������
�)%Nj�
� �%�(�+�2�3
48*F9HIITMbMmS
[�
e�j�
j�q�r�
x�
y���	��0�A�O�a
�n�����������������	�1	�J�d�w��������"����4�J�\�k�����������������-�I�e�|
�����������
	#	?	
L	`	q	�	�	 �	!�	#�	)�	)�	+�	-
.5
2N

4[
7r
7�
7�

;�
;�
"?�
,�?
?@5CT'C{D�D�F�I�I�J�M
MM,MGNbQ~Q�Q�Q�Q�T�T�T
W
W7
WH
[c
\~
\�
 \�
^�

^�
^�
^_c8eKfVhe	lnmv
n�n�n�q�u�!w�	y�y
z&|@|]~p��������������.�9�I�X�`
�j
�w
���������������:%�_�z��	�����������������
��/�L
�Y�p�������������������0�D�Y�q����������������,�?%�d������
�����������/�A�R�f�t������(����!�7$�[�g�}����"���������4�H\_j
w���!� �# >#ap	�������%5EM_
i!~"�"�
#�
$�$�%�	'�+�++
++&
,3.J.[.m.�.�.�!/�0�00	121 5Q:Y;r;�;�;�%;�<�!=?,?0C>CBCTCgC}C�C�D�F�F�	H�L�
L�P�Q�
Q	Q
Q'T5UP%UuU�V�W�W�X�X�Y�
Z�Z	[["]1
a>
aHbWegfz	�h�j�	j�j�l�m�o�q�q�qqs5tHx[ypy�y�z�z�{�{ { {/ ~@ ~R ` �r �} �� �� �� �� �� �� �� 
�!�!�$!
�1!�C!�R!
�\!�d!�t!��!
��!��!��!��!��!��!��!
��!�"�"�4"�D"�`"�t"
�~"��"��"��"��"��"��"��"�#	�#�$#�3#
�@#�]#�p#��#��#��#��#��#�$�$�($�:$�E$
�O$�^$�i$�t$��$
��$
��$��$��$��$��$��$�
%�%�1%�6%�A%�F%�N%�a%�y%��%��%��%��%��%��%��%�&�&�,&�B&�Y&�^&�t&��&��&��& ��&��&��&��&�'�'�/'�>'�Z'!�{'��'��'��'��'��'
��'�(�(	�(�1(�E(�c(
�m(��(��(��(��(��(��(��(�)�)�&)�=)�T)�_)�v)��)��)��)��)��)��)
��)�	*
�*�'*�7*�;*�S*�X*�j*��*��*
��*��*��*��*
��*�+�%+	�.+�=+�N+
�[+�i+�x+��+��+��+��+��+��+��+��+�
,�,
� ,�.,�<,�T,�i,�},��,��,��,��,��,��,!�-�,-�@- �`-�d-�o-��-��-��-��-��-��-��-��-�.�
..*./.=.M.].o.�.�.�.	�.�.
�.�.�./'9/H/	`/	x/	�/
�/�/�/�/�/�/00�%0
90

F0!
g0&
�0
�0

�0�0�0�01(1%M1]1v1�1
�1�1!�1�1 2#*2
72T2e2k2v2�2�2
�2
�2�2	�2�2�2
3(393J3X3!y33�3�3�3�3"4!4=4"_4%�4!�4+�4�4555545M5
Z5e5	n55�5�5�5
�5�5	�5�5�5
�566,6
96P6b6z6�6�6�6�6�67+7?7O7^7p7~7�7�7�7�7 �7 �7 �7	 �7"�7"
8"8"58"Q8""s8"�8
"�8"�8$�8$�8$�8%�8&�8&9'9('9(99(K9#(n9(~9(�9(�9)�9)�9)�9)�9)�9)
:* :*;:	-D:-c:-x:.:/�:/�:/�:!/�:/�:/;/$;
/.;/5;1=;1Q;1_;
2i;	2r;2�;2�;2�;2�;2�;2�;
2�;3<3%<30<4L<4k<
4x<4�<4�<4�<4�<
4�<5�<5�<6=6%=6A=7M=7`=7z=7�=7�=7�=7�=7�=8�=8>8)>89>8Q>8l>8z>8�>;�>;�>;�>=�>=�>!=?=8?=O?=i?=~?=�?=�?=�?#=�?!>
@>@>>@"?`@?p@?�@?�@?�@?�@?�@?�@?A?A?4A
?>A
?HA?ZA?lA
@yA@�AA�AA�AA�AA�AA�A#ABA%BA+B
A8BALBA`B A�B
B�BB�BB�BB�BD�BE�BE�BE�BECE%CE,CE:C
EDCFTC
F^C	FgCGrCG~CH�CH�CI�CI��CI�CI�CI�C	I�CI�CI�CIDI*DIBDJJD	KSDL[D	LdD
LqD	LzDL�DL�DL�DL�DM�DM�DN�DN�DNENENEN/EN:EN@ENLEN[ENfEOrE	O{EO�EO�EO�E
P�EP�EP�E
P�EP�EPFPF	P&FP9FPDFQTFQdFQiFR~FR�FR�FR�FR�FR�FR�FR
GRGSGS,GS7G
TAG
TNGTeGTqGT|GT�GT�GT�GT�G
T�GT�G
T�GT�GTH T&HTDHTRHTjH!T�HT�HT�H	T�HT�H
T�HT�HU�HVIV'I%VLIVfIW�IW�IW�IW�IW�IX�IXJX/J!XPJXnJ!X�JX�J!X�JX�J
Y�J
Y�J	Y�JYKYKZKZ$K	Z-K
Z7K
ZAKZQKZgKZ�K!Z�KZ�K"Z�KZLZLZ(LZ7LZOL	ZXLZfL
ZpLZ~LZ�L]�L
]�L]�L]�L]�L	]�L]�L]�L]M
]M])M]1M]FM
]PM]aM]xM!]�M]�M]�M	]�M]�M]�M]�M]	N^N^3N
^=N^KN
^UN^fN^kN^yN^�N^�N^�N^�N	^�N^�N^�N^�N^�N^O^1O^@O^PO_jO_�O_�O_�O_�O	_�O_�O_�O_P_"P_1P_EP`bP
`oP`�P`�P`�P`�P`�P`�P`�P`�P`Q	`Q!`:Q%`_Q`tQ`wQ`�Q``

	
	
"#+7XY`b#�"��Q �\'�6	�_�����	�~�� 0=	o)xy�

$<	�R26?P
y���,kv�
�	F�	!>
H
��B
fr{�	����'�i�GZ	F�_b��
��^$������]�F3t���)*��(Ne
�*G
I�B

E��D
n�
ME	�
�
��z
Q]c���z����x|��3[
��f*,���>��S	

A

B5�����	�D
N�Xk�
�JU��Jko�	���%9[
d�	�Ad��.o�%��!{&
/	hu
�4R3-
�	)-OQS��$1��H�Z�i� ���aZa�'�	�(8:
��sq 49�9V�]�\�l�W�
�	>@Cgw����/
Kn��
Y�d;
t$M��
�	�Sv�j�
��-
A
}���	�0�h�
K
��x	;
L�/���UL��8	A�T��
�� I�	
�
s�	FB8�

�
�W�T
vs�u
Q���
r��	x��5a�S^\�����Y����'(
m������<P#'
��4�jp
q������
��V�
���^V
��	�#eO�	J
<�
�����c�=�����
��_:W	�}�
��/(.	l�
�[!�`��g1e�	�+3
�
�CM��������
�
�=��,`m=�����cR
��~.�|P c-�#����\?DN�
�����E�{���	��5J	����	Z�
@a	j�	m
�SpCE<
�
�h�K��	7O
w
~����D���H��	���
���
r�	N����"	 g�W�	�fM<�	�
�	&>��
��n|@

�
A�
��	0�2�
6	"q�K�;�?H�
�
9�
�72�	@p�#���%s7:��h
��Xe��U����6[	��
yG�	�
��
��� !���1�1�.%^�
`����
��"P	%�
�K�
R�	�uB
Y��	�n�
}��
���/f�X
	� \@	umy�i�
���	�-��{
�9
�j
���q
	���Vz�
�
�Z�

��	�
d�F��tw
�	���b
L�����(�v
�O�	�
�T��
:����1*�	�L�!���J����C]N
;r5X�	�?
�
�	+&
��2��	�	I
!��"k	�,
0	w��IEl	�	����
U3o��~��*�zL
8�
�0
�	�	blY�	�:
�	5�
�$�����|�.�O���)?���
�
�
�
���+�
,���
p
I��[i
����7�	H�
+R4C�
4DGU&tQ�}�g��>`TV	_&�=��	2�
��W�"6	���)	P8	����^M
#	;_TG	]
���� ���B<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll�	36ܣ)��0�g�m �B� 3Raccesscontrolaccessruleactivedesignereventargsactivedesignereventhandleradddynamicroleclaimsaddingneweventargsaddingneweventhandleraddressfamilyadvfalternateviewalternateviewcollectionambientvalueattributeapplicationapplicationscopedsettingattributeapplicationsettingsbaseapplicationsettingsgroupappsettingsreaderargumentexceptionarrayconverterasnencodeddataasnencodeddatacollectionasnencodeddataenumeratoraspnethostingpermissionaspnethostingpermissionattributeaspnethostingpermissionlevelassertasynccompletedeventargsasynccompletedeventhandlerasyncoperationasyncoperationmanagerattachmentattachmentbaseattachmentcollectionattributeattributecollectionattributeproviderattributeauditruleauthenticatedstreamauthenticationauthenticationexceptionauthenticationlevelauthenticationmanagerauthenticationmoduleelementauthenticationmoduleelementcollectionauthenticationmodulessectionauthenticationschemesauthenticationschemeselectorauthorizationautodetectvaluesbackgroundworkerbarrierbarrierpostphaseexceptionbasenumberconverterbegingethostbynamebeginresolvebindableattributebindablesupportbindingdirectionbindinglistbindipendpointbitvector32blockingcollectionbooleanconverterbooleanswitchbrowsableattributebypasselementbypasselementcollectionbypassonlocalvaluesbyteconvertercachecanceleventargscanceleventhandlercapturecapturecollectioncategoryattributechannelbindingchannelbindingkindcharconvertercheckoutexceptioncipheralgorithmtypeclaimsclientsettingssectionclientwebsocketclientwebsocketoptionsclosecodeaccesspermissioncodeaccesssecurityattributecodeanalysiscodeargumentreferenceexpressioncodearraycreateexpressioncodearrayindexerexpressioncodeassignstatementcodeattacheventstatementcodeattributeargumentcodeattributeargumentcollectioncodeattributedeclarationcode��rowcollectiondatarowstatedatarowversiondatarowviewdatasetdatasetdatetimedatasetschemaimporterextensiondatasysdescriptionattributedatatabledatatablecleareventargsdatatablecleareventhandlerdatatablecollectiondatatablemappingdatatablemappingcollectiondatatablenewroweventargsdatatablenewroweventhandlerdatatablereaderdataviewdataviewmanagerdataviewrowstatedataviewsettingdataviewsettingcollectiondbcommanddbcommandbuilderdbconcurrencyexceptiondbconnectiondbconnectionstringbuilderdbdataadapterdbdatapermissiondbdatapermissionattributedbdatareaderdbdatarecorddbdatasourceenumeratordbenumeratordbexceptiondbmetadatacollectionnamesdbmetadatacolumnnamesdbparameterdbparametercollectiondbproviderconfigurationhandlerdbproviderfactoriesdbproviderfactoriesconfigurationhandlerdbproviderfactorydbproviderspecifictypepropertyattributedbtransactiondbtypedeletedrowinaccessibleexceptiondescriptionattributeduplicatenameexceptionenumevaluateexceptioneventargsexternalexceptionfillerroreventargsfillerroreventhandlerforeignkeyconstraintformatgroupbybehaviorhashtableibinaryserializeibindinglistibindinglistviewicloneableicollectionicolumnmappingicolumnmappingcollectionicomparableiconfigurationsectionhandlericustomtypedescriptoridataadapteridataerrorinfoidataparameteridataparametercollectionidatareaderidatarecordidbcommandidbconnectionidbdataadapteridbdataparameteridbtransactionidentifiercaseidictionaryidisposableieditableobjectienumerableienumeratorilistilistsourceinotifypropertychangedinrowchangingeventexceptioninternaldatacollectionbaseinteropservicesinullableinvalidconstraintexceptioninvalidexpressionexceptioninvalidudtexceptionioiserializableiserviceproviderisolationlevelisqldebugisupportinitializeisupportinitializenotificationitablemappingitablemappingcollectionitypedlistiunrestrictedpermissionixmlserializablekeyrestrictionbehaviorloadoptionmappingtypemarshalbyrefobjectmarshalbyvaluecomponentmergefailedeventargsmergefailedeventhandlermicrosoftmissingmappingactionmissingprimarykeyexceptionmissingschemaactionmulticastdelegatenonullallowedexc�eptionobjectodbcodbccommandodbccommandbuilderodbcconnectionodbcconnectionstringbuilderodbcdataadapterodbcdatareaderodbcerrorodbcerrorcollectionodbcexceptionodbcfactoryodbcinfomessageeventargsodbcinfomessageeventhandlerodbcmetadatacollectionnamesodbcmetadatacolumnnamesodbcparameterodbcparametercollectionodbcpermissionodbcpermissionattributeodbcrowupdatedeventargsodbcrowupdatedeventhandlerodbcrowupdatingeventargsodbcrowupdatingeventhandlerodbctransactionodbctypeoledboledbcommandoledbcommandbuilderoledbconnectionoledbconnectionstringbuilderoledbdataadapteroledbdatareaderoledbenumeratoroledberroroledberrorcollectionoledbexceptionoledbfactoryoledbinfomessageeventargsoledbinfomessageeventhandleroledbliteraloledbmetadatacollectionnamesoledbmetadatacolumnnamesoledbparameteroledbparametercollectionoledbpermissionoledbpermissionattributeoledbrowupdatedeventargsoledbrowupdatedeventhandleroledbrowupdatingeventargsoledbrowupdatingeventhandleroledbschemaguidoledbtransactionoledbtypeonchangeeventhandleroperationabortedexceptionparameterdirectionpermissionspropertyattributespropertycollectionproviderbasereadonlyexceptionrownotintableexceptionrowupdatedeventargsrowupdatingeventargsruleruntimeschemaimporterextensionschemaserializationmodeschematablecolumnschematableoptionalcolumnschematypesecurityserializationserializationformatserversortordersqlsqlalreadyfilledexceptionsqlbinarysqlbooleansqlbulkcopysqlbulkcopycolumnmappingsqlbulkcopycolumnmappingcollectionsqlbulkcopyoptionssqlbytesqlbytessqlcharssqlclientsqlclientfactorysqlclientmetadatacollectionnamessqlclientpermissionsqlclientpermissionattributesqlcommandsqlcommandbuildersqlcompareoptionssqlconnectionsqlconnectionstringbuildersqlcontextsqlcredentialsqldataadaptersqldatareadersqldatarecordsqldatasourceenumeratorsqldatetimesqldbtypesqldebuggingsqldecimalsqldependencysqldoublesqlerrorsqlerrorcollectionsqlexceptionsqlfacetattributesqlfilestreamsqlfunctionattributesqlguidsqlinfomessageeventargssqlinfomessageeventhandlersqlint16sqlint32sqlint64sqlmetadatasqlmethodattributesqlmoney�sqlnotfilledexceptionsqlnotificationeventargssqlnotificationinfosqlnotificationrequestsqlnotificationsourcesqlnotificationtypesqlnullvalueexceptionsqlparametersqlparametercollectionsqlpipesqlprocedureattributesqlrowscopiedeventargssqlrowscopiedeventhandlersqlrowupdatedeventargssqlrowupdatedeventhandlersqlrowupdatingeventargssqlrowupdatingeventhandlersqlserversqlsinglesqlstringsqltransactionsqltriggerattributesqltriggercontextsqltruncateexceptionsqltypeexceptionsqltypessqltypesschemaimporterextensionhelpersqluserdefinedaggregateattributesqluserdefinedtypeattributesqlxmlstatechangeeventargsstatechangeeventhandlerstatementcompletedeventargsstatementcompletedeventhandlerstatementtypestoragestatestreamstrongtypingexceptionsupportedjoinoperatorssyntaxerrorexceptionsystemsystemdataaccesskindsystemexceptiontriggeractiontypebigintschemaimporterextensiontypebinaryschemaimporterextensiontypebitschemaimporterextensiontypecharschemaimporterextensiontypedatetimeschemaimporterextensiontypeddatasetgeneratortypeddatasetgeneratorexceptiontypedecimalschemaimporterextensiontypefloatschemaimporterextensiontypeintschemaimporterextensiontypemoneyschemaimporterextensiontypencharschemaimporterextensiontypentextschemaimporterextensiontypenumericschemaimporterextensiontypenvarcharschemaimporterextensiontyperealschemaimporterextensiontypesmalldatetimeschemaimporterextensiontypesmallintschemaimporterextensiontypesmallmoneyschemaimporterextensiontypetextschemaimporterextensiontypetinyintschemaimporterextensiontypeuniqueidentifierschemaimporterextensiontypevarbinaryschemaimporterextensiontypevarcharschemaimporterextensiontypevarimageschemaimporterextensionuniqueconstraintupdaterowsourceupdatestatusvaluetypeversionnotfoundexceptionxmlxmldatadocumentxmldocumentxmlreadmodexmlwritemodej$)	*2/A5U5p<~
>�H�L�W�	b�b�
f�f�g�
k�lqqy-y8
~B	�[
�w������
���������
�����7�H�T�b�m�t������	�������	��3�K�f�u�}��������	���������
�%�5�N�Z�f�|���������������'�9�J'�q
�~������������	������#�7�=�L	�U�e�q�
������� 8CN
X
es
�
�
��������5D	Mg���
���	���
	 	
 (	"?	$O	&e	
'o	'z	(�	(�	)�	)�		+�	+�	+
,
-)
/?
/E
/I
/T
/f
/t
0�
2�
4�
	5�
5�

7�
7�
7�
89.9E
9R9i:w:�:�:�:�:�;;	<<<-<<<X<h=w=�
=�=�=�>�>�>�>�?
?3
AA
BY
Bh
B�
B�
B�
B�
B�
B�
B	BB$B=BOCZDlD~D�D�D�D�D�E�E�E�EE"E;
EEEM
FZFmFs	G|GH�	H�
I�I�I�"I�JJ	KL	M"N2 NRReR�
R�R�R�
R�R�
R�
R�R�
R
SS*S5	S>SJ
ST
Ta	TjTrT�T�T�
T�T�T�T�T�TU
VVV/V7VLVdVwW�X�X�X�X�X�X�XYZ7]M]f]}]�	]�	]�	]�]�]�]�]�]]%]5 ^U^p^v^�^�^�^�
^�^�^�^^$^8^>^R^a
^n!^�!^�^�a�#bd%dC"de e�e� e� g� g"g%#hHhg(h�#h�%i�i�"i+iC$ig"i�#i�i�i�i�	i�i�i�i
ii ii

2L NPS��5IK$\
	 6VY[]	v�
���%
a�J	gu
��s
���$/?���'
8W	

*
->Ddl�
9
k�
	
5T����c
(
7;<	e{����
c�
�b%
	&GQ�0M�e
"1O�����)_j
�	h	@nz
�?,4BH�����:������7;	\
���
�BK+~��!��	FCF
rt	��#.�
���2R'=�3���o�	�I�Um}�
�
Ah�����xf�E�/y	q

�!GN��9 WbX|
��HQZ���C
w�^`��3ip����	-��
`"=�< ��


��	.i�������:L��	g�	

	�������&d������
	�
#+�1E
��
a�
f	>8�Y$46ORZ
,DA0()
*@]JMPVX_TS^U[

���)"�
��R<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll�	3S���>���b��3n7H;�accesscontrolaccessruleactionaddruleaesaescryptoserviceprovideraesmanagedaggregateallanonymouspipeclientstreamanonymouspipeserverstreamanyasenumerableasorderedasparallelasqueryableassequentialasunorderedasymmetricalgorithmattributeauditruleauthenticodesignatureinformationaveragebinaryexpressionbinaryoperationbinderbindbindingrestrictionsblockexpressioncallinfocallsitecallsitebindercallsitehelperscallsiteopscastcatchblockclearmatchclosurecngalgorithmcngalgorithmgroupcngexportpoliciescngkeycngkeyblobformatcngkeycreationoptionscngkeycreationparameterscngkeyhandleopenoptionscngkeyopenoptionscngkeyusagescngpropertycngpropertycollectioncngpropertyoptionscngprovidercnguipolicycnguiprotectionlevelscollectioncollectionscomawareeventinfocompilerservicescomponentmodelconcatconditio���!�
��
<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll�	3����������ނ�#[29acceptrejectruleadvancedapplicationintentattributecataloglocationcodeaccesspermissioncodeaccesssecurityattributecollectionbasecollectionscommandbehaviorcommandtypecommoncomponentcomponentmodelconfigurationconflictoptionconnectionstateconstraintconstraintcollectionconstraintexceptiondatadataaccesskinddataadapterdatacolumndatacolumnchangeeventargsdatacolumnchangeeventhandlerdatacolumncollectiondatacolumnmappingdatacolumnmappingcollectiondataexceptiondatarelationdatarelationcollectiondatarowdatarowactiondatarowbuilderdatarowchangeeventargsdatarowchangeeventhandlerdata��nalexpressionconstantexpressioncontainsconvertbindercountcounterdatacountersetcountersetinstancecountersetinstancecounterdatasetcountersetinstancetypecountertypecreateinstancebindercreatematchmakercreateruntimevariablescryptographydebuginfoexpressiondebuginfogeneratordefaultexpressiondefaultifemptydeleteindexbinderdeletememberbinderdiagnosticsdistinctdynamicdynamicattributedynamicexpressiondynamicexpressionvisitordynamicmetaobjectdynamicmetaobjectbinderdynamicobjectecdiffiehellmanecdiffiehellmancngecdiffiehellmancngpublickeyecdiffiehellmankeyderivationfunctionecdiffiehellmanpublickeyecdsaecdsacngeckeyxmlformatelementatelementatordefaultelementinitenumenumerableenumerableexecutorenumerablequeryenumeratoreventargseventbookmarkeventdescriptoreventinfoeventingeventkeywordeventleveleventlogconfigurationeventlogexceptioneventloginformationeventloginvaliddataexceptioneventlogisolationeventloglinkeventlogmodeeventlognotfoundexceptioneventlogpropertyselectoreventlogproviderdisabledexceptioneventlogqueryeventlogreadereventlogreadingexceptioneventlogrecordeventlogsessioneventlogstatuseventlogtypeeventlogwatchereventmetadataeventopcodeeventpropertyeventprovidereventprovidertracelistenereventrecordeventrecordwritteneventargseventschematracelistenereventtaskexceptexceptionexecutionscopeexpandocheckversionexpandoobjectexpandopromoteclassexpandotrydeletevalueexpandotrygetvalueexpandotrysetvalueexpressionexpressionsexpressiontypeexpressionvisitorfirstfirstordefaultforallfuncgenericgetcachedrulesgetindexbindergetmatchgetmemberbindergetrulecachegetrulesgotoexpressiongotoexpressionkindgroupbygroupjoinhandleinheritabilityhashseticollectionideserializationcallbackidictionaryidisposableidynamicmetaobjectproviderienumerableienumeratoriequatableigroupingiinvokeongetbinderilistilookupindexexpressioninotifypropertychangedinstancenotfoundexceptioninstrumentationinstrumentationbaseexceptioninstrumentationexceptioninteropservicesintersectinvocationexpressioninvokebinderinvokememberbinderioiorderedenumerableiorderedqueryableiqueryableiqueryp�rovideriruntimevariablesiserializableisetistrongboxjoinlabelexpressionlabeltargetlambdaexpressionlastlastordefaultlinqlistinitexpressionlockrecursionpolicylongcountlookuploopexpressionmanagementmanagementbindattributemanagementcommitattributemanagementconfigurationattributemanagementconfigurationtypemanagementcreateattributemanagemententityattributemanagementenumeratorattributemanagementhostingmodelmanagementkeyattributemanagementmemberattributemanagementnameattributemanagementnewinstanceattributemanagementprobeattributemanagementreferenceattributemanagementremoveattributemanagementtaskattributemanifestkindsmanifestsignatureinformationmanifestsignatureinformationcollectionmaxmd5md5cngmemberassignmentmemberbindingmemberbindingtypememberexpressionmemberinitexpressionmemberlistbindingmembermemberbindingmemorymappedfilememorymappedfileaccessmemorymappedfileoptionsmemorymappedfilerightsmemorymappedfilesmemorymappedfilesecuritymemorymappedviewaccessormemorymappedviewstreammergeruntimevariablesmethodcallexpressionmicrosoftminmoverulemulticastdelegatenamedpipeclientstreamnamedpipeserverstreamnativeobjectsecuritynewarrayexpressionnewexpressionobjectobjectmodelobjectsecurityoftypeorderbyorderbydescendingorderedparallelqueryparallelenumerableparallelexecutionmodeparallelmergeoptionsparallelqueryparameterexpressionpathtypeperformancedatapipeaccessrightspipeaccessrulepipeauditrulepipedirectionpipeoptionspipespipesecuritypipestreampipestreamimpersonationworkerpipetransmissionmodeprovidermetadataqueryablequotereaderreaderwriterlockslimreadonlycollectionreadonlycollectionbuilderreflectionreverserulecacheruntimeruntimeopsruntimevariablesexpressionsafebuffersafehandlessafehandlezeroorminusoneisinvalidsafememorymappedfilehandlesafememorymappedviewhandlesafencrypthandlesafencryptkeyhandlesafencryptproviderhandlesafencryptsecrethandlesafepipehandlesecurityselectselectmanysequenceequalserializationsessionauthenticationsetindexbindersetmemberbindersetnotmatchedsha1sha1cngsha256sha256cngsha256cryptoserviceprovidersha384sha384cngsha384�cryptoserviceprovidersha512sha512cngsha512cryptoserviceprovidersignatureverificationresultsinglesingleordefaultskipskipwhilestandardeventkeywordsstandardeventlevelstandardeventopcodestandardeventtaskstreamstrongboxstrongnamesignatureinformationsumswitchcaseswitchexpressionsymboldocumentinfosystemtaketakewhiletaskextensionstaskstextwritertracelistenerthenbythenbydescendingthreadingtimestampinformationtoarraytodictionarytolisttolookuptracelistenertracelogretentionoptiontruststatustryexpressiontypebinaryexpressionunaryexpressionunaryoperationbinderunescapedxmldiagnosticdataunionunmanagedmemoryaccessorunmanagedmemorystreamunwrapupdaterulesvaluetypewherewin32withcancellationwithdegreeofparallelismwithexecutionmodewithmergeoptionswmiconfigurationattributewriteeventerrorcodex509certificateszip


$
('2?
8I	9R<U?nA�G�J�	P�
R�U�Y�Z�\�	b�	b� be
g'q<
x@�S�b�j�r��������
��
����������������*�A�R�^�i�~��������
�������������,�4
��A�F�Q
�[�m �����������������*�8�I�[�f�n�u����������
������$�C�[�`hv	���
���
�	�
�	�	
!6GZv�����!�
�$2AO[j
w�
�
� �$�$�$�	$�$	%%'-
':(M+b-t.�
.�/�/�/�/�1�2�2�3�3�4�8	9	;	;%	;3	;E	;L		=U	@i	Ap	B{	B�	B�	C�	C�	E�	E�	
E�		E�	E�	E
F

F
F/
FH
FW
Gs
G�
G�
	G�
G�
G�
G�
G�
I�
J�

JKK#
L0L4
N>PBPQP\PlQp
S}S�T�T�	T�T�T�
T�T�U� UV8WQWjW�X�Y�Y�Y�[
[
[5
\N
\e

\r
_�
&_�
_�
`�
`�
`�

`�
`�
`�
``#`6`Fa\bsb�b�b�b�b�b�b		bbbb.bCbXblb~
b�d�e�e�e�e�f�g�g�gg
g$g7g?hNh^hl
hy
h�h�h�i�
i�i�i�i�	j�j�klm'm@
mJmQ	nZna
nkn�
n�n�!n�n�o�o�oo*o@oNoVo\
of
os
o�o�p�p�
p�p�r�r�	s�u�v�	wxy$	y-yHycyizxz|	{�|�|�|�|�|�	|�|�|
|
||,|2|6	|?|M|R|i|o|	|�|�}�}�}�}�
}�}�}�
}�}
}~0~J~O~f~{~�~�	~�~�~�~�~�~�~�~~~#~~	


,01[\wy���-5_��
%	2X
`��
	!
/
9?��	+��2x��!�J�p]x|���^d
"o	��
�A	i
 		(�
�t�
#6*f��XCs���'-T
~�
����4;H���N

.	>R������>]b
r�
k����m$:�e�&)G��
=
a	l	Q	�
3	Pv
�S{��
y��	+���$W�����#sw
Ij
}	�gFJU�3:78
<KV�
	A�k%B
Lt�}q=D	@
��)V�Eh
NO��p�
M�
Y�@�Z�"g�c
nu����		�
��b
K�z�
��i
�	'��	7��I���0�^
�d���*Bn
4��h���� c��
�;O
,<Q��
�	M5
�{el�v�Y_�SW?��T�	�1�.
8
\~�	9j6(`[oP&Rqr/mLZCDaEFGHuU	f|z
����N$�1�z<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll�	3���������2�!�0�Υ~�asdataviewasenumerablecastcollectionscopytodatatabledatadatarowcomparerdatarowextensionsdatatabledatatableextensionselementatordefaultenumerablerowcollectionenumerablerowcollectionextensionsfieldgenericienumerableiequalitycomparerobjectorderbyorderbydescendingorderedenumerablerowcollectionselectsetfieldsystemthenbythenbydescendingtypedtablebasetypedtablebaseextensionswhere

%48GX	at��!�������"(06<LZr	
	

	


�f#�)�2<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll�	17���������2�!�0�Υ~�SystemDataDataRowComparerDataTableExtensionsAsEnumerableCopyToDataTableAsDataViewEnumerableRowCollectionOrderedEnumerableRowCollectionEnumerableRowCollectionExtensionsWhereOrderByOrderByDescendingThenByThenByDescendingSelectCastDataRowExtensionsFieldSetFieldTypedTableBaseTypedTableBaseExtensionsWhereOrderByOrderByDescendingSelectAsEnumerableElementAtOrDefaultDataTableObjectCollectionsGenericIEqualityComparerIEnumerable$����G
,K!�x8
�i	W!Q�!�	����r�-!�4!h�E!�	���(!
	!
 


 �IHelpServiceIInheritanceServiceIMenuCommandServiceIReferenceServiceIResourceServiceIRootDesignerISelectionServiceITreeDesignerITypeDescriptorFilterServiceITypeDiscoveryServiceITypeResolutionServiceSelectionTypesServiceCreatorCallbackServiceContainerStandardCommandsStandardToolWindowsViewTechnologyAddingNewEventArgsAddingNewEventHandlerAmbientValueAttributeTypeConverterStandardValuesCollectionMemberDescriptorPropertyDescriptorCollectionConverterArrayConverterAsyncCompletedEventArgsAsyncCompletedEventHandlerAsyncOperationAsyncOperationManagerAttributeCollectionAttributeProviderAttributeIComponentComponentBackgroundWorkerComponentEditorBaseNumberConverterBindableAttributeBindableSupportBindingDirectionIBindingListICancelAddNewIRaiseItemChangedEventsBindingListBooleanConverterBrowsableAttributeByteConverterCancelEventArgsCancelEventHandlerCategoryAttributeCharConverterCollectionChangeActionCollectionChangeEventArgsCollectionChangeEventHandlerComplexBindingPropertiesAttributeComponentCollectionReferenceConverterComponentConverterComponentResourceManagerIContainerContainerISiteContainerFilterServiceCultureInfoConverterICustomTypeDescriptorCustomTypeDescriptorDataErrorsChangedEventArgsDataObjectAttributeDataObjectFieldAttributeDataObjectMethodAttributeDataObjectMethodTypeDateTimeConverterDateTimeOffsetConverterDecimalConverterDefaultBindingPropertyAttributeDefaultEventAttributeDefaultPropertyAttributeDefaultValueAttributeTypeDescriptionProviderDescriptionAttributeDesignerAttributeDesignerCategoryAttributeDesignerSerializationVisibilityDesignerSerializationVisibilityAttributeDesignOnlyAttributeDesignTimeVisibleAttributeDisplayNameAttributeDoubleConverterDoWorkEventArgsDoWorkEventHandlerEditorAttributeEditorBrowsableAttributeEditorBrowsableStateEnumConverterEventDescriptorEventDescriptorCollectionEventHandlerListExpandableObjectConverterExtenderProvidedPropertyAttributeGuidConverterHandledEventArgsHandledEventHandlerIBindingListViewIChangeTrackingIComNativeDescriptorHandlerIDataErrorInfoIEditableObjectIExtenderProviderIIntellisenseBuilderIListSourceImmutableObjectAttributeINestedContainerINestedSiteInitializationEventAttributeINotifyDataErrorInfoINotifyPropertyChangedINotifyPropertyChangingInstallerTypeAttributeInstanceCreationEditorInt16ConverterInt32ConverterInt64ConverterInvalidAsynchronousStateExceptionInvalidEnumArgumentExceptionIRevertibleChangeTrackingISupportInitializeISupportInitializeNotificationISynchronizeInvokeITypeDescriptorContextITypedListLicenseLicenseContextLicenseExceptionLicenseManagerLicenseProviderLicenseProviderAttributeLicenseUsageModeLicFileLicenseProviderListBindableAttributeListChangedEventArgsListChangedEventHandlerListChangedTypeListSortDescriptionListSortDescriptionCollectionListSortDirectionLocalizableAttributeLookupBindingPropertiesAttributeMarshalByValueComponentMaskedTextProviderMaskedTextResultHintMergablePropertyAttributeMultilineStringConverterNestedContainerNullableConverterPasswordPropertyTextAttributeProgressChangedEventArgsProgressChangedEventHandlerPropertyChangedEventArgsPropertyChangedEventHandlerPropertyChangingEventArgsPropertyChangingEventHandlerPropertyDescriptorCollectionProvidePropertyAttributeReadOnlyAttributeRecommendedAsConfigurableAttributeRefreshEventArgsRefreshEventHandlerRunInstallerAttributeRunWorkerCompletedEventArgsRunWorkerCompletedEventHandlerSByteConverterSettingsBindableAttributeSingleConverterStringConverterSyntaxCheckTimeSpanConverterToolboxItemFilterAttributeToolboxItemFilterTypeTypeConverterAttributeTypeDescriptionProviderAttributeTypeDescriptorTypeListConverterUInt16ConverterUInt32ConverterUInt64ConverterWarningExceptionWin32ExceptionInheritanceAttributeInheritanceLevelNotifyParentPropertyAttributeParenthesizePropertyNameAttributePropertyTabAttributePropertyTabScopeRefreshPropertiesRefreshPropertiesAttributeToolboxItemAttributeDiagnosticsCodeAnalysisExcludeFromCodeCoverageAttributeSwitchBooleanSwitchTraceListenerTextWriterTraceListenerConsoleTraceListenerCorrelationManagerDebugFlushCloseAssertFailPrintWriteWriteLineWriteIfWriteLineIfIndentUnindentDefaultTrac�eListenerDelimitedListTraceListenerTraceFilterEventTypeFilterSourceFilterSourceLevelsSourceSwitchSwitchAttributeSwitchLevelAttributeTraceTraceEventCacheTraceEventTypeTraceLevelTraceListenerCollectionTraceOptionsTraceSourceTraceSwitchXmlWriterTraceListenerCounterCreationDataCounterCreationDataCollectionCounterSampleCounterSampleCalculatorDataReceivedEventHandlerDataReceivedEventArgsDiagnosticsConfigurationHandlerEntryWrittenEventArgsEntryWrittenEventHandlerEventInstanceEventLogEventLogEntryEventLogEntryCollectionEventLogEntryTypeEventLogPermissionEventLogPermissionAccessEventLogPermissionAttributeEventLogPermissionEntryEventLogPermissionEntryCollectionEventLogTraceListenerEventSourceCreationDataFileVersionInfoICollectDataInstanceDataInstanceDataCollectionInstanceDataCollectionCollectionMonitoringDescriptionAttributeOverflowActionPerformanceCounterPerformanceCounterCategoryPerformanceCounterCategoryTypePerformanceCounterInstanceLifetimePerformanceCounterManagerPerformanceCounterPermissionPerformanceCounterPermissionAccessPerformanceCounterPermissionAttributePerformanceCounterPermissionEntryPerformanceCounterPermissionEntryCollectionPerformanceCounterTypeProcessProcessModuleProcessModuleCollectionProcessPriorityClassProcessStartInfoProcessThreadProcessThreadCollectionProcessWindowStyleStopwatchThreadPriorityLevelThreadStateThreadWaitReasonConfigurationInternalIConfigErrorInfoIConfigurationSectionHandlerSchemeSettingElementSchemeSettingElementCollectionUriSectionIriParsingElementIdnElementSettingsBaseApplicationSettingsBaseSettingsLoadedEventHandlerSettingsSavingEventHandlerSettingChangingEventHandlerSettingChangingEventArgsSettingsLoadedEventArgsConfigurationExceptionConfigurationSettingsConfigXmlDocumentDictionarySectionHandlerIApplicationSettingsProviderIConfigurationSystemIgnoreSectionHandlerIPersistComponentSettingsISettingsProviderServiceSettingsProviderLocalFileSettingsProviderNameValueFileSectionHandlerNameValueSectionHandlerSettingsAttributeDictionarySettingAttributeApplicationScopedSettingAttributeDefaultSettingValueAttributeNoSettingsVersionUpgradeAttributeSettingsDescriptionAttributeSettingsGroupDescriptionAttributeSettingsGroupNameAttributeSettingsManageabilityAttributeSettingsProviderAttributeSettingsSerializeAsAttributeSpecialSettingAttributeUserScopedSettingAttributeSettingsManageabilitySpecialSettingSettingsContextSettingsPropertySettingsPropertyCollectionSettingsPropertyIsReadOnlyExceptionSettingsPropertyNotFoundExceptionSettingsPropertyValueSettingsPropertyValueCollectionSettingsPropertyWrongTypeExceptionSettingsProviderCollectionSettingsSerializeAsSingleTagSectionHandlerApplicationSettingsGroupUserSettingsGroupClientSettingsSectionSettingElementCollectionSettingElementSettingValueElementAppSettingsReaderConfigurationElementConfigurationElementCollectionConfigurationSectionProviderProviderBaseProviderCollectionConfigurationSectionGroupIOCompressionCompressionModeCompressionLevelDeflateStreamGZipStreamPortsHandshakeParitySerialErrorSerialErrorReceivedEventArgsSerialErrorReceivedEventHandlerSerialPinChangeSerialPinChangedEventArgsSerialPinChangedEventHandlerSerialPortSerialDataSerialDataReceivedEventArgsSerialDataReceivedEventHandlerStopBitsInvalidDataExceptionNotifyFiltersErrorEventArgsErrorEventHandlerFileSystemEventArgsFileSystemEventHandlerFileSystemWatcherInternalBufferOverflowExceptionIODescriptionAttributeRenamedEventArgsRenamedEventHandlerWaitForChangedResultWatcherChangeTypesTextWriterStreamReflectionICustomTypeProviderRuntimeInteropServicesWindowsRuntimeComTypesADVFDATADIRDVASPECTFORMATETCIAdviseSinkIDataObjectIEnumFORMATETCIEnumSTATDATASTATDATASTGMEDIUMTYMEDHandleCollectorDefaultParameterValueAttributeStandardOleMarshalObjectExternalExceptionVersioningFrameworkNameSerializationISerializableIDeserializationCallbackThreadingSemaphoreBarrierPostPhaseExceptionBarrierThreadExceptionEventArgsThreadExceptionEventHandlerWaitHandleCollectionsConcurrentBlockingCollectionConcurrentBagIProducerConsumerCollectionGenericLinkedListEnumeratorLinkedListNodeQueueEnumeratorSortedListStackEnumeratorSortedDictiona�ryEnumeratorKeyCollectionEnumeratorValueCollectionEnumeratorISetSortedSetEnumeratorIEnumerableICollectionIDictionaryIEnumeratorSpecializedINotifyCollectionChangedBitVector32SectionCollectionsUtilHybridDictionaryIOrderedDictionaryListDictionaryNameObjectCollectionBaseKeysCollectionNameValueCollectionNotifyCollectionChangedActionNotifyCollectionChangedEventArgsNotifyCollectionChangedEventHandlerOrderedDictionaryStringCollectionStringEnumeratorStringDictionaryObjectModelObservableCollectionReadOnlyObservableCollectionCollectionReadOnlyCollectionICollectionIEnumerableCollectionBaseIListReadOnlyCollectionBaseIDictionaryDictionaryBaseHashtableIEnumeratorIDictionaryEnumeratorMediaSoundPlayerSystemSoundsSystemSoundWindowsMarkupValueSerializerAttributeInputICommandSecurityAccessControlSemaphoreRightsSemaphoreAccessRuleSemaphoreAuditRuleSemaphoreSecurityAccessRuleAuditRuleNativeObjectSecurityPermissionsStorePermissionStorePermissionAttributeStorePermissionFlagsTypeDescriptorPermissionFlagsTypeDescriptorPermissionTypeDescriptorPermissionAttributeResourcePermissionBaseResourcePermissionBaseEntryCodeAccessSecurityAttributeIUnrestrictedPermissionCryptographyX509CertificatesX500DistinguishedNameFlagsX500DistinguishedNameX509NameTypeX509IncludeOptionPublicKeyX509Certificate2X509FindTypeX509CertificateCollectionX509CertificateEnumeratorX509Certificate2CollectionX509Certificate2EnumeratorX509ChainStatusFlagsX509ChainStatusX509ChainX509ChainElementX509ChainElementCollectionX509ChainElementEnumeratorX509RevocationModeX509RevocationFlagX509VerificationFlagsX509ChainPolicyX509ExtensionX509KeyUsageFlagsX509KeyUsageExtensionX509BasicConstraintsExtensionX509EnhancedKeyUsageExtensionX509SubjectKeyIdentifierHashAlgorithmX509SubjectKeyIdentifierExtensionX509ExtensionCollectionX509ExtensionEnumeratorStoreLocationOpenFlagsStoreNameX509StoreX509CertificateAsnEncodedDataAsnEncodedDataCollectionAsnEncodedDataEnumeratorOidGroupOidOidCollectionOidEnumeratorClaimsDynamicRoleClaimProviderAddDynamicRoleClaimsAuthenticationExtendedProtectionConfigurationExtendedProtectionPolicyElementServiceNameElementCollectionServiceNameElementChannelBindingChannelBindingKindExtendedProtectionPolicyExtendedProtectionPolicyTypeConverterPolicyEnforcementProtectionScenarioServiceNameCollectionAuthenticationExceptionInvalidCredentialExceptionSslProtocolsExchangeAlgorithmTypeCipherAlgorithmTypeHashAlgorithmTypeCodeAccessPermissionPrincipalGenericIdentityNetSocketsSocketExceptionNetworkStreamAddressFamilyIOControlCodeIPProtectionLevelLingerOptionMulticastOptionIPv6MulticastOptionProtocolFamilyProtocolTypeSelectModeSocketInformationOptionsSocketInformationSocketSocketAsyncOperationSendPacketsElementSocketClientAccessPolicyProtocolSocketAsyncEventArgsSocketErrorSocketFlagsSocketOptionLevelSocketOptionNameSocketShutdownSocketTypeTcpClientTcpListenerTransmitFileOptionsUdpClientUdpReceiveResultIPPacketInformationSecurityAuthenticatedStreamAuthenticationLevelProtectionLevelNegotiateStreamSslPolicyErrorsEncryptionPolicyRemoteCertificateValidationCallbackLocalCertificateSelectionCallbackSslStreamConfigurationUnicodeDecodingConformanceUnicodeEncodingConformanceAuthenticationModuleElementAuthenticationModuleElementCollectionAuthenticationModulesSectionBypassElementBypassElementCollectionConnectionManagementElementConnectionManagementElementCollectionConnectionManagementSectionDefaultProxySectionHttpWebRequestElementHttpListenerElementHttpListenerTimeoutsElementHttpCachePolicyElementFtpCachePolicyElementIpv6ElementMailSettingsSectionGroupModuleElementNetSectionGroupPerformanceCountersElementProxyElementBypassOnLocalValuesUseSystemDefaultValuesAutoDetectValuesRequestCachingSectionSettingsSectionServicePointManagerElementSmtpSectionSmtpNetworkElementSmtpSpecifiedPickupDirectoryElementSocketElementWebProxyScriptElementWebRequestModuleElementWebRequestModuleElementCollectionWebRequestModulesSectionWebUtilityElementCacheRequestCacheLevelRequestCachePolicyHttpRequestCacheLevelHttpCacheAgeControlHttpRequestCachePolicyNetworkInformationDuplicateAddressDetectionStateIcmpV4StatisticsIcmpV6Statist�icsNetworkInterfaceTypeIPAddressInformationIPAddressInformationCollectionIPGlobalPropertiesIPGlobalStatisticsScopeLevelIPInterfacePropertiesIPInterfaceStatisticsIPv4InterfaceStatisticsIPStatusUnicastIPAddressInformationUnicastIPAddressInformationCollectionMulticastIPAddressInformationMulticastIPAddressInformationCollectionIPAddressCollectionGatewayIPAddressInformationGatewayIPAddressInformationCollectionIPv4InterfacePropertiesIPv6InterfacePropertiesNetworkAvailabilityEventArgsNetworkChangeNetworkAddressChangedEventHandlerNetworkAvailabilityChangedEventHandlerNetworkInformationExceptionNetworkInformationAccessNetworkInformationPermissionAttributeNetworkInformationPermissionNetworkInterfaceNetworkInterfaceComponentNetBiosNodeTypeOperationalStatusPhysicalAddressPingCompletedEventHandlerPingCompletedEventArgsPingPingExceptionPingOptionsPingReplyPrefixOriginSuffixOriginTcpConnectionInformationTcpStatisticsUdpStatisticsTcpStateMailAttachmentBaseAlternateViewAlternateViewCollectionAttachmentAttachmentCollectionLinkedResourceLinkedResourceCollectionMailAddressMailAddressCollectionDeliveryNotificationOptionsMailMessageMailPrioritySendCompletedEventHandlerSmtpDeliveryMethodSmtpDeliveryFormatSmtpClientSmtpExceptionSmtpFailedRecipientExceptionSmtpFailedRecipientsExceptionSmtpAccessSmtpPermissionAttributeSmtpPermissionSmtpStatusCodeMimeContentDispositionContentTypeDispositionTypeNamesMediaTypeNamesTextApplicationImageTransferEncodingWebSocketsWebSocketClientWebSocketClientWebSocketOptionsWebSocketContextHttpListenerWebSocketContextWebSocketCloseStatusWebSocketErrorWebSocketExceptionWebSocketMessageTypeWebSocketReceiveResultWebSocketStateICredentialPolicyAuthenticationManagerAuthenticationSchemesAuthenticationSchemeSelectorAuthorizationCookieCookieCollectionCookieContainerCookieExceptionICredentialsICredentialsByHostCredentialCacheNetworkCredentialDnsGetHostByNameGetHostByAddressResolveBeginGetHostByNameEndGetHostByNameBeginResolveEndResolveEndPointDnsEndPointDnsPermissionAttributeDnsPermissionWebRequestIWebRequestCreateIWebProxyFileWebRequestWebResponseFileWebResponseFtpStatusCodeWebRequestMethodsFtpHttpFileFtpWebRequestFtpWebResponseGlobalProxySelectionHttpListenerBasicIdentityHttpListenerExtendedProtectionSelectorHttpListenerContextHttpListenerExceptionHttpListenerPrefixCollectionHttpListenerRequestHttpListenerResponseHttpListenerTimeoutManagerHttpRequestHeaderHttpResponseHeaderHttpStatusCodeHttpVersionDecompressionMethodsHttpWebRequestHttpWebResponseIAuthenticationModuleICertificatePolicyHttpContinueDelegateIPAddressIPEndPointIPHostEntryNetworkAccessProtocolViolationExceptionTransportContextBindIPEndPointServicePointSecurityProtocolTypeServicePointManagerSocketAddressSocketPermissionAttributeSocketPermissionEndpointPermissionTransportTypeWebClientOpenReadCompletedEventHandlerOpenReadCompletedEventArgsOpenWriteCompletedEventHandlerOpenWriteCompletedEventArgsDownloadStringCompletedEventHandlerDownloadStringCompletedEventArgsDownloadDataCompletedEventHandlerDownloadDataCompletedEventArgsUploadStringCompletedEventHandlerUploadStringCompletedEventArgsUploadDataCompletedEventHandlerUploadDataCompletedEventArgsUploadFileCompletedEventHandlerUploadFileCompletedEventArgsUploadValuesCompletedEventHandlerUploadValuesCompletedEventArgsDownloadProgressChangedEventHandlerDownloadProgressChangedEventArgsUploadProgressChangedEventHandlerUploadProgressChangedEventArgsWebExceptionWebExceptionStatusWebHeaderCollectionWebPermissionAttributeWebPermissionWebProxyWebUtilityWriteStreamClosedEventArgsWriteStreamClosedEventHandlerIWebProxyScriptICloseExIAutoWebProxyTimersElapsedEventArgsElapsedEventHandlerTimerTimersDescriptionAttributeWebAspNetHostingPermissionLevelAspNetHostingPermissionAttributeAspNetHostingPermissionDrawingUriParserUriUriBuilderUriFormatExceptionUriHostNameTypeUriPartialUriTypeConverterUriKindUriComponentsUriFormatUriIdnScopeGenericUriParserOptionsGenericUriParserHttpStyleUriParserFtpStyleUriParserFileStyleUriParserNewsStyleUriParserGopherStyleUriParserLdapStyleUriParserNetPipeStyleUriParserNetTcpStyleUriParserObjectFormatException�EnumMulticastDelegateTimeoutExceptionAttributeIDisposableEventArgsMarshalByRefObjectResourcesResourceManagerIServiceProviderArgumentExceptionSystemExceptionICloneableValueTypeXmlXmlDocumentExceptionIEquatableInvalidOperationExceptionMicrosoftWin32SafeHandlesSafeHandleZeroOrMinusOneIsInvalidPowerModeChangedEventArgsPowerModeChangedEventHandlerPowerModesSessionEndedEventArgsSessionEndedEventHandlerSessionEndingEventArgsSessionEndingEventHandlerSessionEndReasonsSessionSwitchEventArgsSessionSwitchEventHandlerSessionSwitchReasonSystemEventsTimerElapsedEventArgsTimerElapsedEventHandlerUserPreferenceCategoryUserPreferenceChangedEventArgsUserPreferenceChangedEventHandlerUserPreferenceChangingEventArgsUserPreferenceChangingEventHandlerIntranetZoneCredentialPolicyUnsafeNativeMethodsIMarshalCSharpCSharpCodeProviderVisualBasicVBCodeProviderq�����1
0K2
��6?%�7��8
��,��B
v�BvL�sD��&!��$�@)��)�gO���46�B6�Z6��M*bM *FM*���������B
v�Bv�BvO	��0�U2	P:/�60�7'c:/tE�A;�\;%��;��E��E��E
�+=]�.��-�|�`F/�F/��������3I��/�Z.���I
)
��;
��;�=
�<>�)�8�/6J�C7mQ7m[
��*8'�60i)��D@�D@�N80?3�)v*vCvjv}v�v�v�v�"vvv:vPvbvqv�v�v�v�v���v�v)v8vRvnv�v�
v�v��	��v�v�v�vvv�
��3vDvYvov�v�v�vv�v�v�v�v
vv5vHv�
vev"v�,v7
��v�v'v*v=vKvcvyv�v�v]
v�v�v�vv v3vFvcvvsv�v�v�v�v�v	v�v*	 vJ	v�0
�-1�h�~�����E.��/��	�vA
�N�e�q����!�T	��������m�6H�	�]u��	AO*'i*�Z*��, P.
�l.
��6
m;
�E$
��)��)�~%��)�4*��%��%��;��;%�<�z)-	�;�0D�BD��	A�E��E��E��E��)�)	 )& 
)3 )F�q30R�R�Q�z��,�����������b )J )���)(�rH�8�W�F- l�<��	%A�&���)��y*
�)0Cv���	������
�
�
�	A����
(�
A��!
$6
B
5�X
p
"H��w )a1��%�b�MD�9F��F��F
��F�v��J��J!��K ��K#�eJ �BJ#������M��>��,��6Q������M�M��:/rF/�F��I��F
/� )� )�N��
�/
Y�.
f�.
�.
�</
��.
�%/
�+'�+'$O	������� 
)� )� 
)� )� )
!)!)7!)R!)i!!)�!)�!)%)�O	�8'# X��&��6'c7m�6�{7%m�G�?!�|- �i	v?G4cN��+'�+'�+'�!)�F�G���,	��N��-
#8G4�<�G
�RN�CG
�PG�F@�a@%������.�k8�0N�N�IF/<F
/^G��N�[``
��*
�7- m�}��*	�=8'o1	��
�
�
;G4y>Fr<��H��G�rG��G�D<��G��G��G�H�H�W<��D@d>F�>F6H�GH�YH�@N�gH��H�/<��H��/��,��%��H��L
������
��H����O
��L��>��>��
���,��!)1�Q/��1��J
��
,Z$j$��%�#
�cE��E�F�e��,
���,��-BA	J_
�
A2
AF
A�\
Ay
A�
AV1�\/��1��O��$
���"1�F/�x1�g/�-�-
��O
������&����;1��~D��Q��
A���/�?�G�[�J�}/�f�z����1F�����!)�!)�! )�
A������R$��+'�,%�QD�!��7'�+'��O�M*��8
�,'�/��H	�3@�?�?��H
�&�8?�J?��H�f?�{?�5:��8�y.��?��@��?��<��@��8���->:��$�N
[�-
BnWO�//�/&�6�S�e���l
��y��
��Z3��F	��L��F��.
��/����N�����������������8��.
��.��Bv�Bv5�J�^�u��/��������:!/W&���� ��B�CvCvKCvVCv�<��1F-O����"�z!�1�aD�w	v���
A�
A+
6��O	,D��<
�")�N��?�@'��8�O��/�0�p&��&�^2�:/g�z8��A��N��<��N��H
��@!��@&��@��@
�(F��>�?A�$A�|A�WA%��A��A��>��8
�uN�
'!�0�<0 �\0#��+
'k�v��N��0��0�z6�}6
��6
�r6�
6	W�I��I�'J�	J��A�0�1")�!��*���?")Q")k")�"")�")�")�"")#%)'#!)H#+)�<�s#)r20�A�B�	B��A�#B
�0B�;B	��7m�*'PD'PDCP
DDB�b8	0��#)�#
)�#)�#)�#)�#
)�#)�#)��������
�#���?�����v:/�7m�8�9�	I�[�*�*�"*��<��3	W�.�s�1�@1��0��"����,
���������G��o�
��:#/2,'B,'A>FR>F;=�YF/AAHO"3�$3�?O	�0A���,������OD�O!(��$��$�\?
��/=H:��1�MI��9
��-	�2(22:2bCv`9�8+
�B+�]+��*��*��*��	
�-
%OA�*��*�+�.+
����7m17�7�AI�aI�_=�MPDbPDzPD�PD�PD�PD�PD�PD�&�O%�4%��)�~)��&��$�%�)(�+'�G'!�h'�g%�%�(��'�8(�H(�b(#��(!��(��(��("�G&��'��(�%�P=�)��'��)�>�))��C
v�C
v�Cv{Cv�C
v�Cv�Cv�=�Dv�Cvy=��=#�DvF9�tI
��9�L9�r9 ��=
��9��8��9�59�9��9��9��I��I�}8��9��9
��.��.
�3/	��1�4)@)L)r/�(��'��:/	8'�:	/�.��d- n�!-�)-	�{+�$	)�5
W6	W}2��2��2��,'�0�M��0��0�PB��C)X)g)\��PDxO��1��1��9	�\B��9��B�tB
���oD��{,
'c).� .��-	�$)*$)5$)O�$M�QDQD�L�)M�g���x���{)�)�))�
)V
)�)�)�)�)�D�	:�#I��I
�2-�a
������ �a���2��2!��2���:	�%:��B
������?��?%�
;�';���QD"K�K�]K�>K�L��K!��J��J!��K�yK!��M��M
��M
�N	��M��M�N��M��M	��M
��$
��M�5QDKQDiQ!D�QD�Q"D�'�X)�=/��1|�O	�%R%�-
%R�U,';.
�)�i,'CM��I	�:L�FL�XL��L
�kL��L��=��F
�'G��=��=!�>�G��D	@�D@�D@E@E@+E@?E@�D
�UE@�L
�+>��O�9��1��, ���	��L��L��3W�3WO5W%6W�3W04WJ4W�3W4U}3��4	W�4W�4W�4W
5Wx4Wd4Wl5W5
W�5W�5W�3W�3W:5W)5W�3W�4W�4W6	W�5!W�5%W�4W�O��On�)���IJ���^`f��~�����k���#�����YZ]^`aop~����� �'H�����C����������*[^cf{�����^�,���hilmx��3>�fg����Y��n�����Z��!���TXYZ[\abjV?n*0�����/G4��������+3�MN�H1Be�>�:�����-.1245;��,��:=�������� wyz��.���
9T;?��v�!F!E]f�PONQRST���n�3|8}���,.1}~��L�
�d��u��[9:��Bcmq���
��2$����_a����������f�t�)����>D;�	�>��7���Ogdc^ihmfl����iP�M��.�����1�-(7��3����������)��E��D1��=�-9�������z|{y��:<>A�TW��5?N	�Ml������p	���w��\���@�H�;�l���'����"IKerZVy@F=��/�<��95
7Mr���9qD�QSV��0J����#�;Y�p���^im>�f���I�Y�*n���Z�Za��.��,��2J����#�;Y�p���^im>�f���I�Y�*n����Z�Za���.��,�I�����
z�tim�����zYZ[bcepqrsy}��������������\]jn|����������_agku{��������$�d�Uth���������ox�
��;Y�p���m����~~l�l�w2\]����zG�+����"B�$8AK����
%(-@Arbjtu���$_���
�����#��jX
�abcgpu�	 �
�)�����Z]~� �DOHC�3>PONQRST8������� !iyz9W(G���k�������!JdUx?E<��L��C�PRU���X�}���38��~�;�!ix�;��;?;5E3*w������J	�����HKP^~G�H�����G:YK"%�BLM\�z��_(�$(ad�im��������*n�
&��84	�sEO��#^&G�H���DO�����!��&��PONQRST=.]��6�@����e��p�g��*,���x `�W
b���2�0��+�)����+C�[voK+B������<��O���25C�,\L,C�6�	R-�s�7^�o����oos�s�]`Xhjkn4}q�{�x���&����'48��f�PONQRST��I��
PONQRST�T[bV�PONQRST��*��5%6�8V	�� 1�/��U	�� 1�/��N`QRUS`eP_k(#)L������G0/3|��8}���}��E���=&�,��6�.�1V1&���-�� 
h}~~9S;��!w�"
bb��r%�{��v<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll�	176ܣ)��0�g�m �B� ��SystemTextRegularExpressionsRegexMatchEvaluatorCaptureCaptureCollectionRegexCompilationInfoGroupGroupCollectionRegexRunnerMatchMatchCollectionRegexMatchTimeoutExceptionRegexOptionsRegexRunnerFactoryCodeDomCompilerICodeGeneratorCodeGeneratorICodeCompilerCodeCompilerCodeDomProviderCodeGeneratorOptionsICodeParserCodeParserCompilerErrorCompilerErrorCollectionCompilerInfoCompilerParametersCompilerResultsExecutorGeneratedCodeAttributeGeneratorSupportIndentedTextWriterLanguageOptionsTempFileCollectionCodeObjectCodeExpressionCodeArgumentReferenceExpressionCodeArrayCreateExpressionCodeArrayIndexerExpressionCodeStatementCodeAssignStatementCodeAttachEventStatementCodeAttributeArgumentCodeAttributeArgumentCollectionCodeAttributeDeclarationCodeAttributeDeclarationCollectionCodeBaseReferenceExpressionCodeBinaryOperatorExpressionCodeBinaryOperatorTypeCodeCastExpressionCodeCatchClauseCodeCatchClauseCollectionCodeDirectiveCodeChecksumPragmaCodeCommentCodeCommentStatementCodeCommentStatementCollectionCodeCompileUnitCodeConditionStatementCodeTypeMemberCodeMemberMethodCodeConstructorCodeDefaultValueExpressionCodeDelegateCreateExpressionCodeDelegateInvokeExpressionCodeDirectionExpressionCodeDirectiveCollectionCodeEntryPointMethodCodeEventReferenceExpressionCodeExpressionCollectionCodeExpressionStatementCodeFieldReferenceExpressionCodeGotoStatementCodeIndexerExpressionCodeIterationStatementCodeLabeledStatementCodeLinePragmaCodeMemberEventCodeMemberFieldCodeMemberPropertyCodeMethodInvokeExpressionCodeMethodReferenceExpressionCodeMethodReturnStatementCodeNamespaceCodeNamespaceCollectionCodeNamespaceImportCodeNamespaceImportCollectionCodeObjectCreateExpressionCodeParameterDeclarationExpressionCodeParameterDeclarationExpressionCollectionCodePrimitiveExpressionCodePropertyReferenceExpressionCodePropertySetValueReferenceExpressionCodeRegionDirectiveCodeRegionModeCodeRemoveEventStatementCodeSnippetCompileUnitCodeSnippetExpressionCodeSnippetStatementCodeSnippetTypeMemberCodeStatementCollectionCodeThisReferenceExpressionCodeThrowExceptionStatementCodeTryCatchFinallyStatementCodeTypeConstructorCodeTypeDeclarationCodeTypeDeclarationCollectionCodeTypeDelegateCodeTypeMemberCollectionCodeTypeOfExpressionCodeTypeParameterCodeTypeParameterCollectionCodeTypeReferenceOptionsCodeTypeReferenceCodeTypeReferenceCollectionCodeTypeReferenceExpressionCodeVariableDeclarationStatementCodeVariableReferenceExpressionFieldDirectionMemberAttributesComponentModelDesignSerializationComponentSerializationServiceContextStackDefaultSerializationProviderAttributeDesignerLoaderDesignerSerializerAttributeIDesignerLoaderHostIDesignerLoaderHost2IDesignerLoaderServiceIDesignerSerializationManagerIDesignerSerializationProviderIDesignerSerializationServiceINameCreationServiceInstanceDescriptorMemberRelationshipServiceMemberRelationshipResolveNameEventArgsResolveNameEventHandlerRootDesignerSerializerAttributeSerializationStoreTypeDescriptionProviderServiceActiveDesignerEventArgsActiveDesignerEventHandlerCheckoutExceptionCommandIDComponentChangedEventArgsComponentChangedEventHandlerComponentChangingEventArgsComponentChangingEventHandlerComponentEventArgsComponentEventHandlerComponentRenameEventArgsComponentRenameEventHandlerIDesignerOptionServiceDesignerOptionServiceDesignerOptionCollectionDesignerTransactionDesignerTransactionCloseEventArgsDesignerTransactionCloseEventHandlerMenuCommandDesignerVerbDesignerVerbCollectionDesigntimeLicenseContextDesigntimeLicenseContextSerializerDesignerCollectionDesignerEventArgsDesignerEventHandlerHelpContextTypeHelpKeywordAttributeHelpKeywordTypeIComponentChangeServiceIComponentDiscoveryServiceIComponentInitializerIDesignerIDesignerEventServiceIDesignerFilterIServiceContainerIDesignerHostIDesignerHostTransactionStateIDictionaryServiceIEventBindingServiceIExtenderListServiceIExtenderProviderService��GenericPrincipalPrincipalPolicyTokenAccessLevelsWindowsAccountTypeTokenImpersonationLevelWindowsIdentityWindowsImpersonationContextWindowsBuiltInRoleWindowsPrincipalIdentityReferenceIdentityReferenceCollectionNTAccountWellKnownSidTypeSecurityIdentifierIdentityNotMappedExceptionClaimsClaimsIdentityClaimsPrincipalClaimClaimTypesClaimValueTypesPermissionsEnvironmentPermissionAccessIUnrestrictedPermissionEnvironmentPermissionFileDialogPermissionAccessFileDialogPermissionFileIOPermissionAccessFileIOPermissionHostProtectionResourceSecurityAttributeCodeAccessSecurityAttributeHostProtectionAttributeIsolatedStorageContainmentIsolatedStoragePermissionIsolatedStorageFilePermissionPermissionStateSecurityActionEnvironmentPermissionAttributeFileDialogPermissionAttributeFileIOPermissionAttributeKeyContainerPermissionAttributePrincipalPermissionAttributeReflectionPermissionAttributeRegistryPermissionAttributeSecurityPermissionAttributeUIPermissionAttributeZoneIdentityPermissionAttributeStrongNameIdentityPermissionAttributeSiteIdentityPermissionAttributeUrlIdentityPermissionAttributePublisherIdentityPermissionAttributeIsolatedStoragePermissionAttributeIsolatedStorageFilePermissionAttributePermissionSetAttributeReflectionPermissionFlagReflectionPermissionPrincipalPermissionSecurityPermissionFlagSecurityPermissionSiteIdentityPermissionStrongNameIdentityPermissionStrongNamePublicKeyBlobUIPermissionWindowUIPermissionClipboardUIPermissionUrlIdentityPermissionZoneIdentityPermissionGacIdentityPermissionAttributeGacIdentityPermissionKeyContainerPermissionFlagsKeyContainerPermissionAccessEntryKeyContainerPermissionAccessEntryCollectionKeyContainerPermissionAccessEntryEnumeratorKeyContainerPermissionPublisherIdentityPermissionRegistryPermissionAccessRegistryPermissionIBuiltInPermissionCryptographyX509CertificatesX509ContentTypeX509KeyStorageFlagsX509CertificateCipherModePaddingModeKeySizesCryptographicExceptionCryptographicUnexpectedOperationExceptionICryptoTransformRandomNumberGeneratorRNGCryptoServiceProviderSymmetricAlgorithmAesAsymmetricAlgorithmAsymmetricKeyExchangeDeformatterAsymmetricKeyExchangeFormatterAsymmetricSignatureDeformatterAsymmetricSignatureFormatterFromBase64TransformModeToBase64TransformFromBase64TransformCryptoAPITransformCspProviderFlagsCspParametersCryptoConfigCryptoStreamModeCryptoStreamDESDESCryptoServiceProviderDeriveBytesDSAParametersDSAICspAsymmetricAlgorithmDSACryptoServiceProviderDSASignatureDeformatterDSASignatureFormatterHashAlgorithmKeyedHashAlgorithmHMACHMACMD5HMACRIPEMD160HMACSHA1HMACSHA256HMACSHA384HMACSHA512KeyNumberCspKeyContainerInfoMACTripleDESMD5MD5CryptoServiceProviderMaskGenerationMethodPasswordDeriveBytesPKCS1MaskGenerationMethodRC2RC2CryptoServiceProviderRfc2898DeriveBytesRIPEMD160RIPEMD160ManagedRSAParametersRSARSACryptoServiceProviderRSAOAEPKeyExchangeDeformatterRSAOAEPKeyExchangeFormatterRSAPKCS1KeyExchangeDeformatterRSAPKCS1KeyExchangeFormatterRSAPKCS1SignatureDeformatterRSAPKCS1SignatureFormatterRijndaelRijndaelManagedRijndaelManagedTransformSHA1SHA1CryptoServiceProviderSHA1ManagedSHA256SHA256ManagedSHA384SHA384ManagedSHA512SHA512ManagedSignatureDescriptionTripleDESTripleDESCryptoServiceProviderAccessControlInheritanceFlagsPropagationFlagsAuditFlagsSecurityInfosResourceTypeAccessControlSectionsAccessControlActionsAceTypeAceFlagsGenericAceKnownAceCustomAceCompoundAceTypeCompoundAceAceQualifierQualifiedAceCommonAceObjectAceFlagsObjectAceAceEnumeratorGenericAclRawAclCommonAclSystemAclDiscretionaryAclCryptoKeyRightsAuthorizationRuleAccessRuleCryptoKeyAccessRuleAuditRuleCryptoKeyAuditRuleObjectSecurityCommonObjectSecurityNativeObjectSecurityCryptoKeySecurityEventWaitHandleRightsEventWaitHandleAccessRuleEventWaitHandleAuditRuleEventWaitHandleSecurityFileSystemRightsFileSystemAccessRuleFileSystemAuditRuleFileSystemSecurityFileSecurityDirectorySecurityMutexRightsMutexAccessRuleMutexAuditRuleMutexSecurityAccessControlModificationDirectoryObjectSecurityPrivilegeNotHeldExceptionRegistryRightsRegistryAccessRuleRegistryAuditRuleRegistrySecurityAccessControlTypeObjectAccessRuleObjectAuditRuleAuthorizationRul�eCollectionControlFlagsGenericSecurityDescriptorRawSecurityDescriptorCommonSecurityDescriptorIEvidenceFactoryISecurityEncodableISecurityPolicyEncodableSecurityElementXmlSyntaxExceptionIPermissionIStackWalkCodeAccessPermissionSuppressUnmanagedCodeSecurityAttributeUnverifiableCodeAttributeAllowPartiallyTrustedCallersAttributePartialTrustVisibilityLevelSecurityCriticalScopeSecurityCriticalAttributeSecurityTreatAsSafeAttributeSecuritySafeCriticalAttributeSecurityTransparentAttributeSecurityRuleSetSecurityRulesAttributeHostSecurityManagerOptionsHostSecurityManagerPermissionSetNamedPermissionSetReadOnlyPermissionSetSecureStringSecurityContextSourceSecurityContextSecurityExceptionSecurityStateHostProtectionExceptionPolicyLevelTypeSecurityManagerIsGrantedGetZoneAndOriginLoadPolicyLevelFromFileLoadPolicyLevelFromStringSavePolicyLevelResolvePolicyCurrentThreadRequiresSecurityContextCaptureResolveSystemPolicyResolvePolicyGroupsPolicyHierarchySavePolicySecurityZoneVerificationExceptionISecurityElementFactoryDeploymentInternalIsolationManifestInternalApplicationIdentityHelperGetInternalAppIdInternalActivationContextHelperGetActivationContextDataGetApplicationComponentManifestGetDeploymentComponentManifestReflectionEmitAssemblyBuilderAssemblyBuilderAccessConstructorBuilderILGeneratorDynamicILInfoDynamicMethodEventBuilderEventTokenFieldBuilderFieldTokenLabelLocalBuilderMethodBuilderExceptionHandlerCustomAttributeBuilderMethodRentalMethodTokenModuleBuilderPEFileKindsOpCodesOpCodeOpCodeTypeStackBehaviourOperandTypeFlowControlParameterBuilderParameterTokenPropertyBuilderPropertyTokenSignatureHelperSignatureTokenStringTokenPackingSizeTypeBuilderGenericTypeParameterBuilderEnumBuilderTypeTokenUnmanagedMarshalBinderICustomAttributeProviderMemberInfoIReflectIReflectableTypeTypeInfoAmbiguousMatchExceptionModuleResolveEventHandlerAssemblyAssemblyCopyrightAttributeAssemblyTrademarkAttributeAssemblyProductAttributeAssemblyCompanyAttributeAssemblyDescriptionAttributeAssemblyTitleAttributeAssemblyConfigurationAttributeAssemblyDefaultAliasAttributeAssemblyInformationalVersionAttributeAssemblyFileVersionAttributeAssemblyCultureAttributeAssemblyVersionAttributeAssemblyKeyFileAttributeAssemblyDelaySignAttributeAssemblyAlgorithmIdAttributeAssemblyFlagsAttributeAssemblyMetadataAttributeAssemblySignatureKeyAttributeAssemblyKeyNameAttributeAssemblyNameAssemblyNameProxyAssemblyNameFlagsAssemblyContentTypeProcessorArchitectureCustomAttributeExtensionsGetCustomAttributeGetCustomAttributesIsDefinedCustomAttributeFormatExceptionBindingFlagsCallingConventionsMethodBaseConstructorInfoCustomAttributeDataCustomAttributeNamedArgumentCustomAttributeTypedArgumentDefaultMemberAttributeEventAttributesEventInfoFieldAttributesFieldInfoGenericParameterAttributesIntrospectionExtensionsGetTypeInfoRuntimeReflectionExtensionsGetRuntimePropertiesGetRuntimeEventsGetRuntimeMethodsGetRuntimeFieldsGetRuntimePropertyGetRuntimeEventGetRuntimeMethodGetRuntimeFieldGetRuntimeBaseDefinitionGetRuntimeInterfaceMapGetMethodInfoInterfaceMappingInvalidFilterCriteriaExceptionManifestResourceInfoResourceLocationMemberFilterMemberTypesMethodAttributesMethodImplAttributesMethodInfoMissingPortableExecutableKindsImageFileMachineModuleObfuscateAssemblyAttributeObfuscationAttributeExceptionHandlingClauseOptionsExceptionHandlingClauseMethodBodyLocalVariableInfoParameterAttributesParameterInfoParameterModifierPointerPropertyAttributesPropertyInfoReflectionContextReflectionTypeLoadExceptionResourceAttributesStrongNameKeyPairTargetExceptionTargetInvocationExceptionTargetParameterCountExceptionTypeAttributesTypeDelegatorTypeFilterStubHelpersThreadingTasksTaskTaskFactoryParallelOptionsParallelParallelLoopStateParallelLoopResultTaskStatusTaskCreationOptionsTaskContinuationOptionsTaskCanceledExceptionTaskSchedulerExceptionTaskSchedulerUnobservedTaskExceptionEventArgsTaskCompletionSourceConcurrentExclusiveSchedulerPairAbandonedMutexExceptionWaitHandleEventWaitHandleAutoResetEventSendOrPostCallbackSynchronizationContextCompressedStackEventResetModeAsyncFlowControlContextCallbackExecutionContextInterlockedIn�crementDecrementExchangeCompareExchangeAddMemoryBarrierHostExecutionContextHostExecutionContextManagerLockCookieLockRecursionExceptionManualResetEventMonitorEnterExitTryEnterIsEnteredWaitPulsePulseAllMutexNativeOverlappedOverlappedParameterizedThreadStartReaderWriterLockSemaphoreFullExceptionSynchronizationLockExceptionThreadThreadAbortExceptionThreadInterruptedExceptionRegisteredWaitHandleWaitCallbackWaitOrTimerCallbackIOCompletionCallbackThreadPoolSetMaxThreadsGetMaxThreadsSetMinThreadsGetMinThreadsGetAvailableThreadsRegisterWaitForSingleObjectUnsafeRegisterWaitForSingleObjectQueueUserWorkItemUnsafeQueueUserWorkItemUnsafeQueueNativeOverlappedBindHandleThreadPriorityThreadStartThreadStateThreadStateExceptionThreadStartExceptionTimeoutTimerCallbackTimerVolatileReadWriteWaitHandleCannotBeOpenedExceptionApartmentStateSpinLockSpinWaitCountdownEventLazyThreadSafetyModeLazyInitializerThreadLocalSemaphoreSlimManualResetEventSlimCancellationTokenRegistrationCancellationTokenSourceCancellationTokenIThreadPoolWorkItemDiagnosticsTracingEventSourceEventListenerEventCommandEventArgsEventWrittenEventArgsEventSourceAttributeEventAttributeNonEventAttributeEventCommandEventSourceExceptionEventLevelEventTaskEventOpcodeEventKeywordsCodeAnalysisSuppressMessageAttributeContractsInternalContractHelperRaiseContractFailedEventTriggerFailurePureAttributeContractClassAttributeContractClassForAttributeContractInvariantMethodAttributeContractReferenceAssemblyAttributeContractRuntimeIgnoredAttributeContractVerificationAttributeContractPublicPropertyNameAttributeContractArgumentValidatorAttributeContractAbbreviatorAttributeContractOptionAttributeContractAssumeAssertRequiresEnsuresEnsuresOnThrowResultValueAtReturnOldValueInvariantForAllExistsEndContractBlockContractFailureKindContractFailedEventArgsSymbolStoreISymbolBinderISymbolBinder1ISymbolDocumentISymbolDocumentWriterISymbolMethodISymbolNamespaceISymbolReaderISymbolScopeISymbolVariableISymbolWriterSymAddressKindSymDocumentTypeSymLanguageTypeSymLanguageVendorSymbolTokenConditionalAttributeDebuggerDebuggerStepThroughAttributeDebuggerStepperBoundaryAttributeDebuggerHiddenAttributeDebuggerNonUserCodeAttributeDebuggableAttributeDebuggingModesDebuggerBrowsableStateDebuggerBrowsableAttributeDebuggerTypeProxyAttributeDebuggerDisplayAttributeDebuggerVisualizerAttributeStackTraceStackFrameGlobalizationCalendarCalendarAlgorithmTypeCalendarWeekRuleCharUnicodeInfoCompareOptionsCompareInfoCultureInfoCultureNotFoundExceptionCultureTypesDateTimeStylesDateTimeFormatInfoDaylightTimeDigitShapesGregorianCalendarGregorianCalendarTypesHebrewCalendarHijriCalendarUmAlQuraCalendarEastAsianLunisolarCalendarChineseLunisolarCalendarJapaneseLunisolarCalendarJulianCalendarKoreanLunisolarCalendarPersianCalendarTaiwanLunisolarCalendarIdnMappingJapaneseCalendarKoreanCalendarRegionInfoSortKeyStringInfoTaiwanCalendarTextElementEnumeratorTextInfoThaiBuddhistCalendarTimeSpanStylesNumberFormatInfoNumberStylesUnicodeCategorySortVersionResourcesIResourceReaderIResourceWriterMissingManifestResourceExceptionMissingSatelliteAssemblyExceptionNeutralResourcesLanguageAttributeResourceManagerResourceReaderResourceSetResourceWriterSatelliteContractVersionAttributeUltimateResourceFallbackLocationIOIsolatedStorageIsolatedStorageScopeIsolatedStorageIsolatedStorageFileStreamIsolatedStorageExceptionIsolatedStorageSecurityOptionsIsolatedStorageSecurityStateINormalizeForIsolatedStorageIsolatedStorageFileStreamBinaryReaderBinaryWriterBufferedStreamDirectoryCreateDirectoryExistsSetCreationTimeUtcSetLastWriteTimeUtcSetLastAccessTimeUtcSetAccessControlGetLogicalDrivesGetDirectoryRootGetCurrentDirectorySetCurrentDirectoryMoveDeleteFileSystemInfoDirectoryInfoSearchOptionIOExceptionDirectoryNotFoundExceptionDriveTypeDriveInfoDriveNotFoundExceptionEndOfStreamExceptionFileDeleteDecryptEncryptExistsSetCreationTimeUtcGetCreationTimeGetCreationTimeUtcSetLastAccessTimeUtcGetLastAccessTimeGetLastAccessTimeUtcSetLastWriteTimeUtcGetLastWriteTimeGetLastWriteTimeUtcGetAttributesSetAttributesSetAccessControlReadAllTextWriteAllTextReadAllBytesWriteAllBytesMoveFileAc�cessFileInfoFileLoadExceptionFileModeFileNotFoundExceptionFileOptionsFileShareFileStreamFileAttributesMemoryStreamPathGetFullPathGetTempPathGetTempFileNamePathTooLongExceptionUnmanagedMemoryStreamSeekOriginTextReaderStreamReaderTextWriterStreamWriterStringReaderStringWriterUnmanagedMemoryAccessorRuntimeSerializationFormattersBinaryBinaryFormatterIFieldInfoFormatterTypeStyleFormatterAssemblyStyleTypeFilterLevelISoapMessageInternalRMInternalSTSoapMessageSoapFaultServerFaultISerializableIDeserializationCallbackIObjectReferenceIFormatterConverterFormatterConverterFormatterServicesISerializationSurrogateIFormatterISurrogateSelectorOptionalFieldAttributeOnSerializingAttributeOnSerializedAttributeOnDeserializingAttributeOnDeserializedAttributeSerializationBinderSerializationExceptionSerializationInfoSerializationEntrySerializationInfoEnumeratorStreamingContextStreamingContextStatesFormatterObjectIDGeneratorObjectManagerSafeSerializationEventArgsISafeSerializationDataSerializationObjectManagerSurrogateSelectorInteropServicesComTypesBIND_OPTSIBindCtxIConnectionPointContainerIConnectionPointIEnumMonikerCONNECTDATAIEnumConnectionsIEnumConnectionPointsIEnumStringIEnumVARIANTFILETIMEIMonikerIPersistFileIRunningObjectTableSTATSTGIStreamDESCKINDBINDPTRITypeCompTYPEKINDTYPEFLAGSIMPLTYPEFLAGSTYPEATTRFUNCDESCIDLFLAGIDLDESCPARAMFLAGPARAMDESCTYPEDESCELEMDESCDESCUNIONVARKINDVARDESCDESCUNIONDISPPARAMSEXCEPINFOFUNCKINDINVOKEKINDCALLCONVFUNCFLAGSVARFLAGSITypeInfoSYSKINDLIBFLAGSTYPELIBATTRITypeLibITypeLib2ITypeInfo2ExpandoIExpandoWindowsRuntimeDefaultInterfaceAttributeInterfaceImplementedInVersionAttributeReadOnlyArrayAttributeWriteOnlyArrayAttributeReturnValueNameAttributeEventRegistrationTokenEventRegistrationTokenTableIActivationFactoryWindowsRuntimeMarshalAddEventHandlerRemoveEventHandlerRemoveAllEventHandlersGetActivationFactoryStringToHStringPtrToStringHStringFreeHStringWindowsRuntimeMetadataResolveNamespaceNamespaceResolveEventArgsDesignerNamespaceResolveEventArgsTCEAdapterGen_Exception_Activator_Attribute_Thread_MemberInfo_TypeSafeHandle_AssemblyICustomQueryInterface_AssemblyName_MethodBase_MethodInfo_ConstructorInfo_FieldInfo_PropertyInfo_EventInfo_ParameterInfo_ModuleSafeBufferCriticalHandleArrayWithOffsetUnmanagedFunctionPointerAttributeTypeIdentifierAttributeAllowReversePInvokeCallsAttributeDispIdAttributeComInterfaceTypeInterfaceTypeAttributeComDefaultInterfaceAttributeClassInterfaceTypeClassInterfaceAttributeComVisibleAttributeTypeLibImportClassAttributeLCIDConversionAttributeComRegisterFunctionAttributeComUnregisterFunctionAttributeProgIdAttributeImportedFromTypeLibAttributeIDispatchImplTypeIDispatchImplAttributeComSourceInterfacesAttributeComConversionLossAttributeTypeLibTypeFlagsTypeLibFuncFlagsTypeLibVarFlagsTypeLibTypeAttributeTypeLibFuncAttributeTypeLibVarAttributeVarEnumUnmanagedTypeMarshalAsAttributeComImportAttributeGuidAttributePreserveSigAttributeInAttributeOutAttributeOptionalAttributeDllImportSearchPathDefaultDllImportSearchPathsAttributeDllImportAttributeStructLayoutAttributeFieldOffsetAttributeComAliasNameAttributeAutomationProxyAttributePrimaryInteropAssemblyAttributeCoClassAttributeComEventInterfaceAttributeTypeLibVersionAttributeComCompatibleVersionAttributeBestFitMappingAttributeDefaultCharSetAttributeSetWin32ContextInIDispatchAttributeManagedToNativeComInteropStubAttributeCallingConventionCharSetExternalExceptionCOMExceptionGCHandleTypeGCHandleHandleRefICustomMarshalerInvalidOleVariantTypeExceptionLayoutKindCustomQueryInterfaceModeMarshalPtrToStringAnsiPtrToStringUniPtrToStringAutoSizeOfUnsafeAddrOfPinnedArrayElementCopyReadByteReadInt16ReadInt32ReadIntPtrReadInt64WriteByteWriteInt16WriteInt32WriteIntPtrWriteInt64GetLastWin32ErrorGetHRForLastWin32ErrorPrelinkPrelinkAllNumParamBytesGetExceptionPointersGetExceptionCodeStructureToPtrPtrToStructureDestroyStructureGetHINSTANCEThrowExceptionForHRGetExceptionForHRGetHRForExceptionGetUnmanagedThunkForManagedMethodPtrGetManagedThunkForUnmanagedMethodPtrGetThreadFromFiberCookieAllocHGlobalFreeHGlobalReAllocHGlobalStringToHGlobalAnsiStringToHGlobalUniStringToHGlobalAut�oGetTypeLibNameGetTypeLibGuidGetTypeLibLcidGetTypeLibGuidForAssemblyGetTypeLibVersionForAssemblyGetTypeInfoNameGetTypeForITypeInfoGetTypeFromCLSIDGetITypeInfoForTypeGetIUnknownForObjectGetIUnknownForObjectInContextGetIDispatchForObjectGetIDispatchForObjectInContextGetComInterfaceForObjectGetComInterfaceForObjectInContextGetObjectForIUnknownGetUniqueObjectForIUnknownGetTypedObjectForIUnknownCreateAggregatedObjectCleanupUnusedObjectsInCurrentContextAreComObjectsAvailableForCleanupIsComObjectAllocCoTaskMemStringToCoTaskMemUniStringToCoTaskMemAutoStringToCoTaskMemAnsiFreeCoTaskMemReleaseComObjectFinalReleaseComObjectGetComObjectDataSetComObjectDataCreateWrapperOfTypeReleaseThreadCacheIsTypeVisibleFromComQueryInterfaceAddRefReleaseReAllocCoTaskMemFreeBSTRStringToBSTRPtrToStringBSTRGetNativeVariantForObjectGetObjectForNativeVariantGetObjectsForNativeVariantsGetStartComSlotGetEndComSlotGetMethodInfoForComSlotGetComSlotForMethodInfoGenerateGuidForTypeGenerateProgIdForTypeBindToMonikerGetActiveObjectChangeWrapperHandleStrengthGetDelegateForFunctionPointerGetFunctionPointerForDelegateSecureStringToBSTRSecureStringToCoTaskMemAnsiSecureStringToCoTaskMemUnicodeZeroFreeBSTRZeroFreeCoTaskMemAnsiZeroFreeCoTaskMemUnicodeSecureStringToGlobalAllocAnsiSecureStringToGlobalAllocUnicodeZeroFreeGlobalAllocAnsiZeroFreeGlobalAllocUnicodeITypeLibImporterNotifySinkMarshalDirectiveExceptionRuntimeEnvironmentSEHExceptionBStrWrapperComMemberTypeCurrencyWrapperDispatchWrapperErrorWrapperExtensibleClassFactoryICustomAdapterICustomFactoryCustomQueryInterfaceResultInvalidComObjectExceptionAssemblyRegistrationFlagsIRegistrationServicesTypeLibImporterFlagsTypeLibExporterFlagsImporterEventKindExporterEventKindITypeLibExporterNotifySinkITypeLibConverterITypeLibExporterNameProviderObjectCreationDelegateRegistrationClassContextRegistrationConnectionTypeRegistrationServicesSafeArrayRankMismatchExceptionSafeArrayTypeMismatchExceptionTypeLibConverterBIND_OPTSUCOMIBindCtxUCOMIConnectionPointContainerUCOMIConnectionPointUCOMIEnumMonikerCONNECTDATAUCOMIEnumConnectionsUCOMIEnumConnectionPointsUCOMIEnumStringUCOMIEnumVARIANTFILETIMEUCOMIMonikerUCOMIPersistFileUCOMIRunningObjectTableSTATSTGUCOMIStreamDESCKINDBINDPTRUCOMITypeCompTYPEKINDTYPEFLAGSIMPLTYPEFLAGSTYPEATTRFUNCDESCIDLFLAGIDLDESCPARAMFLAGPARAMDESCTYPEDESCELEMDESCDESCUNIONVARDESCDESCUNIONDISPPARAMSEXCEPINFOFUNCKINDINVOKEKINDCALLCONVFUNCFLAGSVARFLAGSUCOMITypeInfoSYSKINDLIBFLAGSTYPELIBATTRUCOMITypeLibUnknownWrapperVariantWrapperComEventsHelperCombineRemove_AssemblyBuilder_ConstructorBuilder_CustomAttributeBuilder_EnumBuilder_EventBuilder_FieldBuilder_ILGenerator_LocalBuilder_MethodBuilder_MethodRental_ModuleBuilder_ParameterBuilder_PropertyBuilder_SignatureHelper_TypeBuilderHostingApplicationActivatorActivationArgumentsConstrainedExecutionCriticalFinalizerObjectConsistencyCerReliabilityContractAttributePrePrepareMethodAttributeCompilerServicesStringFreezingAttributeINotifyCompletionICriticalNotifyCompletionContractHelperRaiseContractFailedEventTriggerFailureAccessedThroughPropertyAttributeCallConvCdeclCallConvStdcallCallConvThiscallCallConvFastcallRuntimeHelpersInitializeArrayGetObjectValueRunClassConstructorPrepareMethodPrepareDelegatePrepareContractedDelegateGetHashCodeEqualsEnsureSufficientExecutionStackProbeForSufficientStackPrepareConstrainedRegionsPrepareConstrainedRegionsNoOPExecuteCodeWithGuaranteedCleanupTryCodeCleanupCodeCompilerGeneratedAttributeCustomConstantAttributeDateTimeConstantAttributeDiscardableAttributeDecimalConstantAttributeCompilationRelaxationsCompilationRelaxationsAttributeCompilerGlobalScopeAttributeExtensionAttributeFixedBufferAttributeIndexerNameAttributeInternalsVisibleToAttributeIsVolatileMethodImplOptionsMethodCodeTypeMethodImplAttributeFixedAddressValueTypeAttributeUnsafeValueTypeAttributeRequiredAttributeAttributeLoadHintDefaultDependencyAttributeDependencyAttributeCompilerMarshalOverrideHasCopySemanticsAttributeIsBoxedIsByValueIsConstIsExplicitlyDereferencedIsImplicitlyDereferencedIsJitIntrinsicIsLongIsPinnedIsSignUnspecifiedByteIsUdtReturnScopelessEnumAttributeSpecialNameAttr�ibuteIsCopyConstructedSuppressIldasmAttributeNativeCppClassAttributeTypeForwardedToAttributeTypeForwardedFromAttributeReferenceAssemblyAttributeRuntimeCompatibilityAttributeRuntimeWrappedExceptionConditionalWeakTableCreateValueCallbackCallerFilePathAttributeCallerLineNumberAttributeCallerMemberNameAttributeStateMachineAttributeIteratorStateMachineAttributeAsyncStateMachineAttributeAsyncVoidMethodBuilderAsyncTaskMethodBuilderIAsyncStateMachineTaskAwaiterConfiguredTaskAwaitableConfiguredTaskAwaiterYieldAwaitableYieldAwaiterIDispatchConstantAttributeIUnknownConstantAttributeIAsyncMethodBuilderRemotingActivationIActivatorActivatorLevelIConstructionCallMessageIConstructionReturnMessageUrlAttributeContextsIContextAttributeIContextPropertyContextAttributeCrossContextDelegateContextContextPropertyIContextPropertyActivatorIContributeClientContextSinkIContributeDynamicSinkIContributeEnvoySinkIContributeObjectSinkIContributeServerContextSinkIDynamicPropertyIDynamicMessageSinkSynchronizationAttributeMessagingIMessageSinkAsyncResultIMessageIMethodMessageIMethodCallMessageIMethodReturnMessageIMessageCtrlIRemotingFormatterReturnMessageMethodCallConstructionCallMethodResponseConstructionResponseInternalMessageWrapperMethodCallMessageWrapperMethodReturnMessageWrapperOneWayAttributeMessageSurrogateFilterRemotingSurrogateSelectorHeaderHeaderHandlerCallContextILogicalThreadAffinativeLogicalCallContextIInternalMessageISerializationRootObjectChannelsChannelServicesIClientResponseChannelSinkStackIClientChannelSinkStackClientChannelSinkStackIServerResponseChannelSinkStackIServerChannelSinkStackServerChannelSinkStackIChannelIChannelSenderIChannelReceiverIServerChannelSinkProviderIChannelSinkBaseIServerChannelSinkIChannelReceiverHookIClientChannelSinkProviderIClientFormatterSinkProviderIServerFormatterSinkProviderIClientChannelSinkServerProcessingIClientFormatterSinkIChannelDataStoreChannelDataStoreITransportHeadersTransportHeadersSinkProviderDataBaseChannelObjectWithPropertiesBaseChannelSinkWithPropertiesBaseChannelWithPropertiesISecurableChannelLifetimeISponsorClientSponsorILeaseLeaseStateLifetimeServicesServicesEnterpriseServicesHelperITrackingHandlerTrackingServicesProxiesProxyAttributeRealProxyMetadataW3cXsd2001ISoapXsdSoapDateTimeSoapDurationSoapTimeSoapDateSoapYearMonthSoapYearSoapMonthDaySoapDaySoapMonthSoapHexBinarySoapBase64BinarySoapIntegerSoapPositiveIntegerSoapNonPositiveIntegerSoapNonNegativeIntegerSoapNegativeIntegerSoapAnyUriSoapQNameSoapNotationSoapNormalizedStringSoapTokenSoapLanguageSoapNameSoapIdrefsSoapEntitiesSoapNmtokenSoapNmtokensSoapNcNameSoapIdSoapIdrefSoapEntitySoapOptionXmlFieldOrderOptionSoapAttributeSoapTypeAttributeSoapMethodAttributeSoapFieldAttributeSoapParameterAttributeIObjectHandleWellKnownObjectModeIRemotingTypeInfoIChannelInfoIEnvoyInfoObjRefRemotingConfigurationConfigureRegisterActivatedServiceTypeRegisterWellKnownServiceTypeRegisterActivatedClientTypeRegisterWellKnownClientTypeGetRegisteredActivatedServiceTypesGetRegisteredWellKnownServiceTypesGetRegisteredActivatedClientTypesGetRegisteredWellKnownClientTypesIsRemotelyActivatedClientTypeIsWellKnownClientTypeIsActivationAllowedTypeEntryActivatedClientTypeEntryActivatedServiceTypeEntryWellKnownClientTypeEntryWellKnownServiceTypeEntryCustomErrorsModesRemotingExceptionServerExceptionRemotingTimeoutExceptionRemotingServicesIsTransparentProxyIsObjectOutOfContextGetRealProxyGetSessionIdForMethodMessageGetLifetimeServiceGetObjectUriSetObjectUriForMarshalMarshalGetObjectDataUnmarshalConnectDisconnectGetEnvoyChainForProxyGetObjRefForProxyGetMethodBaseFromMethodMessageIsMethodOverloadedIsOneWayGetServerTypeForUriExecuteMessageLogRemotingStageInternalRemotingServicesSoapServicesObjectHandleExceptionServicesHandleProcessCorruptedStateExceptionsAttributeFirstChanceExceptionEventArgsExceptionDispatchInfoVersioningComponentGuaranteesOptionsComponentGuaranteesAttributeResourceConsumptionAttributeResourceExposureAttributeResourceScopeVersioningHelperMakeVersionSafeNameTargetFrameworkAttributeDesignerServicesWindowsRuntimeDesignerContextMemoryFailPointGCLatencyModeGCSetti�ngsAssemblyTargetedPatchBandAttributeTargetedPatchingOptOutAttributeProfileOptimizationSetProfileRootStartProfileConfigurationAssembliesAssemblyHashAssemblyHashAlgorithmAssemblyVersionCompatibilityObjectExceptionValueTypeIComparableIFormattableIConvertibleEnumAggregateExceptionICloneableDelegateMulticastDelegateActionFuncComparisonConverterPredicateArrayIDisposableArraySegmentIEquatableTupleStringStringSplitOptionsStringComparerStringComparisonDateTimeDateTimeKindDateTimeOffsetSystemExceptionOutOfMemoryExceptionStackOverflowExceptionDataMisalignedExceptionExecutionEngineExceptionMemberAccessExceptionActivatorAccessViolationExceptionApplicationExceptionEventArgsResolveEventArgsAssemblyLoadEventArgsResolveEventHandlerAssemblyLoadEventHandlerAppDomainInitializerMarshalByRefObject_AppDomainAppDomainCrossAppDomainDelegateAppDomainManagerInitializationOptionsAppDomainManagerIAppDomainSetupAppDomainSetupLoaderOptimizationAttributeLoaderOptimizationAttributeAppDomainUnloadedExceptionActivationContextContextFormApplicationIdentityApplicationIdArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionArgIteratorArithmeticExceptionArrayTypeMismatchExceptionAsyncCallbackAttributeTargetsAttributeUsageAttributeBadImageFormatExceptionBitConverterGetBytesToInt16ToInt32ToInt64ToUInt16ToUInt32ToUInt64ToSingleToDoubleDoubleToInt64BitsInt64BitsToDoubleBooleanBufferBlockCopyGetByteSetByteByteLengthByteCannotUnloadAppDomainExceptionCharCharEnumeratorCLSCompliantAttributeTypeUnloadedExceptionConsoleBeepClearResetColorMoveBufferAreaSetBufferSizeSetWindowSizeSetWindowPositionSetCursorPositionReadKeySetInSetOutSetErrorWriteLineWriteConsoleCancelEventHandlerConsoleCancelEventArgsConsoleColorConsoleKeyConsoleKeyInfoConsoleModifiersConsoleSpecialKeyContextMarshalExceptionBase64FormattingOptionsConvertToBooleanToCharToSByteToByteToInt16ToUInt16ToInt32ToUInt32ToInt64ToUInt64ToSingleToDoubleToDecimalToDateTimeToStringToBase64StringToBase64CharArrayFromBase64StringFromBase64CharArrayContextBoundObjectContextStaticAttributeTimeZoneDayOfWeekDBNullDecimalDivideByZeroExceptionDoubleDuplicateWaitObjectExceptionTypeLoadExceptionEntryPointNotFoundExceptionDllNotFoundExceptionEnvironmentVariableTargetEnvironmentExitFailFastExpandEnvironmentVariablesGetCommandLineArgsGetEnvironmentVariableGetEnvironmentVariablesSetEnvironmentVariableGetLogicalDrivesGetFolderPathSpecialFolderOptionSpecialFolderEventHandlerFieldAccessExceptionFlagsAttributeFormatExceptionGCCollectionModeGCNotificationStatusGCAddMemoryPressureRemoveMemoryPressureGetGenerationCollectCollectionCountKeepAliveWaitForPendingFinalizersSuppressFinalizeReRegisterForFinalizeGetTotalMemoryRegisterForFullGCNotificationCancelFullGCNotificationWaitForFullGCApproachWaitForFullGCCompleteGuidIAsyncResultICustomFormatterIFormatProviderIndexOutOfRangeExceptionIObservableIObserverIProgressInsufficientMemoryExceptionInsufficientExecutionStackExceptionLazyInt16Int32Int64IntPtrInvalidCastExceptionInvalidOperationExceptionInvalidProgramExceptionInvalidTimeZoneExceptionIServiceProviderLocalDataStoreSlotMathAcosAsinAtanAtan2CeilingCosCoshFloorSinTanSinhTanhRoundSqrtLogLog10ExpPowAbsMaxMinSignBigMulDivRemMethodAccessExceptionMidpointRoundingMissingMemberExceptionMissingFieldExceptionMissingMethodExceptionMulticastNotSupportedExceptionNonSerializedAttributeNotFiniteNumberExceptionNotImplementedExceptionNotSupportedExceptionNullReferenceExceptionObjectDisposedExceptionObsoleteAttributeOperatingSystemOperationCanceledExceptionOverflowExceptionParamArrayAttributePlatformIDPlatformNotSupportedExceptionProgressRandomRankExceptionTypeRuntimeArgumentHandleRuntimeTypeHandleRuntimeMethodHandleRuntimeFieldHandleModuleHandleSByteSerializableAttributeSingleSTAThreadAttributeMTAThreadAttributeTimeoutExceptionTimeSpanTimeZoneInfoAdjustmentRuleTransitionTimeTimeZoneNotFoundExceptionTypeAccessExceptionTypeCodeTypedReferenceTypeInitializationExceptionUInt16UInt32UInt64UIntPtrUnauthorizedAccessExceptionUnhandledExceptionEventArgsUnhandledExceptionEventHandlerVersionVoidWeakReferenceThreadStaticAttributeNullableCompareEqualsITupleMi�crosoftRuntimeHostingWin32SafeHandlesSafeHandleZeroOrMinusOneIsInvalidSafeFileHandleSafeRegistryHandleSafeWaitHandleSafeHandleMinusOneIsInvalidCriticalHandleZeroOrMinusOneIsInvalidCriticalHandleMinusOneIsInvalidRegistryGetValueSetValueRegistryHiveRegistryKeyRegistryValueOptionsRegistryKeyPermissionCheckRegistryOptionsRegistryValueKindRegistryViewr�����@
��k
s�@	��R�
A
��@
��R�0A��R��R��R
�WA
��@
�S
�@A
�
S�S
��@�A�&S�%A�4S
�oA�AS�OS�aA�`S�JA
�pS��@��@��S�,(� uTZ
��#%#�#�#�T �
#CksO
#�##�#�tTjs3eXKeX<[
X�S�ls:k	sP[3)��?T�r|�KN�w��g�is}��JN�HN%��A!��4,��k	s�ks<lsl%s[ls�ls�S���'�[ks�l
s�ls����/�?�Y���J N6ms�lsmsmsAms:js	�JjsTms�A��
��tTYi
$ 4�!4����p 4� 4F"4$ 46!4� 4~!4� 4!4�!4cieoie� %4f!4"4�ks�ks�!4"45"4$"4X 4O��!4�h"�� 4> 4N!4�ief/B`/B�g� gg<gZgnm
s�(��\`EZuZ_Z�tT�tT{l	s{ms�ms�
#�	#�#�#�D�\(��ms�os�`��`��`��n,~E�-uT.:f4:�^6�j6��<	wP	��4w+
��"4�=yQ��L
N��ms9n	�,nsiN�3nsv6�ZnsPn
�!2�)2�>2�&^`|>)R��T
�T�T�T�Y�Y�Y�E��"4Xs|�,��,��,�^ns����tT�S4�LNA`��^X�^�|ns�nsF�N2�H3�=
g,
�	
�
�
�1

�;
�YB�GB�V��J$N�n,�^��`
6�ns E�����-���s	��r|�
����r|s�D��R�aE�]C�+B�0E��R�F�D�B�tN
�/	#l	#�#4#�x�)�k2�]2��x�j
s�V�V*V�VX(T��g:�g:#�#�(��B�AC��<��B�pB� 
�c( �ET�0��YLi
s�c	Y�Z�Z&�f[==�P��S4�ns]osDossoso
s�os�os�os�S�[]`y]`����"4�[@�[@�ps�(��l5�os�[@�[X�psX/P%/P/"P3.PI.P�/P�/PyT�-�b. PA/P�.#P�."P�.P�-	��.P�#�os(j	s�FN�tT�tT6,�lJN�6��Y#oKN�S4�A��y�fy%�ls�[@�g�gZgp)g���#�#�##�g�g�g�
g�gv2��2��2��N�@+��	#m�
#4n"4�"4#49#4DV�eXF��N��js�js[V�2��js�js�2��2��p	s�psb1��0��1��1��1�/1�F1�1 ��0��1��1�u1��ps�V������������2 ��(	��7@�E��WuD$��>RU#4�is57��7@�W�
s#gg�=qQ�g7>	��Q	�N>	1�Q	2�@!R�h��GN�S�,s�
���D��2��6	�I7
�m7�>#�#tV�f
[~#�N��A�W>
R
��ps3uT�D�bD�Lqs�ps
n��7	��7��7	�;gUg.
gmg�gqs�
�
�.3�/>�Q��4��v���R�a������ ������7@�/B�7�t/B{/B�U��)-a�1qs�is����
��

8�
.yqs�
�U
���`qs���x��U��N�ok	sS-�k#4�r-�-�<rsz#	4�-
��-
�-
��-�t?R�?R�(��,�?-�~-��-	�
�M(�B#[#-#s#*-�|�]�a>	R	��i	s�g']��%4�%4]g��(��U �g[�(�
ks�/B�6��7@�q��)uT�q��>�wO��N��V
F��q�Hrs�#4)��#	4�D�5
��7��8
�?9��
��
��
����8��
��
����8�9�9�!9��#,9	�59
��#�#;7��#�#�=$Q�:KN�g'���WW\rs�tT���/Bjrs^<	�_:f;�$:
�;�M:f�KNK
N�HN8@T�pS�pS�gvgjs�=�Q��>	1R	�j>R���������rsyrs6F�*F��h
��rs�h
��LN�LN��
#\
#���#4��#e��U�@T�LNm��8
@�*�Bn��m��INJ!N�q�OKNvLN�7@8@7��"y�"y�LN���6�RL
N�q��q��f[�GNHN�GNr
�]9�	MN�r
||U��GNHNbGN�IN�IN&�uIN�IN�IN(8@98@QGN`8@p8@<f[�6��q�KH$N�*
��f[�$
�_LN�*
��KNwf
[%JNLN(LNNf[&U��f[f[�d!Y_d"Y�d!Y�d"Yw$�I$�$�h$�'$��$�X$�$��#�7$��f[ f[CLNs9�h9�oHN-s|SJNRINeIN�#�CIN�HNININ�HN'IN9JN'H$N�yE��2
s�2��2��ssD
�ng.'>F	�X��
g�;	�^`^
`3�3
��g�g�
g�g�
g�
g�
g")�6)��x��S�2����
�����?RF[
3Lls��![�ss�Z=��2_�0`��cXH_��_�:_�r_��_��_��^�`��_��^��i
s!�7��ise	�	�!==[�^[3v[3�[@�[@�[@\@4\@J\@^\@s\@�is`T�g>g�N��4�N��ssGF��@����	��	��	��:�����&��Z+C�C�?js>�Q�>�Q��3
��\@�\@X=H=�,�Z�!�1=m=x=�c
Xn�g�Vj
sL��>4C:
f�ss�isE;
��:����	���[^`a6��,�B�1^`g%4i��\`&]`�\`]`�\`]`�=�=
�Q
��B�fO�:D��(	�W�ssg#U�)6�OTt#s�ss@tsEtsJtsn�	?&R�$4B��(��-P��6�!��]`-gX�:
f�:
f+W�<�Ots�#4Uts�N��$4WF�its�ts�ts�/	Br>
R
��5s�c
X�:��ss�s	s�*�b7����=�
�*�s	sG���Z
��4�4)O�2]`�cXw��4r�4r�=eY�<�7X>X	�JNGX�X�"	y�`���\�n��)	�:
�k^`.;��_�X_�_��_��^��tsNX�	�fX~X�X�f[�:f�a>f[�5��5��I��5�E6�|�t
&��5�c�R
"��5��5�
6��	��f[�X�`6�dY�X�
��e[�=1�F��KN�XO;�FW
eY�/
h0h0h(0h=0
hJ0hZ0
hg0hs0h�0
h(Z�,�Ea�Q`��xs�=	�>	�>
�>�>	�O��O��O�N���[p
��3�`3�y3��r	|�
��
.��!�-+�X+�
�����g���	gRg��#�3��3�?�uF
�<tsX,�D,��B�a
6�>VR��`Xa6�ils�ls�W���D��ts�%4Q)
�[)�uTuTI^`g[g`h;�E&����$4q)�,��F�pf[�C��ks2N�9g�ts#uTg!g%ks%4�
4%4)
��h�M9��]`�\	X�aX9us%4�"
4�%
4P
�Q]
`�]`aWoW+%4PW?%
4��k]`�]`���x	Nus&uTI%4tus�4 r^us�us�4!rw%4�
�3ws 4�)�17��8@�n,qwsjs�us�)��#
#�#
#1�i@RY#�)���4!ra-��us
��us�usvs�		��xsvsT4�d4��G
N}%4�%4�is�#F	#8#�#�O�-vsQgXg<�x<
����#�cXDvs�/B�;��;��]`�;�w;������
���UvsdvsQD�a;��ED��js~vs�)
�O�GgA'�Z'�I'�2'��vs>	�Q	��%4��&
4�)�&4��>	�Q	�4�wMgY9��9����J
�$
��
����3�`g�v
s�vs,&4W�4���C���f�N�P%4uT1j	sxGNG
N�U��U�cU�TU�GU
�T4&D�E��	��
�)�	�U#�U�Y"4i��B��vsw#3&4�E&4
�eaXla�FN�FN�KN&@T�FN�GN6	���.
$�?��)�)&.
P##�KN�4+��TI.J�vs�g�v
sf##yg|g�+=�8@�8@�FN�)��F	NG	NG	NG
No,/?R������C��KN�HNza	UY�
sQ&4�
��E��
�b&4�3
�)dY�cY`*�;s|�*�DdY
dY�O��O�P��yL|#�#�yL�yL�yLzL����b�n#�#zL�yL'zL�KN*KN�KN�S44[��cX�eX�eX�]`�eX�R��?T�?T�r|�Wl/Bs|�n
,xks�ksY@U3
�~�k�}&4h:*h:�$45r"5r�4	sCh
:05r�#;5r�/BD]
`\?R�g�g�g�g�	g�g�g	uT�g�g�gg�
gg=gYgug4U��xr:s�vsoYKN�!ws	Uws�#4�vs�Y+P�IP�vA
�y��@
�Ky��xL�x!�+y��<�=y�I5!r�
�$�?ws�XV7�X�&MN8MNSMN�MN�M NOs���y�d�d�O������	��
#���}��
��������
���}����9
�]N��)�r,
�j(�Dws:
��;�<��;��;�<��<�_��eX�:f`�%aX�6��8@�8
@�n
,In�_KN�6��7@7�o,�q�.o,#o,�6�8@�6�M8@�*
��*
�Zf[(o,2i��yE�E#��n,�n
,�g�g�g�g�
g�g�
gg
g)uTg'�6��tTYwsuTr`�u����y��FNpb
>-c
ab>�a>�a>�a>�a>�b>c
>�:	f^ca�a
>�b>�b	>�b
>b>�b>�:fKca�a	>�a>�b>�b
>]b>�b>�b>Gb>1b>�b>�b>c
apcab>zb	>EgX�a>�b	>:ca�a>�a
>S
��3�4�/r
�r��X&,�.,�uT���
2
��js2
�@i�Z_ws�=_Q�X6�8<�H<��9��9�ejsv
�}js�js8T�3
��9�kjs�KNKN�JN�JN�HN�HN�HN@TD��9��
�-��%��&4��I��D�]��GN
'ss|�X�-��&��<��0h�/��0h�0h�0h�0h�g�\@|(�*��>OR�u	#�js4��3��tTuTi��&4sh:�&4�&4#'��Z�'��'��'�v'�''�'��'
��'�l'
��@
�r�s4�*4��9
��9
�24�,*�2*�'	sF*�g,��*
��+��+��+��+��+��xs�GN�+��ws�+��+
��wsF4��ps�ws�wsopSapS�g�o	SpS�oSOp
SFp	Sn�>pS�m�	pS�m�pS�m�'pS	�5	��oS�m�6pSYpS�m�pS�m�pS�m�.pS�,�Ua��w�b`��TI.J3	g<g����V��)`js�vs�ws�=�Q��&4Z��ws�&
4'>�Q��ws*e	X'
4u:f�=	�Q	�;Y#Y�A��4xs�=�Q��>^R�gP�RO��C��C��B�>O��C�wC��C��C�JE� qs�	��ns�P��P��P��P��P��P�Q�Q�,Q�8Q�HQ�fQ��Q
�BR
�iR� xs&xs,xs2xs����r�`�j5 r3�9xsTxsoxsp4����uR��A!����9��9��C
��f	[�' ��FN\+�E+�+!��W�����[3��
���B
�*�6����/
B���.�i	sG>�Q��C��>:R��R�@>���xs�g
�Ph:�xs�+��a
a�)t*�ps|�s|�r|C(
��+!��*��x
sdeX�cX|eX�	��xr#	�v	�L	�[	��	��>��h��?RC@R?o,�+=�8
@�8@G	N(G
N2G
NGG
N<GN6o	,E?R.b�gbbca���Z�ZgqMN}MN�MN�MN�MN����������["0�^�FH6QJ�5QP���,S���|/?T���9G�����-_�7
�._�8./ !��,.G���������������?NRSUV�����\(q{�PFG������] !(m������ocod��nS}�a�+�������Zf|yx��Ku{%e@��5[p�wn���o+�	���=X0��M��������;9BIJjkl��q��T:/K���0pqtv����@���eg���c���f����ON��t�6D�6�TUL]�����������������#�Y�[�(9?�xgo�\��E������7��2
)	-,&! '�#"*
#;S<E�3"���5QZ\���xvy�����	G
��&G��Oa�f|u{�9[+rT��goE<�
"0p�`��Y���1�����������}����	<��)������{|��?-$q���V��A�45���i�Bb~���)*WX?@����rsPQ������21��! ���������&g'ht�*��F��������������9�h�������������:�F������������"
>uO��B���'�^F��9_�7�.�|�q���Et���0qT�gzGa�.
~Y��<�@F������[b_�r^`�_8�,)#^`rq�IJ�-_�7�.�8./� !�,.�UG ��Z.^`F)(rq�IJ�-_�7�.ZY����8./� !�,.�UG ��qt��^��^��`8�,�`���8�,.�cF���������������9$�0<���MI�I9�/023���}�s����������W����M�NK�EI���8�
#M��ppm'cd���u&$.,-�jU�%O'R}l���;�o[ck�t&�l�i��8�`���E1����
Hg���	s�������ALNPB����Chd��N���3���.�����5BC������}~RS��vw����tu45rq457+�
li;I~7�3$esu�=21HRJKQS+H�
aHH�������Oa|[�<�u;�:�,X*KZ]a���>�b������������&f�
8�EeD9!�p����wz��8�R���Z�6fy-	G���ZQFH;~D=�AT������IFdFfJ���:��A^����>��e#B������m�jq�kovrn�wpgs{�x���"����������dEFKNOQMDCL���z������C�����2�M����P��������^>����������I��+`yW�J(}��7]��j\"b����3c���3����=:��mn|O55�\[������OP<m��ocl��}D�+�X��M����qtvA�����]�^IZ[\���r\
�K\[����V!+��]�������X:bx��xvy������Z�d=���ek�I��.�.���.K����� !���$�c*+)������������������u?NT�\(q{����������/�u?N�\(q{�/?N\(q{�	?N\(q{�u	?N\(q{�MT�X$nz�
4�C[�C�mX$nz
DX��O��QF��l�����DH�6�Y
&oxL
�DH�6��
L�DH�6��Y
&oxL����FJ"�7N�pZ'��y����ef�m=�{�<�oc�}Al�Q^�������=���������%V~����%GVW��zS� ~��������{|������������*v*��t��)�)hR�)F��iS��G�����kV��PVO��-��?Zf{�Z����f|bzdd8m8=O�{}~Em{���������fhh877pm�f=<<@>>f	wn{||�� �
�D��L]%�]�^����gq�������+v���,w�q�vT�G����KM��DL�EWQ�����jeic���f\��������8���D�
�;�'h}�L=���;�'h�12HJZ]��y0g5hz01y{xg5o6hpv01zy{xg5o6hp{1xo6p:%n2:3:9n5nx�$ngo�gog505o616�hp&#�#������ �!$"%��!$�
������+%�)	-,&! '#"*
���^`_
~�h�~~�	+��<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj�	3�0���1m�<���V)��4lfstatementmergeprogram��^(���B<SymbolTreeInfo>_SpellChecker_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll�	3�Ȟ�L>>���
�W@�@3z_activator_appdomain_assembly_assemblybuilder_assemblyname_attribute_constructorbuilder_constructorinfo_customattributebuilder_enumbuilder_eventbuilder_eventinfo_exc���J<SymbolTreeInfo>_Source_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj�	17�0���1m�<���V)��4LFStatementMergeProgram������T&���6<SymbolTreeInfo>_Metadata_C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll�	17�Ȟ�L>>���
�W@�@��SystemCollectionsGenericIComparerIEnumeratorIEnumerableICollectionIListIReadOnlyCollectionIReadOnlyListIEqualityComparerComparerIDictionaryIReadOnlyDictionaryDictionaryEnumeratorKeyCollectionEnumeratorValueCollectionEnumeratorEqualityComparerKeyNotFoundExceptionKeyValuePairListEnumeratorConcurrentIProducerConsumerCollectionConcurrentQueueConcurrentStackConcurrentDictionaryPartitionerOrderablePartitionerEnumerablePartitionerOptionsObjectModelCollectionReadOnlyCollectionReadOnlyDictionaryKeyCollectionValueCollectionKeyedCollectionIEnumerableICollectionIListIStructuralComparableIStructuralEquatableIEnumeratorIComparerIEqualityComparerCaseInsensitiveComparerIHashCodeProviderCaseInsensitiveHashCodeProviderCollectionBaseIDictionaryDictionaryBaseReadOnlyCollectionBaseQueueArrayListBitArrayStackComparerIDictionaryEnumeratorHashtableDictionaryEntrySortedListStructuralComparisonsTextStringBuilderEncodingEncoderDecoderASCIIEncodingDecoderFallbackDecoderFallbackBufferDecoderExceptionFallbackDecoderExceptionFallbackBufferDecoderFallbackExceptionDecoderReplacementFallbackDecoderReplacementFallbackBufferEncoderFallbackEncoderFallbackBufferEncoderExceptionFallbackEncoderExceptionFallbackBufferEncoderFallbackExceptionEncoderReplacementFallbackEncoderReplacementFallbackBufferEncodingInfoNormalizationFormUnicodeEncodingUTF7EncodingUTF8EncodingUTF32EncodingSecurityPolicyEvidenceBaseIMembershipConditionAllMembershipConditionApplicationDirectoryApplicationDirectoryMembershipConditionApplicationSecurityInfoApplicationSecurityManagerDetermineApplicationTrustApplicationVersionMatchApplicationTrustApplicationTrustCollectionApplicationTrustEnumeratorCodeGroupEvidenceFileCodeGroupFirstMatchCodeGroupIIdentityPermissionFactoryIApplicationTrustManagerTrustManagerUIContextTrustManagerContextCodeConnectAccessNetCodeGroupPermissionRequestEvidencePolicyExceptionPolicyLevelPolicyStatementAttributePolicyStatementSiteSiteMembershipConditionStrongNameStrongNameMembershipConditionUnionCodeGroupUrlUrlMembershipConditionZoneZoneMembershipConditionGacInstalledGacMembershipConditionHashHashMembershipConditionPublisherPublisherMembershipConditionIConstantMembershipConditionIReportMatchMembershipConditionIUnionSemanticCodeGroupIDelayEvaluatedEvidenceUtilPrincipalIIdentityGenericIdentityIPrincipal��eption_fieldbuilder_fieldinfo_ilgenerator_localbuilder_memberinfo_methodbase_methodbuilder_methodinfo_methodrental_module_modulebuilder_parameterbuilder_parameterinfo_propertybuilder_propertyinfo_signaturehelper_thread_type_typebuilderabandonedmutexexceptionabsaccesscontrolaccesscontrolactionsaccesscontrolmodificationaccesscontrolsectionsaccesscontroltypeaccessedthroughpropertyattributeaccessruleaccessviolationexceptionaceenumeratoraceflagsacequalifieracetypeacosactionactivatedclienttypeentryactivatedservicetypeentryactivationactivationargumentsactivationcontextactivatoractivatorleveladdaddeventhandleraddmemorypressureaddrefadjustmentruleaesaggregateexceptionallmembershipconditionalloccotaskmemallochglobalallowpartiallytrustedcallersattributeallowreversepinvokecallsattributeambiguousmatchexceptionapartmentstateappdomainappdomaininitializerappdomainmanagerappdomainmanagerinitializationoptionsappdomainsetupappdomainunloadedexceptionapplicationactivatorapplicationdirectoryapplicationdirectorymembershipconditionapplicationexceptionapplicationidapplicationidentityapplicationsecurityinfoapplicationsecuritymanagerapplicationtrustapplicationtrustcollectionapplicationtrustenumeratorapplicationversionmatcharecomobjectsavailableforcleanupargiteratorargumentexceptionargumentnullexceptionargumentoutofrangeexceptionarithmeticexceptionarrayarraylistarraysegmentarraytypemismatchexceptionarraywithoffsetasciiencodingasinassembliesassemblyassemblyalgorithmidattributeassemblybuilderassemblybuilderaccessassemblycompanyattributeassemblyconfigurationattributeassemblycontenttypeassemblycopyrightattributeassemblycultureattributeassemblydefaultaliasattributeassemblydelaysignattributeassemblydescriptionattributeassemblyfileversionattributeassemblyflagsattributeassemblyhashassemblyhashalgorithmassemblyinformationalversionattributeassemblykeyfileattributeassemblykeynameattributeassemblyloadeventargsassemblyloadeventhandlerassemblymetadataattributeassemblynameassemblynameflagsassemblynameproxyassemblyproductattributeassemblyregistrationflag�sassemblysignaturekeyattributeassemblytargetedpatchbandattributeassemblytitleattributeassemblytrademarkattributeassemblyversionattributeassemblyversioncompatibilityassertassumeasymmetricalgorithmasymmetrickeyexchangedeformatterasymmetrickeyexchangeformatterasymmetricsignaturedeformatterasymmetricsignatureformatterasynccallbackasyncflowcontrolasyncresultasyncstatemachineattributeasynctaskmethodbuilderasyncvoidmethodbuilderatanatan2attributeattributetargetsattributeusageattributeauditflagsauditruleauthorizationruleauthorizationrulecollectionautomationproxyattributeautoreseteventbadimageformatexceptionbase64formattingoptionsbasechannelobjectwithpropertiesbasechannelsinkwithpropertiesbasechannelwithpropertiesbeepbestfitmappingattributebigmulbinarybinaryformatterbinaryreaderbinarywriterbind_optsbinderbindhandlebindingflagsbindptrbindtomonikerbitarraybitconverterblockcopybooleanbstrwrapperbufferbufferedstreambytebytelengthcalendarcalendaralgorithmtypecalendarweekrulecallcontextcallconvcallconvcdeclcallconvfastcallcallconvstdcallcallconvthiscallcallerfilepathattributecallerlinenumberattributecallermembernameattributecallingconventioncallingconventionscancelfullgcnotificationcancellationtokencancellationtokenregistrationcancellationtokensourcecannotunloadappdomainexceptioncaseinsensitivecomparercaseinsensitivehashcodeproviderceilingcerchangewrapperhandlestrengthchanneldatastorechannelschannelservicescharcharenumeratorcharsetcharunicodeinfochineselunisolarcalendarciphermodeclaimclaimsclaimsidentityclaimsprincipalclaimtypesclaimvaluetypesclassinterfaceattributeclassinterfacetypecleanupcodecleanupunusedobjectsincurrentcontextclearclientchannelsinkstackclientsponsorclscompliantattributecoclassattributecodeaccesspermissioncodeaccesssecurityattributecodeanalysiscodeconnectaccesscodegroupcollectcollectioncollectionbasecollectioncountcollectionscomaliasnameattributecombinecomcompatibleversionattributecomconversionlossattributecomdefaultinterfaceattributecomeventinterfaceattributecomeventshelpercomexceptioncomimportattributecom�interfacetypecommembertypecommonacecommonaclcommonobjectsecuritycommonsecuritydescriptorcomparecompareexchangecompareinfocompareoptionscomparercomparisoncompilationrelaxationscompilationrelaxationsattributecompilergeneratedattributecompilerglobalscopeattributecompilermarshaloverridecompilerservicescomponentguaranteesattributecomponentguaranteesoptionscompoundacecompoundacetypecompressedstackcomregisterfunctionattributecomsourceinterfacesattributecomtypescomunregisterfunctionattributecomvisibleattributeconcurrentconcurrentdictionaryconcurrentexclusiveschedulerpairconcurrentqueueconcurrentstackconditionalattributeconditionalweaktableconfigurationconfigureconfiguredtaskawaitableconfiguredtaskawaiterconnectconnectdataconsistencyconsoleconsolecanceleventargsconsolecanceleventhandlerconsolecolorconsolekeyconsolekeyinfoconsolemodifiersconsolespecialkeyconstrainedexecutionconstructioncallconstructionresponseconstructorbuilderconstructorinfocontextcontextattributecontextboundobjectcontextcallbackcontextformcontextmarshalexceptioncontextpropertycontextscontextstaticattributecontractcontractabbreviatorattributecontractargumentvalidatorattributecontractclassattributecontractclassforattributecontractfailedeventargscontractfailurekindcontracthelpercontractinvariantmethodattributecontractoptionattributecontractpublicpropertynameattributecontractreferenceassemblyattributecontractruntimeignoredattributecontractscontractverificationattributecontrolflagsconvertconvertercopycoscoshcountdowneventcreateaggregatedobjectcreatedirectorycreatevaluecallbackcreatewrapperoftypecriticalfinalizerobjectcriticalhandlecriticalhandleminusoneisinvalidcriticalhandlezeroorminusoneisinvalidcrossappdomaindelegatecrosscontextdelegatecryptoapitransformcryptoconfigcryptographicexceptioncryptographicunexpectedoperationexceptioncryptographycryptokeyaccessrulecryptokeyauditrulecryptokeyrightscryptokeysecuritycryptostreamcryptostreammodecspkeycontainerinfocspparameterscspproviderflagscultureinfoculturenotfoundexceptionculturetypescurrencywrappercurrentthrea�drequiressecuritycontextcapturecustomacecustomattributebuildercustomattributedatacustomattributeextensionscustomattributeformatexceptioncustomattributenamedargumentcustomattributetypedargumentcustomconstantattributecustomerrorsmodescustomqueryinterfacemodecustomqueryinterfaceresultdatamisalignedexceptiondatetimedatetimeconstantattributedatetimeformatinfodatetimekinddatetimeoffsetdatetimestylesdaylighttimedayofweekdbnulldebuggableattributedebuggerdebuggerbrowsableattributedebuggerbrowsablestatedebuggerdisplayattributedebuggerhiddenattributedebuggernonusercodeattributedebuggerstepperboundaryattributedebuggerstepthroughattributedebuggertypeproxyattributedebuggervisualizerattributedebuggingmodesdecimaldecimalconstantattributedecoderdecoderexceptionfallbackdecoderexceptionfallbackbufferdecoderfallbackdecoderfallbackbufferdecoderfallbackexceptiondecoderreplacementfallbackdecoderreplacementfallbackbufferdecrementdecryptdefaultcharsetattributedefaultdependencyattributedefaultdllimportsearchpathsattributedefaultinterfaceattributedefaultmemberattributedelegatedeletedependencyattributedeploymentderivebytesdesdesckinddescryptoserviceproviderdescuniondesignernamespaceresolveeventargsdesignerservicesdestroystructuredetermineapplicationtrustdiagnosticsdictionarydictionarybasedictionaryentrydigitshapesdirectorydirectoryinfodirectorynotfoundexceptiondirectoryobjectsecuritydirectorysecuritydiscardableattributedisconnectdiscretionaryacldispatchwrapperdispidattributedispparamsdividebyzeroexceptiondivremdllimportattributedllimportsearchpathdllnotfoundexceptiondoubledoubletoint64bitsdriveinfodrivenotfoundexceptiondrivetypedsadsacryptoserviceproviderdsaparametersdsasignaturedeformatterdsasignatureformatterduplicatewaitobjectexceptiondynamicilinfodynamicmethodeastasianlunisolarcalendarelemdescemitencoderencoderexceptionfallbackencoderexceptionfallbackbufferencoderfallbackencoderfallbackbufferencoderfallbackexceptionencoderreplacementfallbackencoderreplacementfallbackbufferencodingencodinginfoencryptendcontractblockendofstreamexception�ensuresensuresonthrowensuresufficientexecutionstackenterenterpriseserviceshelperentrypointnotfoundexceptionenumenumbuilderenumerablepartitioneroptionsenumeratorenvironmentenvironmentpermissionenvironmentpermissionaccessenvironmentpermissionattributeenvironmentvariabletargetequalitycomparerequalserrorwrappereventargseventattributeeventattributeseventbuildereventcommandeventcommandeventargseventhandlereventinfoeventkeywordseventleveleventlistenereventopcodeeventregistrationtokeneventregistrationtokentableeventresetmodeeventsourceeventsourceattributeeventsourceexceptioneventtaskeventtokeneventwaithandleeventwaithandleaccessruleeventwaithandleauditruleeventwaithandlerightseventwaithandlesecurityeventwritteneventargsevidenceevidencebaseexcepinfoexceptionexceptiondispatchinfoexceptionhandlerexceptionhandlingclauseexceptionhandlingclauseoptionsexceptionservicesexchangeexecutecodewithguaranteedcleanupexecutemessageexecutioncontextexecutionengineexceptionexistsexitexpexpandenvironmentvariablesexpandoexportereventkindextensibleclassfactoryextensionattributeexternalexceptionfailfastfieldaccessexceptionfieldattributesfieldbuilderfieldinfofieldoffsetattributefieldtokenfilefileaccessfileattributesfilecodegroupfiledialogpermissionfiledialogpermissionaccessfiledialogpermissionattributefileinfofileiopermissionfileiopermissionaccessfileiopermissionattributefileloadexceptionfilemodefilenotfoundexceptionfileoptionsfilesecurityfilesharefilestreamfilesystemaccessrulefilesystemauditrulefilesysteminfofilesystemrightsfilesystemsecurityfiletimefinalreleasecomobjectfirstchanceexceptioneventargsfirstmatchcodegroupfixedaddressvaluetypeattributefixedbufferattributeflagsattributefloorflowcontrolforallformatexceptionformatterformatterassemblystyleformatterconverterformattersformatterservicesformattertypestylefreebstrfreecotaskmemfreehglobalfreehstringfrombase64chararrayfrombase64stringfrombase64transformfrombase64transformmodefuncfuncdescfuncflagsfunckindgacidentitypermissiongacidentitypermissionattributegacinstalledgacmembershipconditiongcgc�collectionmodegchandlegchandletypegclatencymodegcnotificationstatusgcsettingsgenerateguidfortypegenerateprogidfortypegenericgenericacegenericaclgenericidentitygenericparameterattributesgenericprincipalgenericsecuritydescriptorgenerictypeparameterbuildergetactivationcontextdatagetactivationfactorygetactiveobjectgetapplicationcomponentmanifestgetattributesgetavailablethreadsgetbytegetbytesgetcominterfaceforobjectgetcominterfaceforobjectincontextgetcommandlineargsgetcomobjectdatagetcomslotformethodinfogetcreationtimegetcreationtimeutcgetcurrentdirectorygetcustomattributegetcustomattributesgetdelegateforfunctionpointergetdeploymentcomponentmanifestgetdirectoryrootgetendcomslotgetenvironmentvariablegetenvironmentvariablesgetenvoychainforproxygetexceptioncodegetexceptionforhrgetexceptionpointersgetfolderpathgetfullpathgetfunctionpointerfordelegategetgenerationgethashcodegethinstancegethrforexceptiongethrforlastwin32errorgetidispatchforobjectgetidispatchforobjectincontextgetinternalappidgetitypeinfofortypegetiunknownforobjectgetiunknownforobjectincontextgetlastaccesstimegetlastaccesstimeutcgetlastwin32errorgetlastwritetimegetlastwritetimeutcgetlifetimeservicegetlogicaldrivesgetmanagedthunkforunmanagedmethodptrgetmaxthreadsgetmethodbasefrommethodmessagegetmethodinfogetmethodinfoforcomslotgetminthreadsgetnativevariantforobjectgetobjectdatagetobjectforiunknowngetobjectfornativevariantgetobjectsfornativevariantsgetobjecturigetobjectvaluegetobjrefforproxygetrealproxygetregisteredactivatedclienttypesgetregisteredactivatedservicetypesgetregisteredwellknownclienttypesgetregisteredwellknownservicetypesgetruntimebasedefinitiongetruntimeeventgetruntimeeventsgetruntimefieldgetruntimefieldsgetruntimeinterfacemapgetruntimemethodgetruntimemethodsgetruntimepropertiesgetruntimepropertygetservertypeforurigetsessionidformethodmessagegetstartcomslotgettempfilenamegettemppathgetthreadfromfibercookiegettotalmemorygettypedobjectforiunknowngettypeforitypeinfogettypefromclsidgettypeinfogettypeinfonamegettypelibguidgettypelibguidforassemblyget�typeliblcidgettypelibnamegettypelibversionforassemblygetuniqueobjectforiunknowngetunmanagedthunkformanagedmethodptrgetvaluegetzoneandoriginglobalizationgregoriancalendargregoriancalendartypesguidguidattributehandleprocesscorruptedstateexceptionsattributehandlerefhascopysemanticsattributehashhashalgorithmhashmembershipconditionhashtableheaderheaderhandlerhebrewcalendarhijricalendarhmachmacmd5hmacripemd160hmacsha1hmacsha256hmacsha384hmacsha512hostexecutioncontexthostexecutioncontextmanagerhostinghostprotectionattributehostprotectionexceptionhostprotectionresourcehostsecuritymanagerhostsecuritymanageroptionsiactivationfactoryiactivatoriappdomainsetupiapplicationtrustmanageriasyncmethodbuilderiasyncresultiasyncstatemachineibindctxibuiltinpermissionichannelichanneldatastoreichannelinfoichannelreceiverichannelreceiverhookichannelsenderichannelsinkbaseiclientchannelsinkiclientchannelsinkprovidericlientchannelsinkstackiclientformattersinkiclientformattersinkprovidericlientresponsechannelsinkstackicloneableicollectionicomparableicomparericonnectionpointiconnectionpointcontainericonstantmembershipconditioniconstructioncallmessageiconstructionreturnmessageicontextattributeicontextpropertyicontextpropertyactivatoricontributeclientcontextsinkicontributedynamicsinkicontributeenvoysinkicontributeobjectsinkicontributeservercontextsinkiconvertibleicriticalnotifycompletionicryptotransformicspasymmetricalgorithmicustomadaptericustomattributeprovidericustomfactoryicustomformattericustommarshalericustomqueryinterfaceidelayevaluatedevidenceidentitynotmappedexceptionidentityreferenceidentityreferencecollectionideserializationcallbackidictionaryidictionaryenumeratoridispatchconstantattributeidispatchimplattributeidispatchimpltypeidisposableidldescidlflagidnmappingidynamicmessagesinkidynamicpropertyienumconnectionpointsienumconnectionsienumerableienumeratorienummonikerienumstringienumvariantienvoyinfoiequalitycompareriequatableievidencefactoryiexpandoifieldinfoiformatprovideriformattableiformatteriformatterconverterihashcodeprovideriid�entityiidentitypermissionfactoryiinternalmessageileaseilgeneratorilistilogicalthreadaffinativeimagefilemachineimembershipconditionimessageimessagectrlimessagesinkimethodcallmessageimethodmessageimethodreturnmessageimonikerimpltypeflagsimportedfromtypelibattributeimportereventkindinattributeincrementindexernameattributeindexoutofrangeexceptioninheritanceflagsinitializearrayinormalizeforisolatedstorageinotifycompletioninsufficientexecutionstackexceptioninsufficientmemoryexceptionint16int32int64int64bitstodoubleinterfaceimplementedinversionattributeinterfacemappinginterfacetypeattributeinterlockedinternalinternalactivationcontexthelperinternalapplicationidentityhelperinternalmessagewrapperinternalremotingservicesinternalrminternalstinternalsvisibletoattributeinteropservicesintptrintrospectionextensionsinvalidcastexceptioninvalidcomobjectexceptioninvalidfiltercriteriaexceptioninvalidolevarianttypeexceptioninvalidoperationexceptioninvalidprogramexceptioninvalidtimezoneexceptioninvariantinvokekindioiobjecthandleiobjectreferenceiobservableiobserveriocompletioncallbackioexceptionipermissionipersistfileiprincipaliproducerconsumercollectioniprogressireadonlycollectionireadonlydictionaryireadonlylistireflectireflectabletypeiregistrationservicesiremotingformatteriremotingtypeinfoireportmatchmembershipconditioniresourcereaderiresourcewriterirunningobjecttableisactivationallowedisafeserializationdataisboxedisbyvalueiscomobjectisconstiscopyconstructedisdefinedisecurablechannelisecurityelementfactoryisecurityencodableisecuritypolicyencodableisenterediserializableiserializationrootobjectiserializationsurrogateiserverchannelsinkiserverchannelsinkprovideriserverchannelsinkstackiserverformattersinkprovideriserverresponsechannelsinkstackiserviceproviderisexplicitlydereferencedisgrantedisimplicitlydereferencedisjitintrinsicislongismethodoverloadedisoapmessageisoapxsdisobjectoutofcontextisolatedstorageisolatedstoragecontainmentisolatedstorageexceptionisolatedstoragefileisolatedstoragefilepermissionisolatedstoragefilepermissionattribu�teisolatedstoragefilestreamisolatedstoragepermissionisolatedstoragepermissionattributeisolatedstoragescopeisolatedstoragesecurityoptionsisolatedstoragesecuritystateisolationisonewayispinnedisponsorisremotelyactivatedclienttypeissignunspecifiedbyteistackwalkistransparentproxyistreamistructuralcomparableistructuralequatableistypevisiblefromcomisudtreturnisurrogateselectorisvolatileiswellknownclienttypeisymbolbinderisymbolbinder1isymboldocumentisymboldocumentwriterisymbolmethodisymbolnamespaceisymbolreaderisymbolscopeisymbolvariableisymbolwriteriteratorstatemachineattributeithreadpoolworkitemitrackinghandleritransportheadersitupleitypecompitypeinfoitypeinfo2itypelibitypelib2itypelibconverteritypelibexporternameprovideritypelibexporternotifysinkitypelibimporternotifysinkiunionsemanticcodegroupiunknownconstantattributeiunrestrictedpermissionjapanesecalendarjapaneselunisolarcalendarjuliancalendarkeepalivekeycollectionkeycontainerpermissionkeycontainerpermissionaccessentrykeycontainerpermissionaccessentrycollectionkeycontainerpermissionaccessentryenumeratorkeycontainerpermissionattributekeycontainerpermissionflagskeyedcollectionkeyedhashalgorithmkeynotfoundexceptionkeynumberkeysizeskeyvaluepairknownacekoreancalendarkoreanlunisolarcalendarlabellayoutkindlazylazyinitializerlazythreadsafetymodelcidconversionattributeleasestatelibflagslifetimelifetimeserviceslistloaderoptimizationloaderoptimizationattributeloadhintloadpolicylevelfromfileloadpolicylevelfromstringlocalbuilderlocaldatastoreslotlocalvariableinfolockcookielockrecursionexceptionloglog10logicalcallcontextlogremotingstagemactripledesmakeversionsafenamemanagedtonativecominteropstubattributemanifestmanifestresourceinfomanualreseteventmanualreseteventslimmarshalmarshalasattributemarshalbyrefobjectmarshaldirectiveexceptionmaskgenerationmethodmathmaxmd5md5cryptoserviceprovidermemberaccessexceptionmemberfiltermemberinfomembertypesmemorybarriermemoryfailpointmemorystreammessagesurrogatefiltermessagingmetadatamethodaccessexceptionmethodattributesmethodbasemethodbodymetho�dbuildermethodcallmethodcallmessagewrappermethodcodetypemethodimplattributemethodimplattributesmethodimploptionsmethodinfomethodrentalmethodresponsemethodreturnmessagewrappermethodtokenmicrosoftmidpointroundingminmissingmissingfieldexceptionmissingmanifestresourceexceptionmissingmemberexceptionmissingmethodexceptionmissingsatelliteassemblyexceptionmodulemodulebuildermodulehandlemoduleresolveeventhandlermonitormovemovebufferareamtathreadattributemulticastdelegatemulticastnotsupportedexceptionmutexmutexaccessrulemutexauditrulemutexrightsmutexsecuritynamedpermissionsetnamespaceresolveeventargsnativecppclassattributenativeobjectsecuritynativeoverlappednetcodegroupneutralresourceslanguageattributenoneventattributenonserializedattributenormalizationformnotfinitenumberexceptionnotimplementedexceptionnotsupportedexceptionntaccountnullablenullreferenceexceptionnumberformatinfonumberstylesnumparambytesobfuscateassemblyattributeobfuscationattributeobjectobjectaccessruleobjectaceobjectaceflagsobjectauditruleobjectcreationdelegateobjectdisposedexceptionobjecthandleobjectidgeneratorobjectmanagerobjectmodelobjectsecurityobjrefobsoleteattributeoldvalueondeserializedattributeondeserializingattributeonewayattributeonserializedattributeonserializingattributeopcodeopcodesopcodetypeoperandtypeoperatingsystemoperationcanceledexceptionoptionalattributeoptionalfieldattributeorderablepartitioneroutattributeoutofmemoryexceptionoverflowexceptionoverlappedpackingsizepaddingmodeparallelparallelloopresultparallelloopstateparalleloptionsparamarrayattributeparamdescparameterattributesparameterbuilderparameterinfoparameterizedthreadstartparametermodifierparametertokenparamflagpartialtrustvisibilitylevelpartitionerpasswordderivebytespathpathtoolongexceptionpefilekindspermissionrequestevidencepermissionspermissionsetpermissionsetattributepermissionstatepersiancalendarpkcs1maskgenerationmethodplatformidplatformnotsupportedexceptionpointerpolicypolicyexceptionpolicyhierarchypolicylevelpolicyleveltypepolicystatementpolicystatementattributeportablee�xecutablekindspowpredicateprelinkprelinkallprepareconstrainedregionsprepareconstrainedregionsnooppreparecontracteddelegatepreparedelegatepreparemethodprepreparemethodattributepreservesigattributeprimaryinteropassemblyattributeprincipalprincipalpermissionprincipalpermissionattributeprincipalpolicyprivilegenotheldexceptionprobeforsufficientstackprocessorarchitectureprofileoptimizationprogidattributeprogresspropagationflagspropertyattributespropertybuilderpropertyinfopropertytokenproxiesproxyattributeptrtostringansiptrtostringautoptrtostringbstrptrtostringhstringptrtostringuniptrtostructurepublisherpublisheridentitypermissionpublisheridentitypermissionattributepublishermembershipconditionpulsepulseallpureattributequalifiedacequeryinterfacequeuequeueuserworkitemraisecontractfailedeventrandomrandomnumbergeneratorrankexceptionrawaclrawsecuritydescriptorrc2rc2cryptoserviceproviderreadreadallbytesreadalltextreadbytereaderwriterlockreadint16readint32readint64readintptrreadkeyreadonlyarrayattributereadonlycollectionreadonlycollectionbasereadonlydictionaryreadonlypermissionsetrealloccotaskmemreallochglobalrealproxyreferenceassemblyattributereflectionreflectioncontextreflectionpermissionreflectionpermissionattributereflectionpermissionflagreflectiontypeloadexceptionregioninforegisteractivatedclienttyperegisteractivatedservicetyperegisteredwaithandleregisterforfullgcnotificationregisterwaitforsingleobjectregisterwellknownclienttyperegisterwellknownservicetyperegistrationclasscontextregistrationconnectiontyperegistrationservicesregistryregistryaccessruleregistryauditruleregistryhiveregistrykeyregistrykeypermissioncheckregistryoptionsregistrypermissionregistrypermissionaccessregistrypermissionattributeregistryrightsregistrysecurityregistryvaluekindregistryvalueoptionsregistryviewreleasereleasecomobjectreleasethreadcachereliabilitycontractattributeremotingremotingconfigurationremotingexceptionremotingservicesremotingsurrogateselectorremotingtimeoutexceptionremoveremovealleventhandlersremoveeventhandlerremovememorypressurerequi�redattributeattributerequiresreregisterforfinalizeresetcolorresolveeventargsresolveeventhandlerresolvenamespaceresolvepolicyresolvepolicygroupsresolvesystempolicyresourceattributesresourceconsumptionattributeresourceexposureattributeresourcelocationresourcemanagerresourcereaderresourcesresourcescoperesourcesetresourcetyperesourcewriterresultreturnmessagereturnvaluenameattributerfc2898derivebytesrijndaelrijndaelmanagedrijndaelmanagedtransformripemd160ripemd160managedrngcryptoserviceproviderroundrsarsacryptoserviceproviderrsaoaepkeyexchangedeformatterrsaoaepkeyexchangeformatterrsaparametersrsapkcs1keyexchangedeformatterrsapkcs1keyexchangeformatterrsapkcs1signaturedeformatterrsapkcs1signatureformatterrunclassconstructorruntimeruntimeargumenthandleruntimecompatibilityattributeruntimeenvironmentruntimefieldhandleruntimehelpersruntimemethodhandleruntimereflectionextensionsruntimetypehandleruntimewrappedexceptionsafearrayrankmismatchexceptionsafearraytypemismatchexceptionsafebuffersafefilehandlesafehandlesafehandleminusoneisinvalidsafehandlessafehandlezeroorminusoneisinvalidsaferegistryhandlesafeserializationeventargssafewaithandlesatellitecontractversionattributesavepolicysavepolicylevelsbytescopelessenumattributesearchoptionsecurestringsecurestringtobstrsecurestringtocotaskmemansisecurestringtocotaskmemunicodesecurestringtoglobalallocansisecurestringtoglobalallocunicodesecuritysecurityactionsecurityattributesecuritycontextsecuritycontextsourcesecuritycriticalattributesecuritycriticalscopesecurityelementsecurityexceptionsecurityidentifiersecurityinfossecuritymanagersecuritypermissionsecuritypermissionattributesecuritypermissionflagsecurityrulesattributesecurityrulesetsecuritysafecriticalattributesecuritystatesecuritytransparentattributesecuritytreatassafeattributesecurityzoneseekoriginsehexceptionsemaphorefullexceptionsemaphoreslimsendorpostcallbackserializableattributeserializationserializationbinderserializationentryserializationexceptionserializationinfoserializationinfoenumeratorserializationobjectmanagerserverch�annelsinkstackserverexceptionserverfaultserverprocessingservicessetaccesscontrolsetattributessetbuffersizesetbytesetcomobjectdatasetcreationtimeutcsetcurrentdirectorysetcursorpositionsetenvironmentvariableseterrorsetinsetlastaccesstimeutcsetlastwritetimeutcsetmaxthreadssetminthreadssetobjecturiformarshalsetoutsetprofilerootsetvaluesetwin32contextinidispatchattributesetwindowpositionsetwindowsizesha1sha1cryptoserviceprovidersha1managedsha256sha256managedsha384sha384managedsha512sha512managedsignsignaturedescriptionsignaturehelpersignaturetokensinsinglesinhsinkproviderdatasitesiteidentitypermissionsiteidentitypermissionattributesitemembershipconditionsizeofsoapanyurisoapattributesoapbase64binarysoapdatesoapdatetimesoapdaysoapdurationsoapentitiessoapentitysoapfaultsoapfieldattributesoaphexbinarysoapidsoapidrefsoapidrefssoapintegersoaplanguagesoapmessagesoapmethodattributesoapmonthsoapmonthdaysoapnamesoapncnamesoapnegativeintegersoapnmtokensoapnmtokenssoapnonnegativeintegersoapnonpositiveintegersoapnormalizedstringsoapnotationsoapoptionsoapparameterattributesoappositiveintegersoapqnamesoapservicessoaptimesoaptokensoaptypeattributesoapyearsoapyearmonthsortedlistsortkeysortversionspecialfolderspecialfolderoptionspecialnameattributespinlockspinwaitsqrtstackstackbehaviourstackframestackoverflowexceptionstacktracestartprofilestatemachineattributestathreadattributestatstgstreamstreamingcontextstreamingcontextstatesstreamreaderstreamwriterstringstringbuilderstringcomparerstringcomparisonstringfreezingattributestringinfostringreaderstringsplitoptionsstringtobstrstringtocotaskmemansistringtocotaskmemautostringtocotaskmemunistringtohglobalansistringtohglobalautostringtohglobalunistringtohstringstringtokenstringwriterstrongnamestrongnameidentitypermissionstrongnameidentitypermissionattributestrongnamekeypairstrongnamemembershipconditionstrongnamepublickeyblobstructlayoutattributestructuralcomparisonsstructuretoptrstubhelperssuppressfinalizesuppressildasmattributesuppressmessageattributesuppressunmanagedcodesecurityattributesu�rrogateselectorsymaddresskindsymbolstoresymboltokensymdocumenttypesymlanguagetypesymlanguagevendorsymmetricalgorithmsynchronizationattributesynchronizationcontextsynchronizationlockexceptionsyskindsystemsystemaclsystemexceptiontaiwancalendartaiwanlunisolarcalendartantanhtargetedpatchingoptoutattributetargetexceptiontargetframeworkattributetargetinvocationexceptiontargetparametercountexceptiontasktaskawaitertaskcanceledexceptiontaskcompletionsourcetaskcontinuationoptionstaskcreationoptionstaskfactorytaskstaskschedulertaskschedulerexceptiontaskstatustceadaptergentexttextelementenumeratortextinfotextreadertextwriterthaibuddhistcalendarthreadthreadabortexceptionthreadingthreadinterruptedexceptionthreadlocalthreadpoolthreadprioritythreadstartthreadstartexceptionthreadstatethreadstateexceptionthreadstaticattributethrowexceptionforhrtimeouttimeoutexceptiontimertimercallbacktimespantimespanstylestimezonetimezoneinfotimezonenotfoundexceptiontobase64chararraytobase64stringtobase64transformtobooleantobytetochartodatetimetodecimaltodoubletoint16toint32toint64tokenaccesslevelstokenimpersonationleveltosbytetosingletostringtouint16touint32touint64tracingtrackingservicestransitiontimetransportheaderstriggerfailuretripledestripledescryptoserviceprovidertrustmanagercontexttrustmanageruicontexttrycodetryentertupletypetypeaccessexceptiontypeattrtypeattributestypebuildertypecodetypedelegatortypedesctypedreferencetypeentrytypefiltertypefilterleveltypeflagstypeforwardedfromattributetypeforwardedtoattributetypeidentifierattributetypeinfotypeinitializationexceptiontypekindtypelibattrtypelibconvertertypelibexporterflagstypelibfuncattributetypelibfuncflagstypelibimportclassattributetypelibimporterflagstypelibtypeattributetypelibtypeflagstypelibvarattributetypelibvarflagstypelibversionattributetypeloadexceptiontypetokentypeunloadedexceptionucomibindctxucomiconnectionpointucomiconnectionpointcontainerucomienumconnectionpointsucomienumconnectionsucomienummonikerucomienumstringucomienumvariantucomimonikerucomipersistfileucomirunningobjecttab�leucomistreamucomitypecompucomitypeinfoucomitypelibuint16uint32uint64uintptruipermissionuipermissionattributeuipermissionclipboarduipermissionwindowultimateresourcefallbacklocationumalquracalendarunauthorizedaccessexceptionunhandledexceptioneventargsunhandledexceptioneventhandlerunicodecategoryunicodeencodingunioncodegroupunknownwrapperunmanagedfunctionpointerattributeunmanagedmarshalunmanagedmemoryaccessorunmanagedmemorystreamunmanagedtypeunmarshalunobservedtaskexceptioneventargsunsafeaddrofpinnedarrayelementunsafequeuenativeoverlappedunsafequeueuserworkitemunsaferegisterwaitforsingleobjectunsafevaluetypeattributeunverifiablecodeattributeurlurlattributeurlidentitypermissionurlidentitypermissionattributeurlmembershipconditionutf32encodingutf7encodingutf8encodingutilvalueatreturnvaluecollectionvaluetypevardescvarenumvarflagsvariantwrappervarkindverificationexceptionversionversioningversioninghelpervoidvolatilew3cxsd2001waitwaitcallbackwaitforfullgcapproachwaitforfullgccompletewaitforpendingfinalizerswaithandlewaithandlecannotbeopenedexceptionwaitortimercallbackweakreferencewellknownclienttypeentrywellknownobjectmodewellknownservicetypeentrywellknownsidtypewin32windowsaccounttypewindowsbuiltinrolewindowsidentitywindowsimpersonationcontextwindowsprincipalwindowsruntimewindowsruntimedesignercontextwindowsruntimemarshalwindowsruntimemetadatawritewriteallbyteswritealltextwritebytewriteint16writeint32writeint64writeintptrwritelinewriteonlyarrayattributex509certificatex509certificatesx509contenttypex509keystorageflagsxmlfieldorderoptionxmlsyntaxexceptionyieldawaitableyieldawaiterzerofreebstrzerofreecotaskmemansizerofreecotaskmemunicodezerofreeglobalallocansizerofreeglobalallocunicodezonezoneidentitypermissionzoneidentitypermissionattributezonemembershipcondition�)
#

#	*--
	5:
>D
AWKg
N~X�
d�
f�
k�
q�

v���
���������

���,�=�K�[
�h�x�����
��
��
���������
 �*
�4L
Yamtx~��
��!�	"�#�#�)
-7;+@.G@LVQdUp%X�!
]�g�g�	k�n�t%y-y;|U�i�}'����
�������	��3�M�d ��������������	������&
�3�7
�A�I�e�t�������
 !';*W2s2�7�:�%?�?�D�DE,FEFQJbLsN�S�	S�"\�_�a	e+	eG	fM	iS	lf	 q�	q�	r�	r�	
v�	}�	
 
6
L
�P
�U
	�^
�n
��

��
	��
��
��
��
��
���7�T�m
�q������������	����
������
�����	���#�)�7�;
�E�M�b�r�}��
�����������





-
E
V
�s
�
�
�
�
�
�
'*-/*1.1<2C4R9j
=tAyCF�I�
K�N�Q�X�]�$a
dg(
i5oJuZvn|�}�~�	���
������������!�;�W�q��������
��	��	����������(�0
�:�P�o������������
��+�G�c�k����
���� �������� 
�-	�6�M�b�i�t���������
����������2DSZj|
��������" 6"O%f%y+� ,�,�#,�",,"	-+0H0T0[	6d7h8k=o@}@�@�@�@�D�E�F%H1JGK[LmNyO�)P�P�T�T�V�X	Y[%]8
]EaUa`fxf�h�+i�	j�j�j�j	m'oCp_qvr�t�v�v�y�z�{|~�+�7	�@�F�Y�a�{�������� ����2�M�[�b�z�������������
 �-	�6�=�T�n$������������
��������	�#!�D�T�d�}��
��������	��
�������&
�0�@�O�^
�h�}������������	����	������
�#�:�O�k
�x
����������������� �$ �>  �^ �f �r �y �� �� �� �� �� �� �� �!�!�!�3!
�=!�H!�]!�x!��!��!��!�!�!	�!�!�!""$"0"	9"
F"

P"

]"
h"
~"�"�"�"�"�"	�"
�"�"#-#B#Y#n#v#�#	�#	�#�#�# �# �# �#"$ "'$"5$&E$)]$)c$*g$*j$.�$.�$.�$1�$3�$3�$4�$4�$6%6%	6%6)%
73%87%
9A%9O%
9\%<p%=�%>�%>�%>�%>�%A�%A�%B&D&D'&D3&	E<&
EF&EZ&Gm&H{&I�&I�&I�&L�&L�&L�&L'L'L*'L/'L:'L@'NO'	PX'Qn'Q�'
R�'T�'Y�'\�'
^�'a�'a�'b�'c�'c(f%(g)(g1(	j:(pB(rW(ru(r�(r�(s�(u�(v�(v�(
v�(v�(
v�(v�(v)v)
v!)
v+)v:)vT)wd)z})z�)z�){�){�){�)
|�)}*}*!*�9*!�Z*�l*�|*��*��*��*��*��*��*�	+�'+�7+
�D+�Z+�q+��+��+��+��+
��+��+��+
��+�,�,�%,�;,�P,�n,�~,��,��,��,��,��,��,�-�-�--�=-$�a-
�n-��-
��-��-
��-��-
��-��-�.�+.�7.�E.�V.�b.!��."��.!��."��.�/�/�/�./�>/�T/�d/�u/��/��/��/��/��/��/��/�0�0�20��E0�U0�`0�o0�}0��0��0��0��0��0$�1�1�$1
�11�B1�X1�\1
�i1.��1	��1��1��1
��1��1	��1��1
��1�2
�2�2�#2
�02�82
�B2
�L2
�V2�j2��2��2��2��2��2��2��2�3
�3�(3�@3�S3�_3�q3�y3��3��3��3��3��3�3�3�34454I4e4�4
�4�4�4	�4�4
�4
�4
5$555E5^5z5�5�5�5�5�5�5
6!6/6G6U6e6u6�6�6�6�6�6�6
7797O7`7k7r7y7
�7�7�7 �7 �7 �7!�7!�7#�7#8
$8$8
$)8$98$A8
%K8%Z8&f8
'p8'�8'�8	'�8(�8(�8(�8)�8)�8)�8*9*9*!9*-9*99*K9*Y9+m9.u9
/�90�91�91�9	1�92�92�92�92:3*:3;:#4^:4y:4~:5�:6�:6�:&6�:6�:6�:6�:7�:9;!98;:N;:f;
:p;
;z;<�;<�;=�;>�;?�;?�;A<A*<AC<AZ<Br<	B{<
C�<E�<
E�<E�<E�<	G�<I�<I�<K�<L�<
L�<L=	L=L/=LB=
LO=MW=Mg=M|=O�=O�=O�=O�=O�=O�=O>O>P>	R(>S3>S:>SK>	ST>Se>U|>W�>X�>	Y�>
[�>]�>]�>^�>_?`.?`J?`i?`y?`�?	a�?a�?a�?b�?b�?c�?c�?c@d@d)@dA@dT@dq@&i�@i�@i�@"i�@j�@jAj9A	jBAlJAlRAnZAowA�p�A
p�Ap�Ap�Aq�Aq�Aq�As�Au	B
xBy(B
y5ByCByRBzgB
ztBz�B
{�B}�B}�B
~�B~�B�B��B�
C�C	�C	�"C
�,C�4C	�=C�NC�jC��C��C��C��C��C��C�D�D	�%D
�2D�HD!�iD+��D+��D��D��D�E�E�.E	�7E�?E�KE�SE�aE�xE�}E
��E��E��E��E��E
��E��E��E��E��E�F� F�(F�?F�XF�dF�vF��F
��F��F��F��F��F��F��F��F&�G�G�2G�BG�VG�]G�oG��G��G��G��G��G��G��G��G��G
��G�H
�H�"H�.H�DH	�MH�UH�jH�zH
��H
��H
��H
��H��H��H��H��H�I
�
I�I�'I�AI�LI	�UI�eI�hI�oI��I ��I��I��I!��I��I
�J�J�)J�0J�4J�BJ�TJ�eJ��J��J��J��J��J
��J��J��J��J�K�#K�/K!�PK�aK�wK��K��K��K��K	��K��K��K�L�L
�L�6L�JL�PL�`L	�iL�wL��L��L��L��L��L
��L��L��L��L�
M�M�,M�DM�SM�hM�~M��M��M
��M��M��M��M��M��M�N�N�$N�5N
�?N�JN�UN�]N�oN��N��N��N	��N��N��N
��N��N�O�O	�O�6O�AO�TO�XO�lO�wO��O��O
��O��O��O��O��O
��O�P�#P�)P�8P�GP�RP�aP�pP��P��P��P	��P��P
��P��P��P�Q�Q
�'Q�@Q�TQ�sQ	�|Q���Q��Q��Q��Q��Q��Q�R�!R�)R�9R�KR�ZR�fR
�sR�zR��R��R��R��R��R��R��R	��R�S$�+S�GS�LS�TS
�aS�mS�{S��S��S��S��S��S
��S��S��S��S�T�T�T�"T�*T�:T	�CT	�LT	�UT
�_T�fT�|T��T��T��T��T��T��T	��T�U
�U�'U�;U�XU�pU��U
��U��U��U��U��U�V�3V�OV�gV��V��V��V��V��V��V��V��V�W�W�*W�EW�SW�cW�tW��W��W��W��W��W��W��W��W�X�X�0X�HX�NX�dX�vX��X��X��X��X
��X��X��X��X
�Y�Y�1Y�CY�_Y�xY��Y��Y��Y	��Y
��Y��Y��Y��Y��Y
��Y�Z�Z�%Z�4Z�LZ	�UZ�eZ�}Z��Z��Z��Z��Z��Z
��Z�[�[�8[�R[�e[�l[��[��[��[��[��[��[��[�\�&\�D\�b\
�l\�z\
��\��\��\!��\��\��\�]!�&]
�0]�?]�D]�Z]�f]�r]��]��]��]��] ��]�^�^�!^�0^�E^�^^�s^�^�^�^
�^�^�^�^__)_F_
S_o_�_�_
�_�_�_
�_�_�_
``)`?`P`k`�`�`�`�`�`�`�`
�`
�`�`a a3aDaZabaga{a�a
�a
�a�a�a�a�a#�ab
bb8bCbIb
Vb	\b

ibob
|b�b�b�b�b��b�b�b�b�b�bcc$c
.c
;cKcSc_cfcrc~c
�c	�c�c
�c�c	�c
�c�c�c�c�c	ddd
%d8dCdOded{d�d�d
�d�d�d	�d�d�d	�de
e
e
$e+e6e
CeVejereze~e�e�e
�e�e
�e�e�e�e�e�ef!f-f9f?f
LfZfjf�f
�f�f�f�f�f�f�fgg+g:gEgQg
[gwg%�g�g�g�g�ghh$h4hKhch&�h�h�h�h�h�h�h�h�hi-iIiPiVi	_ini|i�i�i�i�i�i�i�ijj%j:jNjejxj�j�j
�j�j
�j
�j�j�j�j
�j
�jkk%k	.kHkSk
]kkkvk�k�k�k�k�k�k�k�k
�klll$l=lNl\lml	vl|l�l
�l	�l�l�l�l�l�l�l�l�l�l�l m!	m!m! m!.m!>m!Lm	!Um!sm!�m!�m!�m"�m"�m"�m"�m#�m#�m#�m#�m
#�m#n#n	#n
#%n#4n	#=n#Wn#on#�n#�n#�n#�n#�n#�n#�n$�n$o$o$3o$Go$Wo$jo$yo$�o$�o	$�o$�o$�o$�o$�o$p$)p$9p$Hp$Xp$dp$tp$�p$�p
$�p
$�p$�p$�p%�p&�p&�p&�p&�p&q�&q &=q&Mq&hq&�q&�q&�q&�q&�q&�q!&�q&r&#r&8r
&Er	&Nr &nr&�r&�r&�r!&�r&�r&s&s&s&4s&Rs&hs
&us&�s'�s'�s
'�s'�s	'�s'�s'�s'�s'�s'�s'�s'�s
't't't'#t
'-t'1t'=t'Rt'gt't
'�t!'�t'�t
'�t'�t'�t'u'u'#u'5u'Gu'Vu'qu'�u'�u'�u'�u'�u'�u
'�u'�u	'�u
'v
'v
(v('v	(0v(Gv(Vv(fv(uv(�v(�v(�v(�v(�v(�v(�v(w(w(1w(5w(Kw(jw((

		 #'/1259ABJ!MRW[`j��� Y#_%n'�$�	*�
��c	��
Ga���	�
3
DK
�t	�6
X	S&Lg�,1
wPx~�2
�%0V�����p 
	
"4bd
���8�-	��
O�
]	{�
S�
:	
!,��'A
�
+���	L9L��
��k=	��.
(	<�Q9
�
���&B���
j�	c:�	���
8
;{���
	�:P��_e��@
W	2��
E
�$G
��A$
)>
CUhmr�8@�&O��
���	 P~S�
u
�=NP
�B���
�;�
+!���X�|	7e�
\G~	7.��	I
��	`�<���"���QZt����
S�	�{�^�	�Is�
�
@�Fk
|��5?AsL��$(
?Is��
~E���J	m�\�
x
����
�9=�
���Hu ��FG��|
��N��	�
��	s��-0g��
���
vfp�����
�]Y",�
�"	�	��}�X}�R�QTloy~�����
�
'�a�>�v���
25x�
7�
��Jy�e��n���)dX��##�	���G	�iv�!r�3�^y
-��
����
�
`��o�	��
<+��Cr��a�Zp�,�x�������H�X^�w	z��k�"
����Y{u��qu��/�YJ
�#��t�UV
|�N���
��v��!���&'��
ca
T^���h
>����	���Ccm�[��y�E�mNt�����������
�
�c>�����
b�	��
����	+�o<��	���
L�8��t��	�)*C�[
�1�*�
\	����	k���
-�
�~��
|	�	u�	�x]
��
��t��l	�
����KH���
/���Y�	;��6�/
�	$���
%
�%
��
�4���
���w��=��*q
I��\�
�bc
��	�����T$\3:I��	�
[
sg
�&~�1
w�<N�
5�[��q	���
3���Og��O

�	lvm
�
�^z
3/�W�j
�	��
�� ���Mv�+��h
�
�8.$.����U�@�%	��	K
�	��#H	�
T���i�F]]
4
.
���Q}
��MC
��O�%j��(=
6nU�	h
��	Ru����
�D�����!��i($r�n'=��D��0DQ��
�
8o
fC�
h�g'��
�	��(�V��	
l.���2�	�	4
}e
�T���)��e��
�i��?�}���R�
���-��qE)���
-bd
q������	L���	Wi��H��	�
�b��4�
�K� �"/�
W�1
,��
�������
�Z
�
Z
	 	)��
�\�z�!��(�_f��Bj
��
E
�	E
 ��
��
��
��
v	O�	��
X]l��&�����k�	r
r�M��i��
(
�	B� �����m	����	+V
�	
#�?�
�,=f
�
�e�
�	�6`��
m�	ES�V	�M��V��:��
��*6	:]Bk�T���4
�	�@�!d�
U��5
0�<�lT	�
�?�����1	�����
t
9�S
C
K��yN	�
�Z�p��K�
d�
\�
a9�qI��	�
n�:
LA����#z�	��p
�F_��
��W�
Do
?	�"��n�	���
��
	��IP)���d
�'���
�����!
@
%��
�77hu	�<���
jg�
���
�c{�
�b����7�
�x�
����0�
;���

R	D�	w
�
p9���
�����
>
�
���
�_���V
��'�75K��	�p������	�
�y&��"*`!eJn���2��U
�O%���?�
����z{GP�
G�
h	�(�3�	
�5-
0���l��Z�x�}[^�w
*fg
Fw�	aj
 ��	|
i
��
;	A	����	��
��[��Q
&|,J�	s�/	^����q>���Wfzd���R�	�
�J�
�8a��s��;���
�
���B	�	Z
�
��}�	�`��M_����2
��������%

Q�Y�Y��	H�
�M�.	
��
A
�
���@��
S��	��
+r
�>FRX�	�_�	
D�`
�
$�
����4�	��o��
��6P�
1�fF#	3���Ub�"�
6�����;k� ��	��
�Hy
0
�
�N
o�z{���
����
�AQ�[��z3�k��<SymbolTreeInfo>_Metadata_C:\Program Files\Laserfiche\SDK 10.2\bin\10.2\net-4.0\Laserfiche.RepositoryAccess.dll�	17���bU]�n���8�v���#r�PLaserficheSecurityTokenServiceTicketRequestSettingsTicketTicketFactoryRepositoryAccessLinqEntryRowPageRowRecycledEntryRowVolumeRowTemplateRowFieldRowFieldValueRowEntryLinkTypeRowEntryLinkRowTagRowEntryTagRowAnnotationRowLfAccountRowTrusteeAttributeRowLfAccountGroupsRowTrustedGroupsRowElecDocTypeRowLdapAllowRowLdapDenyRowLdapServerProfileRowDocumentVersionRowVersionLabelRowVersionPageRowVersionFieldValueRowRepositoryContextTableAttributeColumnAttributeAdminServerAdminCollectionServerAdminDatabaseDetachRepositoryOptionsDeleteRepositoryOptionsUnmountRepositoryOptionsServerManagementTenantTenantCollectionTenantDatabaseLaserficheNamedUserLaserficheNamedUserDatabaseLaserficheNamedUserCollectionNamedDeviceNamedDeviceDatabaseNamedDeviceCollectionNamedUserNamedUsנy.�s�<SymbolTreeInfo>_SpellChecker_C:\Program Files\Laserfiche\SDK 10.2\bin\10.2\net-4.0\Laserfiche.DocumentServices.dll�	3��iZjm��(U����A�s�allreferencedfileshandlerchecksummismatcheventargschecksummismatcheventhandlercollectionscommonentrypropertiesdocumentexporterdocumentimporterdocumentimporterocroptionsdo֓<-�k�<SymbolTreeInfo>_Metadata_C:\Program Files\Laserfiche\SDK 10.2\bin\10.2\net-4.0\Laserfiche.DocumentServices.dll�	17��iZjm��(U����A�s�	LaserficheDocumentServicesPropertiesZipLibTarTarExceptionInterfacesIPdfImageDecompositionHelperIPdfImageDecompositionResultDSMethodTracerListImporterExceptionListImporterReferencedPDFFileHandlerAllReferencedFilesHandlerChecksumMismatchEventArgsDocumentPageFormatPdfExportOptionsPdfEncryptionPdfPageSizePdfPageMarginsPageExportedEventArgsDocumentExporterChecksumMismatchEventHandlerPageExportedEventHandlerDocumentImporterOcrOptionsPageImportedEventArgsDocumentImporterPageImportedEventHandlerImportOperationImportEnginePhaseImportEngineImportEngineExceptionLfEmbeddedFontCollectionOcrPageEventArgsOcrOptimizationModeOcrEngineRegistrationOcrEngineOcrPageEventHandlerSnapshotMetadataSnapshotProfileSnapshotResultSnapshotDriverSnapshotDriverWorkModeSnapshotProfileLocationSnapshotDriverSettingsStampBitmapConverterGetStampImageDataGetBitmapFromStampGetCoreBitmapFromStampTextExtractorCommonEntryPropertiesOptionalEntryPropertiesOptionalAnnotationPropertiesPageAttributesElecDocumentAttributesVolumeMakerWatermarkSpecificationRepositoryAccessILongOperationSystemObjectExceptionEventArgsEnumIEquatableMarshalByRefObjectCollectionsGenericIEnumerableIDisposableMulticastDelegateI�����"�
aZBq
Q
�
�
�

 {
�
:B1	B(	Be<ANA+AwBll>
B9

�
�
9

C_
-
�
�
HB�B"B}	
h
U
E
�'�
�
�
<
}�
�


.
#


�"� �

�
�
�
�
�

*H-Cd

�
�
$

&"5!(=>@:;A-,.FG#D/1*
	436)<?5$'E!':E%802+cumentpageformatdocumentservicesdsmethodtracerelecdocumentattributesenumeventargsexceptiongenericgetbitmapfromstampgetcorebitmapfromstampgetstampimagedataidisposableienumerableiequatableilongoperationimportengineimportengineexceptionimportenginephaseimportoperationinterfacesipdfimagedecompositionhelperipdfimagedecompositionresultlaserfichelfembeddedfontcollectionlistimporterlistimporterexceptionmarshalbyrefobjectmulticastdelegateobjectocrengineocrengineregistrationocroptimizationmodeocrpageeventargsocrpageeventhandleroptionalannotationpropertiesoptionalentrypropertiespageattributespageexportedeventargspageexportedeventhandlerpageimportedeventargspageimportedeventhandlerpdfencryptionpdfexportoptionspdfpagemarginspdfpagesizepropertiesreferencedpdffilehandlerrepositoryaccesssnapshotdriversnapshotdriversettingssnapshotdriverworkmodesnapshotmetadatasnapshotprofilesnapshotprofilelocationsnapshotresultstampbitmapconvertersystemtartarexceptiontextextractorvolumemakerwatermarkspecificationziplibG

2NY	n~����!�#�*�	-�	-/3333D5O5Z
9d:r:~:�;�<�
<�<�<�
<�<<#?8AJB[Ba	CjDD�D�D�E�E�E�EE#F8FP
F]FmF{F�
F�F�F�F�F�F�FFF(F6FJFPFSF_
FlFwF�FF)6	
1E
!"+?-*2
D(/
 <=$@A
		48:;#	%&B,
'
7
C39
>F5
.0�erDatabaseNamedUserCollectionDataLfExternalTableInfoLfExternalTableInfoReaderLfClientFactoryTableTypeLfCommandLfConnectionLfConnectionStringBuilderBlobInfoLfDataReaderLfDbTypeLfDbParameterLfDbParameterCollectionLfExternalTableRecordsRecordSeriesPropertiesCalendarCyclePeriodAndDescriptionCalendarCycleTypeCalendarCycleInfoCalendarCycleInfoReaderCutoffCriterionRetentionTypeRetentionTriggerActionCutoffCriterionInfoCutoffCriterionInfoReaderDispositionScheduleDispositionTypeRetentionInstructionsDispositionScheduleInfoDispositionScheduleInfoReaderEventEventInfoEventInfoReaderFreezeFreezeCollectionFreezeInfoLocationLocationInfoLocationInfoReaderDispositionStateAltRetentionEventReviewIntervalUnitRecordFolderPropertiesRecordPropertiesTransferCollectionTransferDateTransferInfoPropertiesCommonMonthOfYearLfColorLaserficheRepositoryAccessLaserficheClientPermissionLaserficheClientPermissionAttributeLfPointLfRectangleLfSizeTimeOfDayAuditBusinessProcessAuditEventAuditEventTypeAuditEventAuditorErrorModeAuditingAuditLogOptionsAuditLogAuditLogReaderAuditReasonAuditLogHeaderAuditRecordHeaderAuditRecordReaderCustomAuditEventCustomAuditReasonCustomAuditReasonReaderAuditReasonReaderActivityActivityMessageProtosEntryNamespaceActivityMessageBuilderMigrateEntryActivityMessageBuilderWriteEntryActivityMessageBuilderModifyPropvalActivityMessageBuilderSetEntryPropsetActivityMessageBuilderTagEntryActivityMessageBuilderModifyPropdefActivityMessageBuilderSetDBOptionActivityMessageBuilderReleaseEntryActivityMessageBuilderDigitalSignatureActivityMessageBuilderVersioningActivityMessageBuilderLinkEntryActivityMessageBuilderActivityMessageBuilderAnnotationActivityAssignTagActivityAssignTemplateActivityCopyPageActivityCreateAnnotationActivityCreateDocumentSignatureActivityCreatePageActivityDeleteAnnotationActivityDeleteDocumentSignatureActivityDeletePageActivityEntryLinkActivityMigrateDocumentActivityModifyAnnotationActivityMoveAnnotationActivityMovePageActivitySetFieldValueActivityUnassignTagActivityRemoveFieldValueActivityVersioningActivityTypeVersioningActivityWriteAltEdocActivityWriteEdocActivityWritePageActivityActivityLogReaderActivityTypeActivityTypeConverterActivityRecordSourceActivityRecordCopyEntryActivityCreateEntryActivityDeleteEntryActivityDeleteFieldActivityNotificationExceptionModifyRepositoryOptionActivityModifyFieldActivityMoveEntryActivityNotificationNotificationSubscriptionSettingsQueuingSystemExternalQueueSettingsNotificationManagerNotificationSubscriptionScopeNotificationActivitiesNotificationSubscriptionOptionsNotificationSubscriptionReleaseEntryActivityRestoreEntryActivityBadFieldValueBusinessProcessBusinessProcessEntityBusinessProcessEntityInfoBusinessProcessEntityInfoReaderBusinessProcessInfoBusinessProcessInfoReaderCertificateInfoChangeNumberObjectTypeClassificationLevelClassificationLevelInfoClassificationLevelInfoReaderCryptoKeyManagerCryptoKeyDocumentManifestDocumentManifestCollectionServerTimeStampAuthorityServerTimeStampAuthorityCollectionX509RevocationCheckModeVerificationStatusSignatureVerificationOptionsDocumentChecksumReportDocumentDifferenceReportDocumentStatisticsEffectiveAccessTokenInfoCloudSessionExceptionErrorCodesInnerExtraExceptionUnsupportedFeatureExceptionExternalQueueSecurityFieldItemListIndexingStatusReportIDocumentContentsIRawTimeStampITimeStampAuthorityJournalEntryReaderOptionsJournalEntryReaderJournalEntryJournalLaserficheErrorObjectLfdsAccountReferenceReaderLongOperationErrorObjectTypeLongOperationErrorPageDifferenceReportRepositoryPropertiesCatalogConnectionStateCatalogConnectionInfoRankedSearchHitSearchPlanSearchPlanInfoSearchPlanInfoReaderSearchTraceThesaurusThesaurusTypeThesaurusConfigurationSecureLaserficheObjectEncryptedBriefcaseHeaderBriefcaseReaderBriefcaseSignatureDocumentSignatureLfCertificateStoreSignatureVerificationFlagsAsymmetricAlgorithmCategoryDocumentSignatureInfoDocumentSignatureInfoCollectionLfX509CertificateLfX509CertificateCollectionEntryLockListingPersistentLockColumnLockLifetimeScopeEntryLockListingRowEntryLockListingSettingsAccessDeniedExceptionAccountAccountInfoReaderAccountReferenc�eAccountReferenceCollectionAccountReferenceReaderAlternateEdocReaderAlternateEdocAnnotationAnnotationTypeAnnotationAccessControlTypeLineStyleLineEndingStyleBoxStyleTextDirectionFillStyleAnnotationBaseAttachmentAnnotationFreeHandAnnotationMultipointAnnotationApplicationPropertyOptionsApplicationPropertyBitmapAnnotationCalloutAnnotationBriefcaseExceptionBriefcaseFormatBriefcaseSourceOptionsBriefcaseExporterBriefcaseFieldMatchStrategyBriefcaseFieldInfoBriefcaseImporterBriefcaseRequestTypeBriefcaseRequestBriefcaseTemplateMatchStrategyBriefcaseTemplateInfoCatalogCreationOptionsCatalogAttachOptionsCatalogOcrStateSystemColumnColumnSpecifierHitTypeContextHitContextHitListingDatabaseInfoMultiStatusExceptionFormLogicRuleFormLogicRuleRelationshipFormLogicQueryFormLogicRuleInfoFormLogicRuleInfoReaderDirectoryEntryTypeLfPropertyValueCollectionLfPropertyCollectionLfDirectoryEntryLfSearchResultCollectionLfDirectorySearchFlagsLfDirectorySearcherLdapAccountReferenceReaderCommonAccessRuleLaserficheObjectSecurityDetailedEffectiveAccessAccessRuleCollectionLongOperationReaderOfflineLocaleLabelConflictStrategyDocumentVersionSslExceptionPageTextWordTagEntryAccessRuleTagEntrySecurityThumbnailReaderCloudTicketCloudTicketRequestSettingsUserAreaEntryInfoVersionHistoryLocaleFormatILfLocaleIndexOptionIndexingStatusFileTypeIndexConfigurationLaserficheResourceLdapServerProfileLdapSchemaTypeLdapAuthenticationTypeLdapServerProfileInfoLdapServerProfileInfoReaderLaserficheReadStreamStreamRangeDocumentPagePartCheckInOptionsRevertOptionsPageDeletionOptionsDocumentInfoEntryEntryRightsEntryAccessScopeEntryAccessRuleEntryTypeEntryNameOptionEntryDepthEntryInfoPropertyTypesEntryLinkEntryLinkCollectionEntryLinkInfoEntryLinkTypeEntryLinkTypeInfoEntryLinkTypeInfoReaderEntryListingRowFolderStatisticsListingBasePersistentLockRecycleBinRecycleBinListingRecycleBinColumnPageRestoreOptionRecycleBinObjectTypeRecycleBinListingRowRecycleBinTrusteeCollectionRepositoryOptionsSearchHitHighlightReaderRecordSeriesInfoSessionLocaleSingleEntryListingEntryListingTypeEntryTypeFilterEntryListingBaseSortDirectionListingCursorTypeForwardCursorAdvancementRuleEntryListingBaseSettingsEntryListingSettingsLockTypeEntryLockEntrySecurityEntryTagEntryTagCollectionFieldMergeResolutionStrategyFieldMergeOptionsFieldCollectionTypeFieldFieldRightsFieldAccessRuleFieldTypeFieldFormatFieldInfoFieldInfoReaderFieldSecurityFieldValueCollectionEnumeratorFolderFolderInfoFolderListingHighlightAnnotationLFUtilLineAnnotationOperationTypeILongOperationLongOperationNoteHistoryRecordNoteAnnotationPageRotationPageInfoPageInfoReaderPageRangePageSetEnumeratorEntryPathPolylineAnnotationRectangleAnnotationRedactionAnnotationDriveTypeCatalogStatusRepositoryRepositoryRegistrationCollectionSearchStatusFuzzyTypeSearchExecutionModeRankedSearchHitOptionsSearchSearchListingSettingsSearchResultListingSearchStatisticsFlagsSecurityIdentifierCollectionServerSessionInfoReaderSessionInfoFieldsSessionInfoSessionInfoReaderShortcutShortcutInfoStampStampAnnotationStampInfoStampInfoReaderStrikeoutAnnotationStopwordConfigurationTagAssignedTagAssignedTagCollectionTagInfoTagInfoReaderTagWatermarkCollectionWatermarkPositionTagWatermarkTemplateTemplateRightsTemplateAccessRuleTemplateInfoTemplateInfoReaderTemplateSecurityTextAnnotationTextBoxAnnotationThumbnailSystemPropertyTokenFormatTokenSourceTokenDefinitionGetTokenValueFieldValueITokenSubstitutionContextTokenSubstituterTrusteeTrusteeAttributeCollectionTrusteeTypePrivilegesFeatureRightsAuditClassesTrusteeInfoTrusteeFieldsConstraintViolationExceptionDuplicateObjectExceptionGroupInfoLaserficheObjectReaderLaserficheRepositoryExceptionLaserficheObjectLockedObjectExceptionMalformedDataExceptionNoConnectionExceptionObjectNotFoundExceptionSqlDbmsTypeLicenseRegimeChangeDatabaseOptionServerServerCollectionAccountInfoAccountFieldsUnderlineAnnotationUserAreaEnumAreaOptionUserAreaEntryListingUserAreaInfoUserAreaInfoReaderNamedUserStatusUserInfoVersionGroupEntryVersionGroupVolumeRightsVolumeAccessRuleDocumentConflictStrategyFolderConflictStrategyTemplateMappingTemplateMappingCollectionFieldMappin�gFieldMappingCollectionVolumeAttachSettingsImageFileIdentifierElectronicFileIdentifierAttachmentFileIdentifierVolumeChecksumReportVolumeFormatVersionVolumeExportSettingsVolumeSecurityVolumeStatisticsFlagsWatermarkCollectionWindowsAccountReaderSearchHitHighlightTextRangeTextLinkerWordLocationsReaderWordLocationsWriterWordsReaderRepositoryRegistrationLogInEventArgsLogOutEventArgsDelegatedAccessTokenSessionLogInEventHandlerLogOutEventHandlerSessionVariableVolumeVolumeRolloverUnitVolumeTypeVolumeDeleteOptionsVolumeEncryptionAlgorithmVolumeEncryptionAlgorithmExtensionsToDescriptionVolumeInfoVolumeReaderOptionsVolumeReaderPropertiesVolumeInfoReaderMethodTracerSystemObjectMarshalByRefObjectCollectionsGenericDictionaryICollectionIEnumerableListIDictionaryIEnumeratorIEnumerableICollectionCollectionBaseObjectModelReadOnlyCollectionReadOnlyCollectionBaseIEnumeratorEnumRuntimeSerializationISerializableIDisposableIComparableIEquatableValueTypeSecurityAccessControlAccessRuleCommonObjectSecurityCodeAccessPermissionPermissionsIUnrestrictedPermissionCodeAccessSecurityAttributeICloneableIOStreamExceptionEventArgsAttributeDataCommonDbProviderFactoryDbCommandDbConnectionDbConnectionStringBuilderDbDataReaderDbParameterDbParameterCollectionIServiceProviderIFormattableMulticastDelegateGoogleProtocolBuffersGeneratedMessageGeneratedBuilder������&
����&
����!
�!����������>I	��pO[��<
�)���I
�a�_	���
oS�������q	�	����J#�L'	��� ��
(�(�(�((�((�((�(*(;(&

�'�����H������Z�����������i����X		���B	n����4����Yw#	^}3
��(B
�W
�p
��
��
��
�-�>��7�O�;�����%�u
��
��!��
����
��
�
�A������&�
'�
&s�%�oj�Y'�����&� ��
�����	�	�	��	7	�'�L(\(m(U������U'��p'	vy'v�'v�'v�'v�'v_'vp$��		
��(
����%
����������������"����@�P�������I�Vol	�� �)�o2#�k�
�-��T
�^	�t	�:
}��
��o�
������o�J���b���~	�\�����E��+	��Zo�
������o<	���V&"QZ
�!
�V
��C'	#	�,�:'	���l� 
��������!	�*��
��"��"��������o9
�
	� 
�F��
o��	�(��#sd��"�j
�t
������
������.���;�A�Q
��	�(�(��%s 
?�'� 	���y�('
�%s�%�&�%{&���%s�%K&s�%�&
�'�	���#�������`�2'�
�n&
��'��' ��&�,� ����4�
@wZ#w3�n��'!�� �����&w
!�-���+o^�7oP�?�t���Bo�o�o��I�wa	�j�v����
�����V���~�H����0�}wB�)��wf��w��0�A��!
�����|	�*	V��%�����[�c�o�7!���v�S$��$�a$��$��
�~�b��L!��%~%�K
�b
~�wz
"�
�'��������	�C"�b!�����3������? �%&sw!��

hV�'
��
����������	�5���bo�d���&���l�4�| 
�
�g
��'_
����#&�5&s����������F�

�%��Z�F�n�ioY����
�
�F7�o����=$�� �
��q�d
��
���Z&�����#������
���
������U��&-�
7a&
��!����!�:I�j��"��$�q�`�|��
��$��;�
����������
��!�X������	�����4'+�����%^����oX	���p�`���
��oS�,�_�u������"��"�g��o��JP`�����
�$
��#	�)	�?�2
5�	���3�9
���	w.%
h �����@ �������
oP �W ��o� 
K� �q ��
�!�"s��!���"�%"�1"�R"��&	���ok"�Z"����

	�
howo�$��"�#�b#��$��$�%#��#�v#�;%
�n%�E%�X%�w"��$�y	o�#��#��$
��#�B��#�$�$�2$��-��A��<:TVfhj����	������(53:��b���5�@C�Ph��	;?Au{�Ze[��noDJ��������������g~�������"$8?�BG�Q[deis�3��bh����q+����!�OINF�FHM�`aY���-;=����^[����
tDEU*,/-.45������;26�&q���?>xyz�/
�:6> WYk���`RK���HKTZ_�\���u��2�?$XZl4]�E�9\L����� 'Uwl`]���v0�3��b��H��eq���H?\�
/�r�ic�zX�c$�xml92�>D=BFda��\6s)'IG�i������������ry���������e�
���v*@AL��)jg�o��jptfgmn��OY^�������B+1_�����7���J�C
m*P:�
z�w���p��--5�	%	�7_<Ex@���q������k������&01H>N��@;?e�A�q��~�?�xyz��T5
���,C�q�|�	u�=!		u�4Radf=�
����!#�)�u�.<��C
%�7_k��01�	��<&EW�� (�%�&48Radf=��xy@�#��?BT��x��%c@��,rA�����&k����
�S���0�N$~H�V�C��z|'t�Q.Q�S�T�U�V�W�Xp818q9"=
��}����^n"#~��������M�]{|~}����������
ONMLKJIHGPQRS���{}
�L�1w��R<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj�	3��\{���@�E]آg�Y��Wcreationdatehitcountlastmodifiedlfstatementmergenamepagecountprogramsearchresultrowtype	 04	=DS	


�{x��r<SymbolTreeInfo>_Source_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj�	17��\{���@�E]آg�Y��WLFStatementMergeSearchResultRowNameHitCountCreationDateLastModifiedTypePageCountProgram
����+#7G	PC��4�s��6<SymbolTreeInfo>_SpellChecker_C:\Program Files\Laserfiche\SDK 10.2\bin\10.2\net-4.0\Laserfiche.RepositoryAccess.dll�	3���bU]�n���8�v���#r,(accesscontrolaccessdeniedexceptionaccessruleaccessrulecollectionaccountaccountfieldsaccountinfoaccountinforeaderaccountreferenceaccountreferencecollectionaccountreferencereaderactivityactivitylogreaderactivitymessageactivitymessageprotosactivityrecordactivityrecordsourceactivitytypeactivitytypeconverteradminalternateedocalternateedocreaderaltretentioneventannotationannotationaccesscontroltypeannotationactivityannotationbaseannotationrowannotationtypeapplicationpropertyapplicationpropertyoptionsassignedtagassignedtagcollectionassigntagactivityassigntemplateactivityasymmetricalgorithmcategoryattachmentannotationattachmentfileidentifierattributeauditauditclassesauditeventauditeventtypeauditingauditlogauditlogheaderauditlogoptionsauditlogreaderauditorerrormodeauditreasonauditreasonreaderauditrecordheaderauditrecordreaderbadfieldvaluebitmapannotationblobinfoboxstylebriefcaseexceptionbriefcaseexporterbriefcasefieldinfobriefcasefieldmatchstrategybriefcaseformatbriefcaseimporterbriefcasereaderbriefcaserequestbriefcaserequesttypebriefcasesignaturebriefcasesourceoptionsbriefcasetemplateinfobriefcasetemplatematchstrategybuilderbusinessprocessbusinessprocessauditeventbusinessprocessentitybusinessprocessentityinfobusinessprocessentityinforeaderbusinessprocessinfobusinessprocessinforeadercalendarcyclecalendarcycleinfocalendarcycleinforeadercalendar��cycletypecalloutannotationcatalogcatalogattachoptionscatalogconnectioninfocatalogconnectionstatecatalogcreationoptionscatalogstatuscertificateinfochangedatabaseoptionchangenumbercheckinoptionsclassificationlevelclassificationlevelinfoclassificationlevelinforeadercloudsessionexceptioncloudticketcloudticketrequestsettingscodeaccesspermissioncodeaccesssecurityattributecollectionbasecollectionscolumnattributecolumnspecifiercommoncommonaccessrulecommonobjectsecurityconstraintviolationexceptioncontexthitcontexthitlistingcopyentryactivitycopypageactivitycreateannotationactivitycreatedocumentsignatureactivitycreateentryactivitycreatepageactivitycryptokeycryptokeymanagercustomauditeventcustomauditreasoncustomauditreasonreadercutoffcriterioncutoffcriterioninfocutoffcriterioninforeaderdatadatabaseinfodbcommanddbconnectiondbconnectionstringbuilderdbdatareaderdbparameterdbparametercollectiondbproviderfactorydelegatedaccesstokendeleteannotationactivitydeletedocumentsignatureactivitydeleteentryactivitydeletefieldactivitydeletepageactivitydeleterepositoryoptionsdetachrepositoryoptionsdetailedeffectiveaccessdictionarydigitalsignatureactivitymessagedirectoryentrytypedispositionscheduledispositionscheduleinfodispositionscheduleinforeaderdispositionstatedispositiontypedocumentdocumentchecksumreportdocumentconflictstrategydocumentdifferencereportdocumentinfodocumentmanifestdocumentmanifestcollectiondocumentsignaturedocumentsignatureinfodocumentsignatureinfocollectiondocumentstatisticsdocumentversiondocumentversionrowdrivetypeduplicateobjectexceptioneffectiveaccesstokeninfoelecdoctyperowelectronicfileidentifierencryptedbriefcaseheaderentryentryaccessruleentryaccessscopeentrydepthentryinfoentrylinkentrylinkactivityentrylinkcollectionentrylinkinfoentrylinkrowentrylinktypeentrylinktypeinfoentrylinktypeinforeaderentrylinktyperowentrylistingbaseentrylistingbasesettingsentrylistingrowentrylistingsettingsentrylistingtypeentrylockentrylocklistingentrylocklistingrowentrylocklistingsettingsentrynameoptionentrynamespaceactivitymessageentrypath�entryrightsentryrowentrysecurityentrytagentrytagcollectionentrytagrowentrytypeentrytypefilterenumenumareaoptionenumeratorerrorcodeseventeventargseventinfoeventinforeaderexceptionexternalqueuesecurityexternalqueuesettingsfeaturerightsfieldfieldaccessrulefieldcollectiontypefieldformatfieldinfofieldinforeaderfielditemlistfieldmappingfieldmappingcollectionfieldmergeoptionsfieldmergeresolutionstrategyfieldrightsfieldrowfieldsecurityfieldtypefieldvaluefieldvaluecollectionfieldvaluerowfiletypefillstyleflagsfolderfolderconflictstrategyfolderinfofolderlistingfolderstatisticsformlogicqueryformlogicruleformlogicruleinfoformlogicruleinforeaderformlogicrulerelationshipforwardcursoradvancementrulefreehandannotationfreezefreezecollectionfreezeinfofuzzytypegeneratedbuildergeneratedmessagegenericgettokenvaluegooglegroupinfohighlightannotationhittypeicloneableicollectionicomparableidictionaryidisposableidocumentcontentsienumerableienumeratoriequatableiformattableilflocaleilongoperationimagefileidentifierindexconfigurationindexingstatusindexingstatusreportindexoptioninnerextraexceptionioirawtimestampiserializableiserviceprovideritimestampauthorityitokensubstitutioncontextiunrestrictedpermissionjournaljournalentryjournalentryreaderjournalentryreaderoptionslabelconflictstrategylaserfichelaserficheclientpermissionlaserficheclientpermissionattributelaserficheerrorobjectlaserfichenameduserlaserfichenamedusercollectionlaserfichenameduserdatabaselaserficheobjectlaserficheobjectreaderlaserficheobjectsecuritylaserfichereadstreamlaserficherepositoryaccesslaserficherepositoryexceptionlaserficheresourceldapaccountreferencereaderldapallowrowldapauthenticationtypeldapdenyrowldapschematypeldapserverprofileldapserverprofileinfoldapserverprofileinforeaderldapserverprofilerowlfaccountgroupsrowlfaccountrowlfcertificatestorelfclientfactorylfcolorlfcommandlfconnectionlfconnectionstringbuilderlfdatareaderlfdbparameterlfdbparametercollectionlfdbtypelfdirectoryentrylfdirectorysearcherlfdirectorysearchflagslfdsaccountreferencereaderlfexternaltablelfexter�naltableinfolfexternaltableinforeaderlfpointlfpropertycollectionlfpropertyvaluecollectionlfrectanglelfsearchresultcollectionlfsizelfutillfx509certificatelfx509certificatecollectionlicenseregimelineannotationlineendingstylelinestylelinkentryactivitymessagelinqlistlistingbaselistingcursortypelocaleformatlocationlocationinfolocationinforeaderlockedobjectexceptionlocklifetimescopelocktypelogineventargslogineventhandlerlogouteventargslogouteventhandlerlongoperationlongoperationerrorlongoperationerrorobjecttypelongoperationreadermalformeddataexceptionmarshalbyrefobjectmethodtracermigratedocumentactivitymigrateentryactivitymessagemodifyannotationactivitymodifyfieldactivitymodifypropdefactivitymessagemodifypropvalactivitymessagemodifyrepositoryoptionactivitymonthofyearmoveannotationactivitymoveentryactivitymovepageactivitymulticastdelegatemultipointannotationmultistatusexceptionnameddevicenameddevicecollectionnameddevicedatabasenamedusernamedusercollectionnameduserdatabasenameduserstatusnoconnectionexceptionnoteannotationnotehistoryrecordnotificationnotificationactivitiesnotificationexceptionnotificationmanagernotificationsubscriptionnotificationsubscriptionoptionsnotificationsubscriptionscopenotificationsubscriptionsettingsobjectobjectmodelobjectnotfoundexceptionobjecttypeocrstateofflinelocaleoperationtypepagedeletionoptionspagedifferencereportpageinfopageinforeaderpagepartpagerangepagerestoreoptionpagerotationpagerowpagesetpagetextwordperiodanddescriptionpermissionspersistentlockpersistentlockcolumnpolylineannotationprivilegespropertiespropertytypesprotocolbuffersqueuingsystemrankedsearchhitrankedsearchhitoptionsreadonlycollectionreadonlycollectionbaserecordfolderpropertiesrecordpropertiesrecordsrecordseriesinforecordseriespropertiesrectangleannotationrecyclebinrecyclebincolumnrecyclebinlistingrecyclebinlistingrowrecyclebinobjecttyperecyclebintrusteecollectionrecycledentryrowredactionannotationreleaseentryactivityreleaseentryactivitymessageremovefieldvalueactivityrepositoryrepositoryaccessrepositorycontextrepositoryo�ptionsrepositorypropertiesrepositoryregistrationrepositoryregistrationcollectionrestoreentryactivityretentioninstructionsretentiontriggeractionretentiontyperevertoptionsreviewintervalunitruntimesearchsearchexecutionmodesearchhithighlightsearchhithighlightreadersearchlistingsettingssearchplansearchplaninfosearchplaninforeadersearchresultlistingsearchstatisticssearchstatussearchtracesecurelaserficheobjectsecuritysecurityidentifiercollectionsecuritytokenserviceserializationserverserveradmincollectionserveradmindatabaseservercollectionservermanagementserversessioninforeaderservertimestampauthorityservertimestampauthoritycollectionsessionsessioninfosessioninfofieldssessioninforeadersessionlocalesessionvariablesetdboptionactivitymessagesetentrypropsetactivitymessagesetfieldvalueactivityshortcutshortcutinfosignatureverificationflagssignatureverificationoptionssingleentrylistingsortdirectionsqldbmstypesslexceptionstampstampannotationstampinfostampinforeaderstopwordconfigurationstreamstreamrangestrikeoutannotationsystemsystemcolumnsystempropertytableattributetabletypetagtagentryaccessruletagentryactivitymessagetagentrysecuritytaginfotaginforeadertagrowtagwatermarktagwatermarkcollectiontemplatetemplateaccessruletemplateinfotemplateinforeadertemplatemappingtemplatemappingcollectiontemplaterightstemplaterowtemplatesecuritytenanttenantcollectiontenantdatabasetextannotationtextboxannotationtextdirectiontextlinkertextrangethesaurusthesaurusconfigurationthesaurustypethumbnailthumbnailreaderticketticketfactoryticketrequestsettingstimeofdaytodescriptiontokendefinitiontokenformattokensourcetokensubstitutertransfercollectiontransferdatetransferinfotrustedgroupsrowtrusteetrusteeattributecollectiontrusteeattributerowtrusteefieldstrusteeinfotrusteetypeunassigntagactivityunderlineannotationunmountrepositoryoptionsunsupportedfeatureexceptionuserareauserareaentryinfouserareaentrylistinguserareainfouserareainforeaderuserinfovaluetypeverificationstatusversionfieldvaluerowversiongroupversiongroupentryversionhistoryversioningactivityversion�ingactivitymessageversioningactivitytypeversionlabelrowversionpagerowvolumevolumeaccessrulevolumeattachsettingsvolumechecksumreportvolumedeleteoptionsvolumeencryptionalgorithmvolumeencryptionalgorithmextensionsvolumeexportsettingsvolumeformatversionvolumeinfovolumeinforeadervolumereaderoptionsvolumereaderpropertiesvolumerightsvolumerolloverunitvolumerowvolumesecurityvolumestatisticsvolumetypewatermarkcollectionwatermarkpositionwindowsaccountreaderwordlocationsreaderwordlocationswriterwordsreaderwritealtedocactivitywriteedocactivitywriteentryactivitymessagewritepageactivityx509revocationcheckmodel

"
,@'G
,T/_/p2�5�<�G�O�Z�b�c�jqq0	q5
zB{U{f
�p������
������������$
�:�U�i��	������
�����������������	��+�<
�I�Y�a�i�{�������
�
��4Ign}�#�'�'�)�)
**-,D/U2f2m4�5�9�=�
?�C�D�E�IIJ6KSOhOsT�U�V�X�^�_�_�_�b	ei9
jCmTnepup�p�p�q�	q�t�u�uw"{1}D~]~a�m	�v���������������	�#	�6	�I	�[	�r	��	��	
��	��	��	��	�
�"
�2
�A
�I
�_
�w
��
��
��
��
��
��
�
���+�=	�F�^�v������������
��	��	����
�%�1
�>�O�f�v����������	�������
�$
�A
	�J
�U
�]

�j
�r
��
��
	��
��
��
��

��

��
��
	��
	��
��
	��
��&
�3�8�G�Z�e	�n�}
�����������
�	
 
-5	>CI_
i
v��
�����&
0	9IY`
ms	|��
���� � �!�"�
#�$		$$ $3'E(S)g*r*�+�
+�
+�,�,�-�-�.�//323G
3Q3k#3�3�3�3�3�4�45,5@5Z5w7�7�8�8�8�8�9�9993;E;Q;c;r;y	;�<�<�<�
<�<�<�<�===2=A=T>m>t>�>�>�>�?�?�?�?�
?	?A&	B/BGBKBOBZBkBwBB�B�B�C�C�D�D�D�D
DD*DFDYFoF�H�H�H�H�H�HH"J@JKJaKrK�K�K�M�M�M�M�	M�N
NN*N?NMN^NjO�O�P�P�P�Q� SS"S-SD
SNTV
Tc
TpU�U�U�U�U�	U�U�U�U�V��V�V	VV"V6VH
VR
V\
ViVx
V�W�W�W�W�W�W�W�YY%Z8
ZBZRZcZwZ�Z�Z�Z�Z�Z�Z
ZZ*Z;ZL[`[v [�[�[�[�
[�
[�[[[\!]3]K]`
]j]x]�^�^�^�^�_�_�aa
a!a'b<bOc_cod�d�"d�d�d�d�d�
d d d* dH d] de dq d� d� d� 
d� d� d� d� d� 	d� d	!d!d$!e/!eB!fH!fT!fb!fp!	fy!f|!f�!f�!g�!h�!
h�!h�!h�!h�!h�!h"h"h)"h8"hQ"h_"hj"hz"h�"h�"h�"h�"h�"
h�"
h�"	h�"	h�"h�"
h	#	h#h!#h'#
h4#hI#	hR#
h_#hn#hy#h�#h�#h�#h�#i�#i�#i�#i�#i$
i$i$j%$j8$jK$jc$j~$j�$j�$j�$j�$j�$j�$	j�$j�$j%j%j%j+%j=%jV%jl%j{%j�%j�%j�%j�%j�%j�%j�%#j&j*&j=&
jG&jW&jj&k�&k�&k�&	k�&k�&k�&
k�&k�&k�&k'k'k-'k8'kL'k]'kv'k�'kk
	


	"#<AEK_�v�T=GXa
��)f��
�;�	�
F
����DPd�y�V����
m��A	
~��2��$
3:Z`
�	�-
069?�
�
&'	1
e�

 !;���7	m
z��
��\>BQ
R���	\VW�	p��h*N	�
����
!@hx^
DH���!�	�LTWos{�
�v���%Mqy�q��;K|���(Z��{�J��
=
�(+Su	�
��	8
e,	i�����
�	./�<2
5���
p4XC6]c�
b���k
��>O��
0
CIU ��"
jb�)/��F
j���Y�B
�
�^k��(����%�
[��:0�.O����Yr���
���g����~ntw�Ko�
}�O
����

���l�lr�
�
X��L6H
�
���	P@�	�

��R�n���	�
1e9z|	�
��
bg��$Z�
Li
�
4	�j�
�A�
	#Nuw�	��c��+t�1�	�>�-�	]

?_�}
������:��a2	�,Q�	-
#��	]�	�*H
MJ�"�U4�c�&� 
7�
F�
��=
��
df�	
$��
�
��
	�f		����
h	

��a	�^7D
��/�B�)3
�g�
[UW_
.I�	Y�N�E	x`�
�	�+
	S'G���9
V5��MT�R\i�8Js�%5	,�E�`��QC�
���
�k�������<	�'�[
�*P�G�	
&3?
IS@8d

�	7��<SymbolTreeInfo>_SpellChecker_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj�	3���M�~�_̅w�ğ�:lfstatementmergeprogram��J<SymbolTreeInfo>_Source_C:\Users\bbds\Documents\Visual Studio 2017\Projects\StatementMerge\LFStatementMerge\LFStatementMerge.csproj�	17�F�e<a�:;u{f=l}V�LFStatementMergeProgram����

Commits for ChrisCompleteCodeTrunk/StatementMerge/.vs/StatementMerge/v15/Server/sqlite3/storage.ide

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000