forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - FW Renegade and Heretics.cat
8257 lines (8257 loc) · 642 KB
/
Chaos - FW Renegade and Heretics.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="2ebb-7865-3983-640d" name="Chaos - Renegades & Heretics" revision="48" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Mad_Spy" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="7" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="2ebb-7865-pubN72363" name="Codex: Astra Militarum"/>
</publications>
<categoryEntries>
<categoryEntry id="88b6-e3a4-5a78-7224" name="Baneblade" hidden="false"/>
<categoryEntry id="4a8b-91d1-9513-3499" name="Chimera" hidden="false"/>
<categoryEntry id="dfae-b257-31a1-74fa" name="Hellhound" hidden="false"/>
<categoryEntry id="76a3-7392-9fef-639d" name="Scout Sentinels" hidden="false"/>
<categoryEntry id="474f-e7ea-c714-6eb4" name="Armoured Sentinel" hidden="false"/>
<categoryEntry id="ab04-e20f-6785-3cb5" name="Salamander scout tank" hidden="false"/>
<categoryEntry id="2e45-c856-4cc0-3c6a" name="Arvus lighter" hidden="false"/>
<categoryEntry id="426c-44f4-90e3-2d42" name="Valkyries" hidden="false"/>
<categoryEntry id="0c39-4a04-aab4-e207" name="Leman Russ Battle Tank" hidden="false"/>
<categoryEntry id="7c09-06dc-b80a-1b6f" name="Leman Russ Demolishers" hidden="false"/>
<categoryEntry id="cacf-321b-e39c-fab5" name="Basilisk" hidden="false"/>
<categoryEntry id="2e75-ce0b-19f1-f552" name="Medusa" hidden="false"/>
<categoryEntry id="0784-3cbd-b606-d5d3" name="Griffon" hidden="false"/>
<categoryEntry id="8245-dbbb-df2b-996b" name="Wyvern" hidden="false"/>
<categoryEntry id="1e5b-4df9-ff51-79d7" name="Hydra" hidden="false"/>
<categoryEntry id="624c-4297-c738-3e80" name="Colossus bombard" hidden="false"/>
<categoryEntry id="2ba2-a994-6d4b-c9de" name="Earthshaker battery" hidden="false"/>
<categoryEntry id="31e6-7a0c-40a8-782b" name="Medusa battery" hidden="false"/>
<categoryEntry id="f956-18fd-dbd1-35b0" name="Rapier laser destroyer" hidden="false"/>
<categoryEntry id="43fe-116b-8e83-9493" name="Heavy quad launcher battery" hidden="false"/>
<categoryEntry id="1ade-b814-540b-af8a" name="Heavy mortar battery" hidden="false"/>
<categoryEntry id="7fa8-eb21-77a6-5729" name="Malcador heavy tank" hidden="false"/>
<categoryEntry id="502d-da89-0312-1df1" name="Minotaur artillery tank" hidden="false"/>
<categoryEntry id="9972-756f-2114-0371" name="Malcador defender" hidden="false"/>
<categoryEntry id="a77b-1d03-a608-2359" name="Renegade Commander" hidden="false"/>
<categoryEntry id="4acb-cb6a-2058-4217" name="Malefic lord" hidden="false"/>
<categoryEntry id="bb27-3e52-da09-e073" name="Rogue psyker coven" hidden="false"/>
<categoryEntry id="fb2e-8635-8778-a9e4" name="Renegade cultists" hidden="false"/>
<categoryEntry id="d778-ce62-7674-495d" name="Renegade Militia squad" hidden="false"/>
<categoryEntry id="60df-4bb1-a831-9d5c" name="Renegade mutant rabble" hidden="false"/>
<categoryEntry id="ca4f-19a8-9864-c10b" name="Chaos spawn" hidden="false"/>
<categoryEntry id="b977-d51f-9056-bd0a" name="Renegade command squad" hidden="false"/>
<categoryEntry id="9cf3-f942-4e72-f1a8" name="Renegade disciple squad" hidden="false"/>
<categoryEntry id="5c7e-3d6b-cd9e-65c4" name="Renegade enforcer" hidden="false"/>
<categoryEntry id="7e94-5912-e407-43ca" name="Renegade marauder squad" hidden="false"/>
<categoryEntry id="94de-e41c-db46-917d" name="Renegade ogryn beast handlers" hidden="false"/>
<categoryEntry id="b434-566e-a3d5-e9a5" name="Renegade ogryn brutes" hidden="false"/>
<categoryEntry id="dfe7-1721-b839-f85e" name="Renegade plague ogryns" hidden="false"/>
<categoryEntry id="7901-d348-894f-2eb2" name="Renegade heavy weapons squad" hidden="false"/>
<categoryEntry id="05a7-e634-b238-5f56" name="Faction: Renegades and Heretics" hidden="false"/>
<categoryEntry id="be7b-34e0-86c1-16c8" name="Salamander" hidden="false"/>
<categoryEntry id="875c-33dc-468f-18ad" name="Medusa Carriage" hidden="false"/>
<categoryEntry id="807c-005f-b685-8105" name="Renegade crew" hidden="false"/>
<categoryEntry id="51ba-bf3a-9815-3d9b" name="Earthshaker Carriage Battery" hidden="false"/>
<categoryEntry id="8967-cec8-8407-71b7" name="Armageddon Pattern Medusa" hidden="false"/>
<categoryEntry id="6d36-966a-783c-ec86" name="Macharius Heavy Tank" hidden="false"/>
<categoryEntry id="4ff4-6dd4-fe80-c867" name="Macharius" hidden="false"/>
<categoryEntry id="28b4-0363-b329-8c7e" name="Macharius Omega" hidden="false"/>
<categoryEntry id="fb63-3e4c-88aa-de49" name="Macharius Vanquisher" hidden="false"/>
<categoryEntry id="abbf-901b-b033-d48c" name="Macharius Vulcan" hidden="false"/>
<categoryEntry id="8949-e40b-576b-a519" name="Valdor Tank Hunter" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="1452-4de7-f3c8-6b49" name="Chimera" hidden="false" collective="false" import="true" targetId="ce6c-996a-ef9e-96c6" type="selectionEntry">
<categoryLinks>
<categoryLink id="6eac-c566-948f-54be" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="7760-d9e9-5e18-2b98" name="New CategoryLink" hidden="false" targetId="4a8b-91d1-9513-3499" primary="false"/>
<categoryLink id="ba86-5df5-2ec3-d1f0" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
<categoryLink id="575a-5a39-097c-ac96" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="a694-fdaf-1426-d359" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="67c5-061e-428d-4cb6" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="cf05-89e6-4576-a20e" name="Hellhounds" hidden="false" collective="false" import="true" targetId="612a-6d26-a77f-109f" type="selectionEntry">
<categoryLinks>
<categoryLink id="518c-bdd9-e5e9-7ddd" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="9546-b65d-349e-59e7" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="2a1f-3928-be34-b9ac" name="New CategoryLink" hidden="false" targetId="dfae-b257-31a1-74fa" primary="false"/>
<categoryLink id="15ef-f276-1a2e-9957" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="3893-c709-cc35-a5a2" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="e156-8f47-9f8e-b817" name="Scout Sentinel" hidden="false" collective="false" import="true" targetId="f10f-04e6-82fe-325e" type="selectionEntry">
<categoryLinks>
<categoryLink id="fd35-26b3-6f9c-f62b" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="44e8-62eb-365c-17b8" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="62e2-18e5-d9cd-d96d" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="3deb-551b-30f5-8570" name="New CategoryLink" hidden="false" targetId="76a3-7392-9fef-639d" primary="false"/>
<categoryLink id="e69e-b29f-027f-e76d" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d4e6-a5b6-c879-0e9c" name="Armoured Sentinels" hidden="false" collective="false" import="true" targetId="8f0e-3754-e3eb-d3de" type="selectionEntry">
<categoryLinks>
<categoryLink id="21ca-c24f-41ee-0c5e" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="bdb9-7900-f243-9cb2" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="26b6-847d-23e2-2cd4" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="773c-885e-f019-22d3" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="48e9-158b-fb2e-3644" name="Valkyries" hidden="false" collective="false" import="true" targetId="74c5-585f-681a-bcd6" type="selectionEntry">
<categoryLinks>
<categoryLink id="1b45-004c-f56c-dada" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="693f-c321-d065-1a1a" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="ebc9-1b03-bae9-85ae" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="a830-3b03-02d9-af25" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="970f-40e3-4820-4482" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="e20b-2b1b-b6c0-11bd" name="New CategoryLink" hidden="false" targetId="426c-44f4-90e3-2d42" primary="false"/>
<categoryLink id="af80-93c5-867e-770c" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3965-3c37-ec93-e6f7" name="Leman Russ Battle Tanks" hidden="false" collective="false" import="true" targetId="e561-9387-a1e4-f36f" type="selectionEntry">
<categoryLinks>
<categoryLink id="867e-e27d-be23-9c9f" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="1db1-d635-ce13-4baf" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="dc84-682b-f3de-8722" name="New CategoryLink" hidden="false" targetId="0c39-4a04-aab4-e207" primary="false"/>
<categoryLink id="1724-1901-724f-c4a7" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="c36f-538e-2c7f-4326" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2c13-7f4b-3667-9886" name="Basilisks" hidden="false" collective="false" import="true" targetId="1baa-1e0e-7dfb-a708" type="selectionEntry">
<categoryLinks>
<categoryLink id="6fbc-3494-df81-b62c" name="New CategoryLink" hidden="false" targetId="cacf-321b-e39c-fab5" primary="false"/>
<categoryLink id="1d2e-c7ed-63b9-f469" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="8108-7249-830b-a9eb" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="308c-6bdb-870a-8c4a" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="dcc4-b848-4c60-812b" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6d12-2585-53f8-1da9" name="Wyverns" hidden="false" collective="false" import="true" targetId="26b9-6102-d337-a575" type="selectionEntry">
<categoryLinks>
<categoryLink id="0c1c-325e-f286-e952" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="8ac1-7304-cd6b-13c5" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="7391-703d-e6d5-9bbd" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="1e47-05a5-3cb4-8ed9" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="0522-92ec-14d6-4433" name="New CategoryLink" hidden="false" targetId="8245-dbbb-df2b-996b" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5cff-be27-fd14-7c4b" name="Hydras" hidden="false" collective="false" import="true" targetId="282e-bbbe-2768-f837" type="selectionEntry">
<categoryLinks>
<categoryLink id="6d8f-61a5-b01b-c1fb" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="c520-897c-9e26-2c10" name="New CategoryLink" hidden="false" targetId="1e5b-4df9-ff51-79d7" primary="false"/>
<categoryLink id="bd61-08bf-1f52-50ea" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="be61-69f3-bc9d-563a" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="38e2-644c-682b-5f75" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f412-bdfe-e5bb-dab7" name="Baneblade" hidden="false" collective="false" import="true" targetId="f8a8-c9ab-77ce-ef91" type="selectionEntry">
<categoryLinks>
<categoryLink id="ef6d-d568-5bf2-009d" name="New CategoryLink" hidden="false" targetId="88b6-e3a4-5a78-7224" primary="false"/>
<categoryLink id="1d43-1749-3f06-4b04" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="e0e4-1313-11ad-1846" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="3b10-afb2-5316-d719" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="8082-ed47-6b6e-dc26" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="5b43-2388-6d59-fbc3" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="e5e6-4d4a-7b96-f96b" name="Salamander Scout Tank" hidden="false" collective="false" import="true" targetId="f577-9ed4-753c-496a" type="selectionEntry">
<categoryLinks>
<categoryLink id="50b2-a74b-fd56-0527" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="8048-2d59-c297-00b7" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="faba-f752-c04d-fe3e" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="96d2-dee5-8fc5-355f" name="New CategoryLink" hidden="false" targetId="ab04-e20f-6785-3cb5" primary="false"/>
<categoryLink id="4d45-80d1-751d-227e" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="06ed-72dd-9d21-a6a6" name="New CategoryLink" hidden="false" targetId="be7b-34e0-86c1-16c8" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d2b7-cc1f-1610-afdf" name="Arvus Lighter" hidden="false" collective="false" import="true" targetId="8cbc-4a63-75a4-9b5f" type="selectionEntry">
<categoryLinks>
<categoryLink id="9e6d-292c-6f73-0b2f" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="a286-911f-db02-b683" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="a12b-3ada-0542-2a67" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="9c33-258d-4782-59cb" name="New CategoryLink" hidden="false" targetId="2e45-c856-4cc0-3c6a" primary="false"/>
<categoryLink id="efe4-dd7b-7dbc-c2fd" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="d871-c21d-c316-812d" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="df5e-0a88-62d2-4058" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="e08b-0620-e311-ee08" name="Griffon Carrier" hidden="false" collective="false" import="true" targetId="9909-2de5-efce-2dcf" type="selectionEntry">
<categoryLinks>
<categoryLink id="0921-fde3-d2ec-e55e" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="055d-32ef-3646-20d2" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="0ab8-d584-df56-9798" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="83cc-8212-a14e-c952" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="3f6e-74d0-79c0-19f3" name="New CategoryLink" hidden="false" targetId="0784-3cbd-b606-d5d3" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="57ae-da01-eca7-864c" name="Colossus Bombard" hidden="false" collective="false" import="true" targetId="ec08-d0ef-748e-9384" type="selectionEntry">
<categoryLinks>
<categoryLink id="7ac9-2665-9019-57c9" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="25f7-23bc-cca1-d62c" name="New CategoryLink" hidden="false" targetId="624c-4297-c738-3e80" primary="false"/>
<categoryLink id="1243-f167-1d8e-92f9" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="c3bd-2995-1485-08b6" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="bddf-e8b7-2f44-faab" name="Earthshaker Battery" hidden="false" collective="false" import="true" targetId="b669-a64d-0042-dcea" type="selectionEntry">
<categoryLinks>
<categoryLink id="a358-35e3-9731-bbb7" name="New CategoryLink" hidden="false" targetId="ae37-74e2-8391-d0f8" primary="false"/>
<categoryLink id="00bd-bc25-7c34-39dd" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="3437-734e-2245-1af6" name="New CategoryLink" hidden="false" targetId="2ba2-a994-6d4b-c9de" primary="false"/>
<categoryLink id="1a6c-2544-bbb7-55e5" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="3974-f331-736d-3870" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ee5a-2faa-c964-96e9" name="Medusa Carriage Battery" hidden="false" collective="false" import="true" targetId="373b-7c46-21a0-0f4f" type="selectionEntry">
<categoryLinks>
<categoryLink id="ec76-7a46-bf8e-6909" name="New CategoryLink" hidden="false" targetId="ae37-74e2-8391-d0f8" primary="false"/>
<categoryLink id="767f-2553-bf4c-deed" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="6cbe-d52d-f15c-c17d" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="c86c-4d91-56f9-a895" name="New CategoryLink" hidden="false" targetId="2e75-ce0b-19f1-f552" primary="false"/>
<categoryLink id="abdd-8e3a-8bff-3cb4" name="New CategoryLink" hidden="false" targetId="875c-33dc-468f-18ad" primary="false"/>
<categoryLink id="5444-b0b1-eb56-57c3" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="4c8f-a9d5-5cd7-7ea2" name="New CategoryLink" hidden="false" targetId="807c-005f-b685-8105" primary="false"/>
<categoryLink id="d92c-cede-f52c-5db3" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2937-50dd-2515-3094" name="Rapier Laser Destroyer" hidden="false" collective="false" import="true" targetId="204d-4ceb-4e9d-59cf" type="selectionEntry">
<categoryLinks>
<categoryLink id="3cb0-e0fd-e7e5-6d42" name="New CategoryLink" hidden="false" targetId="ae37-74e2-8391-d0f8" primary="false"/>
<categoryLink id="fe71-e039-2329-63da" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="157b-8651-de79-c9ac" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="0056-aea1-8419-e8e1" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="49c5-d25f-e4ad-b787" name="New CategoryLink" hidden="false" targetId="f956-18fd-dbd1-35b0" primary="false"/>
<categoryLink id="da71-d760-fb40-ba75" name="New CategoryLink" hidden="false" targetId="807c-005f-b685-8105" primary="false"/>
<categoryLink id="9819-ddeb-92fc-56d8" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="f757-3f82-a62e-bbac" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6b7e-296f-7ed7-eff1" name="Heavy Quad Launcher Battery" hidden="false" collective="false" import="true" targetId="ecbb-c438-3d6e-2713" type="selectionEntry">
<categoryLinks>
<categoryLink id="62ed-7524-1fd8-ccc1" name="New CategoryLink" hidden="false" targetId="ae37-74e2-8391-d0f8" primary="false"/>
<categoryLink id="706f-a16c-2f10-0275" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="42d0-caa9-8544-40a2" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="69d5-512f-4e92-c370" name="New CategoryLink" hidden="false" targetId="43fe-116b-8e83-9493" primary="false"/>
<categoryLink id="5df2-1806-5dbb-4d1d" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="b6c3-f38e-f6a0-ce39" name="New CategoryLink" hidden="false" targetId="807c-005f-b685-8105" primary="false"/>
<categoryLink id="446a-c96b-c84f-d0e0" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="c42e-070d-41ee-ec15" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6846-0952-3ff9-9567" name="Heavy Mortar Battery" hidden="false" collective="false" import="true" targetId="169a-1452-28c0-5b20" type="selectionEntry">
<categoryLinks>
<categoryLink id="5e76-d7bd-d66c-2c92" name="New CategoryLink" hidden="false" targetId="ae37-74e2-8391-d0f8" primary="false"/>
<categoryLink id="e650-81b5-ab24-fe36" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="0b4e-24a1-2b87-48d4" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="ebd6-6988-1735-fc7a" name="New CategoryLink" hidden="false" targetId="1ade-b814-540b-af8a" primary="false"/>
<categoryLink id="36db-5dd8-7662-d3e1" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="f399-ccaf-e6af-9df7" name="New CategoryLink" hidden="false" targetId="807c-005f-b685-8105" primary="false"/>
<categoryLink id="e5e3-dcd4-8ec5-7c8a" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="7fac-6a9f-94c3-1890" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1d16-015f-f4f3-e6df" name="Malcador Heavy Tank" hidden="false" collective="false" import="true" targetId="1a11-2819-6d6f-de2f" type="selectionEntry">
<categoryLinks>
<categoryLink id="4e2f-b2c1-05bf-3cb0" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="bd19-e48b-c861-0f75" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="a5cd-9d65-f9eb-1003" name="New CategoryLink" hidden="false" targetId="7fa8-eb21-77a6-5729" primary="false"/>
<categoryLink id="0b85-32a1-ffa6-646d" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="b0d5-9023-d435-03d2" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="49e3-e4f0-4b16-b440" name="Minotaur Artillery Tank" hidden="false" collective="false" import="true" targetId="031a-e2e5-41bb-dffe" type="selectionEntry">
<categoryLinks>
<categoryLink id="a98f-b40a-7cfa-e6d2" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="f916-bfdb-d838-03ab" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="ae5f-02a7-bd96-2c03" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="55d0-e4fc-b02d-38e7" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="8a47-d758-ebd5-db9b" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="a79b-e843-0402-1602" name="New CategoryLink" hidden="false" targetId="502d-da89-0312-1df1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="7642-ef61-c07c-5f61" name="Malcador Defender" hidden="false" collective="false" import="true" targetId="4c6a-39ff-25ee-cc18" type="selectionEntry">
<categoryLinks>
<categoryLink id="1754-7c60-a5ff-a8c5" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="70e5-664d-a272-9b6e" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="6fc2-048d-1045-248d" name="New CategoryLink" hidden="false" targetId="9972-756f-2114-0371" primary="false"/>
<categoryLink id="ba2a-96af-f802-326b" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="ff17-182e-9c6b-6108" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2e09-f391-cfb8-31f6" name="Renegade Commander" hidden="false" collective="false" import="true" targetId="cda3-d266-53b8-4d6c" type="selectionEntry">
<categoryLinks>
<categoryLink id="37c8-a867-75be-50f2" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="59fe-33bc-f2fd-767d" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="f067-1ef3-3d56-7246" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="9f9b-ebdc-c767-479c" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="051d-0458-9bee-d3e9" name="New CategoryLink" hidden="false" targetId="a77b-1d03-a608-2359" primary="false"/>
<categoryLink id="4488-6004-90f4-54e9" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1a8c-ddc9-8eac-684b" name="Malefic Lord" hidden="false" collective="false" import="true" targetId="d223-05e1-9e8e-2ffc" type="selectionEntry">
<categoryLinks>
<categoryLink id="de82-a515-3d25-97f4" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="f1b9-40f3-75c9-ede0" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="bf5d-237b-1f75-2e2c" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="ee12-0a3b-8559-0ee5" name="New CategoryLink" hidden="false" targetId="4acb-cb6a-2058-4217" primary="false"/>
<categoryLink id="d3b2-137b-447f-ba70" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="917f-ee51-553f-8472" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8b24-68ab-4bb7-7898" name="Rogue Psyker Coven" hidden="false" collective="false" import="true" targetId="cc2b-c20c-6216-b16f" type="selectionEntry">
<categoryLinks>
<categoryLink id="761c-0625-de98-1d92" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="5010-9ef5-04eb-d90b" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="c53d-0ce9-e02b-6460" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="7279-0eee-064a-f190" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="5298-d2d2-332c-eb52" name="New CategoryLink" hidden="false" targetId="bb27-3e52-da09-e073" primary="false"/>
<categoryLink id="af88-9f96-cc3d-e20a" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1ce5-1a7f-8270-cf5d" name="Renegade Cultists" hidden="false" collective="false" import="true" targetId="f774-b101-2d53-46e1" type="selectionEntry">
<categoryLinks>
<categoryLink id="a699-03e8-0206-5cc2" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="5da3-7ef3-7ffa-56ac" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="d129-4512-b5b5-10b3" name="New CategoryLink" hidden="false" targetId="fb2e-8635-8778-a9e4" primary="false"/>
<categoryLink id="ee5c-e79b-f3a1-ee67" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="ce7c-ff19-3d68-b743" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b438-81a9-8d60-7a5a" name="Renegade Militia Squad" hidden="false" collective="false" import="true" targetId="517d-ad0d-cf72-801f" type="selectionEntry">
<categoryLinks>
<categoryLink id="ed11-7e9a-2f6f-6dc1" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="708f-91e8-780d-d0ed" name="New CategoryLink" hidden="false" targetId="d778-ce62-7674-495d" primary="false"/>
<categoryLink id="9b21-62c6-5461-08e5" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="0a71-2312-540e-97f8" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="06a0-d1c7-fa4b-3bba" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4665-38df-218e-6316" name="Renegade Mutant Rabble" hidden="false" collective="false" import="true" targetId="4dc8-e8be-e022-9709" type="selectionEntry">
<categoryLinks>
<categoryLink id="47fc-8dfb-7c45-4585" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="73aa-5a76-48eb-285d" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="1a9a-4b88-7083-4a73" name="New CategoryLink" hidden="false" targetId="60df-4bb1-a831-9d5c" primary="false"/>
<categoryLink id="c3d3-f9de-a933-c278" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="5a4b-c401-e127-4962" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="272e-b9e4-d9c8-6553" name="Chaos Spawn" hidden="false" collective="false" import="true" targetId="1e8f-c28e-ac77-5696" type="selectionEntry">
<categoryLinks>
<categoryLink id="11c8-2374-91f1-f000" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="2b48-5212-33f3-b989" name="New CategoryLink" hidden="false" targetId="ca4f-19a8-9864-c10b" primary="false"/>
<categoryLink id="b88a-6e34-869b-b224" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="ab18-e597-98e2-3612" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="52c0-84d8-d369-23d7" name="New CategoryLink" hidden="false" targetId="7892-58f7-e769-4d87" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c229-a576-d012-40b6" name="Renegade Command Squad" hidden="false" collective="false" import="true" targetId="cc3f-6d53-eca2-8c6b" type="selectionEntry">
<categoryLinks>
<categoryLink id="6f07-7912-0d08-eef4" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="bed9-54dd-bd54-dee9" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="aaeb-ea41-cd09-9fca" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="22bf-fbce-c511-7f1a" name="New CategoryLink" hidden="false" targetId="b977-d51f-9056-bd0a" primary="false"/>
<categoryLink id="550a-90c4-d4de-3874" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="578c-04f3-3650-3f15" name="Renegade Diciple Squad" hidden="false" collective="false" import="true" targetId="478b-40b6-b779-32f7" type="selectionEntry">
<categoryLinks>
<categoryLink id="8e01-ef80-e36a-7b5d" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="4146-5674-b01b-1a7c" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="77b3-2e42-9d72-2205" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="dd25-94d5-4f15-4a6b" name="New CategoryLink" hidden="false" targetId="9cf3-f942-4e72-f1a8" primary="false"/>
<categoryLink id="2839-71c6-f6ab-31f9" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="954c-0b7b-6dc6-2144" name="Renegade Enforcer" hidden="false" collective="false" import="true" targetId="0427-f5b6-5352-03af" type="selectionEntry">
<categoryLinks>
<categoryLink id="c8b3-b1b8-2c41-3572" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="c7b8-bb0b-709e-e537" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="4fee-21ef-777f-091b" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="4ae2-70d9-035a-1756" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="2821-8122-027b-73b5" name="New CategoryLink" hidden="false" targetId="5c7e-3d6b-cd9e-65c4" primary="false"/>
<categoryLink id="8834-a0ba-2a2e-6c06" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3816-7754-a610-e575" name="Renegade Marauder Squad" hidden="false" collective="false" import="true" targetId="6255-2a76-09b9-3266" type="selectionEntry">
<categoryLinks>
<categoryLink id="f918-25a7-0b8f-0835" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="d725-4c97-06da-7875" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="0471-3c00-6d9e-42ff" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="0765-49c5-4982-33ed" name="New CategoryLink" hidden="false" targetId="7e94-5912-e407-43ca" primary="false"/>
<categoryLink id="c8f9-5198-1375-644a" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d4d7-040f-2f73-9fc0" name="Renegade Ogryn Beast Handlers" hidden="false" collective="false" import="true" targetId="13d7-9571-835e-7234" type="selectionEntry">
<categoryLinks>
<categoryLink id="4fd8-9fc6-b315-1745" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="fb7b-8f3a-4bb9-15f5" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="3ba4-69ff-af3e-f54f" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="875c-6730-ba0b-787e" name="New CategoryLink" hidden="false" targetId="94de-e41c-db46-917d" primary="false"/>
<categoryLink id="1269-1522-ba32-6b7a" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2d83-4d55-6170-0bc3" name="Renegade Ogryn Brutes" hidden="false" collective="false" import="true" targetId="21dc-2976-757a-6155" type="selectionEntry">
<categoryLinks>
<categoryLink id="25f4-7b4f-798d-7bdf" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="0184-73b9-6d27-8520" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="ed71-d394-40f7-893d" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="6ff6-f99d-a552-b070" name="New CategoryLink" hidden="false" targetId="b434-566e-a3d5-e9a5" primary="false"/>
<categoryLink id="e4ef-7497-a3cb-4254" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f4dc-b99d-e38c-58aa" name="Renegade Plague Ogryns" hidden="false" collective="false" import="true" targetId="4b6f-1875-54be-c4f5" type="selectionEntry">
<categoryLinks>
<categoryLink id="e00c-1856-7624-11b0" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="7e66-26d7-f23a-f27c" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="88e7-f15f-554e-0e5e" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="b8ae-cc6d-89e8-e481" name="New CategoryLink" hidden="false" targetId="dfe7-1721-b839-f85e" primary="false"/>
<categoryLink id="91eb-c1f2-43ad-6bdc" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="cc30-9717-e85c-a8c7" name="Renegade Heavy Weapons Squad" hidden="false" collective="false" import="true" targetId="8a62-9d87-e2ab-cb57" type="selectionEntry">
<categoryLinks>
<categoryLink id="0d71-14cc-1227-2ad9" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="a468-ef41-4911-cd3a" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="227c-98e0-f101-11e5" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="2143-ea40-161e-2385" name="New CategoryLink" hidden="false" targetId="7901-d348-894f-2eb2" primary="false"/>
<categoryLink id="800e-0f8d-e08e-b10e" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1742-5e3f-69d4-70cb" name="Earthshaker Carriage Battery" hidden="false" collective="false" import="true" targetId="56f8-7b53-21fe-1e38" type="selectionEntry">
<categoryLinks>
<categoryLink id="7913-9290-383d-c1dd" name="New CategoryLink" hidden="false" targetId="ae37-74e2-8391-d0f8" primary="false"/>
<categoryLink id="f1d3-2316-f0ae-5764" name="New CategoryLink" hidden="false" targetId="51ba-bf3a-9815-3d9b" primary="false"/>
<categoryLink id="5f76-2266-5a8b-d550" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="6833-e974-5884-49cd" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="1342-60e0-7d6f-6940" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="74c9-736a-5575-9aec" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ecdd-ec97-b100-0041" name="Armageddon Pattern Medusa" hidden="false" collective="false" import="true" targetId="e057-dec0-9a93-9be6" type="selectionEntry">
<categoryLinks>
<categoryLink id="18e9-adb9-dfc2-3a2e" name="New CategoryLink" hidden="false" targetId="8967-cec8-8407-71b7" primary="false"/>
<categoryLink id="5ac7-3fc4-16f3-a1b9" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="6cc9-3631-b8ec-f79e" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="18f7-bb28-9623-9615" name="New CategoryLink" hidden="false" targetId="2e75-ce0b-19f1-f552" primary="false"/>
<categoryLink id="25be-82f2-68c5-85e7" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="850a-75f6-142e-67b3" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="27c4-12da-e980-00f9" name="Macharius Heavy Tank" hidden="false" collective="false" import="true" targetId="fa94-11df-1e4f-3a89" type="selectionEntry">
<categoryLinks>
<categoryLink id="dfe6-2098-ea16-2088" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="c51c-57f5-2a0a-945b" name="New CategoryLink" hidden="false" targetId="4ff4-6dd4-fe80-c867" primary="false"/>
<categoryLink id="36b6-702a-c39c-f021" name="New CategoryLink" hidden="false" targetId="6d36-966a-783c-ec86" primary="false"/>
<categoryLink id="dceb-7737-ba78-9013" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="383c-f6d7-5492-d932" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="b3ec-69bc-ecea-fcb3" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="c1a8-a5d4-5ae1-24a9" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="feaf-eb70-d8ed-648c" name="Macharius Omega" hidden="false" collective="false" import="true" targetId="8a94-f806-d08c-411d" type="selectionEntry">
<categoryLinks>
<categoryLink id="a4f0-fe30-eb68-df0b" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="cfcd-3180-8589-f392" name="New CategoryLink" hidden="false" targetId="4ff4-6dd4-fe80-c867" primary="false"/>
<categoryLink id="6990-a7c0-2e04-a72e" name="New CategoryLink" hidden="false" targetId="28b4-0363-b329-8c7e" primary="false"/>
<categoryLink id="e140-8fa4-44df-04cc" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="b6ff-a017-14ff-2229" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="ea13-f900-883c-f856" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="6f08-1eda-70c4-6fe8" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="396d-2f97-3a0a-6f78" name="Macharius Vanquisher" hidden="false" collective="false" import="true" targetId="e896-095b-6e7f-284e" type="selectionEntry">
<categoryLinks>
<categoryLink id="e6fb-d251-6987-bcbc" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="9e46-316e-77e8-ca6d" name="New CategoryLink" hidden="false" targetId="4ff4-6dd4-fe80-c867" primary="false"/>
<categoryLink id="a0ad-9a25-7e69-9df2" name="New CategoryLink" hidden="false" targetId="fb63-3e4c-88aa-de49" primary="false"/>
<categoryLink id="9206-29c2-68b0-422e" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="477d-de5c-3d98-45a1" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="4674-3ddc-8146-6bb6" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="5f5b-10c1-2d94-3675" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1167-2690-a635-5d05" name="Macharius Vulcan" hidden="false" collective="false" import="true" targetId="4082-f3f1-7749-dc87" type="selectionEntry">
<categoryLinks>
<categoryLink id="cc8a-c49e-198e-9998" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="6160-7351-381c-df97" name="New CategoryLink" hidden="false" targetId="4ff4-6dd4-fe80-c867" primary="false"/>
<categoryLink id="d4fa-6166-53ea-a3c5" name="New CategoryLink" hidden="false" targetId="abbf-901b-b033-d48c" primary="false"/>
<categoryLink id="9fce-3b31-784f-bc03" name="New CategoryLink" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="a578-7d7f-2afe-9427" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="901e-e5c5-e667-0be6" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="0890-2a4f-1573-8f8c" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="04e9-e376-c98e-fca0" name="Chaos Covenant" hidden="false" collective="false" import="true" targetId="6a6f-327e-1b3b-154e" type="selectionEntry">
<categoryLinks>
<categoryLink id="1cf1-093f-97a5-139a" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3ed7-04c8-7e1c-c938" name="Valdor Tank Hunter" hidden="false" collective="false" import="true" targetId="6100-9b7a-6db6-c0b4" type="selectionEntry">
<categoryLinks>
<categoryLink id="123b-9508-9f82-4e38" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="4771-b9e9-0ce6-244f" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="4579-57d8-1688-1572" name="Renegades And Heretics" hidden="false" targetId="05a7-e634-b238-5f56" primary="false"/>
<categoryLink id="5f9a-8674-362d-7c59" name="Vehicle" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="86e0-6443-5e6e-30a3" name="Titanic" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="bc8e-959c-0804-a34b" name="Valdor Tank Hunter" hidden="false" targetId="8949-e40b-576b-a519" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="b6cd-65e6-8361-0453" name="Hot-shot Laspistol" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="adb7-b963-caf0-be97" name="Hot-shot Laspistol" hidden="false" targetId="4609-79eb-7505-68a5" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1072-371f-1025-7b09" name="Mortar" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9830-353a-ab85-9993" name="Mortar" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">48"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon can target units that are not visible to the firer.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="9.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6558-8624-4594-a84e" name="Grenade Launcher" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9ae9-10ac-ef8c-5e3b" name="Grenade Launcher (Frag)" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">3</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
<profile id="b11a-906a-582a-2f6b" name="Grenade Launcher (Krak)" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="3.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0a5d-3aea-82bd-dd1e" name="Ripper Claw" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="a464-b8c5-f874-fe51" name="Ripper claw" hidden="false" targetId="3ff3-4bf6-293a-d9b4" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="3.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="871e-4e0f-8cd7-97d2" name="Brutal Assault weapon" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="8675-4b31-9df8-f617" name="Brutal assault weapon" hidden="false" targetId="b7ce-fea3-f689-34d6" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ef47-a23e-d910-93f3" name="Warp Flux" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="a50f-b084-7371-1236" name="Warp Flux" hidden="false" targetId="4fcf-7187-77eb-060b" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fea9-22f3-c9f0-2673" name="Creeping Terror" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="1159-d1b2-34d5-9bf4" name="Creeping Terror" hidden="false" targetId="517d-13a8-a6c4-51c7" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1c21-6048-9e0c-1dfd" name="Unnatural Vigour" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="e573-df73-c7d7-7ce7" name="Unnatural Vigour" hidden="false" targetId="5fb7-9cff-11aa-f168" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ce6c-996a-ef9e-96c6" name="Chimera" publicationId="2ebb-7865-pubN72363" page="40" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="93dd-f6e2-266f-868f" name="Chimera" publicationId="2ebb-7865-pubN72363" page="40" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">6</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">10</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="86f1-5e8f-b9a6-3fa0" name="Transport Capacity" hidden="false" typeId="b3a8-0452-7436-44d1" typeName="Transport">
<characteristics>
<characteristic name="Capacity" typeId="15aa-1916-a38b-d223">This model can transport 12 Renegade and Heretic models. Each Heavy Weapons Team or Veteran Heavy Weapons Team takes the place of two other models and each OGRYN takes the space of three other models.</characteristic>
</characteristics>
</profile>
<profile id="c79a-d68a-4e1f-af75" name="Chimera " hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">-</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">M</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">BS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="786c-2c40-6a36-edbd" name="Chimera 1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">6-10+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">12"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="48ae-5a16-0a05-3f70" name="Chimera 2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">3-5</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">8"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">D3</characteristic>
</characteristics>
</profile>
<profile id="c88a-44ce-f2ae-1c2f" name="Chimera 3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-2</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">4"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">6+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="506a-3cf7-e534-c9c4" name="Smoke Launchers" hidden="false" targetId="c883-3078-1367-cc2c" type="profile"/>
<infoLink id="235d-b2c9-7178-0d6b" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="a4ca-33d5-6a89-40ef" name="Lasgun Arrays" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e051-5667-f28c-45ee" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="45c9-2e2c-2c6d-c75f" type="max"/>
</constraints>
<profiles>
<profile id="11b2-e231-36b7-8f6b" name="Lasgun Array" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Rapid Fire 3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">3</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon can only be fired if a unit is embarked upon the vehicle equipped with it.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="2c5d-44fa-ba7f-486c" name="Pintle Mount" hidden="false" collective="false" import="true" targetId="8849-60ae-2e7d-e4cb" type="selectionEntryGroup"/>
<entryLink id="76a5-57d3-6bb3-4076" name="Turret Weapon" hidden="false" collective="false" import="true" targetId="ef16-f0c9-af36-d918" type="selectionEntryGroup"/>
<entryLink id="ed9e-8dea-b5ac-b73c" name="Vehicle Equipment List" publicationId="2ebb-7865-pubN72363" page="85" hidden="false" collective="false" import="true" targetId="d1d0-ddf9-55bb-08aa" type="selectionEntryGroup"/>
<entryLink id="0b27-4992-962c-73b1" name="Hull Weapon" hidden="false" collective="false" import="true" targetId="1edf-8631-7209-6a23" type="selectionEntryGroup"/>
<entryLink id="b343-1144-5f4a-59aa" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="b7e2-98b0-78a7-213e" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="60.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="da3a-be79-f0f3-1a3e" name="Multi Laser" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="7676-404b-8cce-a48a" name="Multi-laser" hidden="false" targetId="92be-1bfc-f355-f214" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="612a-6d26-a77f-109f" name="Hellhounds" publicationId="2ebb-7865-pubN72363" page="54" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="daad-4240-e4d0-b911" name="Hellhound" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">-</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">M</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">BS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="144c-ac9c-55dc-39be" name="Hellhound" page="" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">6</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">11</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="7360-a611-b146-f0d5" name="Hellhound1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">6-11+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">12"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="c1df-41ab-a336-36bb" name="Hellhound2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">3-5</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">8"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">D3</characteristic>
</characteristics>
</profile>
<profile id="8b8d-7915-058c-987d" name="Hellhound3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-2</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">4"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">6+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6aff-4d4e-7bf3-8089" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
<infoLink id="80d1-9a1b-5583-3211" name="Smoke Launchers" hidden="false" targetId="c883-3078-1367-cc2c" type="profile"/>
<infoLink id="27f8-33a4-b507-b2d3" name="Vehicle Squadron" hidden="false" targetId="ac84-a4d0-3a58-2a83" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="060c-eebe-58ef-f47f" name="Tanks" hidden="false" collective="false" import="true" defaultSelectionEntryId="8cce-b1f5-73a9-4a31">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="29d4-e0fc-6e4b-4bdd" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b5a1-e86a-a7e2-6b81" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="8cce-b1f5-73a9-4a31" name="Hellhound" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3ce1-4d6a-7e86-745d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="dd8b-dfd0-bea9-3928" name="Hellhound" hidden="false" targetId="c462-01fa-6469-3348" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="bb5f-f003-b6c7-0817" name="Turret-mounted Inferno Cannon" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5dfa-99b9-0d44-bf15" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="469b-99f7-4324-54cb" type="max"/>
</constraints>
<profiles>
<profile id="08c2-7dc7-76ad-83ea" name="Inferno Cannon" publicationId="2ebb-7865-pubN72363" page="0" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">16"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits it's target.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7428-368e-91bf-2d24" name="Vehicle Equipment List" publicationId="2ebb-7865-pubN72363" page="85" hidden="false" collective="false" import="true" targetId="d1d0-ddf9-55bb-08aa" type="selectionEntryGroup"/>
<entryLink id="60a0-4d8b-8d96-0648" name="Pintle Mount" hidden="false" collective="false" import="true" targetId="8849-60ae-2e7d-e4cb" type="selectionEntryGroup"/>
<entryLink id="e1fe-e1fd-9f8a-c9f5" name="Hellhound Hull Weapon" hidden="false" collective="false" import="true" targetId="c464-9e30-6169-cee0" type="selectionEntryGroup"/>
<entryLink id="282d-e280-5d45-632b" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="bccc-8e23-98bb-12bf" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="73.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2cab-3818-43db-825d" name="Bane Wolf" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ac33-e0ee-082a-d212" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="382f-4b35-0166-66a9" name="Turret-mounted Chem Cannon" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b743-f464-5a5f-73ae" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="57a8-181f-c455-a342" type="max"/>
</constraints>
<profiles>
<profile id="64eb-9333-619d-8c6d" name="Chem Cannon" publicationId="2ebb-7865-pubN72363" page="0" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">8"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">*</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits it's target. In addition, it wounds on a 2+, unless it is targeting a <B>VEHICLE, in which case it wounds on a 6+.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="15.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d78d-2040-36bb-df43" name="Vehicle Equipment List" publicationId="2ebb-7865-pubN72363" page="85" hidden="false" collective="false" import="true" targetId="d1d0-ddf9-55bb-08aa" type="selectionEntryGroup"/>
<entryLink id="1f04-2275-c786-abe6" name="Pintle Mount" hidden="false" collective="false" import="true" targetId="8849-60ae-2e7d-e4cb" type="selectionEntryGroup"/>
<entryLink id="289b-bdc3-5b3b-6071" name="Hellhound Hull Weapon" hidden="false" collective="false" import="true" targetId="c464-9e30-6169-cee0" type="selectionEntryGroup"/>
<entryLink id="849e-ede4-59b0-40b9" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="1d67-b141-6f31-0517" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="73.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5e75-4e87-718a-8f7f" name="Devil Dog" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d246-5f1c-5ffb-26d0" type="max"/>
</constraints>
<infoLinks>
<infoLink id="80da-e7af-e495-1d71" name="Hellhound" hidden="false" targetId="c462-01fa-6469-3348" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="8d14-19cb-ff42-35ae" name="Turret-mounted Melta Cannon" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="71f9-0477-9ba6-0bc0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8901-2811-9329-f3e6" type="max"/>
</constraints>
<profiles>
<profile id="8ba2-dcc9-c75d-baf6" name="Melta Cannon" publicationId="2ebb-7865-pubN72363" page="0" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">If the target is within half range of this weapon, roll two dice when inflicting damage with it and discard the lowest result.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="5c22-770d-363b-d6d2" name="Vehicle Equipment List" publicationId="2ebb-7865-pubN72363" page="85" hidden="false" collective="false" import="true" targetId="d1d0-ddf9-55bb-08aa" type="selectionEntryGroup"/>
<entryLink id="2ad6-f29b-c9cd-c586" name="Pintle Mount" hidden="false" collective="false" import="true" targetId="8849-60ae-2e7d-e4cb" type="selectionEntryGroup"/>
<entryLink id="ced3-5b24-7f3e-0309" name="Hellhound Hull Weapon" hidden="false" collective="false" import="true" targetId="c464-9e30-6169-cee0" type="selectionEntryGroup"/>
<entryLink id="19e8-c3cd-bcb0-0a83" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="ac78-6b3b-88b6-5237" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="73.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2b85-819d-70c4-12b2" name="Sentinel Chainsaw" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b1c1-2510-3372-53f9" name="Sentinel Chainsaw" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">-</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f10f-04e6-82fe-325e" name="Scout Sentinel" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="5769-4a69-e192-a615" name="Scout Sentinel" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="56e2-e005-581f-8563" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9722-2f13-cac7-1f18" type="max"/>
</constraints>
<profiles>
<profile id="9fe4-eec4-0e18-cb9b" name="Scout Sentinel" publicationId="2ebb-7865-pubN72363" page="45" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">9"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">1</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bb95-9f66-2185-dc8d" name="Smoke Launchers" hidden="false" targetId="c883-3078-1367-cc2c" type="profile"/>
<infoLink id="3a61-5101-c902-e89a" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
<infoLink id="e0d8-73a2-7afa-65f9" name="Scout Vehicle" hidden="false" targetId="837e-423b-9d3b-7772" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1ee6-b885-3076-7d31" name="Sentinel Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="895d-9fb4-7f63-e034">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0e73-121c-567a-e3c8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9d52-8896-0edf-5ab1" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="895d-9fb4-7f63-e034" name="Multi-laser" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="cdf7-f228-7680-0be7" type="max"/>
</constraints>
<infoLinks>
<infoLink id="83ec-1b92-8c9f-acaf" name="Multi-laser" hidden="false" targetId="92be-1bfc-f355-f214" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7b59-6254-fc55-0626" name="Heavy Flamer" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ffdc-27fc-4c95-6584" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6ea2-66bb-8458-116e" name="Heavy flamer" hidden="false" targetId="2608-8425-4f4f-7f41" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="17.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="728d-6f2b-f081-693a" name="Missile Launcher" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fb6c-8b9d-0aa2-2ffe" type="max"/>
</constraints>
<infoLinks>
<infoLink id="87c5-7750-e6b0-42f7" name="Missile launcher, Frag missile" hidden="false" targetId="603d-3e82-38f6-c5c3" type="profile"/>
<infoLink id="741c-892a-5a4c-7147" name="Missile launcher, Krak missile" hidden="false" targetId="8161-3b0e-8048-0e83" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>