-
Notifications
You must be signed in to change notification settings - Fork 13
/
Bagration_Romanian.cat
3981 lines (3979 loc) · 292 KB
/
Bagration_Romanian.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="1cf5-8c90-3d5e-8584" name="Bagration: Romanian" revision="1" battleScribeVersion="2.03" authorName="mdcooledge" authorContact="BSData Discord: https://discord.com/invite/UrrPB3T" authorUrl="https://github.com/BSData/flamesofwar" library="false" gameSystemId="976a-b687-1fdb-07ef" gameSystemRevision="24" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<readme>Bagration: Axis-Allies
Hungarian, Romanian, and Finnish Forces On The Western Front, 1944-45
*Lessons From The Front: FAQ - March 2024 updates included*
*Command Cards not included*
Support the creators, buy the book!</readme>
<selectionEntries>
<selectionEntry id="b8d8-303a-3afe-a0ff" name="Reconnaissanse" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6aa8-e8e0-e7b3-b9a6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="4d1f-a7fe-c2b9-bed7" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="15ef-c2c1-7789-bd22" name="Options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c1ff-5c95-1121-7732" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="463d-3912-07bf-0813" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ac2f-5785-beac-f8cb" name="Cavalry Troop (LR123)" hidden="false" collective="false" import="true" targetId="7f35-5cea-28ca-73cd" type="selectionEntry"/>
<entryLink id="1748-1131-5176-0c9c" name="Scout Platoon (LR124)" hidden="false" collective="false" import="true" targetId="5f60-b299-af55-75dc" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6eaf-3dac-c8b4-576f" name="Anti-Tank" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b0e4-05a7-2413-f512" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5885-6a4f-7a46-1ae6" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d1c9-6a18-2d07-637f" name="Options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee8d-6035-b789-fbdc" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e875-f443-841b-5ba8" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c5f1-f08c-2f7f-8c63" name="75mm Anti-Tank Platoon (LR120)" hidden="false" collective="false" import="true" targetId="b736-e336-9993-b53b" type="selectionEntry"/>
<entryLink id="830c-14ae-cd1a-3012" name="75mm M43 Anti-Tank Platoon (LR121)" hidden="false" collective="false" import="true" targetId="77bf-6b5b-a443-aae4" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b7d-143b-47d2-f4c3" name="Artillery" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c91e-f772-01db-1d30" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="b871-9bf7-851a-8658" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="28ca-80ac-2874-a3bc" name="Options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6893-4b0c-7fe6-411f" type="min"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0af0-03d3-d6be-e3ce" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6d83-6818-271e-35ce" name="75mm Artillery Battery (LR125)" hidden="false" collective="false" import="true" targetId="c03b-ef17-bf2d-5964" type="selectionEntry"/>
<entryLink id="50a9-69c6-2895-ee00" name="100mm Artillery Battery (LR126)" hidden="false" collective="false" import="true" targetId="8819-973d-ec68-6744" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5f00-8760-f4a8-e05f" name="Anti-Tank" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b4fc-7e16-e59f-b215" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="4921-467d-1a98-6665" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="f65c-468d-a980-8048" name="Options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fac0-0462-f937-bd5e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dc5f-8a0a-9184-80f9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d95f-f0b1-c733-05a1" name="75mm Anti-Tank Platoon (LR120)" hidden="false" collective="false" import="true" targetId="b736-e336-9993-b53b" type="selectionEntry"/>
<entryLink id="a426-c84e-2994-abb2" name="TACAM R-2 Tank-Hunter Platoon (LR118)" hidden="false" collective="false" import="true" targetId="7bcb-0f43-7606-5139" type="selectionEntry"/>
<entryLink id="5d81-296f-7832-9e9f" name="TACAM T-60 Tank-Hunter Platoon (LR119)" hidden="false" collective="false" import="true" targetId="bd20-64e9-6346-cb06" type="selectionEntry"/>
<entryLink id="7db0-e8fa-f939-e4c0" name="75mm M43 Anti-Tank Platoon (LR121)" hidden="false" collective="false" import="true" targetId="77bf-6b5b-a443-aae4" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="98b0-2196-4c5a-781e" name="Anti-Tank" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5b6b-5cdf-16a4-6364" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="affe-9a60-aa31-373e" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="4c02-749b-c01f-0051" name="Options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c6f1-f7c4-f3d4-ace3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cdbc-5380-b3ca-581f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="78fe-f576-ce3d-ec27" name="TACAM R-2 Tank-Hunter Platoon (LR118)" hidden="false" collective="false" import="true" targetId="7bcb-0f43-7606-5139" type="selectionEntry"/>
<entryLink id="4b96-d0d9-a273-52bf" name="TACAM T-60 Tank-Hunter Platoon (LR119)" hidden="false" collective="false" import="true" targetId="bd20-64e9-6346-cb06" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="30ea-76ce-bb3e-2ae1" name="JU 87 Stuka Dive Bomber Flight (LH135)" hidden="false" collective="false" import="true" targetId="a1f0-6c65-b31d-7473" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43b4-8590-8e3d-e18a" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="e768-cd09-0273-4959" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="18d3-cfbc-ba0f-f6d6" name="T-4 Medium Tank Company" hidden="false" collective="false" import="true" targetId="55c2-4d0b-4e1c-fd09" type="selectionEntry">
<categoryLinks>
<categoryLink id="2add-1915-2108-412a" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d674-7a64-6dca-4f00" name="TA Assault Gun Battery" hidden="false" collective="false" import="true" targetId="b42a-3f5a-8dc9-f771" type="selectionEntry">
<categoryLinks>
<categoryLink id="3fb6-0dc6-4743-cb20" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="950b-5601-c5a2-10f4" name="Motorised Rifle Company" hidden="false" collective="false" import="true" targetId="d23a-d842-9d7b-0858" type="selectionEntry">
<categoryLinks>
<categoryLink id="b058-4778-8532-82b3" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0426-2c13-741c-7620" name="T-4 Medium Tank Platoon (LR106)" hidden="false" collective="false" import="true" targetId="334f-5a6b-b8c2-a14e" type="selectionEntry">
<modifiers>
<modifier type="set" field="74d5-62ad-5d27-d16c" value="0">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="334f-5a6b-b8c2-a14e" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="74d5-62ad-5d27-d16c" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="1211-a7d3-65a3-a5d6" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="191d-fd71-e460-ccee" name="TA Assault Gun Platoon (LR108)" hidden="false" collective="false" import="true" targetId="4ca4-14a0-8033-129a" type="selectionEntry">
<modifiers>
<modifier type="set" field="9781-91b9-d6a9-0d57" value="0">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="4ca4-14a0-8033-129a" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9781-91b9-d6a9-0d57" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="9fca-7c3c-ad17-e73a" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c943-7d3c-c932-74a1" name="Motorised Rifle Platoon (LR110)" hidden="false" collective="false" import="true" targetId="50e5-1ede-25e1-46b2" type="selectionEntry">
<modifiers>
<modifier type="set" field="4087-5f9f-cb4e-b1c7" value="0">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="50e5-1ede-25e1-46b2" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4087-5f9f-cb4e-b1c7" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="8817-65f8-8e34-a952" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7223-e5cc-e30b-d4d7" name="R-2 Light Tank Company" hidden="false" collective="false" import="true" targetId="08c3-a552-e839-12d1" type="selectionEntry">
<categoryLinks>
<categoryLink id="d1ea-38a1-8e0a-2dd5" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8d77-5547-c6ec-1574" name="R-35 Light Tank Platoon (LR103)" hidden="false" collective="false" import="true" targetId="f866-dc23-0b5d-bc29" type="selectionEntry">
<modifiers>
<modifier type="set" field="45db-0337-a558-19c5" value="0">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f866-dc23-0b5d-bc29" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45db-0337-a558-19c5" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5249-f2ff-40dd-89c6" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bd2f-bd9a-4b43-c951" name="R-2 Light Tank Platoon (LR102)" hidden="false" collective="false" import="true" targetId="60a4-17a0-2a84-78ac" type="selectionEntry">
<modifiers>
<modifier type="set" field="59fe-4082-033b-bcbc" value="0">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="60a4-17a0-2a84-78ac" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="59fe-4082-033b-bcbc" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="cbe0-fdf4-96a1-b69b" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bbe6-cfad-b96d-a0a0" name="AB Armoured Car Platoon (LR122)" hidden="false" collective="false" import="true" targetId="39ab-6e7f-c674-d8b8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac2e-665c-fefc-7d0f" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="aadf-6ec8-2775-3d70" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="68b0-08ce-c1f9-94a6" name="Artillery Observation Post (LR127)" hidden="true" collective="false" import="true" targetId="738d-c35c-01aa-58d5" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c03b-ef17-bf2d-5964" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8819-973d-ec68-6744" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="false"/>
<modifier type="set" field="a3a9-6df3-2ca1-9462" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a3a9-6df3-2ca1-9462" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="04f2-ff78-020a-27fb" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6363-e30b-4ecb-c82a" name="20mm Anti-Aircraft Platoon (LR128)" hidden="false" collective="false" import="true" targetId="df5e-79a0-930f-cf6e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb45-7a20-b3c0-190d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="9252-9f83-db20-e454" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="a1f0-6c65-b31d-7473" name="JU 87 Stuka Dive Bomber Flight (LR129)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="c9b2-be0c-7615-1a5f" name="JU 87 Stuka Dive Bomber Flight" publicationId="94b0-77e6-8d24-9f2b" page="111" hidden="false" typeId="d8ed-85c5-35d4-eb3c" typeName="Aircraft Unit">
<characteristics>
<characteristic name="Motivation" typeId="ec3b-729b-2af4-7bed">4+</characteristic>
<characteristic name="Skill" typeId="e506-9161-836a-5e2d">3+</characteristic>
<characteristic name="Is Hit On" typeId="9691-8132-58f7-5f86">5+</characteristic>
<characteristic name="Save" typeId="3a7a-29d5-008e-09f7">3+</characteristic>
<characteristic name="Tactical" typeId="8791-6355-ebcf-f430">UNLIMITED</characteristic>
<characteristic name="Terrain Dash" typeId="e6d2-8608-f213-ef1f">UNLIMITED</characteristic>
<characteristic name="Cross Country Dash" typeId="037d-b1be-ca62-5c3e">UNLIMITED</characteristic>
<characteristic name="Road Dash" typeId="207b-99f1-9a35-12d8">UNLIMITED</characteristic>
<characteristic name="Cross" typeId="07b3-6909-7897-f282">AUTO</characteristic>
<characteristic name="Notes" typeId="8252-ebff-91e7-47ea"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2091-94da-2b8c-6f26" name="Bombs" hidden="false" targetId="78a2-7146-034e-a601" type="rule"/>
<infoLink id="6719-c75c-ea9d-25fb" name="1000lb bombs" hidden="false" targetId="3157-4948-7d17-9f43" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="617f-478f-9622-5232" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="3cac-f344-da9d-7dde">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="120f-4453-7379-5289" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3752-fa1e-7dd0-a4f9" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="3cac-f344-da9d-7dde" name="2x Ju 87 Stuka" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="8"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4807-7ac7-bfe3-5057" name="Panther Tank Company HQ (LH101)" publicationId="94b0-77e6-8d24-9f2b" page="47" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="5c87-1744-45fd-719e" name="Panther Tank Company HQ" publicationId="10a4-8008-66c3-952e" page="43" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Follow Me 3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">4+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">9</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">5</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">1</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">14"/35cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">20"/50cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">24"/60cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">2+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Tank Formation</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="277b-57d9-af5c-1cb1" name="Panther (7.5cm)" hidden="false" targetId="5cbd-6bd6-285d-2514" type="profile"/>
<infoLink id="0219-2dc8-3caa-6917" name="Panther (MGs)" hidden="false" targetId="f46b-814d-d319-6932" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="a21e-9343-ec82-1abf" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="bf7a-a26b-90c7-c842">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="23bb-428d-3224-1f6a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="306b-e036-0ecf-66be" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="bf7a-a26b-90c7-c842" name="1x Panther (7.5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="10"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5970-040d-2936-336a" name="Panther Tank Platoon (LH102)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="df32-346e-67c3-a9f8" name="Panther Tank Platoon" publicationId="94b0-77e6-8d24-9f2b" page="47" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Follow Me 3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">4+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">9</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">5</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">1</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">14"/35cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">20"/50cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">24"/60cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">2+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6833-a430-621b-2ad6" name="Panther (7.5cm)" hidden="false" targetId="5cbd-6bd6-285d-2514" type="profile"/>
<infoLink id="6820-a1e9-4bfb-893f" name="Panther (MGs)" hidden="false" targetId="f46b-814d-d319-6932" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5f1f-951b-a3e7-8c7b" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="551f-d1fe-94c9-a41a">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3eec-4680-45d5-50d2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="49cb-f2bc-ff92-eb75" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5c08-4a11-daad-f868" name="3x Panther (7.5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="29"/>
</costs>
</selectionEntry>
<selectionEntry id="551f-d1fe-94c9-a41a" name="2x Panther (7.5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="19"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="334f-5a6b-b8c2-a14e" name="T-4 Medium Tank Platoon (LR106)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="02e2-768e-4762-26ab" name="T-4 Medium Tank Platoon" publicationId="94b0-77e6-8d24-9f2b" page="99" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+/4+
Last Stand 5+/4+
Remount 3+/3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">5+/4+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">6</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">3</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">1</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">12"/30cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">18"/45cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">20"/50cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">3+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Bazooka Skirts</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="01a2-1b92-0bcd-e171" name="T-4 (7.5cm)" hidden="false" targetId="4a6b-28f2-fd3f-2691" type="profile"/>
<infoLink id="8f70-8e88-746a-d501" name="T-4 (MGs)" hidden="false" targetId="2ad6-c017-f3e3-da2c" type="profile"/>
<infoLink id="9ab1-7937-f833-f902" name="Bazooka Skirts" hidden="false" targetId="73c2-04f8-a9a1-9e85" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="dc9b-7503-a1eb-d5fc" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="edfa-a149-ae92-0a36">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3d41-0f14-2bd4-51e2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db94-6355-4fbf-fd92" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="edfa-a149-ae92-0a36" name="3x T-4 (7.5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="12"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1695-eaa0-b082-d02b" name="Tiger Tank Company HQ (LH103)" publicationId="94b0-77e6-8d24-9f2b" page="49" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="9839-c085-5332-4426" name="Tiger Tank Company HQ" publicationId="94b0-77e6-8d24-9f2b" page="49" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Follow Me 3+
Remount 3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">4+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">9</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">8</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">2</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">12"/30cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">18"/45cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">20"/50cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">2+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Tank Formation</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a3b1-7cda-ebed-e49f" name="Tiger (8.8cm)" hidden="false" targetId="feb7-183c-8e36-c212" type="profile"/>
<infoLink id="8149-13fa-8cc1-a9c6" name="Tiger (MGs)" hidden="false" targetId="1b5b-7c16-0ebd-8124" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9dda-ed61-bb0b-6027" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="66eb-1fe8-86bf-db68">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c067-b51e-3001-7a7c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="55ab-6e83-4a6d-af26" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="66eb-1fe8-86bf-db68" name="1x Tiger (8.8cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="11"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1122-2c5f-92b2-15c5" name="Tiger Tank Platoon (LH104)" publicationId="94b0-77e6-8d24-9f2b" page="49" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="a21b-7711-8b3f-f959" name="Tiger Tank Platoon" publicationId="10a4-8008-66c3-952e" page="39" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Follow Me 3+
Remount 3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">4+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">9</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">8</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">2</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">12"/30cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">18"/45cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">20"/50cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">2+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e3dc-0684-6f71-bab3" name="Tiger (8.8cm)" hidden="false" targetId="feb7-183c-8e36-c212" type="profile"/>
<infoLink id="8356-b56c-4d30-f9e9" name="Tiger (MGs)" hidden="false" targetId="1b5b-7c16-0ebd-8124" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="f7b3-9761-6104-71f8" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="0148-866d-6892-d66f">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0c5-7699-c7de-05f8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d43-0ab6-d63a-746d" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="fcfb-5e25-3b64-e4a9" name="3x Tiger (8.8cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="32"/>
</costs>
</selectionEntry>
<selectionEntry id="0148-866d-6892-d66f" name="2x Tiger (8.8cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="21"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2b54-7942-ac6f-bfdf" name="Panzer III Tank Platoon (LH110)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="88bd-5fce-e847-1fc2" name="Panzer III Tank Platoon" publicationId="94b0-77e6-8d24-9f2b" page="53" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Follow Me 3+
Remount 3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">4+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">6</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">3</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">1</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">12"/30cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">18"/45cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">20"/50cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">3+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Bazooka Skirts</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c4d3-b017-0535-91ff" name="Bazooka Skirts" hidden="false" targetId="73c2-04f8-a9a1-9e85" type="rule"/>
<infoLink id="249c-70ae-73f7-4138" name="Panzer III (5cm)" hidden="false" targetId="c7f3-f60e-b009-b61d" type="profile"/>
<infoLink id="70e2-3855-e2f6-c93c" name="Panzer III (MGs)" hidden="false" targetId="6b76-0e4e-ab4c-26c8" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2cbc-18e6-cde6-a2d9" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="969d-a92b-c95c-2870">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee9e-92eb-97e3-cf32" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bef8-fd99-f77e-dd45" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="969d-a92b-c95c-2870" name="3x Panzer III (5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="e601-fc22-3cc5-b10f" name="4x Panzer III (5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="13"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="de98-ed9a-cecd-7958" name="TA Assault Gun Battery HQ (LR107)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="e14f-8307-0e0e-9381" name="TA Assault Gun Battery HQ" publicationId="94b0-77e6-8d24-9f2b" page="101" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">5+/4+
Remount 3+/3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">5+/4+
Assault 6/5+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">7</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">3</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">1</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">12"/30cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">18"/45cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">20"/50cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">4+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Tank Formation, Bazooka Skirts</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0977-54d4-242c-20fa" name="Forward Firing" hidden="false" targetId="fa9d-68f6-57d9-dc5d" type="rule"/>
<infoLink id="1c66-0f4c-fb8d-7514" name="Bazooka Skirts" hidden="false" targetId="73c2-04f8-a9a1-9e85" type="rule"/>
<infoLink id="4471-113e-6930-7fa7" name="StuG (7.5cm)" hidden="false" targetId="bd69-a1a8-1f4b-dbca" type="profile"/>
<infoLink id="a15f-9c17-a899-be01" name="StuG (MG)" hidden="false" targetId="9f0e-cce3-43b6-8d1d" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9b8a-fca8-3eab-8b8f" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="a116-361b-e54c-3d32">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e78-f088-598c-c4d7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3ef4-c75f-c4c5-e8df" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="a116-361b-e54c-3d32" name="1x TA (StuG) (7.5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="a38b-892e-4efc-d5b8" name="2x TA (StuG) (7.5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="3f5d-d8be-ad8c-0f1f" name="3x TA (StuG) (7.5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="14"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c14c-64c4-a577-af95" name="Hetzer Assault Gun Battery HQ (LH117)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="05ec-08d6-7618-ed68" name="Hetzer Assault Gun Battery HQ" publicationId="94b0-77e6-8d24-9f2b" page="61" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Counterattack 5+
Follow Me 3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">3+
Assault 4+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">7</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">3</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">1</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">12"/30cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">18"/45cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">20"/50cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">5+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Tank Formation</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5727-4994-f3c8-d7d3" name="Forward Firing" hidden="false" targetId="fa9d-68f6-57d9-dc5d" type="rule"/>
<infoLink id="3895-20fe-ab54-1eef" name="Overworked" hidden="false" targetId="4c99-f2b8-5818-72b1" type="rule"/>
<infoLink id="728c-cba5-7d18-efd5" name="Hetzer (7.5cm)" hidden="false" targetId="f238-495b-2735-427e" type="profile"/>
<infoLink id="0da9-9ae5-c7b4-a8c5" name="Hetzer (MG)" hidden="false" targetId="d377-215c-cc6c-b8e6" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="951d-557f-8b98-6dbd" name="Unit Size:" publicationId="10a4-8008-66c3-952e" hidden="false" collective="false" import="true" defaultSelectionEntryId="5845-4ddc-c4d4-31e1">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="40a8-5625-99fd-4204" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1fd7-bcd9-dd27-4db7" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5845-4ddc-c4d4-31e1" name="1x Hetzer (7.5cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="4"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b736-e336-9993-b53b" name="75mm Anti-Tank Platoon (LR120)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="86aa-87ee-6636-d63d" name="75mm Anti-Tank Platoon" publicationId="94b0-77e6-8d24-9f2b" page="108" hidden="false" typeId="7c70-b6af-9e5a-e7f6" typeName="Gun Unit">
<characteristics>
<characteristic name="Motivation" typeId="0954-f596-53ea-4ef7">4+/4+
Last Stand 5+/4+</characteristic>
<characteristic name="Skill" typeId="a907-592d-ab2d-5ead">4+/3+
Assault 5+</characteristic>
<characteristic name="Is Hit On" typeId="1f89-085b-464b-c60f">4+</characteristic>
<characteristic name="Save" typeId="ae14-5890-03de-a715">3+</characteristic>
<characteristic name="Tactical" typeId="3bad-79bd-27aa-4539">2"/5cm</characteristic>
<characteristic name="Terrain Dash" typeId="a400-d543-6fb9-26d0">2"/5cm</characteristic>
<characteristic name="Cross Country Dash" typeId="34ca-877a-8ffa-1006">4"/10cm</characteristic>
<characteristic name="Road Dash" typeId="d283-e066-839c-fbd7">6"/15cm</characteristic>
<characteristic name="Cross" typeId="3f9c-89f9-0b29-0585">5+</characteristic>
<characteristic name="Notes" typeId="28aa-390d-006a-1776">Gun Shield</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="eb57-67ee-5ffa-06c5" name="Forward Firing" hidden="false" targetId="fa9d-68f6-57d9-dc5d" type="rule"/>
<infoLink id="f974-ec5d-1f44-51bb" name="Gun Shield" hidden="false" targetId="2f2d-c5a9-ef7e-1b5e" type="rule"/>
<infoLink id="fe06-7871-8476-d50c" name="75mm gun" hidden="false" targetId="10ca-cb59-a7ec-7745" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="69fc-2c73-92b9-75bf" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="0e40-aa7e-6481-3fe8">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5141-96bd-0e59-b501" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac4d-0062-16af-5cd4" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="0e40-aa7e-6481-3fe8" name="2x 75mm gun" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="6"/>
</costs>
</selectionEntry>
<selectionEntry id="5ade-79f9-531f-f458" name="3x 75mm gun" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="10"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d305-7b65-8767-6319" name="Panther Tank Company" publicationId="94b0-77e6-8d24-9f2b" page="46" hidden="false" collective="false" import="true" type="unit">
<selectionEntryGroups>
<selectionEntryGroup id="b3fb-ffc0-ed66-d770" name="Armour" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0357-ac10-632c-f633" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8ef4-57c6-f98d-fd5d" name="Tiger Tank Platoon (LH104)" hidden="false" collective="false" import="true" targetId="1122-2c5f-92b2-15c5" type="selectionEntry"/>
<entryLink id="99fc-2b4e-802d-2403" name="Turán Tank Platoon (LH106)" hidden="false" collective="false" import="true" targetId="b21e-9451-7773-b9ef" type="selectionEntry"/>
<entryLink id="a23d-8e89-378d-3b8f" name="Panzer IV Tank Platoon (LH109)" hidden="false" collective="false" import="true" targetId="334f-5a6b-b8c2-a14e" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="a0c6-ec43-cb12-a4d9" name="Panther Tank Platoon (LH102)" hidden="false" collective="false" import="true" targetId="5970-040d-2936-336a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6954-8417-0e3f-68b8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e5d1-0850-f954-782f" type="max"/>
</constraints>
</entryLink>
<entryLink id="2b6a-1490-164b-f31b" name="Panther Tank Platoon (LH102)" hidden="false" collective="false" import="true" targetId="5970-040d-2936-336a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="cfdf-b063-cb6a-2261" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8364-0cf6-b6a0-605a" type="max"/>
</constraints>
</entryLink>
<entryLink id="a240-000d-3955-058c" name="Panther Tank Company HQ (LH101)" hidden="false" collective="false" import="true" targetId="4807-7ac7-bfe3-5057" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8cb7-afe2-9acd-3548" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="084f-12ac-fda4-aa86" type="max"/>
</constraints>
</entryLink>
<entryLink id="da3a-d59d-0df5-b623" name="Toldi II Light Tank Platoon (LH107)" hidden="false" collective="false" import="true" targetId="0c1f-fe74-eaa7-03f6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7106-50d9-7aef-5f0e" type="max"/>
</constraints>
</entryLink>
<entryLink id="c83a-7cd7-0782-939d" name="Nimród Self-Propelled AA Platoon (LH111)" hidden="false" collective="false" import="true" targetId="c590-3fe8-be65-701a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="93cc-2f1d-ef0f-dbbb" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9a62-d779-a8a7-0d98" name="Tiger Tank Company" publicationId="94b0-77e6-8d24-9f2b" page="48" hidden="false" collective="false" import="true" type="unit">
<selectionEntryGroups>
<selectionEntryGroup id="159f-f2aa-e4af-ff47" name="Armour" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9603-c81b-494a-0a18" type="max"/>
</constraints>
<entryLinks>
<entryLink id="19a0-4e24-8641-afd7" name="Panther Tank Platoon (LH102)" hidden="false" collective="false" import="true" targetId="5970-040d-2936-336a" type="selectionEntry"/>
<entryLink id="9a8c-18e6-b935-9359" name="Turán Tank Platoon (LH106)" hidden="false" collective="false" import="true" targetId="b21e-9451-7773-b9ef" type="selectionEntry"/>
<entryLink id="8086-3ef8-3409-bbfe" name="Panzer IV Tank Platoon (LH109)" hidden="false" collective="false" import="true" targetId="334f-5a6b-b8c2-a14e" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="7723-7a90-6bb9-7dee" name="Tiger Tank Platoon (LH104)" hidden="false" collective="false" import="true" targetId="1122-2c5f-92b2-15c5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5d9a-5814-7630-f9e0" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="065c-ae67-b8e2-5b59" type="max"/>
</constraints>
</entryLink>
<entryLink id="b6eb-5dad-98ba-638a" name="Tiger Tank Platoon (LH104)" hidden="false" collective="false" import="true" targetId="1122-2c5f-92b2-15c5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1798-6e46-cbc4-9b3f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="da6b-06da-f36f-691a" type="max"/>
</constraints>
</entryLink>
<entryLink id="bd74-2064-7e24-ea71" name="Tiger Tank Company HQ (LH103)" hidden="false" collective="false" import="true" targetId="1695-eaa0-b082-d02b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="51f4-0a70-70f6-8225" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce43-a020-a2ea-d4ce" type="max"/>
</constraints>
</entryLink>
<entryLink id="fece-af71-d460-763d" name="Toldi II Light Tank Platoon (LH107)" hidden="false" collective="false" import="true" targetId="0c1f-fe74-eaa7-03f6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b6b3-fdbd-cc34-7d84" type="max"/>
</constraints>
</entryLink>
<entryLink id="6244-00e0-1cfe-a0df" name="Nimród Self-Propelled AA Platoon (LH111)" hidden="false" collective="false" import="true" targetId="c590-3fe8-be65-701a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9015-13d9-deec-d72c" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4999-0c70-aebd-84fd" name="Turán Tank Company HQ (LH105)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="157a-61e5-23f9-193d" name="Turán Tank Company HQ" publicationId="94b0-77e6-8d24-9f2b" page="51" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Follow Me 3+
Remount 3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">4+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">5</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">2</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">1</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">14"/35cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">20"/50cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">24"/60cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">2+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Tank Formation</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a3e2-776c-c747-01b4" name="Turán I & II (MGs)" hidden="false" targetId="47d3-0aba-1e38-6111" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="41d1-3fd2-b3ed-f810" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="e0f4-afd7-4b2f-08ec">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d7d9-9ebc-a89e-1b05" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0983-3877-995f-2c46" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="e0f4-afd7-4b2f-08ec" name="2x Turán I (40mm)" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="8ba6-7bed-6974-cead" name="Turán I (40mm)" hidden="false" targetId="d8eb-0d41-2fe8-6d9f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="e7d0-7e00-ffb4-aae5" name="2x Turán II (75mm)" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="299a-2cab-d824-ef78" name="HEAT" hidden="false" targetId="552c-ffc7-11d8-b5b7" type="rule"/>
<infoLink id="dad9-01b2-26e2-1e34" name="Turán II (75mm)" hidden="false" targetId="b6ff-88c4-6c68-03f3" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="7"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b21e-9451-7773-b9ef" name="Turán Tank Platoon (LH106)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="3daa-0ad3-1edf-5568" name="Turán Tank Platoon" publicationId="94b0-77e6-8d24-9f2b" page="51" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Follow Me 3+
Remount 3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">4+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">5</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">2</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">1</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">14"/35cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">20"/50cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">24"/60cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">2+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b404-4024-fd46-5a9c" name="Turán I & II (MGs)" hidden="false" targetId="47d3-0aba-1e38-6111" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="3ff9-aad2-7bf6-0383" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="5039-baf6-5cae-895b">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2172-1a2e-4747-8a8f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c740-fadd-857a-dc36" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5039-baf6-5cae-895b" name="3x Turán I (40mm)" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="3e35-bbf4-e96d-c398" name="Turán I (40mm)" hidden="false" targetId="d8eb-0d41-2fe8-6d9f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="7"/>
</costs>
</selectionEntry>
<selectionEntry id="bd13-81ae-ca93-651d" name="3x Turán II (75mm)" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="b8eb-1c6c-fbc5-12d7" name="Turán II (75mm)" hidden="false" targetId="b6ff-88c4-6c68-03f3" type="profile"/>
<infoLink id="b20f-57eb-481f-19a3" name="HEAT" hidden="false" targetId="552c-ffc7-11d8-b5b7" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="11"/>
</costs>
</selectionEntry>
<selectionEntry id="aa99-5712-49cc-f786" name="4x Turán I (40mm)" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="72a6-736c-267b-d8be" name="Turán I (40mm)" hidden="false" targetId="d8eb-0d41-2fe8-6d9f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="9"/>
</costs>
</selectionEntry>
<selectionEntry id="ba5e-fd38-9034-6c9e" name="5x Turán I (40mm)" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="1ae4-32a2-f698-9259" name="Turán I (40mm)" hidden="false" targetId="d8eb-0d41-2fe8-6d9f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="12"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0c1f-fe74-eaa7-03f6" name="Toldi II Light Tank Platoon (LH107)" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="5f7b-2841-663e-285e" name="Toldi II Light Tank Platoon" publicationId="94b0-77e6-8d24-9f2b" page="51" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">5+
Remount 4+
Follow Me 3+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">4+
Assault 5+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">1 (Toldi II)
3 (Toldi IIa)</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">1</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">1</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">14"/35cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">20"/50cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">24"/60cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">2+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Armoured Reserve, Scout, Spearhead</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1565-ebb2-0c48-93a8" name="Toldi II & IIa (MG)" hidden="false" targetId="6679-e75b-a3cd-1478" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="8c18-35b0-7668-3a5d" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="92ab-60df-7347-225d">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ca9d-6db0-af1d-0328" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4617-affb-b8af-9a26" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="d11a-7cdb-58e5-68c8" name="3x Toldi IIa (40mm)" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="ad76-8f47-d8d0-e8f8" name="Toldi IIa (40mm)" hidden="false" targetId="c084-6e20-d89c-2a94" type="profile"/>