-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathetf_short.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
2311 lines (2311 loc) · 555 KB
/
etf_short.csv
File metadata and controls
2311 lines (2311 loc) · 555 KB
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
,fund_name,fund_category,category_return_2009,fund_return_2008,category_return_2008,fund_return_2007,category_return_2007,fund_return_2006,category_return_2006,fund_return_2005,category_return_2005,fund_return_2004,category_return_2004,fund_return_2003,category_return_2003,fund_return_2002,category_return_2002,fund_return_2001,category_return_2001,fund_return_2000,category_return_2000,fund_alpha_3years,fund_beta_3years,fund_mean_annual_return_3years,fund_r_squared_3years,fund_stdev_3years,fund_sharpe_ratio_3years,fund_treynor_ratio_3years,fund_alpha_5years,fund_beta_5years,fund_mean_annual_return_5years,fund_r_squared_5years,fund_stdev_5years,fund_sharpe_ratio_5years,fund_treynor_ratio_5years,fund_alpha_10years,fund_beta_10years,fund_mean_annual_return_10years,fund_r_squared_10years,fund_stdev_10years,fund_sharpe_ratio_10years,fund_treynor_ratio_10years
0,DWS RREEF Real Assets Fund - Cl,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.18,0.07,1.23,0.54,14.93,0.91,187.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
1,AllianzGI Health Sciences Fund ,Foreign Large Growth,0.2908,0.0,-0.42427,0.0,0.31193,0.0,0.21884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.3,1.11,0.85,75.96,22.42,0.4,6.11,0.38,1.11,1.1,70.49,19.3,0.62,9.66,3.32,0.96,0.79,73.64,16.78,0.53,8.15
2,unlisted,Pacific/Asia ex-Japan Stk,0.73761,0.0,-0.51342,0.0,0.39069,0.0,0.37975,0.0,0.14049,0.0,0.21046,0.0,0.38684,0.0,-0.07992,0.0,0.02745,0.0,-0.16595,1.2,0.9,0.8,74.34,18.48,0.46,7.8,1.89,0.94,0.97,73.28,15.91,0.66,10.37,0.3,0.99,0.55,78.24,16.83,0.36,4.81
3,Thrivent Large Cap Growth Fund ,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
4,unlisted,Miscellaneous Sector,0.31262,0.0,-0.33986,0.0,0.01815,0.0,0.1485,0.0,0.0159,0.0,0.14628,0.0,0.26847,0.0,-0.1862,0.0,-0.0085,0.0,0.05371,24.18,1.31,3.65,52.02,32.6,1.3,34.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
5,American Century Strategic Allo,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
6,unlisted,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-1.22,1.02,1.47,94.98,19.42,0.85,15.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
7,unlisted,Small Value,0.34941,0.0,-0.37823,0.0,-0.08066,0.0,0.19763,0.0,0.05405,0.0,0.21014,0.0,0.42788,0.0,-0.09634,0.0,0.12856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
8,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,1.0,1.28,99.99,17.94,0.78,13.45,0.17,1.0,1.24,99.99,14.51,0.95,13.66,0.15,1.0,0.89,99.96,14.05,0.71,9.45
9,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.63,0.84,83.9,12.45,0.71,13.46,-1.11,0.64,0.74,81.13,10.43,0.74,11.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0
10,Horizon Active Asset Allocation,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-0.12,1.0,0.87,99.97,17.6,0.52,8.03,-0.19,1.0,0.95,99.96,14.6,0.7,9.72,-0.13,1.0,0.53,99.94,15.08,0.38,4.7
11,unlisted,Multisector Bond,0.04504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
12,DWS RREEF Real Assets Fund - Cl,Pacific/Asia ex-Japan Stk,0.73761,-0.51711,-0.51342,0.26129,0.39069,0.0,0.37975,0.0,0.14049,0.0,0.21046,0.0,0.38684,0.0,-0.07992,0.0,0.02745,0.0,-0.16595,2.2,0.93,1.0,88.39,17.34,0.62,10.65,1.98,0.92,1.06,81.91,14.77,0.78,12.15,2.6,0.86,0.69,76.02,14.94,0.51,7.83
13,DWS RREEF Real Assets Fund - Cl,Diversified Emerging Mkts,0.70114,-0.48955,-0.492,0.43461,0.40484,0.37693,0.29363,0.4082,0.33696,0.17917,0.28617,0.52679,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,1.04,1.05,1.0,70.46,21.98,0.5,8.54,0.62,1.1,1.01,68.4,19.35,0.57,8.75,-2.38,1.15,0.51,74.24,19.76,0.28,3.17
14,American Century Strategic Allo,Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
15,DWS RREEF Real Assets Fund - Cl,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
16,American Fds 2010 Target Date R,Multisector Bond,0.04504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
17,American Century Strategic Allo,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.56,1.22,0.34,79.39,24.15,0.12,-0.19,-6.85,1.19,0.56,73.87,20.23,0.28,3.0,-5.76,1.04,0.08,67.52,19.16,0.02,-1.47
18,DWS RREEF Real Assets Fund - Cl,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
19,DWS RREEF Real Assets Fund - Cl,Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
20,DWS RREEF Real Assets Fund - Cl,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
21,Cavanal Hill Active Core Fd Cl ,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,8.95,0.86,1.52,56.08,20.27,0.84,18.88,6.78,0.91,1.45,46.88,19.42,0.84,17.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0
22,Putnam Dynamic Asset Allocation,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.02,0.64,0.24,60.64,2.79,0.5,2.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
23,unlisted,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.57,1.22,0.47,81.32,4.7,0.95,3.62,-0.11,1.2,0.28,85.26,4.21,0.52,1.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0
24,Thrivent Balanced Income Plus F,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,2.3,0.84,1.27,72.15,17.69,0.79,16.02,2.51,0.87,1.29,65.24,15.69,0.92,16.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0
25,unlisted,Tactical Allocation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.72,1.61,1.6,92.43,19.03,0.94,10.98,2.49,1.6,1.52,88.58,15.56,1.09,10.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0
26,unlisted,Trading--Leveraged Commodities,0.58209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.41,2.3,3.03,25.58,69.83,0.5,6.48,9.42,2.06,1.23,20.92,57.35,0.24,-0.46,8.04,2.52,-0.15,33.86,60.64,-0.04,-7.4
27,unlisted,Short Government,0.00536,0.0,0.04708,0.0,0.07302,0.0,0.03829,0.0,0.01481,0.0,0.00798,0.0,0.01783,0.0,0.0,0.0,0.0,0.0,0.0,0.55,0.59,0.35,71.49,2.44,1.24,5.08,0.1,0.6,0.2,78.09,2.24,0.57,2.05,0.01,0.61,0.19,83.36,2.03,0.86,2.8
28,unlisted,Nontraditional Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.11,0.17,2.83,2.26,0.34,6.66,0.84,0.06,0.17,1.1,1.8,0.52,15.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0
29,Cavanal Hill Bond Fd Cl A Shs,Pacific/Asia ex-Japan Stk,0.73761,-0.45942,-0.51342,0.0,0.39069,0.0,0.37975,0.0,0.14049,0.0,0.21046,0.0,0.38684,0.0,-0.07992,0.0,0.02745,0.0,-0.16595,7.06,0.88,1.37,65.35,19.1,0.79,16.5,7.22,0.92,1.5,66.14,16.54,1.02,18.28,4.23,0.97,0.88,71.71,17.32,0.57,9.06
30,American Beacon Balanced Fund I,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,-1.77,1.12,1.6,83.08,22.66,0.79,15.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
31,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
32,unlisted,Industrials,0.29262,0.0,-0.32136,0.0,0.153,0.0,0.13528,0.0,0.05828,0.0,0.20569,0.0,0.32411,0.0,-0.24845,0.0,-0.10337,0.0,0.06938,-2.43,1.38,1.52,85.21,26.96,0.63,10.38,0.11,1.31,1.59,66.28,23.32,0.77,12.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0
33,American Fds 2015 Target Date R,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.31,1.12,1.67,83.49,22.63,0.83,15.82,-0.31,1.11,1.55,82.12,18.42,0.94,15.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0
34,unlisted,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
35,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.18,0.4,0.3,73.09,8.3,0.28,5.23,-3.62,0.39,0.23,70.99,6.66,0.25,3.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0
36,unlisted,Allocation--70% to 85% Equity,0.2638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-12.44,2.05,0.79,79.84,26.16,0.32,2.23,-10.53,1.97,0.72,77.17,20.6,0.36,2.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0
37,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
38,"Cavanal Hill Active Core Fund, ",Energy Limited Partnership,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-19.94,2.08,0.87,60.27,48.2,0.19,-1.38,-22.63,2.0,0.48,57.6,38.45,0.12,-1.53,-10.05,1.46,0.41,46.53,30.08,0.14,-0.27
39,American Century Strategic Allo,Energy Limited Partnership,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-19.87,2.05,0.84,60.61,47.39,0.19,-1.5,-23.04,1.97,0.41,58.21,37.57,0.1,-1.91,-9.68,1.35,0.36,44.36,28.55,0.13,-0.53
40,American Century Strategic Allo,Energy Limited Partnership,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
41,Invesco Greater China Fund Cl A,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
42,American Century Strategic Allo,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
43,unlisted,Energy Limited Partnership,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-34.74,2.9,0.6,65.25,64.69,0.09,-5.82,-34.37,2.76,0.37,62.67,50.82,0.06,-4.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0
44,American Beacon Mid-Cap Value F,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
45,unlisted,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,5.15,0.95,0.85,8.1,11.36,0.79,9.24,6.66,0.79,0.78,7.66,9.08,0.89,10.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0
46,unlisted,Allocation--70% to 85% Equity,0.2638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.32,1.26,1.06,98.97,14.43,0.79,8.74,-0.53,1.27,1.01,98.76,11.67,0.94,8.65,-0.66,1.32,0.82,97.54,11.41,0.81,6.81
47,unlisted,Allocation--30% to 50% Equity,0.08868,0.0,-0.0199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.27,0.54,0.66,93.28,6.28,1.06,12.62,0.34,0.55,0.54,90.28,5.25,1.01,9.82,0.93,0.52,0.45,88.59,4.67,1.02,9.33
48,unlisted,Allocation--30% to 50% Equity,0.08868,0.0,-0.0199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.78,0.68,0.74,97.43,7.77,0.97,11.32,0.2,0.69,0.63,95.96,6.4,1.0,9.48,0.55,0.69,0.53,95.69,5.98,0.95,8.29
49,"Opportunistic Fund, Class C Sha",Allocation--50% to 70% Equity,0.33211,0.0,-0.42351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.27,0.97,0.9,99.18,11.05,0.86,9.69,-0.16,0.98,0.82,98.85,8.99,0.97,8.98,0.17,0.99,0.68,98.28,8.46,0.89,7.6
50,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
51,unlisted,Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
52,American Century Strategic Allo,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
53,unlisted,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,0.06,0.12,9.07,0.74,0.28,3.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
54,American Fds 2020 Target Date R,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.92,1.64,1.13,55.03,39.04,0.32,2.81,-5.32,1.64,1.08,54.1,32.66,0.36,4.0,-3.06,1.43,0.49,53.11,29.64,0.18,0.54
55,unlisted,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
56,unlisted,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,25.99,1.52,4.04,48.14,39.28,1.2,32.21,19.74,1.52,3.47,41.47,34.37,1.18,27.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0
57,unlisted,Mid-Cap Growth,0.39665,0.0,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,15.79,1.56,3.72,59.46,37.57,1.15,28.3,18.72,1.53,3.74,53.37,31.49,1.39,30.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0
58,unlisted,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,16.24,1.34,3.02,66.62,29.48,1.18,26.96,14.54,1.37,2.86,65.14,24.6,1.34,25.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0
59,Invesco Select Risk: Growth Inv,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,22.96,1.44,3.7,61.96,32.86,1.31,31.97,25.68,1.41,3.84,55.97,27.4,1.63,35.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0
60,American Beacon Balanced Fund I,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
61,Invesco Select Risk: Growth Inv,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
62,American Beacon Large Cap Value,Pacific/Asia ex-Japan Stk,0.73761,0.0,-0.51342,0.0,0.39069,0.0,0.37975,0.0,0.14049,0.0,0.21046,0.0,0.38684,0.0,-0.07992,0.0,0.02745,0.0,-0.16595,-8.75,1.09,0.22,81.72,21.25,0.06,-0.8,-7.18,1.08,0.44,78.4,17.8,0.23,2.38,-3.34,0.96,0.24,72.17,17.06,0.13,0.85
63,Aasgard Small & Mid-Cap Fund,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.43,0.87,0.83,86.25,16.84,0.52,8.84,-5.07,0.86,0.65,81.87,13.87,0.48,6.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0
64,unlisted,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,9.26,0.79,1.48,37.3,22.73,0.73,19.33,4.38,0.8,1.16,33.85,20.1,0.63,14.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0
65,Invesco Select Risk: Growth Inv,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,5.6,0.68,1.09,24.47,24.12,0.49,14.25,-2.98,0.64,0.41,20.5,20.71,0.18,2.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0
66,unlisted,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,12.06,0.75,1.69,34.78,22.5,0.84,24.12,5.13,0.72,1.15,28.28,19.79,0.64,15.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0
67,unlisted,Long-Short Equity,0.3145,0.0,-0.29481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
68,unlisted,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
69,Invesco Select Risk: Growth Inv,Energy Limited Partnership,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-17.87,1.87,0.8,63.02,42.35,0.2,-0.47,-18.99,1.79,0.55,59.33,33.89,0.16,-0.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0
70,American Fds 2025 Target Date R,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
71,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
72,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
73,Invesco Select Risk: Growth Inv,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
74,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
75,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
76,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
77,unlisted,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
78,unlisted,Muni National Interm,0.10729,0.0,-0.00983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
79,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
80,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
81,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
82,unlisted,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
83,"The Alger Fds II, Alger Emergin",Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
84,Strategic Enhanced Yield Fund C,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
85,unlisted,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
86,American Beacon International E,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
87,Invesco Select Risk: Growth Inv,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
88,American Fds 2030 Target Date R,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
89,unlisted,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
90,unlisted,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
91,unlisted,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
92,American Fds 2035 Target Date R,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.96,1.73,0.5,66.8,7.42,0.63,2.62,0.86,1.62,0.43,69.33,6.4,0.64,2.44,1.34,1.76,0.58,72.49,6.24,1.01,3.6
93,Alger Portfolios - Alger Growth,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.73,0.97,-0.07,41.93,22.88,-0.09,-4.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
94,American Beacon Large Cap Value,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
95,Aberdeen Short Duration High Yi,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
96,American Fds 2045 Target Date R,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.86,0.09,1.04,0.81,15.04,0.74,121.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
97,Cavanal Hill Moderate Duration ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
98,American Beacon Intl Equity Fun,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
99,Ancora Income Fund Class I,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
100,Thrivent Opportunity Income Plu,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,0.1,1.36,1.7,46.91,35.69,0.54,10.31,6.54,1.36,2.19,35.24,33.43,0.75,15.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0
101,American Beacon International E,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
102,American Beacon International E,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-0.58,1.08,0.89,95.28,19.56,0.48,7.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
103,AMG Managers Herndon Large Cap ,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
104,American Beacon Large Cap Value,Japan Stock,0.04876,0.0,-0.2455,0.0,-0.04813,0.0,0.08603,0.0,0.24454,0.0,0.14153,0.0,0.34181,0.0,-0.10397,0.0,-0.29902,0.0,-0.28569,-0.28,0.75,0.66,73.3,15.39,0.43,7.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
105,American Fds 2050 Target Date R,Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
106,Absolute Capital Asset Allocato,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,-4.87,0.98,0.84,43.58,26.6,0.33,5.74,2.1,1.0,1.41,32.31,25.69,0.61,13.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0
107,Thrivent Municipal Bond Fund C,Real Estate,0.24802,0.0,-0.43154,0.0,-0.11403,0.0,0.33869,0.0,0.15219,0.0,0.30096,0.0,0.40195,0.0,0.0297,0.0,0.10876,0.0,0.0,-2.31,0.9,0.97,68.21,19.69,0.53,9.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
108,Absolute Capital Asset Allocato,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
109,Absolute Capital Asset Allocato,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
110,The Alger Portfolios - Alger We,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
111,American Funds 2055 Target Date,Commodities Broad Basket,0.18403,0.0,-0.41581,0.0,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2,0.88,0.64,93.37,13.82,0.47,6.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
112,American Funds 2060 Target Date,Commodities Broad Basket,0.18403,0.0,-0.41581,0.0,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.23,1.0,0.4,99.99,15.24,0.23,2.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
113,Cavanal Hill Opportunistic Fd C,Commodities Broad Basket,0.18403,0.0,-0.41581,0.0,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.57,1.0,0.63,86.73,16.51,0.38,5.18,3.06,1.03,0.52,87.53,13.89,0.37,4.2,2.39,1.02,-0.11,90.79,15.06,-0.12,-2.91
114,American Funds 2065 Target Date,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
115,Thrivent Mid Cap Stock Fund Cl,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.39,0.52,3.2,1.29,80.64,0.46,15.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
116,Thrivent Small Cap Stock Fund ,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
117,Alger Portfolios - Alger SmallC,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
118,American Beacon Small Cap Value,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
119,American Beacon Small Cap Value,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.27,1.03,1.58,82.39,20.36,0.87,16.56,2.02,0.99,1.39,75.66,16.53,0.94,15.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0
120,Cavanal Hill Limited Duration F,Mid-Cap Growth,0.39665,0.0,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,-8.19,1.2,1.19,90.6,23.29,0.56,9.13,-4.35,1.18,1.34,86.86,18.96,0.78,11.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0
121,Ancora/Thelen Small Mid-Cap Fun,Mid-Cap Growth,0.39665,0.0,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
122,Ancora/Thelen Small-Mid Cap Fun,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
123,Ultra Short Tax-Free Income Fun,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-4.42,1.81,2.41,50.74,47.27,0.58,10.24,-4.92,1.93,2.31,45.08,43.22,0.62,9.96,3.74,2.02,2.75,40.07,43.28,0.75,12.69
124,Thrivent Large Cap Value Fund C,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.63,0.98,1.61,95.5,18.64,0.96,18.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
125,Cavanal Hill World Energy Fund ,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,4.49,1.26,1.45,85.73,23.92,0.68,11.43,2.33,1.26,1.39,82.78,20.22,0.76,11.51,-2.06,1.34,0.53,82.13,22.27,0.26,2.5
126,MID CAP CORE EQUITY FUND - CLAS,Ultrashort Bond,0.0,0.01751,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.1,0.0,0.09,0.1,0.3,-1.0,106.39,-0.18,0.0,0.08,1.04,0.26,-2.05,-64.67,-0.16,0.0,0.04,0.72,0.24,-2.55,-90.31
127,AB Municipal Income Fund II - A,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
128,AB Municipal Income Fund II - A,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-11.43,-1.5,-3.06,39.42,44.47,-0.86,25.99,-8.65,-1.64,-2.85,35.4,41.37,-0.86,22.27,-15.76,-1.81,-3.41,33.57,42.63,-0.98,22.26
129,Alger Mid Cap Focus Fund Class ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
130,"AB Cap Fund, Inc. - AB Emerging",Intermediate-Term Bond,0.08281,0.05072,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.54,1.18,0.54,95.26,4.18,1.29,4.6,0.01,1.21,0.29,95.76,4.02,0.58,1.88,-0.07,1.33,0.35,95.12,4.09,0.89,2.72
131,"American Balanced Fund, Class A",Financial,0.14085,0.0,-0.46041,0.0,-0.10039,0.0,0.18103,0.0,0.09921,0.0,0.16029,0.0,0.3786,0.0,-0.11756,0.0,-0.07505,0.0,0.25498,-5.66,1.55,1.45,74.61,32.35,0.5,7.05,-6.65,1.44,1.17,65.37,25.9,0.5,6.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0
132,AB Trust - AB Discovery Value F,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
133,American Beacon The London Comp,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,-11.5,1.64,1.06,77.98,33.41,0.34,3.76,-6.17,1.59,1.39,72.31,27.24,0.57,7.89,-4.94,1.48,0.86,69.67,24.94,0.39,4.56
134,American Beacon Balanced Fund C,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
135,"AB Cap Fund, Inc. - AB Emerging",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
136,American Beacon The London Comp,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
137,American Beacon The London Comp,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
138,AB Trust - AB Discovery Value F,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
139,American Beacon The London Comp,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
140,American Beacon The London Comp,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
141,Columbia Capital Allocation Con,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
142,American Beacon The London Comp,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.56,0.05,0.26,0.07,6.16,0.28,33.94,2.31,0.01,0.29,0.01,4.84,0.48,157.83,2.44,0.02,0.26,0.02,4.57,0.54,120.0
143,Aberdeen Intermediate Municipal,Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
144,"Aberdeen Emerging Markets Fund,",Short-Term Bond,0.05046,0.0,0.02696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
145,Aberdeen Intermediate Municipal,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
146,American Beacon International E,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,11.18,1.2,2.43,81.06,23.82,1.17,24.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
147,American Beacon Balanced Fund A,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
148,American Century Balanced Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.78,1.26,1.34,95.64,23.05,0.64,10.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
149,"American Fds, American Income ",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.76,0.25,0.41,1.59,6.83,0.54,14.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
150,American Century High-Yield Bon,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,17.52,1.33,3.11,48.98,34.03,1.06,27.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
151,American Century Government Bon,Long-Term Bond,0.06975,0.08705,0.04171,0.0,0.03732,0.0,0.0396,0.0,0.01002,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.24,2.99,0.84,93.29,10.61,0.84,2.94,-0.74,2.81,0.48,91.92,9.43,0.49,1.52,-1.23,2.92,0.62,89.3,9.24,0.74,2.29
152,American Century High-Yield Mun,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
153,AB Trust - AB International Val,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
154,AB Trust - AB International Val,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
155,"AB Cap Fund, Inc. - AB Emerging",Intermediate-Term Bond,0.08281,0.05178,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,1.04,0.45,99.4,3.63,1.16,4.03,-0.09,1.04,0.25,99.42,3.38,0.56,1.79,-0.14,1.04,0.28,99.34,3.14,0.88,2.64
156,AB Corporate Shares - AB Impact,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35,1.04,0.48,93.28,3.72,1.24,4.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
157,American Century Balanced Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.29,0.74,0.33,59.56,3.38,0.83,3.68,0.42,0.69,0.24,57.09,3.0,0.59,2.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0
158,AB Trust - AB International Val,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
159,AMG Managers Fairpointe Mid Cap,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
160,"AB Cap Fund, Inc. - AB Emerging",Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
161,Alger Portfolios - Alger Balanc,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
162,American Beacon Balanced Fund A,Trading--Leveraged Commodities,0.58209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-37.76,1.98,-2.42,10.96,92.06,-0.33,-26.15,-39.4,1.72,-2.9,8.12,76.62,-0.47,-28.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0
163,American Beacon Large Cap Value,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.98,0.47,76.52,3.87,1.15,4.54,0.87,0.97,0.32,81.0,3.48,0.79,2.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0
164,American Beacon Mid-Cap Value F,Mid-Cap Growth,0.39665,0.0,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,0.67,1.24,1.99,82.19,25.34,0.89,17.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
165,AMG Managers Fairpointe Mid Cap,Miscellaneous Sector,0.31262,0.0,-0.33986,0.0,0.01815,0.0,0.1485,0.0,0.0159,0.0,0.14628,0.0,0.26847,0.0,-0.1862,0.0,-0.0085,0.0,0.05371,1.29,1.18,1.6,78.74,23.97,0.74,13.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
166,"AB Bond Fund, Inc. - AB Bond In",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
167,"AB Bond Fund, Inc. - AB Bond In",Latin America Stock,0.9248,0.0,-0.46513,0.0,0.45863,0.0,0.43048,0.0,0.51357,0.0,0.40493,0.0,0.70462,0.0,-0.23262,0.0,-0.03014,0.0,-0.22771,6.03,1.58,1.83,48.92,39.94,0.52,8.0,1.64,1.63,1.65,46.39,35.01,0.53,7.86,-7.97,1.62,0.18,50.93,34.39,0.04,-2.82
168,"The Bond Fund of America, Class",Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-13.76,2.74,3.0,25.19,101.4,0.34,-14.78,-17.14,2.65,2.28,18.06,93.86,0.28,-12.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0
169,"The Bond Fd of America, Class F",Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
170,Aberdeen International Small Ca,Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
171,"AB Bond Fund, Inc. - AB Bond In",Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
172,"AB Bond Fund, Inc. - AB Bond In",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.74,0.27,0.26,32.46,1.68,1.13,6.87,0.23,0.39,0.18,48.84,1.8,0.54,2.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0
173,"AB Bond Fund, Inc. - AB Bond In",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.14,0.46,0.35,33.23,2.8,1.1,6.6,0.53,0.59,0.23,48.96,2.7,0.61,2.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0
174,"AB Bond Fund, Inc. - AB Bond In",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.45,0.63,0.44,35.55,3.65,1.11,6.44,0.79,0.75,0.28,50.27,3.4,0.66,2.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0
175,"AB Bond Fund, Inc. - AB Bond In",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.78,0.83,0.53,34.32,4.89,1.06,6.27,1.09,0.94,0.34,47.96,4.38,0.66,3.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0
176,"AB Bond Fund, Inc. - AB Bond In",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.73,1.03,0.59,40.15,5.56,1.07,5.81,0.92,1.13,0.35,53.21,4.97,0.62,2.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0
177,The AB Portfolios - AB Conserva,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.75,1.19,0.65,47.75,5.93,1.12,5.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
178,The AB Portfolios - AB Conserva,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.28,1.4,0.68,45.86,7.08,0.99,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
179,"AB Large Cap Growth Fund, Inc. ",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
180,The AB Portfolios - AB Conserva,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
181,"AB Bond Fund, Inc. - AB Total R",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
182,"AB Bond Fund, Inc. - AB Total R",Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
183,"AB Bond Fund, Inc. - AB Total R",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
184,"AB Bond Fund, Inc. - AB Total R",High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.28,0.19,2.82,5.74,0.19,3.35,2.43,0.23,0.33,2.41,4.69,0.61,12.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0
185,"AB Bond Fund, Inc. - AB Total R",High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,0.87,0.32,0.28,2.78,6.61,0.33,6.19,2.9,0.27,0.38,2.55,5.38,0.63,12.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0
186,"AB Bond Fund, Inc. - AB Total R",High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,1.67,0.47,0.4,3.62,8.36,0.43,7.06,3.46,0.4,0.45,3.68,6.72,0.63,10.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0
187,"AB Bond Fund, Inc. - AB Total R",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8,0.42,0.48,3.68,7.58,0.58,10.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
188,Invesco Balanced-Risk Allocatio,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,3.53,0.5,0.57,3.45,9.27,0.6,10.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
189,"AB Cap Fund, Inc. - AB Emerging",High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
190,AmericaFirst Monthly Risk-On Ri,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
191,Invesco Balanced-Risk Allocatio,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
192,ABR Dynamic Short Volatility Fu,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
193,Invesco Balanced-Risk Allocatio,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
194,ABR DynamicShort Volatility Fun,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
195,ABR DYNAMIC BLEND EQUITY & VOLA,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
196,AmericaFirst Monthly Risk-On Ri,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
197,ABR DYNAMIC BLEND EQUITY & VOLA,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
198,AmericaFirst Monthly Risk-On Ri,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
199,Invesco Balanced-Risk Allocatio,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
200,Invesco Balanced-Risk Allocatio,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
201,American Beacon Small Cap Value,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
202,AB Trust - AB Discovery Value F,Short-Term Bond,0.05046,0.05483,0.02696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.94,0.35,0.3,79.38,1.43,1.76,6.85,0.24,0.38,0.18,80.96,1.42,0.71,2.55,0.21,0.38,0.16,78.38,1.33,0.98,3.33
203,AB Trust - AB Discovery Value F,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.47,-0.62,-0.34,50.32,15.85,-0.33,10.27,1.87,-0.6,-0.43,40.89,13.81,-0.46,11.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0
204,AB Trust - AB Discovery Value F,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,5.01,1.21,1.93,52.4,30.04,0.73,16.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
205,American Beacon Small Cap Value,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
206,AB Trust - AB Discovery Value F,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
207,American Century Government Bon,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-7.11,0.82,0.72,57.3,20.16,0.37,6.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
208,American Century Government Bon,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
209,"AB Municipal Income Fund, Inc. ",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
210,"AB Municipal Income Fund, Inc. ",Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
211,American Century Government Bon,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
212,American Century Government Bon,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
213,"AB Municipal Income Fund, Inc. ",World Bond,0.12523,0.04406,0.04216,0.0,0.15297,0.0,0.05029,0.0,0.08796,0.0,0.1651,0.0,0.29799,0.0,0.11079,0.0,-0.00597,0.0,0.0,-3.04,1.18,0.25,46.16,5.91,0.29,1.35,-1.97,1.25,0.13,39.46,6.36,0.06,0.16,-2.86,1.16,0.08,27.42,6.64,0.06,0.12
214,"AB Municipal Income Fund, Inc. ",World Bond,0.12523,0.0,0.04216,0.0,0.15297,0.0,0.05029,0.0,0.08796,0.0,0.1651,0.0,0.29799,0.0,0.11079,0.0,-0.00597,0.0,0.0,-2.24,0.5,0.08,11.58,4.95,-0.04,-0.68,-1.58,0.62,0.06,12.96,5.46,-0.08,-0.91,-3.18,0.44,-0.11,4.49,6.23,-0.31,-4.84
215,Columbia Capital Allocation Mod,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-27.72,-1.66,-4.65,25.45,61.09,-0.94,33.3,-19.22,-1.57,-3.64,17.33,56.73,-0.79,30.09,19.41,-2.26,-1.01,24.22,62.34,-0.2,12.45
216,AB Trust - AB Value Fund - Clas,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.91,0.98,1.63,95.5,18.64,0.98,18.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
217,AB Trust - AB Value Fund - Clas,Small Value,0.34941,0.0,-0.37823,0.0,-0.08066,0.0,0.19763,0.0,0.05405,0.0,0.21014,0.0,0.42788,0.0,-0.09634,0.0,0.12856,0.0,0.0,-5.56,1.38,1.68,77.98,29.02,0.65,11.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
218,AB Trust - AB Value Fund - Clas,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.29,0.99,0.52,44.44,22.84,0.22,2.44,-9.09,0.99,-0.5,32.58,22.01,-0.32,-9.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0
219,The AB Portfolios - AB Balanced,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,1.1,1.01,1.69,97.76,18.98,1.0,18.65,1.22,1.02,1.59,96.52,15.57,1.14,17.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0
220,The AB Portfolios - AB Balanced,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,1.26,1.39,1.84,77.36,28.45,0.73,13.25,-0.87,1.37,1.58,73.32,23.26,0.76,11.98,-2.84,1.33,0.91,72.84,21.9,0.47,6.18
221,The AB Portfolios - AB Balanced,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-0.06,1.01,1.59,99.84,18.69,0.95,17.37,0.06,1.01,1.47,99.81,15.14,1.09,16.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0
222,The AB Portfolios - AB Balanced,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
223,The AB Portfolios - AB Balanced,Emerging-Markets Local-Currency Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.99,-0.03,0.42,0.05,4.85,0.78,-123.72,2.3,0.16,0.31,1.02,5.2,0.5,15.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0
224,The AB Portfolios - AB Balanced,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
225,Abbey Capital Futures Strategy ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
226,Abbey Capital Futures Strategy ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.58,0.0,0.64,0.02,6.38,1.02,-1387.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
227,"AB Cap Fund, Inc. - AB Emerging",Commodities Broad Basket,0.18403,0.0,-0.41581,0.0,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
228,Abbey Capital Futures Strategy ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.03,0.72,1.34,68.74,16.11,0.91,20.1,1.87,0.73,1.23,69.39,13.03,1.04,18.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0
229,AB Trust - AB Discovery Value F,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-6.34,1.03,1.09,83.73,20.88,0.57,9.97,-4.75,1.0,1.07,82.71,16.56,0.7,10.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0
230,"AB Cap Fund, Inc. - AB Emerging",Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
231,Alger Capital Appreciation Fund,Tactical Allocation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.5,1.49,1.06,83.56,18.56,0.62,6.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
232,"AB Municipal Income Fund, Inc. ",Emerging-Markets Local-Currency Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.42,0.04,0.08,0.04,7.89,-0.03,-12.2,-0.22,0.27,0.12,1.53,7.0,0.04,0.19,-2.67,0.33,-0.1,1.45,8.27,-0.21,-6.24
233,Alger Capital Appreciation Inst,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-3.36,1.0,0.6,85.48,19.15,0.31,4.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
234,Access Capital Community Invest,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-4.2,1.05,1.31,95.47,19.98,0.72,12.68,-2.5,1.04,1.31,94.69,16.06,0.9,13.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0
235,Access Capital Community Invest,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
236,Alger Capital Appreciation Inst,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19,0.72,1.09,77.46,15.12,0.77,15.54,1.81,0.74,1.19,78.17,12.51,1.04,17.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0
237,"The Alger Fds, Alger Capital Ap",Natural Resources,0.60487,-0.39739,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,5.52,0.85,1.56,87.74,16.26,1.07,20.7,1.69,0.84,1.2,81.1,13.63,0.97,15.54,2.69,0.85,0.98,82.65,13.18,0.84,12.63
238,American Century Diversified Bo,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-12.79,-0.56,-1.79,24.02,21.26,-1.07,40.24,-7.81,-0.6,-1.38,21.61,19.57,-0.9,29.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0
239,American Beacon Balanced Fund Y,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.05,1.24,2.86,26.2,45.16,0.73,20.99,4.19,1.34,2.26,24.22,40.75,0.64,14.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0
240,American Century Strategic Allo,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
241,Invesco Corporate Bond Fund Cla,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,1.57,1.04,1.76,97.14,19.47,1.02,19.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
242,Invesco Corporate Bond Fund Cla,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,-8.5,0.8,0.02,37.51,23.13,-0.04,-4.62,0.06,0.82,0.82,35.23,20.22,0.43,8.36,1.88,1.0,0.69,41.76,23.3,0.33,5.16
243,Invesco Corporate Bond Fund Cla,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,-9.84,0.88,-0.04,55.96,20.77,-0.08,-4.23,-5.06,0.86,0.42,51.53,17.43,0.22,2.86,-6.59,1.05,0.01,62.32,20.01,-0.02,-2.35
244,American Century Strategic Allo,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
245,American Century Core Plus Fd C,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,2.71,0.7,0.87,47.36,17.77,0.51,11.52,2.78,0.7,0.94,39.08,16.33,0.62,13.22,-0.89,1.1,0.51,42.0,25.49,0.22,2.12
246,American Century Mid Cap Value ,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
247,American Century Core Plus Fd I,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
248,American Century International ,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,4.58,1.07,1.31,44.64,28.12,0.51,10.71,7.1,1.1,1.65,39.31,25.61,0.72,15.28,-2.26,1.29,0.49,46.4,28.5,0.18,0.97
249,American Century Core Plus Fd R,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,16.71,1.03,2.29,46.64,26.51,0.99,25.02,15.94,1.0,2.3,43.91,22.09,1.19,27.09,3.63,1.13,0.91,55.35,22.97,0.45,6.99
250,American Century Core Plus Fd A,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
251,Access Capital Community Invest,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
252,American Century Core Plus Fund,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
253,American Century Core Plus Fund,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,-5.84,0.77,0.21,48.15,19.57,0.07,-0.72,-0.9,0.86,0.77,44.68,18.91,0.43,7.7,-0.23,1.18,0.61,49.14,25.39,0.26,2.98
254,Invesco Corporate Bond Fund Cla,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
255,unlisted,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,6.27,1.1,1.91,65.49,24.33,0.89,18.96,7.35,1.03,1.88,59.14,19.43,1.1,21.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0
256,Invesco Corporate Bond Fund Cla,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-6.3,1.13,0.45,92.56,20.67,0.2,1.82,-5.62,1.09,0.58,91.48,16.72,0.35,4.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0
257,"AB Cap Fund, Inc.-AB All China ",Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-1.64,0.96,0.71,96.76,17.14,0.42,6.32,-1.03,0.95,0.84,96.59,14.16,0.63,8.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0
258,American Century Emerging Marke,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-5.12,0.84,0.33,87.38,15.86,0.17,1.78,-3.59,0.84,0.53,87.12,13.1,0.39,5.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0
259,Invesco Exchange Fund Shs,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
260,Invesco Equity and Income Fund,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
261,Invesco Equity and Income Fund ,Long-Short Equity,0.3145,0.0,-0.29481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.14,0.63,1.71,25.9,23.06,0.84,29.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
262,"The Alger Fds II, Alger Emergin",Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
263,Invesco Equity and Income Fund,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-7.56,1.18,1.21,95.03,22.44,0.59,9.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
264,Invesco Equity and Income Fund ,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.12,0.01,0.42,0.73,228.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
265,Invesco Equity and Income Fund ,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.96,0.47,72.8,3.88,1.14,4.64,0.23,0.95,0.27,77.22,3.51,0.59,2.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0
266,American Century International ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.87,0.27,96.81,13.55,0.14,1.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
267,"AB Cap Fund, Inc.-AB All China ",Muni California Long,0.12697,-0.01428,-0.0512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.66,0.97,0.36,97.84,3.93,0.78,3.16,-0.6,0.98,0.22,98.2,3.88,0.39,1.47,-0.22,1.04,0.35,97.7,3.82,0.94,3.45
268,"American Century Inv, Focused D",China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,5.45,0.74,1.13,44.82,19.56,0.63,14.99,5.73,0.79,1.26,42.95,17.63,0.79,16.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0
269,American Century Focused Dynami,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
270,Columbia Acorn International Se,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,-2.76,1.11,1.17,43.47,30.31,0.42,7.98,-5.16,1.14,0.96,31.54,29.6,0.35,5.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0
271,Focused Dynamic Growth Fund Cla,Equity Energy,0.42393,0.0,-0.48179,0.0,0.36452,0.0,0.15555,0.0,0.35584,0.0,0.31,0.0,0.27271,0.0,-0.11922,0.0,-0.15112,0.0,0.24356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
272,Water Island Credit Opportuniti,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,15.69,0.86,2.08,27.84,28.79,0.82,25.45,3.5,0.75,1.04,20.25,24.46,0.46,11.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0
273,Focused Dynamic Growth Fund - R,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.62,0.84,1.45,47.15,21.75,0.74,17.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
274,"American Century Inv, Focused D",Commodities Broad Basket,0.18403,0.0,-0.41581,0.0,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.96,0.49,0.67,61.52,9.41,0.71,13.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
275,American Century Focused Dynami,Commodities Broad Basket,0.18403,0.0,-0.41581,0.0,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.34,1.0,0.39,100.0,15.25,0.22,2.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
276,Disciplined Core Value Fund - C,Commodities Broad Basket,0.18403,0.0,-0.41581,0.0,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.52,1.16,0.17,85.01,19.31,0.04,-0.89,2.72,1.14,0.52,82.26,15.97,0.32,3.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0
277,American Century Global Gold Fd,Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-3.05,1.86,2.03,67.61,40.7,0.57,8.8,0.17,1.81,2.17,51.43,36.74,0.68,11.16,-14.73,1.99,0.46,51.23,39.11,0.12,-1.35
278,Invesco Growth & Income Fund Cl,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.07,0.6,0.88,21.74,19.55,0.47,13.28,-0.05,0.63,0.2,21.75,17.15,0.07,-0.26,-1.57,0.86,-0.38,30.61,21.72,-0.24,-8.42
279,Invesco Growth & Income Fund In,Corporate Bond,0.13673,0.0,-0.01529,0.0,0.0373,0.0,0.0396,0.0,0.01,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,1.52,0.65,57.35,6.9,0.96,4.34,1.06,1.43,0.41,62.13,5.83,0.65,2.59,0.64,1.4,0.43,63.46,5.27,0.86,3.21
280,Invesco Growth and Income Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-9.24,0.6,-0.48,26.05,18.04,-0.39,-13.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
281,Invesco Growth and Income Fund ,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-5.1,1.21,1.46,84.66,24.36,0.67,11.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
282,Invesco Growth and Income Fund ,Tactical Allocation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.35,0.33,0.1,85.71,4.04,-0.01,-0.33,-2.58,0.33,0.13,83.53,3.27,0.12,1.06,-1.18,0.27,0.12,64.41,2.83,0.29,2.94
283,AB Income Fund - ADV,Equity Energy,0.42393,0.0,-0.48179,0.0,0.36452,0.0,0.15555,0.0,0.35584,0.0,0.31,0.0,0.27271,0.0,-0.11922,0.0,-0.15112,0.0,0.24356,-18.34,1.56,0.4,76.05,32.19,0.11,-0.93,-6.38,1.48,1.24,68.74,25.9,0.53,7.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0
284,AB Income Fund Class Z,Trading--Miscellaneous,-0.02637,0.0,-0.04432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.99,-24.67,-0.09,4.97,19.97,-0.12,0.17,4.91,-23.02,-0.1,3.61,18.53,-0.13,0.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0
285,American Century Equity Income ,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
286,Columbia Acorn International Cl,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-8.37,1.22,1.2,80.46,25.15,0.52,8.69,-4.17,1.19,1.36,72.5,20.89,0.73,11.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0
287,American Century International ,Small Value,0.34941,0.0,-0.37823,0.0,-0.08066,0.0,0.19763,0.0,0.05405,0.0,0.21014,0.0,0.42788,0.0,-0.09634,0.0,0.12856,0.0,0.0,-5.96,1.15,1.3,76.31,24.3,0.59,10.57,-3.02,1.11,1.35,67.81,20.16,0.74,12.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0
288,AB Corporate Shares - Corporate,Mid-Cap Blend,0.41986,-0.54968,-0.3965,0.07453,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,-17.1,1.6,1.04,82.69,32.65,0.34,3.67,-11.99,1.55,1.2,81.24,25.77,0.52,6.68,-7.1,1.38,1.1,77.13,21.38,0.59,7.75
289,American Century Inflation Adju,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-4.99,0.86,0.95,64.81,19.68,0.52,10.19,-0.62,0.86,1.22,56.62,17.08,0.78,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0
290,Alger Capital Appreciation Inst,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-3.66,1.06,1.36,98.1,19.76,0.76,13.34,-2.18,1.04,1.33,97.65,15.81,0.94,14.04,-1.11,1.04,1.19,97.74,14.26,0.96,12.98
291,AllianzGI Core Plus Bond Fund I,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-13.31,1.41,1.08,80.59,29.16,0.4,5.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
292,AllianzGI Core Plus Bond Fund C,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
293,American Century Mid Cap Value ,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.66,2.34,3.42,73.94,50.64,0.79,13.4,-7.41,2.47,2.84,70.36,44.28,0.74,10.63,3.25,2.48,3.27,69.54,40.49,0.95,14.19
294,American Century Value - C Cl,Natural Resources,0.60487,-0.48573,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-8.07,1.2,0.83,84.77,23.34,0.37,5.28,-2.89,1.17,1.18,81.5,18.76,0.69,10.27,-2.62,1.18,0.8,81.14,18.37,0.49,6.44
295,"American Century Inv, NT Divers",Allocation--70% to 85% Equity,0.2638,-0.40954,0.0,-0.07157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-12.12,2.17,0.92,86.51,26.54,0.37,2.9,-8.74,2.08,0.95,83.69,20.86,0.49,3.97,-6.63,1.81,0.63,82.1,17.01,0.41,3.08
296,"American Century Inv, NT Equity",Convertibles,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.83,1.48,1.83,82.81,18.43,1.12,14.29,4.53,1.45,1.57,81.12,14.7,1.2,12.57,2.34,1.33,1.08,81.54,12.53,0.98,9.2
297,"American Century Inv, NT Emergi",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.66,1.58,1.7,25.84,57.56,0.33,1.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
298,"American Century Inv, NT Large ",Mid-Cap Growth,0.39665,0.0,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,-1.64,0.9,1.29,90.54,17.44,0.81,15.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
299,"American Century Inv, NT Mid Ca",China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,11.1,0.85,1.68,42.38,22.92,0.83,21.12,14.58,0.89,2.09,41.34,20.3,1.18,27.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0
300,"American Century Inv, NT Intern",Single Currency,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.24,-0.52,0.27,0.04,4.86,0.41,-3.76,2.96,-2.41,0.28,0.54,4.93,0.44,-0.88,1.56,-0.48,0.17,0.02,4.19,0.34,-2.85
301,"American Century Inv, NT Growth",Mid-Cap Blend,0.41986,-0.3615,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,-5.79,1.1,1.25,84.04,22.35,0.62,10.75,-4.26,1.08,1.21,83.44,17.73,0.75,11.58,-2.76,1.05,1.07,85.68,15.46,0.79,11.03
302,American Century NT Heritage Fu,Tactical Allocation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.19,1.57,0.91,78.38,20.14,0.48,5.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
303,Absolute Capital Defender Fund ,World Allocation,0.21041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-10.73,1.62,0.57,86.96,19.72,0.28,2.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
304,"Sanford C. Bernstein Fund, Inc.",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
305,Absolute Capital Defender Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
306,Absolute Capital Defender Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
307,Argent Small Cap Fund - Institu,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.34,1.24,0.87,88.97,23.1,0.4,5.53,-2.12,1.24,1.01,87.46,19.44,0.56,7.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0
308,"AB Bond Fund, Inc. - AB All Mar",unknown,0.0,-0.19401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.72,0.59,0.23,49.42,12.87,0.12,1.23,-4.53,0.6,-0.18,42.15,11.59,-0.28,-6.65,-2.35,0.64,-0.37,51.03,12.45,-0.4,-8.86
309,American Century MidCap Value I,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,1.7,0.82,0.88,95.56,14.8,0.63,10.57,2.38,0.79,0.98,91.44,12.07,0.88,13.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0
310,American Beacon Mid-Cap Value F,unknown,0.0,-0.44402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.36,0.91,0.58,65.77,17.08,0.34,4.99,7.22,0.9,0.85,49.02,16.19,0.56,9.08,3.15,0.86,0.02,46.46,17.68,-0.02,-2.3
311,American Century Strategic Allo,unknown,0.0,-0.39494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-4.15,1.77,0.31,67.0,33.12,0.08,-1.76,4.32,1.73,0.75,63.62,27.5,0.28,2.34,2.65,1.45,-0.23,62.82,25.58,-0.13,-4.54
312,AllianzGI Core Plus Bond Fund C,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,1.16,0.83,0.84,86.26,15.74,0.56,9.69,2.42,0.79,0.98,79.68,12.88,0.83,13.23,4.16,0.74,0.76,77.29,12.77,0.67,10.77
313,Invesco Core Plus Bond Fund Cla,Long-Short Equity,0.3145,0.0,-0.29481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
314,Horizon Active Risk Assist Fund,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,2.9,0.81,0.97,82.8,15.62,0.66,12.04,2.18,0.82,1.0,81.86,13.28,0.81,12.76,-0.24,0.78,0.41,80.08,13.17,0.33,4.53
315,Columbia Acorn Fund Class I,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,1.33,0.85,0.87,83.74,16.4,0.56,9.79,1.84,0.81,0.96,76.78,13.56,0.76,12.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0
316,American Century Small Cap Valu,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,0.91,1.04,0.98,85.92,19.7,0.53,8.78,1.73,0.99,1.11,78.74,16.35,0.74,11.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0
317,Invesco Comstock Fund Class Y,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.17,1.05,0.9,81.76,20.45,0.47,7.51,0.15,1.01,0.99,74.17,17.14,0.62,9.67,2.22,0.82,0.63,59.35,15.96,0.44,7.24
318,Invesco Comstock Fund Class R5,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
319,American Century Short Duration,Japan Stock,0.04876,0.0,-0.2455,0.0,-0.04813,0.0,0.08603,0.0,0.24454,0.0,0.14153,0.0,0.34181,0.0,-0.10397,0.0,-0.29902,0.0,-0.28569,0.92,0.79,0.79,65.46,17.15,0.48,9.02,4.32,0.74,1.1,55.26,14.49,0.83,15.86,6.13,0.75,0.93,45.96,16.7,0.63,12.75
320,American Century Select - Class,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-4.89,1.04,1.22,89.98,20.22,0.66,11.78,-4.68,1.04,1.11,85.7,16.74,0.73,11.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0
321,unlisted,Managed Futures,-0.10455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
322,American Century Short Duration,unknown,0.0,-0.41076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8,1.93,0.78,61.13,37.96,0.21,0.48,7.52,1.88,1.04,58.21,31.32,0.36,3.53,2.61,1.56,-0.27,54.64,29.53,-0.13,-5.17
323,American Century Short Duration,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
324,American Century Short Duration,unknown,0.0,-0.02958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.77,0.28,1.0,6.59,16.77,0.64,35.79,3.76,0.27,0.45,5.35,14.86,0.29,12.29,2.78,0.62,0.07,22.5,18.33,0.01,-2.35
325,Invesco Comstock Fund Class R,unknown,0.0,-0.26326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.92,1.14,1.62,26.83,33.73,0.54,12.25,5.48,1.02,0.73,20.96,28.33,0.27,3.84,4.31,1.25,-0.02,32.64,30.56,-0.03,-4.27
326,Invesco Comstock Fund Class A,unknown,0.0,-0.27782,0.0,0.09042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.95,0.27,0.17,55.78,6.44,0.13,2.33,-2.83,0.23,0.12,30.99,5.98,0.05,0.54,-3.41,0.35,0.06,44.87,7.4,0.01,-0.57
327,American Century Short Duration,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
328,Invesco Comstock Fund Class C,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.18,-1.79,-0.02,73.36,38.9,-0.04,4.85,22.98,-1.7,-0.3,65.09,31.72,-0.15,5.56,16.8,-1.5,-0.33,60.8,26.27,-0.18,5.18
329,Invesco High Yield Municipal Fu,Mid-Cap Value,0.41481,0.0,-0.39308,0.0,-0.06914,0.0,0.16041,0.0,0.0797,0.0,0.19937,0.0,0.38743,0.0,-0.10024,0.0,0.07048,0.0,0.0,-6.31,1.08,1.17,71.44,23.67,0.54,9.68,-6.92,1.04,0.93,68.42,18.83,0.53,8.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0
330,Invesco High Yield Municipal Cl,Foreign Small/Mid Value,0.40172,0.0,-0.45822,0.0,0.12904,0.0,0.13599,0.0,0.24396,0.0,0.31164,0.0,0.5629,0.0,-0.10617,0.0,0.0,0.0,0.0,-2.77,1.0,0.65,88.63,18.81,0.35,4.91,0.02,0.97,0.95,85.76,15.34,0.66,9.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0
331,Invesco High Yld Muni Cl A,Trading--Leveraged Equity,0.6239,-0.61677,-0.68494,0.08714,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-10.38,2.03,2.23,93.21,39.03,0.65,9.59,-5.31,2.06,2.45,91.77,32.2,0.88,12.52,-4.85,2.0,2.02,92.92,28.21,0.84,10.75
332,American Century Capital Value ,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-2.98,0.88,0.54,91.68,16.23,0.32,4.57,-0.96,0.86,0.77,88.58,13.36,0.6,8.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0
333,Invesco High Yield Municipal Fu,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
334,Invesco High Yield Municipal Fu,Multisector Bond,0.04504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
335,"American Century Investment, Ze",Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-1.45,0.94,0.71,94.38,16.96,0.43,6.47,-0.99,0.93,0.83,93.67,14.06,0.62,8.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0
336,Columbia Dividend Opportunity F,Small Value,0.34941,0.0,-0.37823,0.0,-0.08066,0.0,0.19763,0.0,0.05405,0.0,0.21014,0.0,0.42788,0.0,-0.09634,0.0,0.12856,0.0,0.0,-16.8,1.33,0.67,72.92,28.95,0.24,1.85,-8.6,1.33,1.19,68.89,24.01,0.54,8.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0
337,unlisted,Large Blend,0.32264,-0.30215,-0.38047,0.04612,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-2.16,0.87,1.21,92.74,16.77,0.79,14.54,-2.5,0.87,1.07,91.45,13.68,0.86,13.16,0.41,0.76,0.98,77.5,11.71,0.96,14.62
338,American Century Strategic Allo,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
339,American Century International ,Diversified Emerging Mkts,0.70114,-0.36922,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-2.04,1.03,0.73,88.46,19.39,0.39,5.73,-0.91,1.03,0.92,84.46,16.34,0.6,8.71,-3.59,1.03,0.26,79.1,17.51,0.14,0.89
340,AC Alternatives Market Neutral ,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
341,American Century Small Cap Valu,Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,-5.33,1.06,1.22,93.42,20.27,0.66,11.4,-4.46,1.04,1.14,92.72,16.23,0.77,11.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0
342,AC Alternatives Market Neutral ,Large Blend,0.32264,-0.35615,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-4.2,1.13,1.42,97.02,21.31,0.74,12.93,-2.78,1.12,1.39,95.3,17.2,0.9,13.51,-2.74,1.12,1.15,95.18,15.62,0.84,11.36
343,AC Alternatives Market Neutral ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
344,American Century International ,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
345,American Century International ,Small Value,0.34941,-0.38432,-0.37823,-0.0163,-0.08066,0.15485,0.19763,0.0764,0.05405,0.17609,0.21014,0.53066,0.42788,-0.23193,-0.09634,0.12887,0.12856,0.01477,0.0,-9.73,1.25,1.13,84.09,25.21,0.49,7.73,-5.74,1.22,1.28,77.17,20.84,0.68,10.49,-4.79,1.21,1.08,78.14,18.55,0.67,9.31
346,AC Alternatives Market Neutral ,Small Value,0.34941,-0.3776,-0.37823,-0.08548,-0.08066,0.18852,0.19763,0.08172,0.05405,0.21736,0.21014,0.56757,0.42788,-0.18684,-0.09634,0.2032,0.12856,0.12715,0.0,-13.13,1.38,1.05,80.87,28.53,0.4,5.44,-8.74,1.35,1.2,75.1,23.28,0.57,8.23,-6.54,1.3,1.05,77.61,20.1,0.6,8.02
347,AC Alternatives Market Neutral ,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
348,AMG Managers LMCG Small Cap Gro,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
349,Cavanal Hill World Energy Fund ,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-41.52,3.8,2.25,66.49,86.6,0.3,-4.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
350,AMG Managers LMCG Small Cap Gro,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
351,MID CAP CORE EQUITY FUND - CLAS,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.12,0.39,0.92,69.59,8.57,1.13,25.61,2.16,0.41,0.82,62.07,7.76,1.11,21.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0
352,Catalyst Multi-Strategy Fund Cl,Financial,0.14085,0.0,-0.46041,0.0,-0.10039,0.0,0.18103,0.0,0.09921,0.0,0.16029,0.0,0.3786,0.0,-0.11756,0.0,-0.07505,0.0,0.25498,-5.52,1.28,1.13,81.58,25.38,0.49,7.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
353,Catalyst Multi-Strategy Fund Cl,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
354,American Century California Hig,Large Blend,0.32264,-0.3553,-0.38047,0.05252,0.04402,0.1439,0.15549,0.06258,0.04685,0.1141,0.12554,0.30629,0.29092,-0.26009,-0.17842,0.0,-0.05751,0.0,-0.05243,-0.79,1.05,1.58,99.7,19.44,0.91,16.52,-0.42,1.04,1.48,99.58,15.67,1.06,16.02,-0.66,1.04,1.23,99.49,14.13,1.0,13.5
355,American Century California Int,unknown,0.0,0.02866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.2,0.07,0.89,0.55,14.33,0.66,128.81,3.62,0.09,0.41,0.72,12.92,0.29,35.5,2.7,0.47,0.12,15.77,16.44,0.05,-1.24
356,AQR Diversified Arbitrage Fund ,Trading--Leveraged Commodities,0.58209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.99,0.14,1.73,0.59,28.61,0.68,119.24,8.0,0.18,0.79,0.75,25.78,0.32,30.22,6.32,0.93,0.26,15.86,32.62,0.08,-3.03
357,AQR Diversified Arbitrage Fund ,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.99,0.89,82.42,19.22,0.49,8.07,-0.84,0.98,0.88,79.57,16.04,0.58,8.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0
358,Aberdeen Dynamic Dividend Fund ,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-0.92,0.94,1.42,94.8,17.98,0.88,16.25,-0.84,0.95,1.32,94.47,14.67,1.0,15.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0
359,AMG Managers DoubleLine Core Pl,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-7.13,1.23,1.26,81.06,25.34,0.55,9.18,-5.04,1.2,1.27,72.99,21.11,0.67,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0
360,American Century Disciplined Gr,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-1.14,0.92,1.37,95.68,17.48,0.87,15.99,-0.41,0.94,1.34,95.11,14.42,1.03,15.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0
361,American Century Disciplined Gr,Diversified Emerging Mkts,0.70114,-0.47081,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-0.9,1.12,0.89,86.06,21.21,0.45,6.74,-0.38,1.12,1.04,83.3,17.86,0.63,9.17,-1.16,1.04,0.46,79.16,17.72,0.28,3.28
362,American Century Disciplined Gr,Trading--Inverse Commodities,-0.38406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-10.66,-0.07,-0.81,0.58,14.3,-0.76,161.05,-5.17,-0.09,-0.35,0.74,12.87,-0.42,69.33,-4.29,-0.46,-0.15,15.87,16.29,-0.14,7.87
363,American Century Disciplined Gr,Large Value,0.25157,-0.31991,-0.35846,0.0871,0.01809,0.18811,0.20182,0.0154,0.05311,0.0512,0.14458,0.27998,0.30804,-0.151,-0.17206,-0.05522,-0.0626,-0.04841,0.06973,-2.94,0.98,1.31,94.05,18.76,0.77,13.88,-0.83,1.0,1.38,92.55,15.5,0.99,15.43,-0.94,0.97,1.13,93.31,13.68,0.94,13.07
364,American Century Diversified Bo,Multisector Bond,0.04504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.35,1.12,0.59,45.78,5.65,1.04,5.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
365,Columbia Large Cap Value Fund C,Trading--Leveraged Equity,0.6239,-0.72188,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-63.05,3.64,0.22,67.74,82.2,0.02,-8.21,-50.11,3.46,0.62,60.5,66.74,0.1,-4.76,-40.64,3.11,0.35,59.21,55.02,0.07,-3.79
366,Ancora Dividend Value Equity Fu,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-1.28,1.05,0.81,80.31,20.68,0.41,6.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
367,American Century Diversified Bo,Mid-Cap Value,0.41481,0.0,-0.39308,0.0,-0.06914,0.0,0.16041,0.0,0.0797,0.0,0.19937,0.0,0.38743,0.0,-0.10024,0.0,0.07048,0.0,0.0,-18.98,1.26,0.37,69.13,28.01,0.12,-1.01,-15.33,1.17,0.41,64.19,21.88,0.17,0.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0
368,American Century Diversified Bo,Long-Short Equity,0.3145,0.0,-0.29481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.64,0.52,0.4,59.07,12.58,0.28,5.52,-5.72,0.51,0.31,56.56,10.19,0.26,4.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0
369,"AB Core Opportunities Fund, Inc",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.75,0.78,1.28,93.06,15.0,0.94,17.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
370,"AB Core Opportunities Fund, Inc",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
371,American Century Disciplined Gr,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
372,"AB Core Opportunities Fund, Inc",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
373,"AB Core Opportunities Fund, Inc",Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-3.09,0.9,1.18,85.19,18.13,0.71,13.32,-1.87,0.91,1.18,85.21,14.81,0.88,13.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0
374,"AB Core Opportunities Fund, Inc",Commodities Broad Basket,0.18403,-0.36786,-0.41581,0.15498,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.34,1.19,0.45,99.97,18.17,0.23,2.15,-0.42,1.18,0.26,99.96,14.96,0.13,0.74,-0.28,1.12,-0.36,99.71,15.7,-0.31,-5.4
375,"AB Core Opportunities Fund, Inc",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
376,Aperture Discover Equity Fund I,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
377,Azzad Ethical Fund,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
378,AllianzGI Dividend Value Fund C,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
379,The Adirondack Small Cap Fund,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
380,AMG Managers DoubleLine Core Pl,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
381,Adler Value Fund Institutional ,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
382,361 Domestic Long/Short Equity ,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-3.52,0.7,0.35,85.77,13.33,0.22,3.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
383,361 Domestic Long/Short Equity ,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.79,0.57,1.02,75.82,12.2,0.89,18.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
384,361 Domestic Long/Short Equity ,Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,-6.87,0.58,0.38,68.49,12.93,0.26,4.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
385,American Beacon ARK Transformat,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-8.79,0.56,0.2,62.75,13.11,0.09,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
386,American Beacon ARK Transformat,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
387,American Beacon ARK Disruptive ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
388,American Beacon ARK Disruptive ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
389,American Beacon ARK Disruptive ,Trading--Inverse Equity,-0.56517,0.30867,0.38633,-0.01496,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.23,-0.88,-1.38,90.63,17.19,-1.04,20.29,-3.32,-0.89,-1.4,89.52,14.27,-1.26,19.63,-2.25,-0.9,-1.2,90.94,12.82,-1.17,16.52
390,ACM Dynamic Opportunity Fund - ,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-46.72,3.82,1.84,50.85,99.37,0.21,-9.05,-22.27,3.8,3.42,44.56,85.6,0.46,-1.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0
391,Alger Dynamic Opportunities Fun,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.24,-3.43,-0.86,23.07,132.79,-0.09,21.06,24.36,-3.3,-2.37,19.88,111.49,-0.27,20.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0
392,ACM Dynamic Opportunity Fund - ,Miscellaneous Sector,0.31262,0.0,-0.33986,0.0,0.01815,0.0,0.1485,0.0,0.0159,0.0,0.14628,0.0,0.26847,0.0,-0.1862,0.0,-0.0085,0.0,0.05371,6.44,1.44,2.33,85.46,27.98,0.95,17.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
393,"The Alger Fds II, Alger Dynamic",Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-21.04,2.51,2.05,63.87,58.31,0.4,0.41,-26.68,2.42,1.17,53.32,49.87,0.26,-1.19,-10.84,2.43,2.03,43.67,49.99,0.47,4.16
394,"Sanford C. Bernstein Fund, Inc.",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
395,"Sanford C. Bernstein Fund, Inc.",Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-31.08,-1.78,-5.11,62.2,41.92,-1.5,29.8,-11.21,-1.77,-3.25,45.69,39.49,-1.02,22.16,-17.47,-1.87,-3.62,35.84,42.56,-1.04,22.65
396,American Century Disciplined Gr,Global Real Estate,0.43403,-0.56586,-0.52561,0.0,-0.06901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-11.97,0.93,0.2,73.72,19.56,0.06,-0.92,-7.54,0.96,0.56,71.03,16.66,0.34,4.44,-4.52,1.01,0.51,70.85,16.91,0.32,4.05
397,American Century Diversified Bo,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
398,American Century Disciplined Gr,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
399,Aperture Discover Equity Fund C,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
400,Aberdeen Dynamic Dividend Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
401,North Square Advisory Research ,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
402,Vaughan Nelson International Sm,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
403,Vaughan Nelson Emerging Markets,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,4.33,1.16,1.82,82.84,22.85,0.9,17.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
404,Vaughan Nelson International Sm,Tactical Allocation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
405,Vaughan Nelson Emerging Markets,Trading--Inverse Equity,-0.56517,-0.11521,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.55,-3.36,-0.31,73.51,72.91,-0.07,8.46,42.03,-3.2,-0.76,64.79,59.86,-0.17,8.01,30.72,-2.86,-0.78,60.07,50.22,-0.2,7.29
406,North Square Strategic Income F,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
407,American Century Diversified Bo,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-5.0,1.16,1.39,91.46,22.39,0.69,12.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
408,American Century Diversified Bo,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-20.01,3.6,3.74,82.67,73.42,0.59,3.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
409,AllianzGI Global Dynamic Alloca,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-74.58,0.1,-5.96,0.06,81.11,-0.9,-671.97,-41.04,-0.09,-3.45,0.03,80.2,-0.53,591.87,-14.52,-0.21,-1.41,0.08,101.45,-0.17,246.08
410,AMG Managers DoubleLine Core Pl,Mid-Cap Value,0.41481,0.0,-0.39308,0.0,-0.06914,0.0,0.16041,0.0,0.0797,0.0,0.19937,0.0,0.38743,0.0,-0.10024,0.0,0.07048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
411,Emerging Markets Small Cap Fund,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
412,Emerging Markets Small Cap Fund,unknown,0.0,-0.32995,0.0,-0.0537,0.0,0.19413,0.0,0.02981,0.0,0.17904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.04,1.0,1.07,80.69,20.56,0.56,9.93,-4.49,0.97,1.02,78.76,16.35,0.68,10.66,0.23,0.84,1.03,72.96,13.48,0.87,13.55
413,Emerging Markets Small Cap Fund,Pacific/Asia ex-Japan Stk,0.73761,0.0,-0.51342,0.0,0.39069,0.0,0.37975,0.0,0.14049,0.0,0.21046,0.0,0.38684,0.0,-0.07992,0.0,0.02745,0.0,-0.16595,-7.52,1.15,0.37,79.41,22.72,0.14,0.42,-6.93,1.11,0.48,75.92,18.56,0.25,2.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0
414,American Century Emerging Marke,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-2.94,1.06,0.68,85.12,20.23,0.34,4.78,-1.75,1.06,0.87,80.84,17.16,0.54,7.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0
415,Emerging Markets Small Cap Fund,Small Growth,0.37529,0.0,-0.42753,0.0,0.09557,0.0,0.10678,0.0,0.07208,0.0,0.16975,0.0,0.44402,0.0,-0.28259,0.0,-0.0669,0.0,0.0,-1.89,1.21,1.73,71.72,26.47,0.74,14.42,0.63,1.2,1.79,66.8,22.11,0.92,16.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0
416,Emerging Markets Small Cap Fund,Tactical Allocation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-7.22,1.31,0.6,86.69,15.98,0.38,3.74,-5.46,1.31,0.64,84.28,13.1,0.5,4.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0
417,Invesco European Growth Fund Cl,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
418,Invesco European Growth Fund Cl,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.16,1.06,0.94,92.17,19.44,0.51,8.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
419,Water Island Diversified Event-,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
420,Emerging Markets Debt Fund - G ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-4.53,1.2,1.13,88.06,23.06,0.54,8.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
421,Emerging Markets Debt Fund - ,Small Growth,0.37529,0.0,-0.42753,0.0,0.09557,0.0,0.10678,0.0,0.07208,0.0,0.16975,0.0,0.44402,0.0,-0.28259,0.0,-0.0669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
422,American Century Emerging Marke,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-10.31,0.87,0.53,78.75,18.26,0.28,4.08,-6.85,0.87,0.71,78.98,14.71,0.5,7.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0
423,American Century Emerging Marke,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
424,Water Island Diversified Event-,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
425,Emerging Markets Debt Fund - A,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-2.78,0.85,0.53,89.88,15.75,0.32,4.68,-2.12,0.84,0.65,88.89,13.04,0.51,7.18,-3.82,0.96,0.2,87.1,15.61,0.12,0.62
426,Invesco European Growth Fund Cl,Trading--Inverse Equity,-0.56517,0.45118,0.38633,-0.08939,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.9,-1.62,-3.03,83.25,33.0,-1.14,22.14,-9.67,-1.66,-2.97,83.06,27.42,-1.34,20.58,-6.3,-1.7,-2.49,86.51,24.88,-1.23,17.09
427,Emerging Markets Debt Fund - I,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.89,1.13,0.9,80.92,22.07,0.43,6.67,-0.33,1.07,1.01,74.58,18.16,0.6,9.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0
428,Emerging Markets Debt Fund - R,Japan Stock,0.04876,0.0,-0.2455,0.0,-0.04813,0.0,0.08603,0.0,0.24454,0.0,0.14153,0.0,0.34181,0.0,-0.10397,0.0,-0.29902,0.0,-0.28569,-4.03,0.7,0.31,44.0,18.44,0.13,1.09,3.91,0.66,1.0,37.75,15.79,0.69,15.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0
429,Invesco European Growth Fund Cl,Long-Short Equity,0.3145,0.0,-0.29481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
430,AB Global Real Estate Investmen,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
431,Water Island Diversified Event-,Trading--Inverse Commodities,-0.38406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-20.54,-0.14,-1.65,0.58,28.6,-0.74,159.93,-9.56,-0.18,-0.73,0.75,25.75,-0.38,72.02,-7.81,-0.93,-0.28,15.88,32.59,-0.12,9.69
432,American Funds EuroPacific Grow,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
433,American Century Emerging Marke,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
434,Invesco European Growth Fund Cl,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
435,American Century Emerging Marke,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
436,Equity Income Fund Class G,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
437,American Century Equity Income ,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
438,American Century Equity Income ,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
439,Aberdeen Focused U.S. Equity Fu,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
440,Acadian Emerging Markets Portfo,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
441,American Century Emerging Marke,Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,4.52,0.9,1.53,85.91,17.44,0.98,18.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
442,AllianzGI Emerging Markets Oppo,Emerging-Markets Local-Currency Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,0.66,0.33,5.46,9.56,0.28,3.56,-0.05,0.88,0.23,9.9,8.93,0.18,1.41,-2.3,1.05,0.1,9.53,10.16,0.06,0.09
443,AllianzGI Emerging Markets Oppo,Utilities,0.15786,0.0,-0.31992,0.0,0.16362,0.0,0.21766,0.0,0.15302,0.0,0.23564,0.0,0.24961,0.0,-0.24964,0.0,-0.19733,0.0,0.22031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
444,American Century Emerging Marke,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-1.39,0.78,0.6,72.03,16.28,0.36,6.08,-4.02,0.85,0.5,70.54,14.69,0.33,4.59,-2.31,0.93,0.31,74.16,16.24,0.19,1.97
445,"Aberdeen Emerging Markets Fund,",Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
446,Acadian Emerging Markets Portfo,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
447,Acadian Emerging Markets Portfo,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-19.49,2.5,2.16,61.75,59.03,0.42,2.19,-11.7,2.49,2.51,52.38,51.6,0.56,6.22,-35.26,3.01,0.68,54.02,55.74,0.14,-2.83
448,American Funds EuroPacific Grow,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-5.32,0.98,0.42,80.93,19.15,0.2,2.01,-3.93,0.99,0.63,73.25,16.9,0.38,5.21,-6.52,1.02,0.01,72.02,18.24,-0.03,-2.13
449,"EuroPacific Growth Fund, Class ",Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
450,American Funds EuroPacific Grow,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-0.66,1.14,0.93,85.81,21.75,0.46,6.98,-4.98,1.14,0.67,81.48,18.4,0.38,4.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0
451,AllianzGl Emerging Markets Cons,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-2.52,0.93,1.26,90.94,18.01,0.77,14.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
452,American Century Equity Income ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
453,American Century Equity Income ,Long Government,-0.16106,0.5541,0.28814,0.0,0.10177,0.0,0.01744,0.0,0.08444,0.0,0.08879,0.0,0.01748,0.0,0.0,0.0,0.0,0.0,0.0,-9.09,4.68,0.93,71.15,19.0,0.52,1.84,-4.73,4.49,0.41,73.67,16.79,0.23,0.55,-3.54,5.12,0.94,63.66,19.21,0.56,1.83
454,Emerging Markets Debt Fund - R,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-17.17,-1.92,-4.16,55.15,48.16,-1.06,25.03,-19.07,-1.91,-4.1,45.28,42.79,-1.18,24.18,9.61,-2.59,-2.22,47.24,51.34,-0.53,13.04
455,American Century Equity Growth ,Large Blend,0.32264,-0.34005,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-1.03,0.86,1.28,93.52,16.37,0.86,16.05,-1.64,0.87,1.14,92.41,13.49,0.92,14.28,-0.98,0.88,1.02,91.4,12.56,0.92,12.92
456,American Century Emerging Marke,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-3.48,0.83,0.46,85.4,15.8,0.27,3.69,-3.46,0.84,0.54,81.77,13.64,0.39,5.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0
457,American Century Equity Growth ,Pacific/Asia ex-Japan Stk,0.73761,0.0,-0.51342,0.0,0.39069,0.0,0.37975,0.0,0.14049,0.0,0.21046,0.0,0.38684,0.0,-0.07992,0.0,0.02745,0.0,-0.16595,3.4,0.89,1.08,76.91,17.89,0.65,12.04,3.79,0.93,1.23,75.55,15.68,0.86,14.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0
458,American Century Equity Income ,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-4.74,1.09,0.55,81.98,21.24,0.26,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
459,American Century Emerging Marke,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.15,1.04,0.92,65.7,22.52,0.43,7.21,0.37,1.04,1.04,64.45,18.97,0.59,9.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0
460,American Century Equity Growth ,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-1.2,0.73,0.57,87.28,13.79,0.41,6.61,-1.24,0.75,0.65,83.56,11.97,0.55,8.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0
461,Yorktown Capital Income Fund In,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,2.2,0.92,1.0,80.55,18.15,0.59,10.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
462,Applied Finance Core Fund Inves,Small Blend,0.32673,-0.32131,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-12.94,1.47,1.2,81.8,30.17,0.43,6.02,-7.26,1.43,1.43,74.16,24.84,0.64,9.66,-6.08,1.35,1.14,74.72,21.17,0.62,8.46
463,AMG River Road Focused Absolute,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-11.06,1.66,1.62,62.32,38.91,0.47,6.65,-6.19,1.64,1.82,52.76,33.96,0.61,9.66,-21.96,2.0,0.59,54.25,36.98,0.18,-0.24
464,Applied Finance Core Fund Insti,Trading--Inverse Equity,-0.56517,-0.2496,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.26,-1.38,-2.63,59.3,33.47,-0.98,23.56,-10.29,-1.37,-2.63,48.83,29.62,-1.11,23.11,8.45,-1.8,-1.38,49.88,34.78,-0.5,11.63
465,Access Flex Bear High Yield Fun,Foreign Large Growth,0.2908,0.0,-0.42427,0.0,0.31193,0.0,0.21884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.16,0.89,0.78,92.04,16.39,0.5,7.98,-1.78,0.88,0.72,85.05,13.96,0.53,7.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0
466,Access Flex Bear High Yield Fun,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-7.07,1.32,0.53,87.38,24.83,0.21,1.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
467,Focused International Growth Fu,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-1.69,0.64,0.46,86.0,12.21,0.35,5.7,-1.68,0.66,0.53,81.02,10.67,0.49,7.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0
468,Focused International Growth Fu,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-0.07,0.98,0.85,97.03,17.42,0.52,8.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
469,Focused International Growth Fu,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
470,Focused International Growth Fu,Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
471,Focused International Growth Fu,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-17.16,1.74,1.24,80.66,35.96,0.38,4.26,-11.38,1.7,1.46,74.59,29.53,0.55,7.48,-17.69,1.9,0.83,73.78,30.03,0.31,2.53
472,American Century Focused Intern,Trading--Inverse Equity,-0.56517,0.49187,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.55,-1.52,-1.84,81.1,31.41,-0.74,16.53,0.1,-1.49,-1.92,74.08,26.09,-0.93,16.54,6.59,-1.73,-1.46,72.2,27.79,-0.65,11.5
473,Focused International Growth Fu,Trading--Inverse Equity,-0.56517,0.3811,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.06,-0.8,-0.82,82.66,16.4,-0.68,14.83,0.85,-0.78,-0.9,75.66,13.58,-0.88,15.64,4.09,-0.9,-0.67,73.76,14.23,-0.61,10.37
474,American Century Sustainable Eq,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
475,American Century Sustainable Eq,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-16.87,0.94,-0.57,46.08,24.47,-0.33,-11.41,-12.76,0.96,-0.13,27.58,26.88,-0.1,-6.74,-9.08,1.05,-0.19,31.63,28.27,-0.1,-6.51
476,Yorktown Capital Income Fund Cl,Energy Limited Partnership,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-16.4,1.8,0.84,71.32,38.41,0.23,0.53,-16.66,1.73,0.68,67.48,30.72,0.23,1.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0
477,American Century Sustainable Eq,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
478,American Century Sustainable Eq,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
479,American Century Sustainable Eq,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,2.7,1.35,1.91,84.34,26.45,0.82,14.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
480,Applied Finance Explorer fund I,Emerging-Markets Local-Currency Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.54,0.64,0.36,3.51,11.74,0.27,3.92,0.41,0.83,0.26,6.52,10.4,0.19,1.76,-2.94,1.03,0.04,7.83,11.02,-0.01,-0.67
481,Applied Finance Explorer Fund I,Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.71,0.89,0.46,11.42,8.98,0.48,4.53,1.2,0.94,0.34,15.67,7.59,0.39,2.93,-0.24,0.95,0.25,12.11,8.18,0.29,2.2
482,Sustainable Equity Fund Class R,Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
483,Sustainable Equity Fund Class G,Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.59,0.03,0.24,0.01,12.92,0.13,29.47,2.53,0.1,0.32,0.1,10.2,0.27,22.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0
484,American Century Sustainable Eq,Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.21,0.79,0.64,8.92,9.05,0.71,7.88,3.19,0.82,0.49,12.86,7.33,0.65,5.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0
485,Yorktown Multi-Asset Income Fun,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-3.05,0.99,0.62,82.2,19.24,0.32,4.46,-2.52,0.99,0.75,78.61,16.35,0.48,6.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0
486,Yorktown Multi-Asset Income Fun,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-7.62,0.97,0.22,86.01,18.43,0.08,-0.33,-7.08,1.0,0.38,81.5,16.21,0.21,2.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0
487,American Funds Mortgage Fund - ,Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
488,AllianzGI Focused Growth Fund C,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-10.72,1.13,0.09,75.02,23.06,-0.01,-2.57,-12.1,1.12,0.07,72.84,19.23,-0.02,-2.01,-5.95,1.12,0.1,75.69,19.37,0.03,-1.18
489,Yorktown Growth Fund Class A,Emerging-Markets Local-Currency Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.56,0.32,2.59,11.95,0.22,3.51,0.02,0.82,0.23,5.8,10.81,0.14,1.22,-2.99,1.05,0.05,7.22,11.7,-0.01,-0.72
490,Alger Global Focus Fund Class I,Energy Limited Partnership,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.94,0.93,0.69,61.98,21.17,0.33,5.29,-7.86,0.9,0.46,57.94,17.21,0.26,3.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0
491,Alger International Focus Fund ,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
492,Alger Global Focus Fund Class Z,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
493,"Fundamental Investors, Class C ",Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39,0.3,0.23,3.92,5.13,0.31,5.0,0.62,0.33,0.2,6.64,4.13,0.3,3.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0
494,"Fundamental Investors, Class F0",Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.65,0.74,0.49,8.25,8.77,0.53,5.94,2.33,0.75,0.41,11.68,7.0,0.54,4.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0
495,AllianzGI International Value F,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.24,-1.38,-1.5,69.35,30.89,-0.62,15.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
496,AllianzGI International Value F,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,1.28,1.14,1.09,88.73,21.28,0.56,8.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
497,Angel Oak Financials Income Fun,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
498,Anfield Universal Fixed Income ,Energy Limited Partnership,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-15.21,1.76,0.89,70.06,37.8,0.25,1.0,-15.28,1.67,0.72,64.35,30.27,0.25,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0
499,Anfield Universal Fixed Income ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.96,1.07,1.39,70.47,23.67,0.65,12.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
500,Anfield Universal Fixed Income ,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.92,0.91,1.05,64.85,20.04,0.57,10.92,1.44,0.9,1.0,56.69,17.56,0.62,10.95,6.38,0.9,1.02,55.88,18.15,0.64,11.72
501,American Balanced Fund - Class ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
502,Acuitas US Microcap Fund - Inst,India Equity,0.96477,0.0,-0.65619,0.0,0.7204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.37,1.1,1.23,51.58,26.96,0.5,9.48,1.23,1.13,1.18,51.73,22.87,0.57,9.72,0.26,1.17,0.64,50.16,24.87,0.28,3.5
503,American Mutual Fund - Class F-,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,1.02,0.51,15.09,8.84,0.53,4.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
504,Yorktown Short Term Bond Fund C,Large Blend,0.32264,-0.36887,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-1.91,1.04,1.47,97.94,19.42,0.84,15.22,-1.13,1.04,1.41,97.49,15.72,1.0,15.19,-0.97,1.02,1.18,97.92,13.99,0.96,13.12
505,AAM/Bahl & Gaynor Income Growth,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.01,-1.67,-2.12,80.4,34.77,-0.77,17.02,-0.19,-1.64,-2.15,70.42,29.47,-0.92,16.76,5.03,-1.9,-1.78,70.1,30.86,-0.71,12.55
506,AAM/Bahl & Gaynor Income Growth,Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,-6.04,1.22,1.4,92.63,23.45,0.66,11.29,-5.22,1.19,1.28,90.95,18.66,0.76,11.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0
507,Archer Focus Fund,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-2.33,0.98,1.35,97.24,18.34,0.81,14.65,-2.43,0.97,1.21,96.74,14.75,0.9,13.59,-1.4,0.97,1.08,97.19,13.3,0.92,12.57
508,Aperture International Equity F,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
509,Alger Mid Cap Focus Fund Class ,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-21.42,1.65,0.75,81.61,33.84,0.23,1.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
510,Aperture International Equity F,Large Blend,0.32264,-0.33337,-0.38047,0.09445,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-1.24,1.01,1.49,96.4,19.09,0.87,15.95,-0.26,1.0,1.44,95.93,15.36,1.05,16.14,0.15,0.97,1.22,95.29,13.52,1.03,14.36
511,Ariel Focus Fund Instl Cl,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-9.9,0.94,0.67,78.87,19.63,0.34,5.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
512,Alger Mid Cap Focus Fund Class ,Foreign Small/Mid Growth,0.5031,0.0,-0.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
513,AmericaFirst Income Fund Class ,Miscellaneous Sector,0.31262,-0.50283,-0.33986,0.42047,0.01815,0.0,0.1485,0.0,0.0159,0.0,0.14628,0.0,0.26847,0.0,-0.1862,0.0,-0.0085,0.0,0.05371,5.74,1.27,2.06,85.71,24.61,0.95,18.04,4.2,1.25,1.86,82.57,19.94,1.06,17.02,0.12,1.25,1.08,82.9,19.22,0.64,8.94
514,AmericaFirst Income Fund Class ,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-94.23,4.48,-1.14,72.21,97.88,-0.15,-13.04,-70.01,4.29,0.09,62.06,81.75,0.0,-8.91,-58.18,4.12,0.09,61.1,71.69,0.01,-6.77
515,AmericaFirst Income Fund Class ,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.02,-3.93,0.72,73.0,85.63,0.09,6.54,54.81,-3.8,-0.52,61.76,72.85,-0.1,7.7,38.2,-3.61,-1.04,57.0,65.02,-0.2,8.2
516,Alpha Fiduciary Quantitative St,Corporate Bond,0.13673,0.0,-0.01529,0.0,0.0373,0.0,0.0396,0.0,0.01,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.94,0.63,0.15,5.99,8.77,0.07,0.37,0.68,0.36,0.21,2.73,6.93,0.2,3.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0
517,Invesco Floating Rate ESG Fund ,Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.37,0.52,0.25,2.25,11.77,0.15,2.0,1.88,0.37,0.31,1.61,9.32,0.28,5.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0
518,Invesco Floating Rate ESG Fund ,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.8,1.01,1.66,99.37,18.74,0.99,18.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
519,Invesco Floating Rate ESG Fund ,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
520,Invesco Floating Rate ESG Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.99,0.86,96.69,17.86,0.5,7.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
521,Invesco Floating Rate ESG Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.78,0.98,0.98,83.29,18.93,0.55,9.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
522,Invesco Floating Rate ESG Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.82,0.98,1.41,98.34,17.83,0.88,15.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
523,"American Fds, The Tax-Exempt Bo",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-4.87,1.06,0.49,90.87,19.74,0.23,2.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
524,"American Fds, The Tax-Exempt B",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.52,1.21,1.28,88.21,23.84,0.59,9.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
525,Applied Finance Select Fund Inv,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
526,AllianzGI International Value F,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
527,Applied Finance Select fund Ins,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,2.84,0.14,0.39,0.22,10.19,0.33,21.21,4.86,-0.05,0.49,0.04,8.14,0.58,-90.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0
528,AAM/Bahl & Gaynor Income Growth,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-5.76,1.26,1.48,87.25,25.0,0.66,11.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
529,American Century Sustainable Eq,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
530,AllianzGI Global Dynamic Alloca,Mid-Cap Growth,0.39665,0.0,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,0.77,1.08,1.76,93.63,20.64,0.96,18.08,1.07,1.07,1.64,92.32,16.66,1.11,17.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0
531,AllianzGI Global Allocation Fun,World Allocation,0.21041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
532,AllianzGI Global Allocation Fun,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,3.01,0.92,1.07,90.5,17.02,0.68,11.71,1.39,0.94,1.03,86.22,14.75,0.76,11.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0
533,361 Global Long/Short Equity Fu,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.92,0.57,91.14,17.08,0.32,4.49,-3.09,0.91,0.64,83.3,14.95,0.44,6.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0
534,AllianzGI Global Allocation Fun,Financial,0.14085,0.0,-0.46041,0.0,-0.10039,0.0,0.18103,0.0,0.09921,0.0,0.16029,0.0,0.3786,0.0,-0.11756,0.0,-0.07505,0.0,0.25498,-14.48,1.39,0.52,72.77,29.24,0.17,0.61,-8.64,1.37,0.93,67.05,24.36,0.41,5.42,-9.75,1.43,0.41,70.34,23.9,0.18,1.02
535,361 Global Long/Short Equity Fu,Trading--Miscellaneous,-0.02637,0.0,-0.04432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47,-0.66,0.12,0.04,6.03,0.03,-0.04,-1.43,2.15,0.03,0.26,6.42,-0.12,-0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0
536,361 Global Long/Short Equity Fu,Trading--Inverse Equity,-0.56517,0.19095,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.02,-0.74,-1.16,61.56,17.64,-0.86,21.07,-3.59,-0.74,-1.2,51.16,15.52,-1.01,21.38,5.28,-0.94,-0.62,51.95,17.73,-0.46,9.87
537,American Century Global Bond Fd,Trading--Miscellaneous,-0.02637,0.0,-0.04432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.79,-2.01,0.18,0.09,11.89,0.08,-0.13,-1.87,3.54,0.03,0.18,12.73,-0.06,-0.44,4.13,-0.04,0.39,0.0,15.72,0.26,-70.42
538,American Century Global Bond Fu,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-27.68,2.93,2.12,76.92,62.11,0.39,1.16,-19.2,2.86,2.38,69.07,51.62,0.53,4.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0
539,Global Bond Fund - G Class,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-1.92,1.2,0.88,93.18,21.97,0.42,6.01,-0.88,1.18,1.05,81.9,19.08,0.6,8.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0
540,American Century Global Bond Fu,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
541,American Century Global Bond Fu,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-1.61,1.13,0.84,88.1,21.22,0.42,6.11,0.34,1.09,1.07,82.61,17.5,0.67,9.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0
542,American Century Global Bond Fd,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.16,1.32,0.87,96.95,15.21,0.59,6.29,-2.25,1.31,0.85,95.59,12.2,0.74,6.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0
543,American Century Global Bond Fd,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.98,0.42,98.74,3.96,0.97,3.92,-0.25,1.11,0.3,96.72,4.45,0.54,2.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0
544,American Century Global Bond Fd,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29,0.99,1.45,97.64,18.46,0.87,15.69,-0.64,0.98,1.28,97.22,14.8,0.96,14.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0
545,American Century Global Bond Fu,Industrials,0.29262,-0.31263,-0.32136,0.17629,0.153,0.0,0.13528,0.0,0.05828,0.0,0.20569,0.0,0.32411,0.0,-0.24845,0.0,-0.10337,0.0,0.06938,0.41,1.16,1.49,86.36,22.45,0.74,13.15,0.96,1.09,1.42,76.78,18.15,0.87,13.98,1.78,0.98,1.01,72.57,16.22,0.71,10.85
546,Water Island Credit Opportuniti,Communications,0.29109,0.0,-0.39551,0.0,0.0958,0.0,0.29386,0.0,-0.02256,0.0,0.18404,0.0,0.19146,0.0,-0.33141,0.0,-0.18659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
547,Global Small Cap Fund - C Class,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
548,Aberdeen Global Absolute Return,Japan Stock,0.04876,0.0,-0.2455,0.0,-0.04813,0.0,0.08603,0.0,0.24454,0.0,0.14153,0.0,0.34181,0.0,-0.10397,0.0,-0.29902,0.0,-0.28569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
549,American Century Global Small C,Japan Stock,0.04876,0.0,-0.2455,0.0,-0.04813,0.0,0.08603,0.0,0.24454,0.0,0.14153,0.0,0.34181,0.0,-0.10397,0.0,-0.29902,0.0,-0.28569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
550,Global Small Cap Fund - R6 Clas,Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,-9.03,1.34,1.32,88.01,26.36,0.55,8.87,-6.73,1.3,1.3,84.29,21.24,0.68,10.06,-5.09,1.23,1.09,85.52,18.1,0.69,9.25
551,Global Small Cap Fund - Investo,Real Estate,0.24802,0.0,-0.43154,0.0,-0.11403,0.0,0.33869,0.0,0.15219,0.0,0.30096,0.0,0.40195,0.0,0.0297,0.0,0.10876,0.0,0.0,0.66,0.95,1.27,69.3,20.49,0.68,13.37,-3.45,0.91,0.84,58.59,17.28,0.52,8.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0
552,Global Small Cap Fund - R Class,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-9.12,1.42,1.44,79.56,29.51,0.54,8.77,-5.29,1.38,1.53,72.05,24.33,0.7,11.15,-6.92,1.34,1.06,73.4,21.21,0.57,7.74
553,"AB High Income Fund, Inc. - Cla",Trading--Inverse Equity,-0.56517,0.02854,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.9,-1.25,-1.5,62.36,29.52,-0.65,17.06,-3.21,-1.22,-1.84,56.73,24.47,-0.95,19.19,-1.45,-1.28,-1.59,43.93,26.37,-0.75,16.34
554,"AB High Income Fund, Inc. - Cla",Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,1.89,1.12,1.13,83.45,21.53,0.57,9.43,0.62,1.09,1.1,80.1,17.82,0.67,10.14,-1.03,1.09,0.5,80.86,18.3,0.29,3.42
555,"AB High Income Fund, Inc. - Cla",Latin America Stock,0.9248,0.0,-0.46513,0.0,0.45863,0.0,0.43048,0.0,0.51357,0.0,0.40493,0.0,0.70462,0.0,-0.23262,0.0,-0.03014,0.0,-0.22771,11.59,1.65,2.35,47.16,42.39,0.64,11.05,5.45,1.7,2.03,43.91,37.6,0.62,9.84,-4.51,1.65,0.48,48.09,35.89,0.14,-1.0
556,"AB High Income Fund, Inc. - Cla",Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,1.18,1.12,1.07,85.76,21.4,0.54,8.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
557,"AB High Income Fund, Inc. - Cla",Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-14.16,1.37,0.94,67.56,30.9,0.33,4.08,-7.04,1.35,1.34,61.52,25.77,0.58,9.23,-9.22,1.39,0.93,46.51,27.66,0.38,5.01
558,"AB High Income Fund, Inc. - Adv",Mid-Cap Blend,0.41986,-0.35386,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,-11.08,1.37,1.2,85.57,27.47,0.48,7.16,-7.95,1.33,1.25,82.77,21.97,0.63,9.03,-5.5,1.27,1.1,83.56,18.86,0.66,8.92
559,"AB High Income Fund, Inc. - Cla",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19,0.28,0.16,38.1,6.78,0.09,1.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
560,Water Island Diversified Event-,Mid-Cap Value,0.41481,-0.35397,-0.39308,0.0,-0.06914,0.0,0.16041,0.0,0.0797,0.0,0.19937,0.0,0.38743,0.0,-0.10024,0.0,0.07048,0.0,0.0,-12.28,1.41,1.16,84.81,28.37,0.44,6.4,-8.86,1.37,1.22,81.44,22.72,0.59,8.4,-7.04,1.29,1.0,82.06,19.37,0.58,7.66
561,American Beacon Frontier Market,Mid-Cap Growth,0.39665,-0.3898,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,-0.94,1.11,1.66,85.79,22.21,0.84,15.99,-0.09,1.1,1.59,84.2,17.99,0.99,16.1,-1.24,1.08,1.23,84.88,15.9,0.88,12.69
562,American Beacon Frontier Market,Emerging-Markets Local-Currency Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.37,0.5,-0.01,3.47,9.12,-0.15,-3.57,-1.46,0.58,0.07,4.99,8.36,-0.04,-1.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0
563,American Beacon Frontier Market,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,4.85,1.11,0.88,8.12,13.22,0.7,8.03,6.85,0.89,0.81,7.32,10.47,0.81,9.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0
564,American Beacon Frontier Market,Miscellaneous Sector,0.31262,0.0,-0.33986,0.0,0.01815,0.0,0.1485,0.0,0.0159,0.0,0.14628,0.0,0.26847,0.0,-0.1862,0.0,-0.0085,0.0,0.05371,7.34,0.96,1.84,61.51,22.01,0.94,21.21,1.34,0.96,1.29,56.21,18.59,0.77,14.21,0.13,1.09,0.96,60.18,19.75,0.55,8.59
565,AllianzGI Global Dynamic Alloca,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
566,Alger Funds II - Alger Responsi,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-11.79,3.37,4.1,79.27,70.38,0.68,5.97,-6.29,3.36,4.14,77.02,57.51,0.84,9.98,-10.68,3.47,3.28,80.97,52.51,0.74,7.48
567,Focused Global Growth Fund Clas,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
568,The AB Portfolios - AB Growth F,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
569,The AB Portfolios - AB Growth F,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-29.7,-2.55,-6.14,74.62,55.04,-1.36,24.18,-25.84,-2.57,-5.55,72.48,45.44,-1.5,21.92,-17.65,-2.84,-4.79,77.53,43.93,-1.32,17.85
570,The AB Portfolios - AB Growth F,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
571,Invesco Global Growth Fund Clas,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
572,Invesco Global Growth Fund Clas,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,3.11,2.13,3.51,93.6,40.88,1.0,17.99,4.28,2.12,3.34,92.65,33.12,1.18,18.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0
573,Focused Global Growth Fund Clas,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.09,0.98,0.52,74.62,3.91,1.31,5.27,1.27,0.97,0.35,79.33,3.49,0.89,3.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0
574,Invesco Global Growth Fund Cl R,Latin America Stock,0.9248,0.0,-0.46513,0.0,0.45863,0.0,0.43048,0.0,0.51357,0.0,0.40493,0.0,0.70462,0.0,-0.23262,0.0,-0.03014,0.0,-0.22771,8.32,1.44,1.92,43.08,38.9,0.56,9.94,1.5,1.46,1.49,39.06,34.19,0.49,7.57,-4.79,1.51,0.39,47.47,33.13,0.12,-1.12
575,Focused Global Growth Fund Clas,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,-0.71,0.89,0.73,57.28,20.65,0.36,6.36,4.55,0.96,1.31,51.84,19.42,0.75,14.22,-0.36,1.19,0.6,55.9,24.11,0.28,3.16
576,American Century Global Gold Fu,Muni California Long,0.12697,0.0,-0.0512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.86,1.41,0.48,90.8,5.9,0.77,3.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
577,Focused Global Growth Fund Clas,World Allocation,0.21041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.72,1.72,1.08,94.47,20.17,0.58,5.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
578,American Century Global Gold Fu,Equity Energy,0.42393,-0.46521,-0.48179,0.0,0.36452,0.0,0.15555,0.0,0.35584,0.0,0.31,0.0,0.27271,0.0,-0.11922,0.0,-0.15112,0.0,0.24356,-30.27,2.96,1.05,56.9,70.73,0.16,-3.3,-30.43,2.75,0.68,50.75,56.13,0.12,-2.43,-29.26,2.24,-0.55,44.11,47.26,-0.15,-7.3
579,Invesco Global Growth Fund Clas,Communications,0.29109,0.0,-0.39551,0.0,0.0958,0.0,0.29386,0.0,-0.02256,0.0,0.18404,0.0,0.19146,0.0,-0.33141,0.0,-0.18659,0.0,0.0,9.63,1.0,2.07,82.71,19.74,1.2,24.36,0.77,0.98,1.27,68.34,17.25,0.82,13.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0
580,The AB Portfolios - AB Tax-Mana,Corporate Bond,0.13673,0.0,-0.01529,0.0,0.0373,0.0,0.0396,0.0,0.01,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5,1.59,0.68,50.04,7.68,0.91,4.36,1.34,1.46,0.44,54.27,6.35,0.65,2.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0
581,The AB Portfolios - AB Tax-Mana,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
582,Alger Funds II - Alger Responsi,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
583,Alger Mid Cap Growth Institutio,Convertibles,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.52,1.43,1.85,80.48,18.13,1.15,14.99,4.07,1.39,1.49,78.27,14.42,1.16,12.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0
584,Invesco U.S. Government Fund In,Europe Stock,0.45163,-0.61263,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-2.9,1.27,0.85,82.3,24.7,0.36,4.85,-3.56,1.22,0.86,79.25,19.99,0.46,6.18,-0.68,1.02,0.49,77.66,17.48,0.3,3.77
585,The AB Portfolios - AB Tax-Mana,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
586,Alger Growth & Income Fd Cl Z,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
587,Focused Global Growth Fund Clas,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
588,Ariel Global Equity Fd Inv Cl,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
589,Ariel Global Equity Fd Instl Cl,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,5.51,0.73,0.81,8.42,8.56,0.99,11.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
590,American Century Ginnie Mae Fun,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,6.16,1.29,2.12,87.89,24.64,0.98,18.49,4.42,1.26,1.9,84.72,19.94,1.08,17.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0
591,American Century Ginnie Mae Fun,Allocation--30% to 50% Equity,0.08868,0.0,-0.0199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-4.76,0.95,0.51,81.24,12.04,0.4,4.46,-4.77,0.93,0.41,80.17,9.55,0.39,3.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0
592,American Century Ginnie Mae Fun,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.46,0.86,1.42,94.84,16.46,0.96,18.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
593,PGIM Jennison Global Equity Inc,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,-2.1,0.95,1.33,91.23,18.44,0.8,14.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
594,Invesco U.S. Government Fund Cl,Foreign Large Growth,0.2908,0.0,-0.42427,0.0,0.31193,0.0,0.21884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
595,Focused Global Growth Fund Clas,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-2.76,0.99,1.34,95.2,18.85,0.78,14.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
596,Invesco U.S. Government Fund Cl,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-5.82,1.16,0.52,95.3,20.87,0.24,2.44,-2.8,1.14,0.85,93.58,17.15,0.53,7.0,-1.02,1.04,0.48,91.51,16.48,0.31,3.63
597,Alger Small Cap Focus Fund Clas,Foreign Small/Mid Value,0.40172,0.0,-0.45822,0.0,0.12904,0.0,0.13599,0.0,0.24396,0.0,0.31164,0.0,0.5629,0.0,-0.10617,0.0,0.0,0.0,0.0,-3.68,1.26,0.77,91.22,23.2,0.34,4.4,-2.32,1.24,0.98,89.98,19.04,0.56,7.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0
598,AGF Global Sustainable Growth E,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-5.52,1.07,1.22,89.63,20.91,0.64,11.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
599,AGF Global Sustainable Growth E,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
600,AGF Emerging Markets Equity Fun,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
601,AGF Emerging Markets Equity Fun,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
602,The AB Portfolios - AB Growth F,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-4.02,1.2,0.7,88.1,22.64,0.32,3.93,-1.3,1.21,1.04,82.6,19.41,0.58,8.23,-2.94,1.22,0.4,80.46,20.49,0.2,1.72
603,American Century Growth Fd R6 C,Emerging-Markets Local-Currency Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.75,0.78,0.3,4.72,12.28,0.2,2.18,-0.74,0.99,0.19,8.19,11.04,0.1,0.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0
604,Invesco Global Real Estate Clas,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.11,1.39,1.19,87.73,26.18,0.5,7.25,0.09,1.38,1.3,80.32,22.43,0.64,9.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0
605,The AB Portfolios - AB Growth F,Equity Energy,0.42393,0.0,-0.48179,0.0,0.36452,0.0,0.15555,0.0,0.35584,0.0,0.31,0.0,0.27271,0.0,-0.11922,0.0,-0.15112,0.0,0.24356,-27.7,2.02,0.15,73.5,42.31,0.02,-4.03,-22.25,1.89,0.38,63.98,34.33,0.1,-1.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0
606,The AB Portfolios - AB Growth F,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-4.6,1.3,0.73,93.79,23.7,0.32,3.71,-1.42,1.28,1.09,92.26,19.44,0.61,8.3,0.18,1.19,0.65,88.43,19.11,0.37,4.57
607,Alger Small Cap Growth Fund Cla,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-7.25,2.11,1.13,90.46,39.13,0.32,2.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
608,AllianzGI Global Dynamic Alloca,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-5.22,1.27,0.65,93.56,23.09,0.28,3.17,-1.73,1.28,1.07,91.97,19.44,0.6,8.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0
609,The Growth Fund of America Clas,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
610,AB Sustainable Global Thematic ,Large Blend,0.32264,-0.38317,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-5.44,1.15,1.34,95.42,21.73,0.68,11.68,-3.86,1.13,1.31,94.95,17.4,0.84,12.43,-3.07,1.1,1.1,94.69,15.39,0.82,10.98
611,American Beacon Frontier Market,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
612,Invesco U.S. Government Fund Cl,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.58,0.78,0.96,69.25,17.43,0.58,11.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
613,American Funds Global Insight F,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.93,0.91,0.49,55.01,4.18,1.1,5.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
614,American Funds Global Insight F,Global Real Estate,0.43403,-0.47441,-0.52561,0.0,-0.06901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.79,0.92,0.7,72.34,19.55,0.37,5.82,-7.09,0.91,0.53,66.77,16.16,0.32,4.42,-1.75,0.88,0.63,63.27,15.56,0.44,6.66
615,American Funds Global Insight F,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-5.17,1.03,1.18,94.68,19.53,0.66,11.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
616,American Funds Global Insight F,Tactical Allocation,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.74,1.15,0.76,74.82,15.16,0.52,6.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
617,American Funds Global Insight F,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.32,1.02,0.24,26.15,6.89,0.23,1.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
618,Invesco U.S. Government Fund Cl,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.72,1.06,0.89,68.18,23.74,0.39,6.42,-0.93,1.06,1.42,62.88,19.99,0.79,14.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0
619,Invesco U.S. Government Fund Cl,Foreign Large Value,0.42878,-0.50603,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-2.63,1.25,0.86,87.45,23.64,0.38,5.11,-3.62,1.2,0.84,85.6,18.91,0.47,6.15,0.46,0.99,0.57,83.39,16.41,0.38,5.06
620,Invesco U.S. Government Fund Cl,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.72,1.29,0.96,88.51,24.17,0.42,6.01,-0.98,1.3,1.15,87.56,20.36,0.62,8.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0
621,American Century Growth R Share,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
622,American Century Growth Fund - ,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,5.74,0.76,1.47,68.02,16.53,0.99,21.54,3.4,0.8,1.28,62.98,14.56,0.97,17.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0
623,American Century Global Gold Fu,Foreign Large Growth,0.2908,0.0,-0.42427,0.0,0.31193,0.0,0.21884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
624,Focused Global Growth Fund Clas,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-3.69,1.06,0.62,88.77,19.85,0.31,4.05,-4.79,1.02,0.59,87.03,16.04,0.37,4.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0
625,American Century Growth Fund - ,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-7.62,1.12,0.34,87.62,21.2,0.13,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
626,American Beacon AHL TargetRisk ,Industrials,0.29262,0.0,-0.32136,0.0,0.153,0.0,0.13528,0.0,0.05828,0.0,0.20569,0.0,0.32411,0.0,-0.24845,0.0,-0.10337,0.0,0.06938,-1.57,1.26,1.44,89.76,23.89,0.67,11.32,-1.63,1.22,1.35,83.28,19.5,0.77,11.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0
627,American Century High Yield - ,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
628,American Century Heritage - C C,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,4.43,1.33,2.02,73.54,27.84,0.83,16.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
629,NT High Income Fund - G Class,Multisector Bond,0.04504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
630,NT High Income Fund - Investor ,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,2.16,1.12,1.59,81.65,22.28,0.8,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
631,Invesco High Yield Fund Class Y,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-4.16,1.12,0.62,93.69,20.37,0.31,3.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
632,High Income Fund - A Class,Communications,0.29109,0.0,-0.39551,0.0,0.0958,0.0,0.29386,0.0,-0.02256,0.0,0.18404,0.0,0.19146,0.0,-0.33141,0.0,-0.18659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
633,"American Fds, American High-In",Natural Resources,0.60487,-0.29377,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,5.91,0.99,1.75,86.95,19.0,1.04,20.02,5.33,0.95,1.62,74.62,15.95,1.14,19.57,4.78,0.98,1.25,71.86,16.19,0.89,14.33
634,High Income Fund - R6 Class,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.79,1.02,0.51,97.05,3.59,1.4,4.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
635,High Income Fund - R5 Class,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
636,"American High-Income Tr, Class ",Japan Stock,0.04876,0.0,-0.2455,0.0,-0.04813,0.0,0.08603,0.0,0.24454,0.0,0.14153,0.0,0.34181,0.0,-0.10397,0.0,-0.29902,0.0,-0.28569,-7.92,0.77,0.04,69.21,16.22,-0.05,-2.7,-4.24,0.77,0.41,65.34,13.89,0.27,3.81,-0.38,0.67,0.35,53.75,13.85,0.26,3.94
637,High Income Fund - I Class,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
638,American Funds High-Income Trus,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
639,High Income Fund - Investor Cla,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.44,1.5,0.81,88.7,28.09,0.3,3.01,-4.59,1.42,0.95,84.07,22.61,0.45,5.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0
640,Invesco High Yield Fund Class R,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,1.25,1.12,84.64,23.98,0.51,7.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
641,American Beacon AHL Managed Fut,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.07,0.9,0.94,76.96,18.15,0.55,9.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
642,American Beacon AHL Managed Fut,Bank Loan,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.31,0.05,0.31,0.08,5.38,0.46,51.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
643,American Beacon AHL Managed Fut,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.61,1.54,1.19,47.97,39.54,0.33,3.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
644,American Beacon AHL Managed Fut,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.49,1.12,1.14,86.09,21.43,0.57,9.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
645,American Beacon AHL Managed Fut,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
646,"American Fds, American High-Inc",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.92,0.76,0.83,44.53,20.08,0.43,9.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
647,Alger Health Sciences Fund Clas,Corporate Bond,0.13673,0.0,-0.01529,0.0,0.0373,0.0,0.0396,0.0,0.01,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.12,1.6,0.63,52.12,7.6,0.84,3.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
648,Alger Health Sciences Fund Clas,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.13,0.32,0.2,20.24,2.43,0.48,3.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
649,American Beacon AHL TargetRisk ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,1.07,0.9,95.36,19.39,0.49,7.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
650,American Funds High-Income Trus,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.47,0.84,0.94,84.14,16.28,0.61,10.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
651,American Funds High-Income Trus,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,1.21,1.0,89.02,22.62,0.47,7.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
652,American Beacon AHL TargetRisk ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.99,1.09,0.41,92.58,20.11,0.18,1.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
653,American Beacon AHL TargetRisk ,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,2.74,2.15,3.5,93.8,41.13,0.99,17.74,3.92,2.14,3.33,92.86,33.28,1.16,18.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0
654,unlisted,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.23,1.23,0.83,89.78,22.96,0.38,5.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
655,American Beacon AHL TargetRisk ,Intermediate Government,-0.006,0.0,0.12157,0.0,0.0,0.0,0.0,0.0,0.02266,0.0,0.04436,0.0,0.02047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
656,Invesco High Yield Fund Class C,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.55,0.95,0.68,67.92,20.46,0.34,5.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
657,American Century High-Yield Fun,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.62,0.69,5.47,9.01,0.79,11.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
658,American Century High-Yield Fun,World Bond,0.12523,0.0,0.04216,0.0,0.15297,0.0,0.05029,0.0,0.08796,0.0,0.1651,0.0,0.29799,0.0,0.11079,0.0,-0.00597,0.0,0.0,-1.29,0.71,0.23,27.68,4.65,0.34,2.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
659,Aberdeen Short Duration High Yi,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.63,0.97,1.04,50.43,24.05,0.46,8.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
660,American Century High-Yield Fun,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.12,1.36,0.94,83.52,26.41,0.38,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
661,American Century High Yield Fd ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.18,0.78,0.66,63.61,17.32,0.38,6.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
662,Inflation-Adjusted Bond Fund - ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.48,0.75,0.62,73.9,15.4,0.4,6.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
663,Aberdeen Global Infrastructure ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.53,1.2,1.12,77.55,24.1,0.5,8.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
664,Aberdeen Realty Income and Grow,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
665,American Century Inflation-Adju,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.88,1.41,94.45,16.79,0.93,17.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
666,American Century Inflation-Adju,Industrials,0.29262,0.0,-0.32136,0.0,0.153,0.0,0.13528,0.0,0.05828,0.0,0.20569,0.0,0.32411,0.0,-0.24845,0.0,-0.10337,0.0,0.06938,-14.02,1.17,0.31,84.8,22.88,0.11,-0.15,-9.78,1.16,0.6,82.13,18.65,0.32,3.82,-6.79,1.17,0.45,80.16,18.4,0.26,2.67
667,American Century Inflation-Adju,Muni National Long,0.14305,0.0,-0.04427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21,1.24,0.52,94.52,5.14,0.98,4.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
668,American Century Inflation Adju,Muni National Interm,0.10729,0.0,-0.00983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,1.14,0.48,93.19,4.7,0.97,4.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
669,American Century Inflation-Adju,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.3,1.32,0.81,66.92,28.68,0.29,3.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
670,American Funds Int Bond Fd of A,Latin America Stock,0.9248,0.0,-0.46513,0.0,0.45863,0.0,0.43048,0.0,0.51357,0.0,0.40493,0.0,0.70462,0.0,-0.23262,0.0,-0.03014,0.0,-0.22771,-2.59,1.49,1.04,63.87,32.93,0.34,3.65,-4.3,1.48,1.03,57.22,28.7,0.39,4.73,-5.44,1.39,0.27,58.87,27.3,0.1,-0.91
671,American Century International ,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.08,0.18,0.15,6.14,2.43,0.26,3.47,0.49,0.11,0.15,3.77,1.88,0.38,6.17,0.61,0.05,0.11,1.08,1.47,0.52,14.75
672,International Bond Fund - G Cla,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.18,0.93,1.09,92.04,17.46,0.68,11.84,-3.45,0.93,0.86,90.11,14.19,0.64,9.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0
673,American Century International ,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-2.5,0.89,0.59,87.87,16.75,0.34,5.1,-3.01,0.91,0.64,85.28,14.44,0.45,6.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0
674,Cavanal Hill Active Core Fd Ins,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.88,1.16,97.88,16.04,0.79,13.86,-0.6,0.89,1.05,96.96,13.1,0.88,12.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0
675,Cavanal Hill Bond Fund Insti Sh,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,1.96,0.68,0.79,82.65,13.09,0.63,11.48,1.31,0.63,0.76,74.12,10.74,0.74,12.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0
676,American Century International ,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-0.89,0.9,1.36,96.78,17.04,0.88,16.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
677,American Century International ,Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,-1.46,1.03,1.5,94.18,19.63,0.85,15.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
678,"Sanford C. Bernstein Fund, Inc.",Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-7.76,1.11,1.1,85.7,22.26,0.54,8.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
679,American Funds Investment Co of,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
680,American Funds Investment Co of,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,0.17,0.15,5.97,2.33,0.27,3.61,0.55,0.11,0.16,3.66,1.8,0.42,6.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0
681,Disciplined Core Value Fund - R,Bank Loan,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.35,0.12,0.34,0.44,6.24,0.45,22.18,2.53,0.1,0.32,0.38,4.92,0.55,27.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0
682,Disciplined Core Value Fund - R,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.48,1.37,1.49,75.36,27.97,0.59,9.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
683,"Sanford C. Bernstein Fund, Inc.",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
684,"Sanford C. Bernstein Fund, Inc.",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
685,American Century International ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.34,0.66,1.37,73.84,13.68,1.11,23.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
686,American Century International ,Short-Term Bond,0.05046,0.0,0.02696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.71,0.53,0.34,39.09,2.92,0.99,5.45,0.45,0.51,0.21,45.44,2.42,0.59,2.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0
687,"Sanford C. Bernstein Fund, Inc.",Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.01,0.3,0.2,5.9,4.21,0.29,3.8,0.98,0.19,0.21,3.42,3.26,0.41,6.94,0.9,0.07,0.14,0.72,2.61,0.43,14.72
688,"Sanford C. Bernstein Fund, Inc.",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.81,0.93,1.86,63.2,20.65,1.01,22.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
689,American Beacon International E,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
690,Invesco International Growth Fu,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
691,"The Alger Fds II, Alger Emergin",Allocation--30% to 50% Equity,0.08868,0.0,-0.0199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
692,Strategic Enhanced Yield Fund I,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
693,Invesco International Growth Fu,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
694,Invesco International Growth Fu,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
695,Cavanal Hill Moderate Duration ,Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-2.68,1.19,1.27,85.54,23.14,0.6,10.22,-2.04,1.17,1.26,80.76,18.92,0.73,11.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0
696,Aberdeen Global Infrastructure ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
697,Alger International Focus Fund ,Muni National Interm,0.10729,0.0,-0.00983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.81,1.27,0.44,95.06,5.21,0.78,3.19,0.08,1.17,0.31,94.15,4.74,0.55,2.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0
698,Alger Portfolios - Alger Income,Managed Futures,-0.10455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.9,0.12,0.08,12.52,6.03,-0.03,-3.19,-2.02,0.14,0.08,12.36,5.55,-0.03,-2.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0
699,AllianzGI Income Class and Grow,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.6,1.71,0.59,76.6,7.8,0.74,3.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
700,Aberdeen Realty Income and Grow,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
701,Horizon Active Income Fund - Ad,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
702,Invesco International Growth Fu,Financial,0.14085,0.0,-0.46041,0.0,-0.10039,0.0,0.18103,0.0,0.09921,0.0,0.16029,0.0,0.3786,0.0,-0.11756,0.0,-0.07505,0.0,0.25498,-3.71,1.27,1.28,82.8,25.13,0.56,9.15,-0.44,1.22,1.45,70.91,21.15,0.77,12.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0
703,Timber Point Alternative Income,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-9.35,1.34,1.3,84.61,27.01,0.53,8.45,-6.18,1.3,1.35,80.08,21.84,0.69,10.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0
704,AllianzGI International Small-C,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-3.52,1.1,1.44,93.32,21.14,0.75,13.47,-3.39,1.09,1.3,92.37,17.04,0.85,12.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0
705,Invesco International Growth Fu,Foreign Small/Mid Value,0.40172,0.0,-0.45822,0.0,0.12904,0.0,0.13599,0.0,0.24396,0.0,0.31164,0.0,0.5629,0.0,-0.10617,0.0,0.0,0.0,0.0,-3.18,1.13,0.71,95.12,20.4,0.36,4.84,-1.35,1.1,0.95,94.11,16.59,0.61,8.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0
706,American Beacon International E,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,-1.12,1.09,0.86,89.18,20.39,0.44,6.66,-0.1,1.1,1.05,83.99,17.59,0.65,9.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0
707,unlisted,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-2.6,1.13,0.76,94.4,20.48,0.38,5.4,-1.51,1.1,0.93,93.53,16.62,0.6,8.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0
708,"Sanford C. Bernstein Fund, Inc.",Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-3.04,1.08,1.45,93.68,20.73,0.78,13.95,-3.16,1.08,1.3,92.92,16.72,0.86,12.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0
709,Horizon Active Income Fund - In,Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-74.91,-2.59,-9.96,46.99,70.36,-1.72,30.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
710,AQR International Momentum Styl,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
711,Inflation-Adjusted Bond Fund - ,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.93,3.85,7.94,61.97,90.72,1.04,19.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
712,Ariel International Equity Fd I,Miscellaneous Region,0.0,-0.56979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.88,1.12,1.63,69.69,23.64,0.77,15.08,6.85,1.13,1.65,66.51,20.22,0.92,16.09,4.72,1.25,1.05,72.36,22.1,0.54,8.07
713,American Century Inflation-Adju,Small Value,0.34941,0.0,-0.37823,0.0,-0.08066,0.0,0.19763,0.0,0.05405,0.0,0.21014,0.0,0.42788,0.0,-0.09634,0.0,0.12856,0.0,0.0,-13.98,1.5,1.15,81.47,30.82,0.41,5.34,-10.66,1.44,1.17,77.57,24.62,0.52,7.15,-8.43,1.36,0.96,77.96,20.97,0.52,6.67
714,Ariel International Fund Invest,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
715,Columbia Income Opportunities F,Mid-Cap Blend,0.41986,-0.36754,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,-7.37,1.33,1.45,88.48,26.15,0.62,10.21,-5.21,1.29,1.42,85.62,20.98,0.76,11.37,-5.25,1.24,1.09,85.14,18.3,0.68,9.12
716,American Century International ,Mid-Cap Growth,0.39665,0.0,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,0.31,1.14,1.81,79.8,23.61,0.86,17.07,1.02,1.13,1.72,78.14,19.18,1.01,17.12,-1.61,1.11,1.23,78.91,16.94,0.83,12.23
717,American Century Intl Opportuni,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
718,AQR International Momentum Styl,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
719,Cavanal Hill Opportunistic Fd I,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
720,American Century International ,Pacific/Asia ex-Japan Stk,0.73761,0.0,-0.51342,0.0,0.39069,0.0,0.37975,0.0,0.14049,0.0,0.21046,0.0,0.38684,0.0,-0.07992,0.0,0.02745,0.0,-0.16595,-3.62,1.2,0.73,89.36,22.38,0.34,4.35,-3.58,1.2,0.84,85.51,18.91,0.47,6.24,-0.85,1.13,0.53,81.68,18.91,0.3,3.57
721,American Century International ,Preferred Stock,0.33004,0.0,-0.28242,0.0,-0.16048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.58,0.94,0.72,7.29,11.92,0.62,7.38,4.52,0.92,0.62,9.52,9.49,0.66,6.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0
722,Horizon Active Income Fund - In,Preferred Stock,0.33004,0.0,-0.28242,0.0,-0.16048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.09,0.83,0.72,6.59,11.03,0.68,8.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
723,Cavanal Hill Limited Duration F,Preferred Stock,0.33004,0.0,-0.28242,0.0,-0.16048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
724,Alger Small Cap Growth Institut,Real Estate,0.24802,0.0,-0.43154,0.0,-0.11403,0.0,0.33869,0.0,0.15219,0.0,0.30096,0.0,0.40195,0.0,0.0297,0.0,0.10876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
725,Invesco Limited Term Muni Inc F,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
726,Ultra Short Tax-Free Income Fun,Foreign Large Growth,0.2908,0.0,-0.42427,0.0,0.31193,0.0,0.21884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.73,0.88,2.09,64.28,19.22,1.24,28.29,12.06,0.92,1.9,64.67,16.66,1.3,24.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0
727,AllianzGI International Value F,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-0.81,0.96,1.45,99.2,17.86,0.9,16.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
728,American Funds International Va,Equity Energy,0.42393,0.0,-0.48179,0.0,0.36452,0.0,0.15555,0.0,0.35584,0.0,0.31,0.0,0.27271,0.0,-0.11922,0.0,-0.15112,0.0,0.24356,-29.72,2.74,0.83,68.67,59.43,0.15,-3.12,-27.44,2.53,0.68,58.9,47.95,0.15,-1.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0
729,American Funds International Va,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
730,American Funds International Va,Real Estate,0.24802,0.0,-0.43154,0.0,-0.11403,0.0,0.33869,0.0,0.15219,0.0,0.30096,0.0,0.40195,0.0,0.0297,0.0,0.10876,0.0,0.0,-0.14,0.85,1.09,68.92,18.5,0.64,12.54,-3.04,0.82,0.77,57.64,15.72,0.52,8.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0
731,American Funds International Va,Real Estate,0.24802,-0.38849,-0.43154,0.0,-0.11403,0.0,0.33869,0.0,0.15219,0.0,0.30096,0.0,0.40195,0.0,0.0297,0.0,0.10876,0.0,0.0,-2.88,0.9,0.91,67.8,19.63,0.5,9.03,-5.89,0.86,0.58,54.75,16.84,0.34,5.18,1.39,0.78,0.81,44.42,16.54,0.55,10.27
732,American Funds International Va,Mid-Cap Growth,0.39665,0.0,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
733,AB Trust - AB International Val,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
734,American Century International ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
735,AB Trust - AB International Val,Muni National Short,0.0435,0.0,0.04122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
736,American Century International ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
737,Cavanal Hill World Energy Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
738,MID CAP CORE EQUITY FUND - INST,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
739,Aberdeen Emerging Markets Debt ,Consumer Defensive,0.24732,0.0,-0.19008,0.0,0.1098,0.0,0.1504,0.0,0.02754,0.0,0.09584,0.0,0.15875,0.0,-0.12448,0.0,-0.03853,0.0,0.2576,4.15,0.62,1.17,65.36,13.78,0.93,20.55,-1.17,0.63,0.72,53.74,12.56,0.59,10.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0
740,Aberdeen Emerging Markets Debt ,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3,0.96,1.04,88.77,17.92,0.62,10.63,2.69,0.95,1.15,85.92,14.96,0.84,12.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0
741,Aberdeen Emerging Markets Debt ,Large Value,0.25157,-0.3603,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-10.92,1.28,1.08,87.14,25.35,0.46,6.95,-7.44,1.25,1.17,84.47,20.32,0.63,9.2,-5.74,1.19,0.98,85.22,17.53,0.64,8.51
742,Aberdeen Emerging Markets Debt ,Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-9.29,1.24,0.78,84.98,24.15,0.34,4.38,-6.67,1.22,0.93,82.57,19.54,0.51,6.93,-24.91,1.37,-0.9,61.72,24.46,-0.47,-10.02
743,Aberdeen Emerging Markets Debt ,Large Growth,0.41318,-0.41108,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.29,1.02,1.64,87.86,20.24,0.91,17.48,-0.13,1.02,1.48,86.37,16.49,1.0,16.14,-0.33,1.01,1.22,87.29,14.7,0.95,13.7
744,AB Income Fund - A,Large Blend,0.32264,-0.37195,-0.38047,0.10251,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-1.14,0.88,1.31,95.4,16.76,0.86,15.96,-0.61,0.89,1.25,93.97,13.75,1.01,15.65,-0.78,0.98,1.15,88.83,14.19,0.93,13.21
745,AB Income Fund - C,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,12.35,1.09,2.41,82.36,21.61,1.28,26.49,12.86,1.08,2.4,76.97,17.93,1.54,27.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0
746,Akre Focus - Retail,Commodities Broad Basket,0.18403,0.0,-0.41581,0.0,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.03,0.96,0.49,91.96,15.34,0.3,3.73,0.0,0.93,0.25,89.23,12.43,0.15,1.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0
747,Akre Focus - Institutional,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-10.33,0.77,0.38,87.37,15.3,0.22,2.84,-6.44,0.76,0.6,82.8,12.56,0.48,7.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0
748,Akre Focus Fund - Supra Institu,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.95,0.5,0.2,76.18,10.37,0.11,1.19,-2.81,0.5,0.44,65.59,9.06,0.45,7.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0
749,Invesco Income Allocation Fund ,Long-Short Equity,0.3145,0.0,-0.29481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.95,0.52,0.71,83.64,10.57,0.69,13.48,-0.62,0.55,0.79,80.55,9.17,0.91,15.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0
750,ALPS/Smith Balanced Opportunity,Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-4.94,1.2,1.09,78.36,24.28,0.49,7.89,-3.95,1.14,1.06,73.93,19.32,0.6,9.03,-18.42,1.51,-0.25,55.57,28.42,-0.13,-4.96
751,Alger Focus Equity Fund Class A,Short Government,0.00536,0.0,0.04708,0.0,0.07302,0.0,0.03829,0.0,0.01481,0.0,0.00798,0.0,0.01783,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.13,0.18,41.7,0.7,1.39,7.43,0.18,0.13,0.13,45.08,0.64,0.69,3.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0
752,Alger Capital Appreciation Inst,Bank Loan,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.65,0.1,0.36,0.24,6.8,0.45,29.14,2.67,0.11,0.34,0.41,5.3,0.54,26.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0
753,Invesco Income Allocation Fund ,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.05,0.12,0.14,9.98,1.31,0.34,3.65,0.3,0.08,0.13,6.89,1.01,0.46,5.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0
754,Alger Growth & Income Fund Cla,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,1.21,1.0,1.38,75.41,20.72,0.74,14.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
755,Alger Growth & Income Fund Cla,Consumer Defensive,0.24732,0.0,-0.19008,0.0,0.1098,0.0,0.1504,0.0,0.02754,0.0,0.09584,0.0,0.15875,0.0,-0.12448,0.0,-0.03853,0.0,0.2576,-0.4,0.74,0.93,70.09,15.79,0.63,12.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
756,"AB Municipal Income Fund, Inc. ",Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,-5.06,0.87,0.7,73.41,18.19,0.39,6.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
757,ALPS/Smith Balanced Opportunity,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,10.83,1.28,2.5,74.02,26.75,1.07,22.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
758,Alger Capital Appreciation Fund,Equity Energy,0.42393,0.0,-0.48179,0.0,0.36452,0.0,0.15555,0.0,0.35584,0.0,0.31,0.0,0.27271,0.0,-0.11922,0.0,-0.15112,0.0,0.24356,-28.39,2.02,0.1,71.16,43.04,0.0,-4.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
759,Alger Focus Equity Fund Class C,Financial,0.14085,0.0,-0.46041,0.0,-0.10039,0.0,0.18103,0.0,0.09921,0.0,0.16029,0.0,0.3786,0.0,-0.11756,0.0,-0.07505,0.0,0.25498,-10.46,1.51,1.0,64.21,33.86,0.32,3.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
760,"AB Large Cap Growth Fund, Inc. ",Industrials,0.29262,0.0,-0.32136,0.0,0.153,0.0,0.13528,0.0,0.05828,0.0,0.20569,0.0,0.32411,0.0,-0.24845,0.0,-0.10337,0.0,0.06938,-6.22,1.54,1.39,85.62,29.95,0.51,7.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
761,AllianzGI Large-Cap Value Fund ,Muni National Short,0.0435,0.0,0.04122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
762,"AB Municipal Income Fund, Inc. ",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
763,Alger International Focus Fund ,Managed Futures,-0.10455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.08,-0.06,0.13,4.95,4.51,0.06,-3.51,0.37,-0.05,0.07,3.08,4.32,-0.08,8.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0
764,Columbia Limited Duration Credi,Utilities,0.15786,0.0,-0.31992,0.0,0.16362,0.0,0.21766,0.0,0.15302,0.0,0.23564,0.0,0.24961,0.0,-0.24964,0.0,-0.19733,0.0,0.22031,3.48,0.4,0.86,23.4,14.92,0.61,21.0,1.67,0.38,0.66,16.54,13.57,0.5,16.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0
765,Lord Abbett Securities Trust - ,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,-2.6,1.12,1.54,90.83,21.8,0.79,14.44,-1.98,1.1,1.42,88.81,17.45,0.91,14.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0
766,Lord Abbett Securities Trust A,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-3.74,1.1,1.42,96.72,20.8,0.76,13.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
767,Lord Abbett Alpha Strategy Fd -,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,-6.18,0.94,0.98,83.0,19.14,0.55,9.71,-3.34,0.93,1.09,81.3,15.49,0.76,12.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0
768,Lord Abbett Alpha Strategy Fund,Large Value,0.25157,-0.24174,-0.35846,-0.03437,0.01809,0.19845,0.20182,0.05135,0.05311,0.17884,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-2.78,0.81,1.07,85.71,16.24,0.71,13.42,-3.27,0.8,0.91,83.88,13.14,0.75,11.76,0.54,0.78,1.02,81.64,11.66,0.99,14.85
769,Lord Abbett Alpha Strategy Clas,Multisector Bond,0.04504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.43,0.33,11.11,4.43,0.64,6.43,1.34,0.57,0.3,21.83,3.92,0.62,4.21,0.8,0.77,0.3,31.89,4.1,0.72,3.77
770,Lord Abbett Alpha Strategy Fd -,Single Currency,0.0,-0.15873,0.0,0.17444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.45,15.42,0.1,7.05,10.36,0.0,-0.04,-4.63,14.37,0.09,5.24,9.51,-0.01,-0.04,-7.19,17.11,-0.14,3.05,10.87,-0.21,-0.17
771,Lord Abbett Alpha Strategy Fund,Single Currency,0.0,-0.24712,0.0,0.06288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.56,4.7,0.14,1.06,8.14,0.05,0.02,-1.04,1.98,0.06,0.13,8.32,-0.05,-0.38,-3.11,3.68,-0.12,0.24,8.42,-0.24,-0.65
772,Lord Abbett Alpha Strategy Fund,Single Currency,0.0,-0.18203,0.0,0.22166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.33,6.25,0.21,2.58,6.94,0.18,0.17,-1.76,6.07,0.11,1.75,6.97,0.02,-0.01,-5.79,10.85,-0.17,2.16,8.21,-0.33,-0.28
773,Lord Abbett Alpha Strategy Fund,Consumer Cyclical,0.4642,-0.42856,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,-5.39,1.53,1.45,87.91,29.36,0.55,8.06,-5.63,1.47,1.3,82.87,23.56,0.61,8.33,0.34,1.24,1.09,77.16,19.76,0.63,8.96
774,Lord Abbett Alpha Strategy Fund,Single Currency,0.0,0.07505,0.0,0.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.58,4.32,0.12,1.48,6.35,0.04,0.01,-2.37,4.23,0.01,0.97,6.53,-0.16,-0.3,-3.76,6.01,-0.12,0.58,8.81,-0.23,-0.4
775,Alger International Focus Fund ,Consumer Defensive,0.24732,-0.24647,-0.19008,0.0,0.1098,0.0,0.1504,0.0,0.02754,0.0,0.09584,0.0,0.15875,0.0,-0.12448,0.0,-0.03853,0.0,0.2576,-1.91,0.73,0.8,63.81,16.45,0.51,10.06,-5.23,0.73,0.49,56.29,14.21,0.33,5.29,3.43,0.68,0.89,51.62,13.21,0.76,14.32
776,Alger International Focus Fund ,Health,0.2568,-0.29321,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,4.25,0.82,1.42,61.53,18.82,0.84,18.48,2.43,0.84,1.26,58.22,16.08,0.86,16.08,6.46,0.8,1.25,53.88,15.28,0.94,17.6
777,Alger Focus Equity Fund Class I,unknown,0.0,-0.49916,0.0,0.5866,0.0,0.83191,0.0,0.1415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.1,0.7,0.26,50.41,17.38,0.1,0.41,1.83,0.77,0.85,46.81,16.56,0.54,10.42,-0.86,1.02,0.42,55.21,20.73,0.21,2.26
778,Alger Focus Equity Fund Class Y,Technology,0.76085,-0.48066,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,11.38,1.24,2.5,79.18,24.95,1.15,23.73,11.61,1.2,2.43,74.71,20.25,1.38,24.64,6.72,1.18,1.58,73.92,19.25,0.95,15.2
779,Alger Funds II - Alger Responsi,Equity Energy,0.42393,-0.50778,-0.48179,0.0,0.36452,0.0,0.15555,0.0,0.35584,0.0,0.31,0.0,0.27271,0.0,-0.11922,0.0,-0.15112,0.0,0.24356,-33.09,2.68,0.48,69.23,57.94,0.08,-4.05,-27.27,2.45,0.61,58.72,46.6,0.13,-1.72,-19.21,2.06,0.14,57.14,38.31,0.03,-2.86
780,"AB Bond Fund, Inc. - AB Limited",Financial,0.14085,-0.38241,-0.46041,0.0,-0.10039,0.0,0.18103,0.0,0.09921,0.0,0.16029,0.0,0.3786,0.0,-0.11756,0.0,-0.07505,0.0,0.25498,-2.26,1.32,1.46,77.02,27.02,0.6,10.11,-0.82,1.26,1.45,71.43,21.62,0.75,11.87,2.92,1.13,1.22,73.34,18.45,0.76,11.58
781,"AB Bond Fund, Inc. - AB Limited",Trading--Inverse Equity,-0.56517,-0.53517,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.09,-1.01,-1.9,30.97,33.83,-0.71,25.86,-9.28,-1.16,-2.26,28.14,32.95,-0.86,25.14,5.49,-1.7,-1.51,31.36,41.35,-0.45,14.13
782,"AB Bond Fund, Inc. - AB Limited",Industrials,0.29262,-0.45888,-0.32136,0.0,0.153,0.0,0.13528,0.0,0.05828,0.0,0.20569,0.0,0.32411,0.0,-0.24845,0.0,-0.10337,0.0,0.06938,-2.55,1.4,1.53,91.31,26.41,0.65,10.46,-0.82,1.35,1.56,82.34,21.58,0.81,12.2,1.28,1.23,1.17,79.39,19.39,0.69,9.92
783,"AB Bond Fund, Inc. - AB Limited",Utilities,0.15786,-0.27384,-0.31992,0.0,0.16362,0.0,0.21766,0.0,0.15302,0.0,0.23564,0.0,0.24961,0.0,-0.24964,0.0,-0.19733,0.0,0.22031,0.01,0.51,0.7,40.2,14.57,0.5,12.52,-1.85,0.48,0.49,31.35,12.55,0.38,8.41,4.02,0.42,0.73,24.11,12.15,0.67,18.3
784,"AB Bond Fund, Inc. - AB Limited",Single Currency,0.0,0.22978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.86,5.12,-0.04,3.4,5.03,-0.34,-0.36,-3.87,2.67,-0.16,0.38,6.59,-0.46,-1.21,-4.94,3.61,-0.28,0.23,8.34,-0.47,-1.16
785,ALPS/Smith Balanced Opportunity,Natural Resources,0.60487,-0.44588,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-4.67,1.38,1.33,83.29,27.2,0.54,8.54,-3.91,1.34,1.29,77.36,22.12,0.65,9.49,-1.63,1.31,0.99,78.51,20.81,0.54,7.31
786,"AB Bond Fund, Inc. - AB Limited",Small Growth,0.37529,0.0,-0.42753,0.0,0.09557,0.0,0.10678,0.0,0.07208,0.0,0.16975,0.0,0.44402,0.0,-0.28259,0.0,-0.0669,0.0,0.0,-6.27,1.29,1.48,78.56,26.91,0.61,10.74,-1.88,1.26,1.65,72.17,22.18,0.84,14.0,-3.04,1.21,1.23,72.68,19.25,0.73,10.81
787,"AB Large Cap Growth Fund, Inc. ",Foreign Small/Mid Value,0.40172,0.0,-0.45822,0.0,0.12904,0.0,0.13599,0.0,0.24396,0.0,0.31164,0.0,0.5629,0.0,-0.10617,0.0,0.0,0.0,0.0,-2.32,1.22,0.85,93.2,22.21,0.4,5.58,-0.85,1.18,1.05,91.92,17.89,0.64,8.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0
788,Alger Weatherbie Specialized Gr,Small Value,0.34941,0.0,-0.37823,0.0,-0.08066,0.0,0.19763,0.0,0.05405,0.0,0.21014,0.0,0.42788,0.0,-0.09634,0.0,0.12856,0.0,0.0,-13.26,1.6,1.36,80.71,33.05,0.46,6.34,-9.67,1.55,1.4,73.91,27.05,0.58,8.23,-8.04,1.43,1.08,72.12,22.92,0.54,7.11
789,Alger Weatherbie Specialized Gr,Small Blend,0.32673,-0.34272,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-9.83,1.44,1.4,83.9,29.05,0.54,8.41,-5.97,1.4,1.5,77.14,23.86,0.7,10.78,-5.7,1.32,1.14,76.46,20.51,0.64,8.78
790,Invesco Short Duration Inflatio,World Allocation,0.21041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.29,0.95,0.8,91.77,11.28,0.73,8.47,-1.17,0.95,0.72,89.72,9.17,0.81,7.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0
791,Alger Mid Cap Growth Institutio,Allocation--50% to 70% Equity,0.33211,0.0,-0.42351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.91,1.17,0.84,98.0,13.43,0.66,7.19,-2.35,1.18,0.8,97.32,10.94,0.76,6.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0
792,Alger Mid Cap Growth Institutio,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,15.93,0.74,2.3,19.71,30.13,0.87,33.49,17.04,0.79,2.42,20.68,25.32,1.1,35.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0
793,"AB Municipal Income Fund, Inc. ",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-17.81,1.03,-1.06,11.32,46.98,-0.3,-21.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
794,AllianzGI Large-Cap Value Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
795,"AB Municipal Income Fund, Inc. ",Intermediate-Term Bond,0.08281,0.06598,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.53,1.22,0.47,98.78,4.27,1.06,3.66,-0.27,1.19,0.26,98.76,3.87,0.52,1.64,-0.37,1.18,0.29,98.54,3.57,0.82,2.46
796,"AB Municipal Income Fund, Inc. ",Mid-Cap Growth,0.39665,0.0,-0.44885,0.0,0.11758,0.0,0.08125,0.0,0.12716,0.0,0.13765,0.0,0.36522,0.0,-0.23477,0.0,-0.08225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
797,AllianzGI International Small-C,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.0,0.11,0.27,0.38,0.59,38.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
798,AllianzGI International Small-C,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
799,unlisted,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
800,American Century Large Company ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
801,ALPS/Smith Balanced Opportunity,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
802,American Century Large Company ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-7.24,1.01,0.63,89.54,19.19,0.32,4.54,-5.92,1.0,0.71,88.62,15.54,0.47,6.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0
803,Alger Small Cap Growth Fund Cla,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
804,Alger Small Cap Growth Fund Cla,Trading--Inverse Commodities,-0.38406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
805,AMG River Road Long-Short Fund ,Equity Precious Metals,0.37277,0.0,-0.10272,0.0,0.22342,0.0,0.25079,0.0,0.20751,0.0,-0.01777,0.0,0.39127,0.0,0.44252,0.0,0.0,0.0,0.0,4.16,1.1,1.73,22.04,42.01,0.46,11.21,-6.4,1.11,0.82,18.66,37.3,0.23,2.02,-9.99,0.98,0.02,10.07,43.36,-0.01,-9.26
806,Archer Multi Cap Fund,Trading--Leveraged Commodities,0.58209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
807,Alger Small Cap Growth Institut,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.71,0.93,0.89,85.62,17.77,0.53,8.8,0.85,0.97,1.01,83.62,15.47,0.71,10.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0
808,"AB Cap Fund, Inc. - AB Multi- M",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.7,1.16,1.93,86.19,22.35,0.98,18.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
809,Alger Small Cap Growth Fund - C,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
810,"AB Municipal Income Fund, Inc. ",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
811,American Beacon Large Cap Value,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,3.34,0.56,0.57,5.39,8.22,0.68,9.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
812,American Century Large Company ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.15,1.52,0.51,63.92,6.68,0.72,3.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
813,American Century Large Company ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
814,American Century Large Company ,Infrastructure,0.17684,-0.31413,-0.35299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.01,0.97,0.57,78.29,19.8,0.28,3.81,-7.39,0.96,0.57,73.25,16.28,0.35,4.59,-2.09,0.79,0.53,64.63,13.81,0.41,6.13
815,Alger Portfolios - Alger Capita,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
816,unlisted,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
817,Invesco Balanced-Risk Allocatio,China Region,0.67665,0.0,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,5.58,0.83,1.21,46.5,21.36,0.62,14.27,1.76,0.83,0.97,40.1,19.25,0.54,10.95,2.75,0.79,0.67,24.14,24.37,0.3,5.76
818,American Century Large Company ,unknown,0.0,0.02989,0.0,0.31073,0.0,0.23441,0.0,0.16651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.64,0.09,1.02,0.81,15.04,0.73,118.82,4.88,0.11,0.52,1.1,13.26,0.38,40.03,3.91,0.48,0.21,16.21,16.58,0.12,1.21
819,American Century Large Company ,Nontraditional Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
820,Disciplined Core Value Fund - A,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.04,0.06,0.87,0.7,11.07,0.84,151.37,3.72,0.08,0.42,1.04,10.41,0.37,41.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0
821,Amana Mutual Funds Trust - Grow,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
822,Amana Mutual Funds Trust - Inco,Infrastructure,0.17684,0.0,-0.35299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
823,Amana Participation Fund Invest,India Equity,0.96477,0.0,-0.65619,0.0,0.7204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-11.42,1.0,-0.08,30.0,32.05,-0.07,-7.73,-9.08,1.09,0.29,30.64,28.75,0.08,-2.03,-6.66,1.31,0.13,35.32,33.21,0.03,-3.5
824,AB Municipal Income Fund II - M,Trading--Inverse Commodities,-0.38406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-23.35,0.03,-1.83,0.03,27.4,-0.85,-757.7,-11.99,-0.03,-0.91,0.02,25.12,-0.48,460.57,-8.95,-0.91,-0.38,14.36,33.45,-0.16,11.34
825,American Balanced Fund Class F-,Small Growth,0.37529,0.0,-0.42753,0.0,0.09557,0.0,0.10678,0.0,0.07208,0.0,0.16975,0.0,0.44402,0.0,-0.28259,0.0,-0.0669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
826,American Beacon Mid-Cap Value F,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.39,0.41,1.35,13.73,16.91,0.88,35.88,6.83,0.38,0.73,10.59,15.02,0.51,17.68,4.49,0.76,0.16,30.4,19.37,0.07,-0.72
827,"AMCAP Fund, Class F-2 Shares",Pacific/Asia ex-Japan Stk,0.73761,-0.50426,-0.51342,0.0,0.39069,0.0,0.37975,0.0,0.14049,0.0,0.21046,0.0,0.38684,0.0,-0.07992,0.0,0.02745,0.0,-0.16595,4.35,0.84,1.11,70.81,17.48,0.69,13.5,4.68,0.88,1.25,69.47,15.31,0.9,15.53,2.23,0.95,0.7,75.44,16.52,0.47,6.99
828,Alger Mid Cap Growth Fund Class,World Allocation,0.21041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.41,0.67,0.54,59.4,9.75,0.54,7.53,-0.36,0.72,0.61,57.46,8.7,0.71,8.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0
829,"AMCAP Fund, Class A Shares A",Intermediate Government,-0.006,0.0,0.12157,0.0,0.0,0.0,0.0,0.0,0.02266,0.0,0.04436,0.0,0.02047,0.0,0.0,0.0,0.0,0.0,0.0,0.61,0.35,0.27,36.23,2.09,1.02,5.86,-0.16,0.46,0.15,52.18,2.08,0.35,1.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0
830,American Beacon Mid-Cap Value F,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
831,Invesco Greater China Fund Cl Y,Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-10.66,1.26,0.69,85.9,24.38,0.29,3.35,-5.63,1.23,1.02,81.25,19.76,0.56,7.86,-9.34,1.26,0.31,77.68,20.1,0.15,0.85
832,Alger Mid Cap Growth Fund Class,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
833,American Beacon Mid-Cap Value F,Equity Precious Metals,0.37277,0.0,-0.10272,0.0,0.22342,0.0,0.25079,0.0,0.20751,0.0,-0.01777,0.0,0.39127,0.0,0.44252,0.0,0.0,0.0,0.0,6.99,1.06,1.93,23.09,39.86,0.55,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
834,American Century Mid Cap Value ,Equity Precious Metals,0.37277,0.0,-0.10272,0.0,0.22342,0.0,0.25079,0.0,0.20751,0.0,-0.01777,0.0,0.39127,0.0,0.44252,0.0,0.0,0.0,0.0,2.56,1.13,1.64,25.74,40.09,0.46,10.54,-7.64,1.13,0.75,21.91,35.27,0.22,1.83,-9.18,1.07,0.16,10.69,45.85,0.03,-7.76
835,Amana Developing World Fund,Intermediate Government,-0.006,0.0,0.12157,0.0,0.0,0.0,0.0,0.0,0.02266,0.0,0.04436,0.0,0.02047,0.0,0.0,0.0,0.0,0.0,0.0,-0.83,1.03,0.38,61.72,4.54,0.75,3.23,-1.02,1.04,0.18,70.33,4.05,0.24,0.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0
836,"The Income Fund of America, Cla",Long Government,-0.16106,0.0,0.28814,0.0,0.10177,0.0,0.01744,0.0,0.08444,0.0,0.08879,0.0,0.01748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
837,"The Income Fund of America, Cla",Global Real Estate,0.43403,0.0,-0.52561,0.0,-0.06901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.96,0.91,0.58,76.7,18.64,0.31,4.53,-7.26,0.9,0.51,71.28,15.45,0.32,4.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0
838,American Century Equity Growth ,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.04,1.6,0.67,69.76,33.74,0.2,0.84,-4.85,1.58,1.07,58.39,30.19,0.39,4.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0
839,AlphaSimplex Managed Futures St,Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-4.81,0.7,0.52,72.96,14.59,0.34,5.82,-4.86,0.68,0.47,66.3,12.16,0.36,5.6,-5.6,0.72,0.18,58.14,13.31,0.11,0.9
840,"American Mutual Fund, Class C S",Miscellaneous Sector,0.31262,0.0,-0.33986,0.0,0.01815,0.0,0.1485,0.0,0.0159,0.0,0.14628,0.0,0.26847,0.0,-0.1862,0.0,-0.0085,0.0,0.05371,6.58,1.28,2.15,84.98,24.92,0.98,18.76,4.68,1.24,1.89,78.94,20.28,1.06,17.42,1.14,1.17,1.11,77.67,18.63,0.68,9.88
841,AAMA Equity Fund,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
842,"American Mutual Fund, Class F-1",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.39,0.96,0.29,57.04,4.37,0.5,2.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
843,AAMA Income Fund,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
844,AlphaSimplex Managed Futures St,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-0.04,1.03,0.9,95.79,18.54,0.51,8.01,-0.24,1.04,0.98,93.84,15.66,0.68,9.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0
845,Alger Mid Cap Growth Fund Class,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-2.52,1.1,1.51,95.82,20.8,0.81,14.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
846,Alger Mid Cap Growth Fund Class,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
847,Disciplined Core Value Fund - I,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-0.71,0.98,0.8,97.21,17.44,0.48,7.36,-0.15,0.97,0.93,96.55,14.38,0.69,9.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0
848,Alger Portfolios - Alger Mid Ca,Short-Term Bond,0.05046,0.0,0.02696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
849,"American Fds, American High-Inc",Japan Stock,0.04876,0.0,-0.2455,0.0,-0.04813,0.0,0.08603,0.0,0.24454,0.0,0.14153,0.0,0.34181,0.0,-0.10397,0.0,-0.29902,0.0,-0.28569,-0.22,0.7,0.62,72.52,14.4,0.43,7.82,1.45,0.7,0.83,70.8,12.14,0.72,12.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0
850,Invesco High Yield Fund Class A,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-0.1,0.98,1.54,99.51,18.16,0.94,17.33,-0.14,0.98,1.42,99.32,14.71,1.07,16.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0
851,Amana Developing World Fund Ins,Commodities Broad Basket,0.18403,-0.47744,-0.41581,0.31993,0.27533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.64,2.08,0.29,73.85,37.13,0.06,-2.46,0.9,2.01,0.51,72.11,30.0,0.17,0.07,1.37,1.56,-0.38,69.72,26.22,-0.2,-5.41
852,Amana Growth Fund Institutional,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
853,Amana Income Fund Institutional,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,-7.46,1.22,1.27,83.68,24.62,0.57,9.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
854,Amana Participation Fund Instit,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
855,American Century Emerging Marke,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
856,AlphaMark Fund,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.16,0.18,12.46,1.51,0.62,5.98,0.72,0.11,0.17,8.86,1.17,0.8,8.63,0.78,0.07,0.13,5.88,0.87,1.14,14.17
857,MainGate MLP Fund Class A,Inflation-Protected Bond,0.11283,0.0,-0.02425,0.0,0.11459,0.0,0.00291,0.0,0.02646,0.0,0.08211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
858,AllianzGl Emerging Markets Cons,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.28,1.17,0.6,62.14,5.08,1.19,5.24,2.61,1.06,0.48,63.7,4.24,1.09,4.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0
859,Aegon Emerging Markets Debt Fun,Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-7.92,1.17,0.81,86.47,22.65,0.38,5.35,-4.6,1.14,1.01,81.06,18.4,0.59,8.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0
860,Aegon Emerging Markets Debt Fun,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,-3.4,1.18,1.56,92.76,22.75,0.77,13.76,-1.46,1.15,1.54,91.69,18.04,0.96,14.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0
861,AB Municipal Income Fund II - M,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-130.83,6.35,-1.43,60.71,151.38,-0.12,-13.08,-95.31,5.95,0.25,50.26,126.16,0.02,-10.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0
862,AB Municipal Income Fund II - M,Foreign Small/Mid Value,0.40172,0.0,-0.45822,0.0,0.12904,0.0,0.13599,0.0,0.24396,0.0,0.31164,0.0,0.5629,0.0,-0.10617,0.0,0.0,0.0,0.0,-8.55,1.34,0.43,89.15,24.95,0.16,0.61,-5.01,1.32,0.83,86.51,20.77,0.42,5.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0
863,AQR Large Cap Momentum Style Fu,Large Growth,0.41318,0.0,-0.41574,0.0,0.09633,0.0,0.0998,0.0,0.02725,0.0,0.0698,0.0,0.30929,0.0,-0.27831,0.0,-0.19168,0.0,-0.3694,1.56,1.17,1.96,89.22,23.01,0.97,18.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
864,AQR Large Cap Momentum Style Fu,China Region,0.67665,-0.50688,-0.50899,0.0,0.42833,0.0,0.46139,0.0,0.05902,0.0,0.16256,0.0,0.3835,0.0,-0.22312,0.0,-0.06992,0.0,-0.14001,3.13,0.74,0.94,44.54,19.62,0.51,11.53,6.6,0.82,1.36,44.52,17.86,0.84,17.9,2.83,1.04,0.79,57.71,20.59,0.43,6.78
865,American Beacon Mid-Cap Value F,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.62,0.94,1.3,86.5,17.79,0.8,14.66,1.23,0.95,1.03,80.95,15.39,0.72,11.16,1.88,1.02,0.71,82.83,16.91,0.46,6.53
866,"AMCAP Fund, Class C Shares",Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-20.98,1.71,-0.32,77.72,34.34,-0.15,-6.4,-16.2,1.61,0.15,68.44,28.54,0.02,-2.3,-12.63,1.26,-0.39,49.34,27.13,-0.19,-6.97
867,"AMCAP Fund, Class F-1 Shares",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
868,"American Growth Fund, Inc. - Cl",World Allocation,0.21041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-15.01,1.93,0.48,82.62,24.21,0.19,0.71,-12.93,1.86,0.43,80.61,19.06,0.21,1.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0
869,"American Growth Fund, Inc. - Cl",Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,4.71,0.99,1.65,60.28,22.9,0.81,17.73,7.11,0.95,1.77,53.16,18.92,1.06,21.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0
870,"American Growth Fund, Inc. - Cl",Natural Resources,0.60487,0.0,-0.46215,0.0,0.32767,0.0,0.14892,0.0,0.35228,0.0,0.31397,0.0,0.33469,0.0,-0.07207,0.0,-0.15082,0.0,0.24303,-5.6,1.22,1.06,87.9,23.34,0.49,7.63,-4.93,1.19,1.03,84.93,18.71,0.6,8.44,-6.83,1.19,0.46,80.66,18.64,0.26,2.72
871,American Growth Fund Series Two,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
872,"American Mutual Fund, Class F-2",Pacific/Asia ex-Japan Stk,0.73761,0.0,-0.51342,0.0,0.39069,0.0,0.37975,0.0,0.14049,0.0,0.21046,0.0,0.38684,0.0,-0.07992,0.0,0.02745,0.0,-0.16595,-4.88,1.0,0.47,84.32,19.18,0.23,2.56,-2.07,0.98,0.77,83.24,15.63,0.52,7.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0
873,"American Growth Fund, Inc. - Cl",Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,2.16,0.81,0.91,93.73,14.8,0.66,11.18,2.6,0.78,0.99,89.92,11.95,0.89,13.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0
874,American Mutual Fund Class A Sh,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
875,"AB Bond Fund, Inc. - AB All Mar",Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-3.06,1.03,0.64,94.85,18.59,0.35,4.84,-3.5,0.96,0.64,89.26,14.88,0.44,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0
876,Columbia Capital Allocation Mod,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-3.04,0.99,0.62,93.74,18.04,0.34,4.8,-3.41,0.93,0.62,84.94,14.7,0.43,5.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0
877,"AB Bond Fund, Inc. - AB All Mar",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.85,0.39,0.48,89.4,7.28,0.62,11.53,-1.29,0.38,0.41,87.99,5.78,0.66,10.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0
878,"AB Bond Fund, Inc. - AB All Mar",Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-13.58,-1.34,-3.0,78.28,28.13,-1.33,25.92,-7.14,-1.32,-2.29,74.76,22.91,-1.25,20.88,-2.63,-1.3,-1.71,74.03,20.56,-1.03,16.2
879,"AB Bond Fund, Inc. - AB All Mar",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
880,"AB Bond Fund, Inc. - AB All Mar",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
881,"AB Bond Fund, Inc. - AB All Mar",Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-6.14,0.78,0.19,86.9,14.67,0.07,-0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
882,"AB Bond Fund, Inc. - AB All Mar",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
883,"AB Bond Fund, Inc. - AB All Mar",Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,-7.79,0.92,0.82,83.99,18.73,0.46,7.74,-8.01,0.92,0.67,81.44,15.22,0.46,6.56,-1.22,0.78,0.88,69.92,12.69,0.78,12.2
884,American Funds U.S. Govt Securi,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-0.17,0.96,0.83,81.32,18.7,0.47,7.64,1.18,0.92,1.0,72.61,15.77,0.68,10.98,4.26,0.8,0.79,62.88,15.15,0.59,10.16
885,American Century Mid Cap Value ,Diversified Emerging Mkts,0.70114,0.0,-0.492,0.0,0.40484,0.0,0.29363,0.0,0.33696,0.0,0.28617,0.0,0.50479,0.0,0.0,0.0,0.0,0.0,0.0,3.22,0.82,1.01,82.85,15.93,0.68,12.36,2.43,0.84,1.03,81.41,13.6,0.82,13.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0
886,American Century Mid Cap Value ,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,1.46,0.83,0.87,85.92,15.86,0.58,10.04,2.42,0.78,0.98,79.82,12.81,0.83,13.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0
887,American Century Mid Cap Value ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
888,"AB Global Bond Fund, Inc. - Cla",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
889,"AB Global Bond Fund, Inc. - Cla",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
890,"AB Global Bond Fund, Inc. - Cla",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
891,"AB Global Bond Fund, Inc. - Cla",Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.69,0.87,1.0,80.84,17.05,0.63,11.34,2.41,0.76,0.96,66.85,13.62,0.76,13.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0
892,"AB Global Bond Fund, Inc. - Cla",Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.16,1.05,0.9,80.29,20.66,0.46,7.47,0.05,1.01,0.98,72.91,17.27,0.61,9.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0
893,AllianzGI International Value F,Japan Stock,0.04876,0.0,-0.2455,0.0,-0.04813,0.0,0.08603,0.0,0.24454,0.0,0.14153,0.0,0.34181,0.0,-0.10397,0.0,-0.29902,0.0,-0.28569,0.98,0.79,0.8,63.77,17.41,0.48,9.04,4.33,0.72,1.09,52.17,14.62,0.81,15.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0
894,"AB Global Bond Fund, Inc. - Cla",Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-5.98,0.79,0.22,74.9,16.18,0.09,0.15,-2.7,0.74,0.52,62.48,13.76,0.37,5.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0
895,American Funds Strategic Bond F,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,1.17,1.04,1.01,84.89,19.94,0.54,9.0,1.46,0.99,1.08,77.54,16.48,0.72,11.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0
896,American Funds Strategic Bond F,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.49,0.92,0.86,94.68,16.73,0.54,8.77,1.12,0.9,0.98,92.78,13.66,0.77,11.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0
897,American Funds Strategic Bond F,Trading--Leveraged Equity,0.6239,0.0,-0.68494,0.0,0.11247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
898,"AB Global Bond Fund, Inc. - Adv",Trading--Inverse Equity,-0.56517,0.0,0.38633,0.0,-0.07676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
899,American Funds Strategic Bond F,Allocation--85%+ Equity,0.50515,0.0,-0.40954,0.0,-0.07157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-14.1,2.3,0.86,84.43,28.52,0.32,2.03,-11.66,2.22,0.81,80.15,22.82,0.38,2.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0
900,American Funds Strategic Bond F,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
901,"AB Bond Fund, Inc. - AB Bond In",Japan Stock,0.04876,0.0,-0.2455,0.0,-0.04813,0.0,0.08603,0.0,0.24454,0.0,0.14153,0.0,0.34181,0.0,-0.10397,0.0,-0.29902,0.0,-0.28569,0.54,0.8,0.76,60.93,17.94,0.44,8.33,3.98,0.73,1.06,50.52,14.97,0.77,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0
902,"Fundamental Investors, Class A ",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
903,Ancora Microcap Fund Class I,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
904,AllianzGI Convertible Class P,Mid-Cap Blend,0.41986,0.0,-0.3965,0.0,0.05944,0.0,0.12485,0.0,0.11817,0.0,0.19735,0.0,0.38457,0.0,-0.16149,0.0,-0.00152,0.0,0.17077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
905,AllianzGI Dividend Value Fund A,Muni National Interm,0.10729,0.0,-0.00983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,1.07,0.46,96.05,4.37,0.98,4.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
906,NT Disciplined Growth Fund - G ,Allocation--15% to 30% Equity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.27,0.72,0.81,86.36,8.79,0.97,11.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
907,AQR International Defensive Sty,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.42,0.19,0.13,8.23,2.25,0.16,1.74,0.03,0.14,0.12,6.44,1.74,0.17,2.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0
908,AQR International Defensive Sty,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
909,AQR International Defensive Sty,Foreign Small/Mid Blend,0.44321,0.0,-0.46338,0.0,0.09004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.69,0.96,0.9,83.97,18.4,0.52,8.66,3.19,0.9,1.14,79.22,14.67,0.85,13.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0
910,AllianzGI Dividend Value Fund C,Small Blend,0.32673,0.0,-0.40663,0.0,-0.04847,0.0,0.16837,0.0,0.06375,0.0,0.20303,0.0,0.42767,0.0,-0.17621,0.0,0.04157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
911,American Funds New Economy Fund,Short-Term Bond,0.05046,0.0,0.02696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.09,0.42,0.33,11.91,4.13,0.68,6.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
912,American Funds New Economy Fund,Intermediate-Term Bond,0.08281,0.0,0.04235,0.0,0.06573,0.0,0.04126,0.0,0.02161,0.0,0.03989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.09,0.64,0.41,46.92,3.25,1.15,5.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
913,American Funds New Economy Fund,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
914,Angel Oak Financials Income Fun,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8,1.04,0.52,70.59,4.26,1.19,4.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
915,Angel Oak Financials Income Fun,Long-Short Equity,0.3145,0.0,-0.29481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.36,0.88,1.13,88.23,17.42,0.7,12.92,-4.22,0.86,0.91,85.41,13.87,0.7,10.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0
916,AllianzGI Small-Cap Value Fund ,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-1.91,0.84,1.18,82.86,17.14,0.76,14.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
917,Angel Oak Multi-Strategy Income,Large Value,0.25157,0.0,-0.35846,0.0,0.01809,0.0,0.20182,0.0,0.05311,0.0,0.14458,0.0,0.30804,0.0,-0.17206,0.0,-0.0626,0.0,0.06973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
918,Angel Oak Multi-Strategy Income,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
919,Angel Oak Multi-Strategy Income,High Yield Muni,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.56,1.85,0.4,76.31,8.44,0.42,1.77,-0.46,1.61,0.34,74.92,7.27,0.41,1.72,-0.34,1.5,0.48,74.08,6.3,0.82,3.39
920,Angel Oak High Yield Opportunit,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,4.64,0.56,0.68,4.46,8.97,0.77,12.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
921,Angel Oak High Yield Opportunit,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,2.26,0.65,0.51,11.54,6.52,0.75,7.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
922,"Sanford C. Bernstein Fund, Inc.",Emerging Markets Bond,0.30189,0.0,-0.13211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.48,0.51,0.65,2.18,11.77,0.56,11.85,4.08,0.57,0.53,3.77,9.37,0.55,8.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0
923,"Sanford C. Bernstein Fund, Inc.",High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
924,AB Municipal Income Fund II - N,Nontraditional Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.95,-0.02,0.34,0.01,9.45,0.3,-103.87,5.02,-0.21,0.48,0.74,7.7,0.6,-21.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0
925,AB Municipal Income Fund II - N,Nontraditional Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
926,AllianzGI International Value F,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,3.16,0.54,0.55,4.78,8.43,0.63,9.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
927,"Sanford C. Bernstein Fund, Inc.",unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.54,0.25,0.32,0.72,9.9,0.25,8.18,5.89,0.09,0.6,0.15,7.98,0.76,63.26,2.84,-0.01,0.29,0.0,8.05,0.35,-314.77
928,AllianzGI Convertible Fund Admi,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,3.8,0.38,0.55,2.72,7.92,0.68,13.61,4.09,0.4,0.5,4.13,6.31,0.77,11.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0
929,AllianzGI Convertible Fund Inst,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,2.1,0.64,0.49,11.76,6.34,0.74,7.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
930,American Century Small Cap Grow,High Yield Muni,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.45,1.76,0.54,78.12,7.94,0.67,2.94,0.05,1.47,0.36,72.88,6.72,0.48,2.06,0.1,1.46,0.51,75.16,6.11,0.89,3.7
931,American Century Small Cap Grow,High Yield Muni,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
932,American Century Small Cap Grow,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,2.29,0.4,0.43,2.54,8.63,0.45,9.03,4.08,0.3,0.48,2.02,6.78,0.68,15.07,3.86,0.24,0.43,1.44,6.09,0.74,18.19
933,American Century Small Cap Grow,Multisector Bond,0.04504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
934,Small Cap Growth Fund Class G,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,4.36,0.46,0.62,2.16,10.57,0.59,12.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
935,American Century Small Cap Grow,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,3.82,0.51,0.59,6.31,6.94,0.85,11.47,4.45,0.49,0.54,7.73,5.67,0.95,10.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0
936,American Century Small Cap Grow,Nontraditional Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.02,0.24,0.27,0.86,8.77,0.23,6.8,3.66,0.12,0.42,0.33,6.92,0.56,29.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0
937,American Century Small Cap Grow,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
938,American Century Small Cap Grow,Health,0.2568,-0.12675,-0.24887,0.04366,0.09566,0.00568,0.06282,0.02732,0.06572,0.04374,0.03509,0.45586,0.27339,-0.45437,-0.28174,0.0,-0.13345,0.0,0.0,2.36,0.9,1.35,48.41,23.19,0.64,14.76,1.49,0.94,1.29,41.11,21.31,0.67,13.73,8.28,0.91,1.49,35.57,21.5,0.8,17.64
939,AllianzGI Mid-Cap Value Fund Cl,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
940,NT Global Real Estate - Investo,Health,0.2568,0.0,-0.24887,0.0,0.09566,0.0,0.06282,0.0,0.06572,0.0,0.03509,0.0,0.27339,0.0,-0.28174,0.0,-0.13345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
941,NT Global Real Estate Fund - G ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.43,0.95,0.38,34.22,5.58,0.57,3.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
942,AllianzGI Mid-Cap Value Fund Cl,World Bond,0.12523,0.0,0.04216,0.0,0.15297,0.0,0.05029,0.0,0.08796,0.0,0.1651,0.0,0.29799,0.0,0.11079,0.0,-0.00597,0.0,0.0,-2.48,1.1,0.27,18.5,8.66,0.23,1.49,-0.25,1.12,0.25,18.98,8.2,0.23,1.4,-0.86,0.67,0.14,5.5,8.58,0.12,0.96
943,NT Disciplined Growth - Investo,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
944,Non-U.S. Intrinsic Value Fund C,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
945,NT International Small-Mid Cap ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
946,NT International Small-Mid Cap ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
947,Non-U.S. Intrinsic Value Fund I,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
948,NT International Value - Invest,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
949,NT International Value Fund - G,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
950,Non-U.S. Intrinsic Value Fund C,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
951,AllianzGI Large-Cap Value Fund ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
952,Non-U.S. Intrinsic Value Fund C,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
953,Non-U.S. Intrinsic Value Fund C,Consumer Cyclical,0.4642,0.0,-0.39004,0.0,-0.10166,0.0,0.17716,0.0,-0.04359,0.0,0.11649,0.0,0.35013,0.0,-0.21731,0.0,0.06849,0.0,-0.16587,13.6,1.58,3.09,70.42,33.89,1.05,22.42,16.02,1.49,3.13,64.51,27.02,1.34,25.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0
954,Non-U.S. Intrinsic Value Fund C,Miscellaneous Sector,0.31262,0.0,-0.33986,0.0,0.01815,0.0,0.1485,0.0,0.0159,0.0,0.14628,0.0,0.26847,0.0,-0.1862,0.0,-0.0085,0.0,0.05371,21.83,1.15,3.27,45.06,30.88,1.23,34.22,8.52,1.13,2.09,40.89,25.77,0.93,20.34,-3.84,1.32,0.82,49.29,26.48,0.35,4.38
955,"New Perspective Fund, Class F-2",Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-2.01,1.19,0.86,94.06,21.62,0.42,5.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
956,Aperture New World Opportunitie,Ultrashort Bond,0.0,0.0,0.01688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48,0.09,0.17,15.48,0.85,1.06,9.32,0.58,0.07,0.16,12.94,0.66,1.14,10.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0
957,"New Perspective Fund, Class A S",Convertibles,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.52,1.45,2.03,76.03,18.87,1.22,16.53,6.88,1.41,1.74,74.08,15.0,1.31,14.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0
958,Aperture New World Opportunitie,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.03,0.86,97.62,18.37,0.49,7.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
959,"AB Municipal Income Fund, Inc. ",Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-3.71,0.87,0.47,89.74,16.18,0.27,3.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
960,AllianzGI Convertible Fund Clas,Foreign Large Growth,0.2908,-0.52445,-0.42427,0.0,0.31193,0.0,0.21884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.65,0.88,1.09,92.08,16.12,0.73,12.77,1.88,0.87,1.01,89.41,13.49,0.81,12.28,1.97,0.89,0.65,90.98,14.11,0.51,7.18
961,AllianzGI Convertible Fund Clas,Large Blend,0.32264,0.0,-0.38047,0.0,0.04402,0.0,0.15549,0.0,0.04685,0.0,0.12554,0.0,0.29092,0.0,-0.17842,0.0,-0.05751,0.0,-0.05243,-10.98,0.87,0.47,51.67,22.43,0.2,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
962,Pioneer Balanced ESG Fund Class,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-3.94,0.84,0.42,93.92,15.17,0.25,3.31,-1.91,0.84,0.67,91.55,12.85,0.54,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0
963,American Century One Choice Por,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-4.43,0.7,0.28,79.0,13.95,0.15,1.61,-3.37,0.72,0.44,79.59,11.84,0.35,4.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0
964,Alger Small Cap Focus Fund Clas,Foreign Large Growth,0.2908,0.0,-0.42427,0.0,0.31193,0.0,0.21884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.23,0.83,0.93,84.57,15.94,0.62,11.05,-0.18,0.88,0.84,81.13,14.21,0.63,9.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0
965,Alger Small Cap Focus Fund Clas,Foreign Large Value,0.42878,0.0,-0.44817,0.0,0.20511,0.0,0.22367,0.0,0.27837,0.0,0.22446,0.0,0.53344,0.0,-0.13197,0.0,-0.1785,0.0,0.07676,-3.82,1.07,0.61,91.54,19.72,0.31,4.12,-2.82,1.05,0.78,89.46,16.19,0.5,6.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0
966,Alger Small Cap Focus Fund Clas,Miscellaneous Region,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-12.04,1.35,0.15,67.82,29.05,0.02,-2.9,-13.84,1.33,0.1,64.64,24.24,0.0,-2.29,-7.36,1.01,-0.07,44.98,22.78,-0.06,-4.06
967,Alger Small Cap Focus Fund - Cl,Long Government,-0.16106,0.18029,0.28814,0.10207,0.10177,0.02654,0.01744,0.02266,0.08444,0.04434,0.08879,0.02047,0.01748,0.0,0.0,0.0,0.0,0.0,0.0,-0.67,1.29,0.48,63.29,5.6,0.82,3.53,-1.44,1.37,0.19,72.54,5.22,0.23,0.77,-1.2,1.59,0.32,77.56,5.42,0.6,1.97
968,American Century One Choice Por,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-0.85,1.01,0.82,97.24,18.07,0.47,7.19,-0.33,1.01,0.95,97.04,14.92,0.68,9.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0
969,AllianzGI Focused Growth Fund C,Intermediate Government,-0.006,0.13107,0.12157,0.0,0.0,0.0,0.0,0.0,0.02266,0.0,0.04436,0.0,0.02047,0.0,0.0,0.0,0.0,0.0,0.0,0.66,0.62,0.37,50.31,3.08,1.06,5.18,-0.4,0.7,0.17,62.16,2.91,0.33,1.29,-0.39,0.81,0.21,71.45,2.87,0.65,2.28
970,AB Municipal Income Fund II - O,Europe Stock,0.45163,0.0,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-0.88,1.1,0.88,96.03,19.81,0.47,7.09,-0.85,1.1,0.98,94.3,16.55,0.64,8.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0
971,AB Municipal Income Fund II - O,Europe Stock,0.45163,-0.48832,-0.5025,0.0,0.12364,0.0,0.3424,0.0,0.09267,0.0,0.25554,0.0,0.43609,0.0,-0.15115,0.0,-0.19222,0.0,-0.09983,-1.15,1.33,1.04,93.94,24.14,0.46,6.57,0.01,1.31,1.24,92.23,19.87,0.69,9.55,2.81,1.13,0.84,87.63,18.22,0.52,7.14
972,unlisted,Global Real Estate,0.43403,-0.52028,-0.52561,0.0,-0.06901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-7.68,0.92,0.53,73.87,19.16,0.27,3.68,-7.13,0.93,0.56,72.19,16.01,0.35,4.71,-4.11,0.97,0.5,71.42,16.12,0.34,4.35
973,American Century One Choice Por,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.68,1.11,1.2,84.58,21.74,0.6,10.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
974,American Century One Choice Por,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,-2.72,1.29,0.88,91.22,23.83,0.39,5.12,-2.58,1.27,0.99,87.8,19.79,0.54,7.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0
975,American Century One Choice 204,Corporate Bond,0.13673,0.0,-0.01529,0.0,0.0373,0.0,0.0396,0.0,0.01,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43,1.63,0.69,50.05,7.89,0.9,4.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
976,AllianzGI International Small-C,Corporate Bond,0.13673,0.0,-0.01529,0.0,0.0373,0.0,0.0396,0.0,0.01,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1,1.6,0.74,48.48,7.88,0.97,4.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
977,AllianzGI International Small-C,Infrastructure,0.17684,-0.39185,-0.35299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.05,0.98,0.57,78.25,19.85,0.28,3.78,-7.47,0.96,0.56,73.25,16.32,0.34,4.51,-2.7,0.86,0.53,71.85,14.21,0.4,5.64
978,Once Choice Portfolio: Very Con,Nontraditional Bond,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3,0.1,0.41,0.12,9.37,0.39,34.29,3.62,-0.02,0.39,0.0,7.51,0.48,-196.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0
979,Once Choice Portfolio: Moderate,Corporate Bond,0.13673,-0.02162,-0.01529,0.0,0.0373,0.0,0.0396,0.0,0.01,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9,1.39,0.65,46.53,6.97,0.94,4.72,1.34,1.22,0.4,48.29,5.62,0.65,2.94,0.75,1.04,0.35,49.57,4.42,0.82,3.48
980,Once Choice Portfolio: Conserva,Long-Term Bond,0.06975,0.0,0.04171,0.0,0.03732,0.0,0.0396,0.0,0.01002,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.53,2.75,0.91,63.5,11.83,0.82,3.43,0.88,2.54,0.57,65.89,10.04,0.57,2.12,-0.21,2.55,0.62,69.77,9.12,0.75,2.62
981,Once Choice Portfolio: Very Agg,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
982,Once Choice Portfolio: Aggressi,World Bond,0.12523,0.0,0.04216,0.0,0.15297,0.0,0.05029,0.0,0.08796,0.0,0.1651,0.0,0.29799,0.0,0.11079,0.0,-0.00597,0.0,0.0,-3.76,1.22,0.2,47.75,6.02,0.2,0.84,-2.13,1.27,0.12,39.16,6.48,0.04,0.06,-2.63,1.09,0.08,22.82,6.84,0.06,0.16
983,AllianzGI Emerging Markets Oppo,Short-Term Bond,0.05046,-0.00076,0.02696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.13,0.54,0.38,30.95,3.31,1.0,6.22,0.93,0.46,0.25,31.53,2.65,0.69,3.92,0.69,0.34,0.19,26.13,2.0,0.82,4.82
984,AllianzGI Emerging Markets Oppo,Technology,0.76085,0.0,-0.4716,0.0,0.08189,0.0,0.09552,0.0,0.01256,0.0,0.06733,0.0,0.65015,0.0,-0.44541,0.0,-0.32203,0.0,-0.42203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
985,AllianzGI Emerging Markets Oppo,Foreign Large Growth,0.2908,0.0,-0.42427,0.0,0.31193,0.0,0.21884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.72,0.72,1.13,78.54,14.22,0.87,16.96,4.84,0.69,1.1,72.13,11.84,1.01,17.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0
986,Angel Oak UltraShort Income Fun,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,2.8,0.79,0.6,6.2,10.82,0.55,7.1,4.03,0.75,0.55,7.36,8.79,0.62,6.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0
987,Angel Oak UltraShort Income Fun,High Yield Bond,0.41327,0.0,-0.29406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
988,American Century One Choice Por,Short-Term Bond,0.05046,0.0,0.02696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
989,AB Municipal Income Fund II - P,Corporate Bond,0.13673,0.0,-0.01529,0.0,0.0373,0.0,0.0396,0.0,0.01,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
990,AB Municipal Income Fund II - P,Foreign Large Blend,0.38882,0.0,-0.44749,0.0,0.29141,0.0,0.19521,0.0,0.19425,0.0,0.19488,0.0,0.44137,0.0,-0.14519,0.0,-0.19887,0.0,0.03012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
991,Cavanal Hill Active Core Fund N,Small Growth,0.37529,-0.32871,-0.42753,0.05493,0.09557,0.10302,0.10678,0.08987,0.07208,0.21613,0.16975,0.37052,0.44402,-0.15547,-0.28259,-0.0138,-0.0669,0.0,0.0,-7.26,1.2,1.26,83.46,24.27,0.57,9.76,-2.83,1.18,1.46,75.92,20.27,0.81,13.15,-2.38,1.15,1.21,76.38,17.84,0.78,11.45
992,Cavanal Hill Bond Fund No Load ,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
993,AMG Managers Pictet Internation,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
994,AMG Managers Pictet Internation,Long-Term Bond,0.06975,0.0,0.04171,0.0,0.03732,0.0,0.0396,0.0,0.01002,0.0,0.05913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.41,2.81,0.85,92.01,10.06,0.9,3.18,-0.14,2.66,0.5,91.04,8.95,0.55,1.75,-0.8,2.75,0.62,88.85,8.72,0.78,2.43
995,Artisan Global Discovery Fund -,Mid-Cap Value,0.41481,-0.3601,-0.39308,-0.05793,-0.06914,0.18417,0.16041,0.11564,0.0797,0.0,0.19937,0.0,0.38743,0.0,-0.10024,0.0,0.07048,0.0,0.0,-10.42,1.21,1.02,82.96,24.64,0.45,6.81,-7.43,1.18,1.08,79.76,19.74,0.6,8.75,-3.95,1.12,1.06,82.55,16.82,0.72,9.95
996,Artisan High Income Fund Adviso,unknown,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
997,Artisan Global Value Fund Advis,Energy Limited Partnership,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-20.16,2.08,0.86,62.04,47.57,0.19,-1.19,-21.77,2.0,0.55,59.06,37.93,0.14,-0.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0
998,Artisan Global Equity Fund Advi,Foreign Large Growth,0.2908,0.0,-0.42427,0.0,0.31193,0.0,0.21884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.97,1.02,0.73,83.11,19.61,0.38,5.71,-3.34,1.01,0.7,74.34,17.15,0.42,5.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0