forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imperium - Deathwatch.cat
9051 lines (9049 loc) · 734 KB
/
Imperium - Deathwatch.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="203b-f8dd-2a64-2676" name="Imperium - Deathwatch" revision="100" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@WindstormSCR" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="149" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="203b-f8dd-pubN65537" name="Codex: Deathwatch"/>
<publication id="203b-f8dd-pubN98915" name="Chapter Approved 2017"/>
<publication id="ed02-1cee-3c56-c0d5" name="White Dwarf May 2020"/>
</publications>
<categoryEntries>
<categoryEntry id="1de2-a1ec-963d-cb17" name="Chaplain" hidden="false"/>
<categoryEntry id="2259-0523-78af-3f64" name="Captain" hidden="false"/>
<categoryEntry id="396b-5c0d-df9b-45f6" name="Dreadnought" hidden="false"/>
<categoryEntry id="c81f-06b5-05de-3efe" name="Drop Pod" hidden="false"/>
<categoryEntry id="609a-f634-76a0-b838" name="Land Raider" hidden="false"/>
<categoryEntry id="50d8-02ec-0b7d-be00" name="Land Raider Crusader" hidden="false"/>
<categoryEntry id="2560-e46a-937d-38de" name="Land Raider Redeemer" hidden="false"/>
<categoryEntry id="5d07-819e-466e-8ec9" name="Librarian" hidden="false"/>
<categoryEntry id="dc61-f649-c828-2c12" name="Razorback" hidden="false"/>
<categoryEntry id="a102-e08e-60d5-569e" name="Rhino" hidden="false"/>
<categoryEntry id="f33a-a51b-0a0f-db77" name="Venerable Dreadnought" hidden="false"/>
<categoryEntry id="c82e-cd8d-e26d-a2c1" name="Faction: Deathwatch" hidden="false"/>
<categoryEntry id="b86e-a36b-2bfb-9401" name="Terminator" hidden="false"/>
<categoryEntry id="3a52-e075-4ce1-c3ae" name="Watch Master" hidden="false"/>
<categoryEntry id="0da7-4474-c112-ad2d" name="Captain Artimis" hidden="false"/>
<categoryEntry id="ae9f-868d-2286-91f6" name="Kill Team" hidden="false"/>
<categoryEntry id="3266-4496-a016-a4c0" name="Vanguard Veterans" hidden="false"/>
<categoryEntry id="40dc-74a1-5f7c-e292" name="Corvus Blackstar" hidden="false"/>
<categoryEntry id="fe4a-5222-06e9-0b07" name="Aggressor Squad" hidden="false"/>
<categoryEntry id="4c12-36d0-6232-ad4a" name="Hellblaster Squad" hidden="false"/>
<categoryEntry id="90f0-6ff0-18b9-a715" name="Primaris" hidden="false"/>
<categoryEntry id="8c4f-c48d-c2a7-4228" name="Inceptor Squad" hidden="false"/>
<categoryEntry id="0a45-a68a-1263-c551" name="Redemptor Dreadnought" hidden="false"/>
<categoryEntry id="73e1-4931-1a94-f870" name="Reiver Squad" hidden="false"/>
<categoryEntry id="c704-6107-8e00-2e06" name="Repulsor" hidden="false"/>
<categoryEntry id="e45d-7039-02ab-dc2b" name="Repulsor Executioner" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="b2fd-fb86-a618-6bab" name="Chaplain" hidden="false" collective="false" import="true" targetId="d017-aac3-f78b-b0af" type="selectionEntry">
<infoLinks>
<infoLink id="04d1-e66e-9f95-1e2e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="0d2b-0451-50e8-b915" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="bd0c-120b-55b7-b710" name="New EntryLink" hidden="false" collective="false" import="true" targetId="4c82-ac11-b0ca-cbfd" type="selectionEntry">
<infoLinks>
<infoLink id="060e-998b-5b65-bba4" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="e7fe-678a-1c0a-c3f6" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="d097-c866-9cd3-c994" name="New EntryLink" hidden="false" collective="false" import="true" targetId="1c6f-f992-ca54-6d1b" type="selectionEntry">
<infoLinks>
<infoLink id="9712-6ec8-4b2c-887c" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="ee52-ff21-11b7-32df" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="c884-8bbf-9e1e-b6b5" name="New EntryLink" hidden="false" collective="false" import="true" targetId="cd95-ec67-12ae-a538" type="selectionEntry">
<infoLinks>
<infoLink id="257a-4374-94b6-3a3a" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="e3ce-4d8e-959e-af32" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="8ae1-d256-a172-9e9a" name="Land Raider Crusader" hidden="false" collective="false" import="true" targetId="dab0-6f58-e737-09e1" type="selectionEntry">
<infoLinks>
<infoLink id="2b97-b735-471b-9167" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="334e-2911-48f7-4dbd" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="83b9-cf0f-8d98-cf81" name="New EntryLink" hidden="false" collective="false" import="true" targetId="386d-3e9e-bfaf-bcfe" type="selectionEntry">
<infoLinks>
<infoLink id="2c31-c88d-930a-23ba" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="f43c-3d4a-76a3-9355" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="c3f7-444f-3e09-8df7" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fe60-9638-f7c8-2bcc" type="selectionEntry">
<infoLinks>
<infoLink id="0bc3-8f1d-2148-09e0" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="44da-11f3-2174-e349" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="7fee-a7ad-c8ad-9a4b" name="New EntryLink" hidden="false" collective="false" import="true" targetId="e443-79af-2a11-b18e" type="selectionEntry">
<infoLinks>
<infoLink id="614c-3c6a-a5b2-9ac7" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="64ae-11a2-a6d7-7df9" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="7905-aaf3-a7d4-d74d" name="New EntryLink" hidden="false" collective="false" import="true" targetId="50a2-4244-4bad-1768" type="selectionEntry">
<infoLinks>
<infoLink id="826c-2502-cad9-04f0" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="d69b-bf10-5eb5-d52a" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="b014-fc53-3ece-8bae" name="Rhino" hidden="false" collective="false" import="true" targetId="bc3c-164c-4c7f-3f7e" type="selectionEntry">
<infoLinks>
<infoLink id="e6c2-ae96-cc09-8785" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="0e2d-fe0d-508e-6d14" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="1f6c-4bde-c36f-738b" name="Venerable Dreadnought" hidden="false" collective="false" import="true" targetId="4063-f9ea-d5a0-0753" type="selectionEntry">
<infoLinks>
<infoLink id="776b-22e9-334f-6673" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="4ace-ba24-ee5c-cc1d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="4d4f-0794-5f16-bbfc" name="New EntryLink" hidden="false" collective="false" import="true" targetId="994b-ca79-7d97-f69b" type="selectionEntry">
<infoLinks>
<infoLink id="ed3e-457d-5764-1134" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="fa10-c362-7611-6a16" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3f98-b5d8-6e50-7630" name="Watch Captain in Terminator Armor" hidden="false" collective="false" import="true" targetId="ac76-5ee0-afd0-d3a6" type="selectionEntry">
<infoLinks>
<infoLink id="746d-6fc8-c1b5-e55e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="a5e5-1a49-0878-277b" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="bffa-d01a-71c2-9c17" name="New EntryLink" hidden="false" collective="false" import="true" targetId="d042-f4b6-83aa-f962" type="selectionEntry">
<infoLinks>
<infoLink id="1d47-6e87-a6bd-d8ee" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="6d3d-2eb5-8881-e415" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5383-b137-4513-5499" name="New EntryLink" hidden="false" collective="false" import="true" targetId="eeed-e27d-056d-1ce5" type="selectionEntry">
<infoLinks>
<infoLink id="da74-9cf3-1751-a889" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="d70e-6e43-f90e-3c90" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="b8d7-ccfe-fc5f-531a" name="Veterans" hidden="false" collective="false" import="true" targetId="d82f-47c7-40a0-5ee0" type="selectionEntry">
<infoLinks>
<infoLink id="49eb-2cf6-8f08-9d85" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="5844-aba1-f501-76d7" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="7140-bf67-0112-94f4" name="New EntryLink" hidden="false" collective="false" import="true" targetId="2e20-75c9-c6de-83a8" type="selectionEntry">
<infoLinks>
<infoLink id="74f4-71ca-f3d2-6255" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="c027-6461-e9ed-53f9" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="91ea-ab21-850a-0597" name="New EntryLink" hidden="false" collective="false" import="true" targetId="3e1e-8565-25a4-50bc" type="selectionEntry">
<infoLinks>
<infoLink id="5bf3-235c-a1ed-cb6c" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="9834-d7ed-fdaf-a3d8" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="507e-6311-6818-87bd" name="New EntryLink" hidden="false" collective="false" import="true" targetId="68bb-26aa-2358-7e34" type="selectionEntry">
<infoLinks>
<infoLink id="64b4-c3fa-b725-3a8a" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="ed3b-efab-36e6-a549" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="cdff-8a42-9400-7ec5" name="New EntryLink" hidden="false" collective="false" import="true" targetId="98bc-9128-1b1e-35e0" type="selectionEntry">
<infoLinks>
<infoLink id="35be-732e-1423-8c4c" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="2c52-e738-bc1f-d108" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5f0c-1a4a-7e9a-651d" name="Aggressor Squad" hidden="false" collective="false" import="true" targetId="78d6-2309-b216-3f7d" type="selectionEntry">
<infoLinks>
<infoLink id="9a6b-cd98-5316-dbff" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
<infoLink id="9ad9-0cc4-f27f-fde1" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3a94-46a6-c019-861f" name="Hellblaster Squad" hidden="false" collective="false" import="true" targetId="ba18-db29-f48b-32c7" type="selectionEntry">
<infoLinks>
<infoLink id="30ff-dcb2-9167-1963" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="12c3-926e-db21-0dd3" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="1e08-7417-2a97-5779" name="Inceptor Squad" hidden="false" collective="false" import="true" targetId="7fac-0e2d-2d88-4f28" type="selectionEntry">
<infoLinks>
<infoLink id="1212-a71e-3754-40b1" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="a326-4b0f-7260-7782" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="53bc-077a-de73-6611" name="Intercessors" hidden="false" collective="false" import="true" targetId="2567-072d-fea5-7e3e" type="selectionEntry">
<infoLinks>
<infoLink id="e984-c2fd-35d0-635d" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="0eee-e3a3-9182-9f34" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="2791-797c-55ca-5d41" name="Primaris Apothecary" hidden="false" collective="false" import="true" targetId="7ae9-7ad5-eebf-f4d6" type="selectionEntry">
<infoLinks>
<infoLink id="7903-c336-3888-579c" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="0aa5-ee17-cc82-02bc" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="809c-9365-3f8e-b4e7" name="Primaris Captain" hidden="false" collective="false" import="true" targetId="f4b9-ca84-1518-8254" type="selectionEntry">
<infoLinks>
<infoLink id="8259-973f-2438-c76b" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="efe9-f9fe-6102-3a4c" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="1bc0-1717-8a22-3a1f" name="Primaris Chaplain" hidden="false" collective="false" import="true" targetId="2d7d-da8f-7abb-e6e5" type="selectionEntry">
<infoLinks>
<infoLink id="0ab8-9157-d987-f606" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="1306-91e7-a470-710a" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="2451-fce9-bb2e-6c7f" name="Primaris Librarian" hidden="false" collective="false" import="true" targetId="12c8-bff2-28a5-e333" type="selectionEntry">
<infoLinks>
<infoLink id="838e-54d3-2f04-ffff" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="030e-2dde-a1ac-3844" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="dea7-8ad7-2ecb-aed4" name="Redemptor Dreadnought" hidden="false" collective="false" import="true" targetId="f234-52d4-37c2-cd1e" type="selectionEntry">
<infoLinks>
<infoLink id="ec74-3541-0d16-9cbe" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="96b8-9a83-bb40-213c" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5600-ec36-5407-b44a" name="Reiver Squad" hidden="false" collective="false" import="true" targetId="b670-1e0a-cfb3-53a9" type="selectionEntry">
<infoLinks>
<infoLink id="577e-d1f9-d042-6c74" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="ee7b-11c0-9c0d-5d4a" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="7f4e-f9f2-70ef-4c9f" name="Repulsor" hidden="false" collective="false" import="true" targetId="a421-6071-270b-4dfe" type="selectionEntry">
<infoLinks>
<infoLink id="8576-8bc0-3fc9-7267" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="7d1e-df11-9a19-4b14" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="f82f-4271-2c4f-383f" name="Librarian with Jump Pack" hidden="false" collective="false" import="true" targetId="0664-4d8b-bb00-4788" type="selectionEntry">
<infoLinks>
<infoLink id="aafb-a941-b892-c183" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="3bf8-5274-4b6b-d0cf" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="ed97-00c2-7b8c-1371" name="Armory of the Watch Fortress (1 Relic)" hidden="false" collective="false" import="true" targetId="dabd-ecc7-837d-b625" type="selectionEntry"/>
<entryLink id="afc3-c2f1-8e80-f87c" name="Armory of the Watch Fortress (2 Relics)" hidden="false" collective="false" import="true" targetId="622b-8747-871b-9cab" type="selectionEntry"/>
<entryLink id="5642-c3e5-9d47-79dc" name="Chaplain in Terminator Armor" hidden="false" collective="false" import="true" targetId="c8a9-325a-950f-f888" type="selectionEntry">
<infoLinks>
<infoLink id="6651-53c8-7de4-53e4" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="b69b-9cd4-c3f1-09e7" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="27ab-90f6-8d21-ba3a" name="Land Raider Variant (Open Play)" hidden="false" collective="false" import="true" targetId="5ea6-c789-f6b9-5c00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="cfc5-43e4-b02e-d1f9" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="f3ed-e5d1-2998-e493" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="caef-9500-0cd4-38a4" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="62c9-18e0-63b0-eb2f" name="New CategoryLink" hidden="false" targetId="609a-f634-76a0-b838" primary="false"/>
<categoryLink id="ee52-2e3f-99af-3537" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="618b-288c-760b-f909" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="c8ee-45cb-0bf5-7a90" name="New CategoryLink" hidden="false" targetId="c82e-cd8d-e26d-a2c1" primary="false"/>
<categoryLink id="b104-9b93-3ad5-8adf" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="4f26-234b-4bee-bd2e" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2024-f10b-7950-1ce4" name="Reference: SIA Weapon Profiles" hidden="false" collective="false" import="true" targetId="39de-0f62-f0ba-ac08" type="selectionEntry">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b91e-04ad-4a24-d578" type="max"/>
</constraints>
</entryLink>
<entryLink id="60fc-4edd-2f25-894c" name="Stratagem: Field Commander" hidden="false" collective="false" import="true" targetId="d043-3847-e963-fb5d" type="selectionEntry"/>
<entryLink id="d3bf-fef3-2494-6c4f" name="Deathwatch Tartaros Terminator Squad" hidden="false" collective="false" import="true" targetId="4330-7bcc-59cc-4b55" type="selectionEntry">
<infoLinks>
<infoLink id="7c5a-c904-3063-39b6" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="f7cc-75f4-eb53-71b5" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="61c6-bcba-5cf1-0fe2" name="Elites" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c881-f500-8c89-2b7e" name="Deathwatch Apothecary (HRfix)" hidden="false" collective="false" import="true" targetId="0a12-d510-dfbb-4ecb" type="selectionEntry">
<infoLinks>
<infoLink id="cdf9-a261-9d74-f089" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="abd7-5a78-ba65-4550" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="bd1b-7453-467f-bc76" name="Deathwatch Terminator Apothecary (HRfix)" hidden="false" collective="false" import="true" targetId="eecf-70f1-013e-9662" type="selectionEntry">
<infoLinks>
<infoLink id="a188-cf37-5088-deda" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="86d7-7d76-7fd8-12d9" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="caff-0c36-cde6-42ca" name="Astraeus Super-heavy Tank" hidden="false" collective="false" import="true" targetId="2faf-85ff-2008-1a28" type="selectionEntry"/>
<entryLink id="cc9f-cd87-7830-20f1" name="Caestus Assault Ram" hidden="false" collective="false" import="true" targetId="5c09-08ad-2a0f-fbc9" type="selectionEntry">
<infoLinks>
<infoLink id="fdfd-b287-fb2a-3732" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="dfa3-24ac-00d8-0e05" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="8b29-8069-96bc-f632" name="Castellum Stronghold" hidden="false" collective="false" import="true" targetId="8ae2-6460-9014-1f13" type="selectionEntry"/>
<entryLink id="09de-1ffd-e172-fd67" name="Chaplain Venerable Dreadnought" hidden="false" collective="false" import="true" targetId="28af-fce8-2f9c-0145" type="selectionEntry">
<infoLinks>
<infoLink id="3f72-d87f-d379-be42" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="91d9-56d1-9baf-55d4" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="1313-3508-3437-8c58" name="Warlord" hidden="false" collective="false" import="true" targetId="7b44-1768-3f88-93ca" type="selectionEntry"/>
<entryLink id="61f2-4f5b-1ded-e84c" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="de00-11d5-2371-36ca" type="selectionEntryGroup"/>
<entryLink id="d70e-49e1-04b7-788c" name="Litanies" hidden="false" collective="false" import="true" targetId="d403-39d7-a40b-1519" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="91e0-d2a7-fa22-f1a9" name="Contemptor Mortis Dreadnought" hidden="false" collective="false" import="true" targetId="2149-8a56-0274-5e59" type="selectionEntry">
<infoLinks>
<infoLink id="0ca4-49c5-9a1e-48b8" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="150d-842f-87d0-0583" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5920-c1f9-d48c-006c" name="Damocles Command Rhino" hidden="false" collective="false" import="true" targetId="7f53-6376-cd1f-8356" type="selectionEntry">
<infoLinks>
<infoLink id="8e7e-e09a-0f29-6b56" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="3afb-6a32-979e-5e75" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="cfc2-bc53-14fb-c35b" name="Deathstorm Drop Pod" hidden="false" collective="false" import="true" targetId="6d7b-340f-c91b-98ac" type="selectionEntry">
<infoLinks>
<infoLink id="52ff-fb65-b942-0cb5" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="88cb-9c53-23fc-5cab" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="0cb6-2c8b-ca3f-4d0f" name="Deimos Pattern Relic Predator" hidden="false" collective="false" import="true" targetId="b048-66f2-3f07-e5ec" type="selectionEntry">
<infoLinks>
<infoLink id="c8d7-86a4-e0fe-6c52" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="8e13-b075-bd66-dd5d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="f9f7-e56d-2846-b730" name="Deimos Pattern Vindicator Laser Destroyer" hidden="false" collective="false" import="true" targetId="1cc4-d166-fe8b-d4c7" type="selectionEntry">
<infoLinks>
<infoLink id="46ba-3e7a-a71b-c2d7" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="9300-f034-8681-12ea" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="7700-d8b4-e625-afc9" name="Fire Raptor Assault Gunship" hidden="false" collective="false" import="true" targetId="e385-ed6c-8c89-72fa" type="selectionEntry">
<infoLinks>
<infoLink id="cd0a-ef98-6a40-bb25" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="cc8a-4497-fd87-b460" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="46a7-d377-f7f1-9904" name="Infernum Pattern Razorback" hidden="false" collective="false" import="true" targetId="6674-0cac-4050-84b9" type="selectionEntry">
<infoLinks>
<infoLink id="2268-1235-e448-e3bb" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="cef6-4485-08bc-2505" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="311c-4902-59f8-a856" name="Land Raider Achilles" hidden="false" collective="false" import="true" targetId="cda6-03b8-b84c-777e" type="selectionEntry">
<infoLinks>
<infoLink id="b2ef-6379-ed60-3470" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="0919-dd41-62df-f895" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="cd37-9943-0ac2-7299" name="Land Raider Helios" hidden="false" collective="false" import="true" targetId="2d29-c013-02f4-1b69" type="selectionEntry">
<infoLinks>
<infoLink id="fb05-ca83-12a9-cc1e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="8397-391a-e15d-edc4" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3a64-e53f-9af1-bfd4" name="Land Raider Prometheus" hidden="false" collective="false" import="true" targetId="63f2-ec41-a54f-9c67" type="selectionEntry">
<infoLinks>
<infoLink id="c59e-ac21-5921-fb08" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="d075-9d31-8c00-22ed" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="1fa1-baf3-9134-c600" name="Land Speeder Tempest" hidden="false" collective="false" import="true" targetId="fe5a-52a1-e42a-51cd" type="selectionEntry">
<infoLinks>
<infoLink id="94cb-0d11-5abf-df98" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="27ed-77c4-8435-9615" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="41ae-be8d-63ce-d3f8" name="Lucius Pattern Dreadnought Drop Pod" hidden="false" collective="false" import="true" targetId="9c15-a12b-ee50-d1b1" type="selectionEntry">
<infoLinks>
<infoLink id="e7f3-9aa3-9ca6-7f5d" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="3089-1106-6241-c32d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="438e-11bf-cc76-772f" name="Mortis Dreadnought" hidden="false" collective="false" import="true" targetId="8f67-d315-b9ff-f564" type="selectionEntry">
<infoLinks>
<infoLink id="263a-d1c4-7b31-448d" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="7303-2e13-11c7-c015" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="aaf9-9b5a-09f7-5217" name="Rapier Carrier" hidden="false" collective="false" import="true" targetId="58a4-c616-2b06-62bd" type="selectionEntry">
<infoLinks>
<infoLink id="43d9-7a7e-a801-7f61" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="6501-8bfc-e1a8-4291" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="2d86-08f8-ab26-dc70" name="Relic Cerberus Heavy Tank Destroyer" hidden="false" collective="false" import="true" targetId="c0a4-cc23-05db-0069" type="selectionEntry">
<infoLinks>
<infoLink id="fb91-5125-899e-55a6" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="e913-a575-10c6-4991" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3b7b-42d8-ea20-06d6" name="Relic Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="45f1-772c-0091-a1a8" type="selectionEntry">
<infoLinks>
<infoLink id="b33a-a614-f07a-c56c" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="02f9-8720-4638-3558" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="4ce0-925b-3c55-ecfb" name="Relic Deredeo Dreadnought" hidden="false" collective="false" import="true" targetId="6827-21ac-bb87-2c55" type="selectionEntry">
<infoLinks>
<infoLink id="e9d3-0da5-aafb-3592" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="5098-15a0-53ea-2956" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3bbd-e3c9-ba79-ea25" name="Relic Falchion Super-heavy Tank Destroyer" hidden="false" collective="false" import="true" targetId="29dc-03dd-48c0-b827" type="selectionEntry">
<infoLinks>
<infoLink id="2d9d-1df2-6662-2406" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="7d8e-2c52-d772-7e78" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3fb3-0969-50e0-540f" name="Relic Fellblade Super-heavy Tank" hidden="false" collective="false" import="true" targetId="eb31-fd4c-d1ec-98a8" type="selectionEntry">
<infoLinks>
<infoLink id="399d-d58f-72eb-6b6d" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="e898-84ec-cf9a-6e40" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="058e-5c7f-0975-6c46" name="Relic Javelin Attack Speeder" hidden="false" collective="false" import="true" targetId="f7e4-a2c8-e56f-771f" type="selectionEntry">
<infoLinks>
<infoLink id="ca6e-e03b-e435-8505" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="f372-3165-76ce-1468" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="582a-6b27-b611-bb96" name="Relic Land Raider Proteus" hidden="false" collective="false" import="true" targetId="1c6e-951e-b7b2-d0b5" type="selectionEntry">
<infoLinks>
<infoLink id="b193-4df2-02b8-1518" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="b08b-3443-b80b-f131" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5ff9-918a-645a-b28f" name="Relic Leviathan Dreadnought" hidden="false" collective="false" import="true" targetId="945d-3e51-177b-81a4" type="selectionEntry">
<infoLinks>
<infoLink id="8338-60a8-f944-4da3" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="6dca-5dd8-192e-8c86" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5bf8-3323-9155-c6db" name="Relic Mastodon Super-heavy Siege Transport" hidden="false" collective="false" import="true" targetId="f234-bce0-e518-5f66" type="selectionEntry">
<infoLinks>
<infoLink id="266a-b7fb-fcdf-e82f" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="2ae2-99ad-823f-3485" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="544e-4472-95e8-92c0" name="Relic Sicaran Arcus Strike Tank" hidden="false" collective="false" import="true" targetId="eb92-5053-3d5f-745d" type="selectionEntry">
<infoLinks>
<infoLink id="03bf-3f5c-8fad-840b" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="fe28-ab59-6060-8a2e" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="4d5b-86a5-29c7-64cb" name="Relic Sicaran Battle Tank" hidden="false" collective="false" import="true" targetId="205b-9bbc-256d-54e9" type="selectionEntry">
<infoLinks>
<infoLink id="6983-d5c0-1b07-5791" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="c48b-95b7-1a96-d71f" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="eea7-918e-7eeb-3fe0" name="Relic Sicaran Omega Tank Destroyer" hidden="false" collective="false" import="true" targetId="ae08-6f34-f510-66fb" type="selectionEntry">
<infoLinks>
<infoLink id="06b3-220c-7320-af9e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="6e44-a29e-63a6-2d6d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="f5a1-e539-7022-398c" name="Relic Sicaran Punisher Assault Tank" hidden="false" collective="false" import="true" targetId="0260-ed3e-73b7-b490" type="selectionEntry">
<infoLinks>
<infoLink id="6d7d-8985-0158-5a6f" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="474c-e90a-91b8-12da" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="8d45-5797-9090-0437" name="Relic Sicaran Venator Tank Destroyer" hidden="false" collective="false" import="true" targetId="c1c8-a93d-9eec-e2a1" type="selectionEntry">
<infoLinks>
<infoLink id="ac26-987c-54dc-78be" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="92bd-0ffc-d251-743d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3b0f-6c60-d395-fe8d" name="Relic Spartan Assault Tank" hidden="false" collective="false" import="true" targetId="251c-52c6-b76e-f737" type="selectionEntry">
<infoLinks>
<infoLink id="8bef-c504-c2dd-fdb4" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="e0a8-1996-8f4e-782d" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="4c31-61da-b37e-77ab" name="Relic Typhon Heavy Siege Tank" hidden="false" collective="false" import="true" targetId="e2b1-8e57-c071-300a" type="selectionEntry">
<infoLinks>
<infoLink id="6f80-7b95-b541-52fe" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="469d-401e-b057-8cb6" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="ed4e-e47a-951a-ba6f" name="Relic Whirlwind Scorpius" hidden="false" collective="false" import="true" targetId="8a97-e37c-1e15-dbf7" type="selectionEntry">
<infoLinks>
<infoLink id="d95b-54c1-bef3-4bd3" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="10c0-7aed-16e8-2c5b" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="8fe1-9a52-fe04-87fb" name="Siege Dreadnought" hidden="false" collective="false" import="true" targetId="d944-2b80-48cf-f8c3" type="selectionEntry">
<infoLinks>
<infoLink id="dbaf-6561-caf2-1025" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="8b3c-7a12-783d-4abc" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3ca9-bd41-9639-bc65" name="Sokar Pattern Stormbird" hidden="false" collective="false" import="true" targetId="c5c5-9229-e931-8bb7" type="selectionEntry">
<infoLinks>
<infoLink id="07b5-3c87-c3f3-d402" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="bcac-ddef-0417-afd1" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="8ed6-3d09-dae7-16a5" name="Storm Eagle Assault Gunship" hidden="false" collective="false" import="true" targetId="fe69-c329-dccc-975d" type="selectionEntry">
<infoLinks>
<infoLink id="8959-d09c-80aa-9a3e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="c67f-df73-7a49-8284" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="ff77-027a-2990-e66c" name="Tarantula Air Defence Battery" hidden="false" collective="false" import="true" targetId="9bf8-a4fa-ed66-4c2f" type="selectionEntry">
<infoLinks>
<infoLink id="f377-e7e3-9c70-ef3b" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="dd8a-26f2-7eac-fc43" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="5464-8109-d599-8051" name="Tarantula Sentry Gun" hidden="false" collective="false" import="true" targetId="3021-f871-0263-ccb1" type="selectionEntry">
<infoLinks>
<infoLink id="dacf-e30c-b25f-8e02" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="6de1-2bc0-a6d1-ec93" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="bc91-7ae5-6fb3-10cb" name="Termite Assault Drill" hidden="false" collective="false" import="true" targetId="d708-a325-b0c4-67a5" type="selectionEntry">
<infoLinks>
<infoLink id="72a7-323b-2a0a-c11f" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="bfda-f149-26f6-07d8" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="3240-3762-a8f1-6846" name="Terrax-Pattern Termite Assault Drill" hidden="false" collective="false" import="true" targetId="732b-967e-1bca-5846" type="selectionEntry">
<infoLinks>
<infoLink id="fb77-3cb5-d675-3d24" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="d93e-fd6d-63a6-d865" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6e1d-652a-af27-c9d4" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4852-60c9-6ba8-41d0" name="Thunderhawk Assault Gunship" hidden="false" collective="false" import="true" targetId="1ea8-e5a1-3a69-7697" type="selectionEntry">
<infoLinks>
<infoLink id="65ff-53b4-1e84-804e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="559d-6169-cf15-6af3" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="1daf-078b-53cf-af15" name="Thunderhawk Transporter" hidden="false" collective="false" import="true" targetId="0caa-04e2-7796-7750" type="selectionEntry">
<infoLinks>
<infoLink id="a689-c7f6-da1a-37e5" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="b657-f7c1-aeb4-861e" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="9294-7cf5-3611-8729" name="Whirlwind Hyperios" hidden="false" collective="false" import="true" targetId="7a7c-01f5-bf0d-ae16" type="selectionEntry">
<infoLinks>
<infoLink id="c386-708b-3b75-244e" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="23c0-6c56-41d6-3752" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="b05b-fb52-da0b-8d65" name="Xiphon Interceptor" hidden="false" collective="false" import="true" targetId="1327-c39f-b3aa-63c5" type="selectionEntry">
<infoLinks>
<infoLink id="8437-a6d0-4645-8707" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="0ff5-4425-983b-e147" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="602a-9042-a9d7-b3db" name="Repulsor Executioner" hidden="false" collective="false" import="true" targetId="2f97-79d3-2655-137a" type="selectionEntry">
<infoLinks>
<infoLink id="9b61-7342-d8d4-259d" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="b644-fe42-5e5c-c796" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
</infoLinks>
</entryLink>
<entryLink id="bceb-2fd8-bd33-6304" name="Operative Requisition Sanctioned" hidden="false" collective="false" import="true" targetId="0b7d-bfe1-b63e-ecb6" type="selectionEntry"/>
<entryLink id="9458-671a-a19f-2df4" name="Ordo Malleus Inquisitor in Terminator Armour" hidden="false" collective="false" import="true" targetId="ba53-1df7-404e-e9c9" type="selectionEntry">
<categoryLinks>
<categoryLink id="d864-82ac-3509-608d" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f25b-0654-477f-71af" name="Ephrael Stern and Kyganil of the Bloody Tears" hidden="false" collective="false" import="true" targetId="7dca-e055-7a15-4bf3" type="selectionEntry">
<categoryLinks>
<categoryLink id="f9f7-a5a9-8f0a-e932" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="34c6-e890-de57-d415" name="Primaris Captain (Indomitus)" hidden="false" collective="false" import="true" targetId="1cf8-cf12-0575-8ac5" type="selectionEntry">
<entryLinks>
<entryLink id="f627-7d9d-47d2-dfa1" name="Relics of the Vigilant" hidden="false" collective="false" import="true" targetId="a06a-d610-aa13-235d" type="selectionEntryGroup"/>
<entryLink id="e487-1985-1624-6657" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="de00-11d5-2371-36ca" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="77dc-a9d7-2ac8-5b0f" name="Assault Intercessor Squad" hidden="false" collective="false" import="true" targetId="2ab1-1cf3-acbf-530e" type="selectionEntry"/>
<entryLink id="3460-6af8-6c8a-6cf3" name="Bladeguard Ancient" hidden="false" collective="false" import="true" targetId="0dac-86be-d7a0-9dd8" type="selectionEntry">
<entryLinks>
<entryLink id="c01e-6995-3ca3-b594" name="Relics of the Vigilant" hidden="false" collective="false" import="true" targetId="a06a-d610-aa13-235d" type="selectionEntryGroup"/>
<entryLink id="0fd4-7ff1-df62-cbcd" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="de00-11d5-2371-36ca" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="963a-29cf-0d60-05c8" name="Bladeguard Veteran Squad" hidden="false" collective="false" import="true" targetId="0da5-bbc7-769c-7ae4" type="selectionEntry"/>
<entryLink id="1d48-6733-b6f6-0c40" name="Judiciar" hidden="false" collective="false" import="true" targetId="335d-a06f-0afb-c749" type="selectionEntry">
<entryLinks>
<entryLink id="17bc-c033-9518-b15b" name="Relics of the Vigilant" hidden="false" collective="false" import="true" targetId="a06a-d610-aa13-235d" type="selectionEntryGroup"/>
<entryLink id="b981-8198-b045-73dc" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="de00-11d5-2371-36ca" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="c535-eeaf-5c04-4189" name="Outrider Squad" hidden="false" collective="false" import="true" targetId="a977-6081-02ad-35ff" type="selectionEntry"/>
<entryLink id="d0d5-d541-b945-16bc" name="Eradicator Squad" hidden="false" collective="false" import="true" targetId="17cc-76ac-ab20-fae6" type="selectionEntry"/>
<entryLink id="397d-7af7-d5e1-da19" name="Primaris Lieutenant (Indomitus)" hidden="false" collective="false" import="true" targetId="1278-4d59-29b6-51a8" type="selectionEntry">
<infoLinks>
<infoLink id="8481-3942-a9f6-9417" name="Company Heroes" hidden="false" targetId="eb6d-5525-bbe8-6d0a" type="profile"/>
<infoLink id="11da-5cfd-d93f-62b4" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ccef-e3d9-90ea-39d2" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="2915-8a4f-8765-6661" name="Relics of the Vigilant" hidden="false" collective="false" import="true" targetId="a06a-d610-aa13-235d" type="selectionEntryGroup"/>
<entryLink id="9d80-9b00-4d16-8ff7" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="de00-11d5-2371-36ca" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
</entryLinks>
<infoLinks>
<infoLink id="7f54-7d3e-a947-8430" name="Kraken Bolts" hidden="false" targetId="2371-87ae-e67e-ab08" type="rule"/>
<infoLink id="aede-3f83-3ad8-22d0" name="SIA - Dragonfire Rounds" hidden="false" targetId="972a-9cd4-7057-d4e5" type="rule"/>
<infoLink id="eb17-70c1-a520-9b53" name="Hellfire Rounds" hidden="false" targetId="0ec7-dd83-aae0-26c5" type="rule"/>
<infoLink id="5a1c-648c-e9ea-a80b" name="Vengeance Rounds" hidden="false" targetId="d167-1f3e-fef6-45ac" type="rule"/>
<infoLink id="5fc0-be5d-871a-9f67" name="Bolter Discipline" hidden="false" targetId="5a7e-f984-487c-d767" type="rule"/>
<infoLink id="1f37-eb93-0bda-bc95" name="Shock Assault" hidden="false" targetId="f9ce-5a8b-7abd-2395" type="rule"/>
<infoLink id="770b-448c-db64-1f7f" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
<infoLink id="807e-f959-900c-6265" name="And They Shall Know No Fear" hidden="false" targetId="4ea8-94d3-ba39-042f" type="rule"/>
</infoLinks>
<sharedSelectionEntries>
<selectionEntry id="1ae2-d5a1-2e83-f6db" name="Jump Pack" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e7c-d4c7-5bfe-27cd" type="max"/>
</constraints>
<profiles>
<profile id="e3d5-d6f3-af66-0e53" name="Jump Pack Assult" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">During deployment, if this model has a jump pack, you can set it up high in the skies instead of placing it on the battlefield. At the end of any of your Movement phases this model can assault from above - set it up anywhere on the battlefield that is more than 9" away from any enemy models.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="1060-6ef3-4475-08a5" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="ac68-3a54-ca25-6f34" name="New CategoryLink" hidden="false" targetId="f627-f23e-a3b4-dc2c" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="994b-ca79-7d97-f69b" name="Watch Captain" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="1eed-f653-bf93-bffd" name="Captain" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="0bdf-a96e-9e38-7779" value="12"">
<conditions>
<condition field="selections" scope="994b-ca79-7d97-f69b" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98b9-9696-08ea-550b" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+/4++</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5205-bb18-cd29-64bb" name="New InfoLink" hidden="false" targetId="83c5-c731-4688-c8eb" type="profile"/>
<infoLink id="1a7a-e968-2df4-1960" name="New InfoLink" hidden="false" targetId="5043-8c45-ff63-01bb" type="profile"/>
<infoLink id="a770-f431-b622-b02b" name="And They Shall Know No Fear" hidden="false" targetId="4ea8-94d3-ba39-042f" type="rule"/>
<infoLink id="3deb-c34d-9154-4402" name="Special Issue Ammunition" hidden="false" targetId="3ddc-7d56-adf0-a82b" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1fee-53fd-6c35-b923" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="4846-6862-e651-025d" name="New CategoryLink" hidden="false" targetId="2259-0523-78af-3f64" primary="false"/>
<categoryLink id="9329-051c-3203-60b3" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="6f05-17a9-5266-120c" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="ad38-6f5e-ab3d-f7b2" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="c794-3bbb-0c6e-6c80" name="New CategoryLink" hidden="false" targetId="c82e-cd8d-e26d-a2c1" primary="false"/>
<categoryLink id="eb69-357a-178f-70a7" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5792-1bec-b0e4-53c5" name="Weapon Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d30-411e-05cb-07b5" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a16a-2f0c-76fd-5314" type="min"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="eac4-78b6-affe-d731" name="Chainsword Replacement" hidden="false" collective="false" import="true" defaultSelectionEntryId="b3fd-c197-c546-6539">
<modifiers>
<modifier type="set" field="4b9d-3a61-dce6-964d" value="0.0">
<conditions>
<condition field="selections" scope="994b-ca79-7d97-f69b" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0a3f-920a-7e1b-cdd8" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b9d-3a61-dce6-964d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3f79-d1a8-2d78-6cc8" name="Relic blade" hidden="false" collective="false" import="true" targetId="0140-c9f2-0524-34cc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0edd-13c7-1e8c-c692" type="max"/>
</constraints>
</entryLink>
<entryLink id="c375-ff43-3f69-3a3d" name="Xenophase Blade" hidden="false" collective="false" import="true" targetId="42b5-32e0-1265-c0d8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afb0-6b37-918a-2dbb" type="max"/>
</constraints>
</entryLink>
<entryLink id="b3fd-c197-c546-6539" name="Chainsword" hidden="false" collective="false" import="true" targetId="0dd1-2e2b-7dd1-5495" type="selectionEntry">
<modifiers>
<modifier type="set" field="368b-3632-679c-2354" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="91b1-8c29-4f0d-1604" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="368b-3632-679c-2354" type="min"/>
</constraints>
</entryLink>
<entryLink id="8827-72c3-38c5-bd5d" name="Storm shield" hidden="false" collective="false" import="true" targetId="38b5-ef30-f87f-5275" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value="(Index)"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="86ff-1b4a-12ab-6855" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="980e-67e9-61b9-58a2" name="Master-crafted Boltgun Replacement" hidden="false" collective="false" import="true" defaultSelectionEntryId="d815-a2a7-3883-7119">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3648-3ee2-1be6-fb4b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d815-a2a7-3883-7119" name="Master-crafted boltgun" hidden="false" collective="false" import="true" targetId="6d73-a792-f012-2ff1" type="selectionEntry">
<modifiers>
<modifier type="set" field="ac01-f7d4-a034-cbe1" value="0.0">
<conditions>
<condition field="selections" scope="994b-ca79-7d97-f69b" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0a3f-920a-7e1b-cdd8" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="e3cc-85b3-20ae-3b47" value="0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac01-f7d4-a034-cbe1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e3cc-85b3-20ae-3b47" type="min"/>
</constraints>
</entryLink>
<entryLink id="f470-46fd-5940-4744" name="Combi-Weapons (Index)" hidden="false" collective="false" import="true" targetId="9057-9993-438e-ee98" type="selectionEntryGroup">
<modifiers>
<modifier type="append" field="name" value="(Index)"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ff4a-e1b9-a13a-c254" type="max"/>
</constraints>
</entryLink>
<entryLink id="efdc-ceae-312a-939c" name="Pistols" hidden="false" collective="false" import="true" targetId="7351-b60b-1ed4-5d3a" type="selectionEntryGroup">
<modifiers>
<modifier type="append" field="name" value="(Index)"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f1e0-2247-976e-e4f5" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0a3f-920a-7e1b-cdd8" name="Deathwatch Equipment List" hidden="false" collective="false" import="true" targetId="ccae-c3ab-8082-67d0" type="selectionEntryGroup"/>
<entryLink id="f588-3501-0a96-24ca" name="'Melee Weapons (Index)" hidden="false" collective="false" import="true" targetId="63d9-b569-dc9c-f794" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7263-550c-be41-3f1a" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="8f04-4573-7825-4223" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eec6-c0ab-ffc4-094a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db23-31d5-c67c-2eb7" type="max"/>
</constraints>
</entryLink>
<entryLink id="98b9-9696-08ea-550b" name="Jump Pack" hidden="false" collective="false" import="true" targetId="1ae2-d5a1-2e83-f6db" type="selectionEntry">
<modifiers>
<modifier type="increment" field="points" value="25.0"/>
<modifier type="increment" field="e356-c769-5920-6e14" value="1.0"/>
</modifiers>
</entryLink>
<entryLink id="f6be-403f-5b72-c438" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="de00-11d5-2371-36ca" type="selectionEntryGroup"/>
<entryLink id="9fd9-a891-b561-e8b4" name="Relics" hidden="false" collective="false" import="true" targetId="a06a-d610-aa13-235d" type="selectionEntryGroup"/>
<entryLink id="e540-aa15-61a5-bf45" name="Warlord" hidden="false" collective="false" import="true" targetId="7b44-1768-3f88-93ca" type="selectionEntry"/>
<entryLink id="db91-f540-ed8d-9795" name="Bolt Pistol" hidden="false" collective="false" import="true" targetId="ab90-f0c3-d1cd-8494" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5f41-e688-40f3-97a6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7ec3-d294-381f-7f72" type="min"/>
</constraints>
</entryLink>
<entryLink id="0566-0082-5953-2dda" name="Is A Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="e741-ea94-9da7-9f19" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="bc73-829a-05d3-f9f4" name="Stratagem: Hero of the Chapter" hidden="false" collective="false" import="true" targetId="7048-925f-2145-f990" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="pts" typeId="points" value="80.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d1e6-5583-3104-e45b" name="Hand Flamer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="83ae-2b7b-b92c-3600" name="Hand Flamer" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">6"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Pistol 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">This weapon automatically hits its target</characteristic>
</characteristics>
</profile>
</profiles>
<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="42b5-32e0-1265-c0d8" name="Xenophase Blade" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="92f0-7126-2fc3-eff2" name="Xenophase Blade" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</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">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Your opponent must re-roll successful invul saves for wounds caused by this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="10.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ac76-5ee0-afd0-d3a6" name="Watch Captain in Terminator Armor" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="177a-ce3d-abbe-46da" name="Captain" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+/4++</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4a2a-8d40-0ad9-bc0b" name="New InfoLink" hidden="false" targetId="83c5-c731-4688-c8eb" type="profile"/>
<infoLink id="f480-6e55-8129-6dcc" name="New InfoLink" hidden="false" targetId="5043-8c45-ff63-01bb" type="profile"/>
<infoLink id="e8bd-a233-a056-9165" name="Teleport Strike" hidden="false" targetId="0cd3-5fb0-83ba-2475" type="profile"/>
<infoLink id="5e57-d166-137f-774d" name="And They Shall Know No Fear" hidden="false" targetId="4ea8-94d3-ba39-042f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4145-8989-f8ab-3938" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="b440-f88a-9ba9-9f14" name="New CategoryLink" hidden="false" targetId="2259-0523-78af-3f64" primary="false"/>
<categoryLink id="2ed1-7f55-fd91-9909" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="e1c5-e2b2-09c0-9568" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="e8a4-786a-3378-01c6" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="a197-ab97-246e-04e7" name="New CategoryLink" hidden="false" targetId="c82e-cd8d-e26d-a2c1" primary="false"/>
<categoryLink id="dd63-1365-39aa-3614" name="New CategoryLink" hidden="false" targetId="b86e-a36b-2bfb-9401" primary="false"/>
<categoryLink id="1055-ea36-245e-f75c" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d044-53fb-a99e-c7e4" name="Weapon Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5aac-b271-76e5-4bf1" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="19fc-9b1c-95cc-361b" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="9c21-8032-3cbe-2031" name="May Choose One" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="af00-b3d6-8c45-dc2a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5b29-37a4-b147-2a67" name="Relic blade" hidden="false" collective="false" import="true" targetId="0140-c9f2-0524-34cc" type="selectionEntry">
<modifiers>
<modifier type="set" field="2b35-2d5f-fb5a-7b2f" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="774f-a213-6811-1c20" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b35-2d5f-fb5a-7b2f" type="min"/>
</constraints>
</entryLink>
<entryLink id="2f8c-88aa-712b-bf88" name="Storm shield" hidden="false" collective="false" import="true" targetId="38b5-ef30-f87f-5275" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bc92-8a56-4940-f77c" type="max"/>
</constraints>
</entryLink>
<entryLink id="5100-2828-220b-b456" name="Terminator Melee Weapons" hidden="false" collective="false" import="true" targetId="c129-9017-ac8a-2e8e" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="025d-d0da-0728-63cb" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ecd8-66a5-4bff-8f32" name="Replace Stormbolter With:" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="9dc7-a4bb-1b70-d379" name="Terminator Combi-Weapons" hidden="false" collective="false" import="true" targetId="72e5-f434-3f67-8ec0" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dfd6-8cc5-f9d1-1624" type="max"/>
</constraints>
</entryLink>
<entryLink id="ddab-91a0-7019-3cd8" name="Storm shield" hidden="false" collective="false" import="true" targetId="38b5-ef30-f87f-5275" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1aff-85c9-6557-fa86" type="max"/>
</constraints>
</entryLink>
<entryLink id="2347-4cf6-7998-99b8" name="Terminator Melee Weapons" hidden="false" collective="false" import="true" targetId="c129-9017-ac8a-2e8e" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="193d-66c8-5080-fd4c" type="max"/>
</constraints>
</entryLink>
<entryLink id="759b-3d09-06d6-2d8d" name="Thunder hammer" hidden="false" collective="false" import="true" targetId="0e57-eaf5-763f-9c45" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="38b1-2c4c-9a9a-5293" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5f19-3ed3-633c-5e71" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="de00-11d5-2371-36ca" type="selectionEntryGroup"/>
<entryLink id="b297-9608-84ae-7ea5" name="Relics" hidden="false" collective="false" import="true" targetId="a06a-d610-aa13-235d" type="selectionEntryGroup"/>
<entryLink id="c3e7-02cc-2fa3-74e2" name="Warlord" hidden="false" collective="false" import="true" targetId="7b44-1768-3f88-93ca" type="selectionEntry"/>
<entryLink id="862c-6b9d-38e7-a14e" name="Is A Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="03c4-5b5e-f7bb-fae6" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="1d96-49a6-c1c9-d4d4" name="Stratagem: Hero of the Chapter" hidden="false" collective="false" import="true" targetId="7048-925f-2145-f990" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="pts" typeId="points" value="95.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d017-aac3-f78b-b0af" name="Chaplain" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="c424-cfff-ab71-9f1b" name="Chaplain" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="0bdf-a96e-9e38-7779" value="12"">
<conditions>
<condition field="selections" scope="d017-aac3-f78b-b0af" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c856-8b28-04a4-df92" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0828-455d-f272-9c49" name="Rosarius" hidden="false" targetId="7e82-cdc9-6125-be30" type="profile"/>
<infoLink id="d943-5837-a31d-577c" name="And They Shall Know No Fear" hidden="false" targetId="4ea8-94d3-ba39-042f" type="rule"/>
<infoLink id="1881-c0b1-d0e7-75b4" name="Spiritual Leaders" hidden="false" targetId="5449-84ea-b594-a19a" type="profile"/>
<infoLink id="6c67-90b2-b8bc-b615" name="Special Issue Ammunition" hidden="false" targetId="3ddc-7d56-adf0-a82b" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="27c0-077b-07be-dbd1" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="544d-11b5-3081-06fb" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="cad2-685e-486d-ada7" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="2027-b909-21af-bfca" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="8df4-b033-4b47-26dc" name="New CategoryLink" hidden="false" targetId="c82e-cd8d-e26d-a2c1" primary="false"/>
<categoryLink id="0e54-0cfc-36ca-7e9d" name="New CategoryLink" hidden="false" targetId="1de2-a1ec-963d-cb17" primary="false"/>
<categoryLink id="6ced-cfc7-e3fa-9809" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="23ee-09f0-c282-678f" name="Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="421d-fdc7-c101-da22" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="44bf-3aac-3da4-6728" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9570-04e2-0cc7-be6d" name="Boltgun" hidden="false" collective="false" import="true" targetId="69ce-51e1-7d84-4eaf" type="selectionEntry">
<constraints>