forked from JaKaTaK/TheCoreConverter
-
Notifications
You must be signed in to change notification settings - Fork 39
/
ConflictChecks.py
1433 lines (1432 loc) · 313 KB
/
ConflictChecks.py
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
# This file is generated by a script. DO NOT edit.
CONFLICT_CHECKS = {'alliedcommanders/AbathurLavaWorm': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YagdraFirebreath/AbathurLavaWorm', 'YagdraFireball/AbathurLavaWorm', 'YagdraTunnel/AbathurLavaWorm'],
'alliedcommanders/AbathurSymbioteLeviathan': ['SymbioteStab/AbathurSymbioteBrutalisk'],
'alliedcommanders/AlarakChampion (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AlarakKnockback/AlarakChampion', 'AlarakDeadlyCharge/AlarakChampion', 'Rally'],
'alliedcommanders/ArchAngelCoopAssault': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArchAngelCoopMissileShot/ArchAngelCoopAssault', 'ArchAngelCoopRepel/ArchAngelCoopAssault', 'FighterMode'],
'alliedcommanders/ArchAngelCoopFighter': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArchAngelCoopBombardment/ArchAngelCoopAssault', 'AssaultMode'],
'alliedcommanders/Archon': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HealingPsionicStorm/Archon', 'Feedback/Archon', 'PsiStorm/Archon', 'Rally'],
'alliedcommanders/Armory': ['TerranVehicleAndShipWeaponsLevel1/Armory', 'TerranVehicleAndShipPlatingLevel1/Armory', 'ResearchVehicleWeaponRange/Armory', 'ResearchRegenerativeBioSteel/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'alliedcommanders/ArtanisVoid (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArtanisLightningDash/ArtanisVoid', 'ArtanisAstralWind/ArtanisVoid', 'Rally'],
'alliedcommanders/BanelingNest': ['EvolveCentrificalHooks/BanelingNest', 'EvolveBanelingCorrosiveBile/BanelingNest', 'EvolveBanelingRupture/BanelingNest', 'EvolveBanelingHeal/BanelingNest', 'Rally', 'ZagaraVoidCoopBanelingSpawner/BanelingNest', 'Cancel'],
'alliedcommanders/Banshee': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CloakOnBanshee', 'CloakOff', 'IgniteAfterburners/Banshee'],
'alliedcommanders/BarracksTechLab 0': ['ResearchShieldWall/BarracksTechLab', 'Stimpack/BarracksTechLab', 'ResearchPunisherGrenades/BarracksTechLab', 'ResearchIncineratorGauntlets/BarracksTechLab', 'ResearchJuggernautPlating/BarracksTechLab', 'ResearchStabilizerMedpacks/BarracksTechLab', 'Cancel'],
'alliedcommanders/BarracksTechLab 1': ['ResearchShieldWall/BarracksTechLab', 'Stimpack/BarracksTechLab', 'ResearchPunisherGrenades/BarracksTechLab', 'ResearchReaperSpiderMines/BarracksTechLab', 'ResearchJuggernautPlating/BarracksTechLab', 'ResearchStabilizerMedpacks/BarracksTechLab', 'Cancel'],
'alliedcommanders/BarracksTechReactor': ['ResearchShieldWall/BarracksTechReactor', 'Stimpack/BarracksTechReactor', 'ResearchPunisherGrenades/BarracksTechReactor', 'ResearchIncineratorGauntlets/BarracksTechReactor', 'ResearchJuggernautPlating/BarracksTechReactor', 'ResearchStabilizerMedpacks/BarracksTechReactor', 'Cancel'],
'alliedcommanders/Battlecruiser': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'Hyperjump/Battlecruiser', 'IgniteAfterburners/Battlecruiser'],
'alliedcommanders/BileLauncherZagara': ['BileLauncherBombardment/BileLauncherZagara', 'Cancel'],
'alliedcommanders/Brutalisk': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SymbioteCarapace/Brutalisk', 'BrutaliskDeepTunnel/Brutalisk', 'BurrowDown'],
'alliedcommanders/ColonistHut': ['HutLoad/Hut', 'HutUnloadAll/Hut', 'Rally'],
'alliedcommanders/ColonistShipFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BunkerLoad', 'BunkerUnloadAll', 'Land'],
'alliedcommanders/Colossus (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ResearchExtendedThermalLance/Colossus'],
'alliedcommanders/ColossusPurifier (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ResearchExtendedThermalLance/ColossusPurifier'],
'alliedcommanders/CommandCenter 0': ['SCV', 'VespeneDrone/CommandCenter', 'OrbitalCommand/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'alliedcommanders/CommandCenter 1': ['SCV', 'VespeneDrone/CommandCenter', 'OrbitalCommand/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Halt', 'Cancel'],
'alliedcommanders/CommandCenter 2': ['SCV', 'VespeneDrone/CommandCenter', 'UpgradeToPlanetaryFortress/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'alliedcommanders/CommandCenter 3': ['SCV', 'VespeneDrone/CommandCenter', 'UpgradeToPlanetaryFortress/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Halt', 'Cancel'],
'alliedcommanders/CorsairMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CorsairMPDisruptionWeb/CorsairMP', 'Rally'],
'alliedcommanders/CrateSwannSpecialDelivery': ['CrateSwannSpecialDeliveryOpenCrate/CrateSwannSpecialDelivery'],
'alliedcommanders/CreepColony': ['SunkenColony/CreepColony', 'SporeColony/CreepColony', 'Cancel'],
'alliedcommanders/CreepTumorBurrowed': ['ZagaraVoidCoopCreepMaster/CreepTumorBurrowed', 'Cancel'],
'alliedcommanders/CycloneWreckage 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LockOn/Cyclone', 'SwannCommanderRebuild', 'Cancel'],
'alliedcommanders/CycloneWreckage 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LockOnUpgraded/Cyclone', 'SwannCommanderRebuild', 'Cancel'],
'alliedcommanders/DarkPylonOvercharged': ['Stop', 'Attack', 'DarkPylonRecall/DarkPylon', 'Cancel'],
'alliedcommanders/DarkShrine': ['ResearchShadowFury/DarkShrine', 'ResearchShadowDash/DarkShrine', 'ResearchVoidStasis/DarkShrine', 'ResearchDarkArchonFullStartingEnergy/DarkShrine', 'ResearchDarkArchonMindControl/DarkShrine', 'Cancel'],
'alliedcommanders/DarkTemplarShakuras': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidDarkTemplarShadowFury/DarkTemplarShakuras', 'DarkTemplarShadowDash/DarkTemplarShakuras', 'VoidStasis/DarkTemplarShakuras', 'Rally'],
'alliedcommanders/DefilerMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'InfestorConsumption/DefilerMP', 'DefilerMPDarkSwarm/DefilerMP', 'DefilerMPPlague/DefilerMP', 'EvolveToBrutalisk/DefilerMP', 'BurrowDown'],
'alliedcommanders/Devourer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CorrosiveAcidDevourer/Devourer', 'EvolveToLeviathan/Devourer'],
'alliedcommanders/DrakkenLaserDrillCoop 0': ['Attack', 'ResearchDrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'Cancel'],
'alliedcommanders/DrakkenLaserDrillCoop 1': ['DrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'ResearchDrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'Cancel'],
'alliedcommanders/DrakkenLaserDrillCoop 2': ['DrakkenLaserDrillNuke/DrakkenLaserDrillCoop', 'ResearchDrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'Cancel'],
'alliedcommanders/DrakkenLaserDrillCoop 3': ['BrokenDrakkenLaserDrill/DrakkenLaserDrillCoop', 'ResearchDrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'Cancel'],
'alliedcommanders/Drone (card index 0) 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'ZergBuild/Drone', 'ZergBuildAdvanced/Drone', 'MutatorWorkerSleep/Drone', 'Cancel'],
'alliedcommanders/Drone (card index 0) 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'ZergBuild/Drone', 'ZergBuildAdvanced/Drone', 'MutatorWorkerSleep/Drone', 'BurrowDown'],
'alliedcommanders/Drone (card index 1) 0': ['Hatchery/Drone', 'Extractor/Drone', 'SpawningPool/Drone', 'EvolutionChamber/Drone', 'BanelingNest/Drone', 'SpineCrawler/Drone', 'SporeCrawler/Drone', 'ZagaraBileLauncher/Drone', 'Cancel'],
'alliedcommanders/Drone (card index 1) 1': ['Hatchery/Drone', 'Extractor/Drone', 'SpawningPool/Drone', 'EvolutionChamber/Drone', 'SpineCrawler/Drone', 'SporeCrawler/Drone', 'ZagaraBileLauncher/Drone', 'Cancel'],
# 'alliedcommanders/Drone (card index 1) 1': ['Hatchery/Drone', 'Extractor/Drone', 'SpawningPool/Drone', 'EvolutionChamber/Drone', 'RoachWarren/Drone', 'SpineCrawler/Drone', 'SporeCrawler/Drone', 'ZagaraBileLauncher/Drone', 'Cancel'],
'alliedcommanders/Drone (card index 2)': ['HydraliskDen/Drone', 'InfestationPit/Drone', 'Spire/Drone', 'NydusNetwork/Drone', 'UltraliskCavern/Drone', 'ScourgeNest/Drone', 'Cancel'],
'alliedcommanders/DroneOperator': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VespeneDrone/DroneOperator'],
'alliedcommanders/EngineeringBay 0': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 1': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 2': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 3': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 4': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 5': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 6': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 7': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 8': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/Epilogue02VoidRift (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'Rally', 'WarpInUnits/Epilogue02VoidRift', 'Cancel'],
'alliedcommanders/Epilogue02VoidRift (card index 1)': ['Zealot', 'Stalker', 'Colossus/Epilogue02VoidRift', 'Immortal/Epilogue02VoidRift', 'VoidRay/Epilogue02VoidRift', 'Zergling/Epilogue02VoidRift', 'Hydralisk/Epilogue02VoidRift', 'Mutalisk/Epilogue02VoidRift', 'Ultralisk/Epilogue02VoidRift', 'Rally', 'Marine/Epilogue02VoidRift', 'Ghost/Epilogue02VoidRift', 'SiegeTank/Epilogue02VoidRift', 'Banshee/Epilogue02VoidRift', 'Cancel'],
'alliedcommanders/EvolutionChamber 0': ['zergmeleeweapons1/EvolutionChamber', 'zergmissileweapons1/EvolutionChamber', 'zerggroundarmor1/EvolutionChamber', 'Transfusion/EvolutionChamber', 'EvolveHatcheryDoubleQueue/EvolutionChamber', 'EvolveKerriganHeroicFortitude/EvolutionChamber', 'EvolveK5ChainLightning/EvolutionChamber', 'EvolveK5Cooldowns/EvolutionChamber', 'Cancel'],
'alliedcommanders/EvolutionChamber 1': ['zergmeleeweapons1/EvolutionChamber', 'zergmissileweapons1/EvolutionChamber', 'zerggroundarmor1/EvolutionChamber', 'Transfusion/EvolutionChamber', 'EvolveHatcheryDoubleQueue/EvolutionChamber', 'EvolveKerriganHeroicFortitude/EvolutionChamber', 'EvolveK5ChainLightning/EvolutionChamber', 'EvolveAberrationArmorAura/EvolutionChamber', 'Cancel'],
'alliedcommanders/EvolutionPit (card index 0)': ['ResearchAbathurImprovedToxicNest/EvolutionPit', 'ResearchAbathurHiddenToxicNest/EvolutionPit', 'ResearchAbathurLocustAirAttack/EvolutionPit', 'ResearchAbathurNetworkedCarapace/EvolutionPit', 'Cancel'],
'alliedcommanders/Factory (card index 2)': ['Hellion/Factory', 'Goliath/Factory', 'SiegeTank/Factory', 'WidowMine/Factory', 'Thor/Factory', 'MercHellion/Factory', 'HireSpartanCompany/Factory', 'HireSiegeBreakers/Factory', 'Cancel'],
'alliedcommanders/FactoryFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'BuildTechLabFactory/FactoryFlying', 'TechReactorAI/FactoryFlying', 'Land'],
'alliedcommanders/FactoryTechLab': ['ResearchHighCapacityBarrels/FactoryTechLab', 'ResearchHellbatHellArmor/FactoryTechLab', 'ResearchAresClassTargetingSystem/FactoryTechLab', 'ResearchMultiLockWeaponsSystem/FactoryTechLab', 'ResearchMaelstromRounds/FactoryTechLab', 'ResearchLockOnRangeUpgrade/FactoryTechLab', 'ResearchCycloneLockOnDamageUpgrade/FactoryTechLab', 'Research330mmBarrageCannon/FactoryTechLab', 'Cancel'],
'alliedcommanders/FactoryTechReactor': ['ResearchHighCapacityBarrels/FactoryTechReactor', 'ResearchHellbatHellArmor/FactoryTechReactor', 'ResearchAresClassTargetingSystem/FactoryTechReactor', 'ResearchMultiLockWeaponsSystem/FactoryTechReactor', 'ResearchMaelstromRounds/FactoryTechReactor', 'ResearchLockOnRangeUpgrade/FactoryTechReactor', 'ResearchCycloneLockOnDamageUpgrade/FactoryTechReactor', 'Research330mmBarrageCannon/FactoryTechReactor', 'Cancel'],
'alliedcommanders/FleetBeacon': ['AnionPulseCrystals/FleetBeacon', 'ResearchDoubleGravitonBeam/FleetBeacon', 'ResearchTempestDisintegration/FleetBeacon', 'ResearchOracleStasisWardUpgrade/FleetBeacon', 'Cancel'],
'alliedcommanders/Forge': ['ProtossGroundWeaponsLevel1/Forge', 'ProtossGroundArmorLevel1/Forge', 'ProtossShieldsLevel1/Forge', 'ResearchKaraxTurretRange/Forge', 'ResearchKaraxTurretAttackSpeed/Forge', 'ResearchStructureBarrier/Forge', 'Cancel'],
'alliedcommanders/Gateway (card index 0) 0': ['Zealot', 'WarpInReplicant/Gateway', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/Gateway', 'Rally', 'UpgradeToWarpGate/Gateway', 'Cancel'],
'alliedcommanders/Gateway (card index 0) 1': ['Zealot', 'Sentry', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/Gateway', 'Rally', 'UpgradeToWarpGate/Gateway', 'Cancel'],
'alliedcommanders/GreaterRoachWarren': ['EvolveGlialRegeneration/GreaterRoachWarren', 'EvolveTunnelingClaws/GreaterRoachWarren', 'EvolveHydriodicBile/GreaterRoachWarren', 'EvolveAdaptivePlating/GreaterRoachWarren', 'Cancel'],
'alliedcommanders/GreaterSpire 0': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/GreaterSpire', 'EvolveViciousGlaive/GreaterSpire', 'EvolveSunderingGlave/GreaterSpire', 'EvolveBroodLordSpeed/GreaterSpire', 'EvolveDevourerAoEDamage/GreaterSpire', 'Cancel'],
'alliedcommanders/GreaterSpire 1': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/GreaterSpire', 'EvolveViciousGlaive/GreaterSpire', 'EvolveSunderingGlave/GreaterSpire', 'EvolveGuardianAttackRangeIncrease/GreaterSpire', 'EvolveDevourerAoEDamage/GreaterSpire', 'Cancel'],
'alliedcommanders/GuardianMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveToLeviathan/GuardianMP'],
'alliedcommanders/Hatchery (card index 0) 0': ['Larva', 'BuildCreepTumor/Hatchery', 'RespawnZergling/Hatchery', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'alliedcommanders/Hatchery (card index 0) 1': ['Larva', 'QueenCoop', 'RespawnZergling/Hatchery', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'alliedcommanders/HellbatWreckage': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToHellion/Hellion', 'SwannCommanderRebuild'],
'alliedcommanders/HellionWreckage': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToHellionTank/Hellion', 'SwannCommanderRebuild'],
'alliedcommanders/Hercules': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HerculesLoad/Hercules', 'HerculesUnloadAll/Hercules', 'HyperjumpHercules/Hercules'],
'alliedcommanders/HighArchonTemplar 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HealingPsionicStorm/HighArchonTemplar', 'Feedback/HighArchonTemplar', 'HighArchonPsiStorm/HighArchonTemplar', 'AWrp', 'Rally'],
'alliedcommanders/HighArchonTemplar 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HealingPsionicStorm/HighArchonTemplar', 'Feedback/HighArchonTemplar', 'HighArchonPsiStorm/HighArchonTemplar', 'ArchonAdvancedMergeSelection', 'Rally'],
'alliedcommanders/HighTemplar': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HealingPsionicStorm/HighTemplar', 'Feedback/HighTemplar', 'PsiStorm/HighTemplar', 'AWrp', 'Rally'],
'alliedcommanders/HighTemplarShakuras 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Feedback/HighTemplarShakuras', 'PsiStorm/HighTemplarShakuras', 'Rally'],
'alliedcommanders/HighTemplarShakuras 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Feedback/HighTemplarShakuras', 'PsiStorm/HighTemplarShakuras', 'AWrp'],
'alliedcommanders/Hive (card index 0) 0': ['Larva', 'QueenClassic', 'RespawnZergling/Hive', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Cancel'],
'alliedcommanders/Hive (card index 0) 1': ['Larva', 'BuildCreepTumor/Hive', 'RespawnZergling/Hive', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Cancel'],
'alliedcommanders/Hive (card index 0) 2': ['Larva', 'QueenCoop', 'RespawnZergling/Hive', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Cancel'],
'alliedcommanders/HotSHunter': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSHunter', 'DisableBuildingAttack/HotSHunter', 'BurrowDown'],
'alliedcommanders/HotSLeviathan': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'SymbioteCarapace/HotSLeviathan'],
'alliedcommanders/HotSSplitterlingMediumBurrowed': ['Attack', 'Explode/HotSSplitterlingBigBurrowed', 'BurrowUp'],
'alliedcommanders/HotSTorrasque': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TorrasqueChrysalis/HotSTorrasque', 'BurrowChargeCampaign/HotSTorrasque', 'BurrowDown'],
'alliedcommanders/HugeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'alliedcommanders/HugeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'alliedcommanders/HugeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'alliedcommanders/HugeSwarmQueen 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'alliedcommanders/HugeSwarmQueen 4': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'alliedcommanders/HugeSwarmQueen 5': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'alliedcommanders/HugeSwarmQueen 6': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'alliedcommanders/HugeSwarmQueen 7': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'alliedcommanders/HybridDestroyer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonPrison/HybridDestroyer'],
'alliedcommanders/HybridNemesis': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HybridGeneralPhaseShift/HybridNemesis'],
'alliedcommanders/HydraliskDen 0': ['EvolveMuscularAugments/HydraliskDen', 'EvolveAncillaryCarapace/HydraliskDen', 'EvolveFrenzy/HydraliskDen', 'ResearchLurkerRange/HydraliskDen', 'LurkerDen/HydraliskDen', 'Cancel'],
'alliedcommanders/HydraliskDen 1': ['EvolveMuscularAugments/HydraliskDen', 'EvolveAncillaryCarapace/HydraliskDen', 'EvolveFrenzy/HydraliskDen', 'ResearchLurkerRange/HydraliskDen', 'ImpalerDen/HydraliskDen', 'Cancel'],
'alliedcommanders/HydraliskEvolved': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HydraliskFrenzy/HydraliskEvolved', 'BurrowDown'],
'alliedcommanders/HydraliskImpaler': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HydraliskFrenzy/HydraliskImpaler', 'Impaler/HydraliskImpaler', 'BurrowDown'],
'alliedcommanders/HydraliskLurker': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Lurker/HydraliskLurker', 'HydraliskFrenzy/HydraliskLurker', 'BurrowDown'],
'alliedcommanders/HyperionVoidCoop': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HyperionVoidCoopHyperjump/HyperionVoidCoop', 'HyperionVoidCoopYamatoCannon/HyperionVoidCoop', 'HyperionAdvancedPDD/HyperionVoidCoop'],
'alliedcommanders/Immortal': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalOverload/Immortal'],
'alliedcommanders/ImmortalAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalOverload/ImmortalAiur', 'ImmortalShakurasShadowCannon/ImmortalAiur'],
'alliedcommanders/ImpalerAbathur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AbathurDeepTunnel/ImpalerAbathur', 'ImpalerBurrowDown'],
'alliedcommanders/ImpalerAbathurBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AbathurDeepTunnel/ImpalerAbathurBurrowed', 'ImpalerBurrowUp'],
'alliedcommanders/ImpalerDen': ['EvolveMuscularAugments/ImpalerDen', 'EvolveAncillaryCarapace/ImpalerDen', 'EvolveFrenzy/ImpalerDen', 'ResearchSeismicSpinesAbathur/ImpalerDen', 'Cancel'],
'alliedcommanders/InfestationPit 0': ['HotSPressurizedGlands/InfestationPit', 'EvolveViperImprovedCastRange/InfestationPit', 'EvolveInfestorEnergyUpgrade/InfestationPit', 'ResearchNeuralParasite/InfestationPit', 'Cancel'],
'alliedcommanders/InfestationPit 1': ['HotSPressurizedGlands/InfestationPit', 'EvolveViperImprovedCastRange/InfestationPit', 'EvolveInfestorEnergyUpgrade/InfestationPit', 'EvolveViperAbductImprovedStun/InfestationPit', 'Cancel'],
'alliedcommanders/InfestationPit 2': ['HotSPressurizedGlands/InfestationPit', 'EvolveViperImprovedCastRange/InfestationPit', 'SwarmHostDeepBurrow/InfestationPit', 'ResearchNeuralParasite/InfestationPit', 'Cancel'],
'alliedcommanders/InfestationPit 3': ['HotSPressurizedGlands/InfestationPit', 'EvolveViperImprovedCastRange/InfestationPit', 'SwarmHostDeepBurrow/InfestationPit', 'EvolveViperAbductImprovedStun/InfestationPit', 'Cancel'],
'alliedcommanders/InfestedAbomination': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AberrationProtectiveCover/InfestedAbomination', 'BurrowDown'],
'alliedcommanders/InfestedAbominationBurrowed': ['AberrationProtectiveCover/InfestedAbominationBurrowed', 'BurrowUp'],
'alliedcommanders/InfestedMissileTurret': ['SelectBuilder', 'Stop', 'Attack', 'InfestedAbomination/InfestedMissileTurret', 'Rally', 'Cancel'],
'alliedcommanders/K5Kerrigan 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5Kerrigan', 'PsionicLift/K5Kerrigan', 'WildMutation/K5Kerrigan', 'KerriganVoidCoopCrushingGripWave/K5Kerrigan', 'BurrowDown'],
'alliedcommanders/K5Kerrigan 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5Kerrigan', 'PsionicLift/K5Kerrigan', 'KerriganVoidCoopEconDrop/K5Kerrigan', 'K5Leviathan/K5Kerrigan', 'BurrowDown'],
'alliedcommanders/K5Kerrigan 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5Kerrigan', 'PsionicLift/K5Kerrigan', 'WildMutation/K5Kerrigan', 'K5Leviathan/K5Kerrigan', 'BurrowDown'],
'alliedcommanders/K5Kerrigan 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5Kerrigan', 'PsionicLift/K5Kerrigan', 'KerriganVoidCoopEconDrop/K5Kerrigan', 'KerriganVoidCoopCrushingGripWave/K5Kerrigan', 'BurrowDown'],
'alliedcommanders/K5KerriganBurrowed 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'WildMutation/K5KerriganBurrowed', 'K5Leviathan/K5KerriganBurrowed', 'BurrowUp'],
'alliedcommanders/K5KerriganBurrowed 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'KerriganVoidCoopEconDrop/K5KerriganBurrowed', 'K5Leviathan/K5KerriganBurrowed', 'BurrowUp'],
'alliedcommanders/K5KerriganBurrowed 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'WildMutation/K5KerriganBurrowed', 'KerriganVoidCoopCrushingGripWave/K5KerriganBurrowed', 'BurrowUp'],
'alliedcommanders/K5KerriganBurrowed 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'KerriganVoidCoopEconDrop/K5KerriganBurrowed', 'KerriganVoidCoopCrushingGripWave/K5KerriganBurrowed', 'BurrowUp'],
'alliedcommanders/K5KerriganPsiStrike 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganPsiStrike', 'PsionicLift/K5KerriganPsiStrike', 'KerriganVoidCoopEconDrop/K5KerriganPsiStrike', 'K5Leviathan/K5KerriganPsiStrike', 'BurrowDown'],
'alliedcommanders/K5KerriganPsiStrike 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganPsiStrike', 'PsionicLift/K5KerriganPsiStrike', 'WildMutation/K5KerriganPsiStrike', 'KerriganVoidCoopCrushingGripWave/K5KerriganPsiStrike', 'BurrowDown'],
'alliedcommanders/K5KerriganPsiStrike 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganPsiStrike', 'PsionicLift/K5KerriganPsiStrike', 'KerriganVoidCoopEconDrop/K5KerriganPsiStrike', 'KerriganVoidCoopCrushingGripWave/K5KerriganPsiStrike', 'BurrowDown'],
'alliedcommanders/Karass': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KarassPlasmaSurge/Karass', 'PsiStorm/Karass', 'Cancel'],
'alliedcommanders/KelMorianGrenadeTurret': ['Stop', 'Attack', 'SelectBuilder', 'Salvage/KelMorianGrenadeTurret', 'Halt', 'Cancel'],
'alliedcommanders/KelMorianMissileTurret': ['Stop', 'Attack', 'SelectBuilder', 'Salvage/KelMorianMissileTurret', 'Halt', 'Cancel'],
'alliedcommanders/KelMorianWorker (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ReturnCargo', 'TerranBuild/KelMorianWorker', 'Repair', 'Halt'],
'alliedcommanders/KelMorianWorker (card index 1)': ['BuildKelMorianAutoTurret/KelMorianWorker', 'Bunker/KelMorianWorker', 'MissileTurret/KelMorianWorker', 'BuildKelMorianRocketTurret/KelMorianWorker', 'BuildDrakkenLaserDrill/KelMorianWorker', 'Cancel'],
'alliedcommanders/KerriganReviveCocoon (card index 0)': ['Rally', 'MindBolt/KerriganReviveCocoon', 'PsionicLift/KerriganReviveCocoon', 'KerriganVoidCoopEconDrop/KerriganReviveCocoon', 'KerriganVoidCoopCrushingGripWave/KerriganReviveCocoon'],
'alliedcommanders/KhaydarinMonolith': ['Stop', 'Attack', 'ResearchKaraxTurretRange/KhaydarinMonolith', 'ResearchKaraxTurretAttackSpeed/KhaydarinMonolith', 'Cancel'],
'alliedcommanders/Lair (card index 0) 0': ['Larva', 'QueenClassic', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'alliedcommanders/Lair (card index 0) 1': ['Larva', 'BuildCreepTumor/Lair', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'alliedcommanders/Lair (card index 0) 2': ['Larva', 'QueenCoop', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'alliedcommanders/LargeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenZergling/LargeSwarmQueen', 'SwarmQueenRoach/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'alliedcommanders/LargeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenRaptor/LargeSwarmQueen', 'SwarmQueenCorpser/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'alliedcommanders/LargeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenSwarmling/LargeSwarmQueen', 'SwarmQueenRoach/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'alliedcommanders/LargeSwarmQueen 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenSwarmling/LargeSwarmQueen', 'SwarmQueenVile/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'alliedcommanders/Larva 00': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'Corruptor/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 01': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'Hydralisk/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 02': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'Corruptor/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 03': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'Corruptor/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 04': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'SwarmHostMP/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 05': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'SwarmHostMP/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 06': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'Corruptor/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 07': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'Hydralisk/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 08': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'Hydralisk/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 09': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Corruptor/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 10': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Corruptor/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 11': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'SwarmHostMP/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 12': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'SwarmHostMP/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 13': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 14': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 15': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'SwarmHostMP/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 16': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'SwarmHostMP/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 17': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'Hydralisk/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Liberator': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LiberatorAGMode/Liberator', 'IgniteAfterburners/Liberator'],
'alliedcommanders/LocustNestBurrowed': ['SetRallyPointSwarmHost/LocustNestBurrowed', 'SwarmHost/LocustNestBurrowed', 'Cancel'],
'alliedcommanders/LurkerBurrowed': ['Stop', 'Attack', 'LurkerHoldFire/LurkerBurrowed', 'LurkerCancelHoldFire/LurkerBurrowed', 'LurkerBurrowUp'],
'alliedcommanders/LurkerDen': ['EvolveMuscularAugments/LurkerDen', 'EvolveAncillaryCarapace/LurkerDen', 'EvolveFrenzy/LurkerDen', 'ResearchLurkerRange/LurkerDen', 'Cancel'],
'alliedcommanders/Maar': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PsionicShockwave/Maar', 'GravitonPrison/Maar', 'HybridBlink/Maar'],
'alliedcommanders/MercMedic': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MercMedicHeal/MercMedic', 'MercMedicHealToggle/MercMedic'],
'alliedcommanders/MercVulture': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpiderMine/MercVulture', 'SpiderMineReplenish/MercVulture', 'Cancel'],
'alliedcommanders/MilitarizedColonistShip': ['Attack', 'BunkerLoad', 'BunkerUnloadAll', 'Lift'],
'alliedcommanders/MissileTurret': ['Stop', 'Attack', 'SelectBuilder', 'Salvage/MissileTurret', 'Halt', 'Cancel'],
'alliedcommanders/Mutalisk': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToGuardian/Mutalisk', 'MorphtoDevourer/Mutalisk', 'EvolveToLeviathan/Mutalisk'],
'alliedcommanders/Nexus': ['Probe/Nexus', 'MothershipCore/Nexus', 'Stop', 'Attack', 'Rally', 'TimeWarp/Nexus', 'Cancel'],
'alliedcommanders/NovaHero': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GhostHoldFire/NovaHero', 'WeaponsFree/NovaHero', 'NovaWeaponCanisterRifleSnipe/NovaHero', 'NovaGadgetPulseGrenades/NovaHero', 'HeroNukeCalldown/NovaHero'],
'alliedcommanders/NydusBeast': ['GroundMissileVolley/NydusBeast'],
'alliedcommanders/NydusNetwork': ['Stop', 'ZagaraVoidCoopNydusWorm/NydusNetwork', 'Rally', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'alliedcommanders/Observer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoObserverSiege/Observer'],
'alliedcommanders/ObserverSiegeMode': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoObserver/Observer'],
'alliedcommanders/OdinMKII': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'OdinBarrage/OdinMKII', 'Cancel'],
'alliedcommanders/OrbitalCommand': ['SCV', 'Rally', 'CalldownMULE/OrbitalCommand', 'OrbitalCommandCalldownSupplyDepot/OrbitalCommand', 'Scan/OrbitalCommand', 'Lift', 'Cancel'],
'alliedcommanders/Overseer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoOverseerSiege/Overseer', 'Contaminate/Overseer'],
'alliedcommanders/OverseerSiegeMode': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoOverseerNormal/Overseer'],
'alliedcommanders/PerditionTurret': ['Stop', 'Attack', 'SelectBuilder', 'Salvage/PerditionTurret', 'Halt', 'Cancel'],
'alliedcommanders/PerditionTurretUnderground': ['Attack', 'Salvage/PerditionTurretUnderground', 'Cancel'],
'alliedcommanders/Phoenix 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeamVoidCampaign/Phoenix', 'Rally'],
'alliedcommanders/Phoenix 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/Phoenix', 'Cancel'],
'alliedcommanders/PhoenixAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PhoenixAiurGravitonBeam/Phoenix', 'Cancel'],
'alliedcommanders/PhotonCannon': ['Stop', 'Attack', 'ResearchKaraxTurretRange/PhotonCannon', 'ResearchKaraxTurretAttackSpeed/PhotonCannon', 'Cancel'],
'alliedcommanders/PlanetaryFortress': ['SCV', 'VespeneDrone/PlanetaryFortress', 'StopPlanetaryFortress/PlanetaryFortress', 'Attack', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Cancel'],
'alliedcommanders/Probe (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'ProtossBuild/Probe', 'ProtossBuildAdvanced/Probe', 'MutatorWorkerSleep/Probe'],
'alliedcommanders/Queen (card index 0) 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Transfusion/Queen', 'BuildCreepTumor/Queen', 'QueenBurstHeal/Queen', 'EvolveToBrutalisk/Queen', 'DeepTunnel/Queen', 'BurrowDown'],
'alliedcommanders/Queen (card index 0) 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Transfusion/Queen', 'BuildCreepTumor/Queen', 'QueenBurstHeal/Queen', 'EvolveToBrutalisk/Queen', 'DeepTunnel/Queen', 'Cancel'],
'alliedcommanders/QueenBurrowed': ['Attack', 'EvolveToBrutalisk/QueenBurrowed', 'BurrowUp'],
'alliedcommanders/QueenCoop (card index 0) 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/QueenCoop', 'MorphMorphalisk/QueenCoop', 'Transfusion/QueenCoop', 'Cancel'],
'alliedcommanders/QueenCoop (card index 0) 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/QueenCoop', 'MorphMorphalisk/QueenCoop', 'Transfusion/QueenCoop', 'BurrowDown'],
'alliedcommanders/RavagerAbathur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RavagerAbathurCorrosiveBile/RavagerAbathur', 'EvolveToBrutalisk/RavagerAbathur', 'BurrowDown'],
'alliedcommanders/RavagerAbathurBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveToBrutalisk/RavagerAbathurBurrowed', 'BurrowUp'],
'alliedcommanders/Raven': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AutoTurret/Raven', 'PointDefenseDrone/Raven', 'InstantHunterSeekerMissile/Raven'],
'alliedcommanders/Reaver': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ReaverScarabs/Reaver', 'ResearchReaverIncreasedScarabSplashRadius/Reaver'],
'alliedcommanders/Replicant': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ReplicantReplicate/Replicant', 'Rally'],
'alliedcommanders/ResearchVessel': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ResearchVesselLoad/ResearchVessel', 'HerculesUnloadAll/ResearchVessel', 'Land'],
'alliedcommanders/ResearchVesselLanded': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ResearchVesselLoad/ResearchVesselLanded', 'HerculesUnloadAll/ResearchVesselLanded', 'Lift'],
'alliedcommanders/Roach': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Ravager/Roach', 'EvolveToBrutalisk/Roach', 'BurrowDown'],
'alliedcommanders/RoachBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveToBrutalisk/RoachBurrowed', 'BurrowUp'],
'alliedcommanders/RoachCorpser': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Ravager/RoachCorpser', 'BurrowDown'],
'alliedcommanders/RoachVile': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Ravager/RoachVile', 'EvolveToBrutalisk/RoachVile', 'BurrowDown'],
'alliedcommanders/RoachVileBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveToBrutalisk/RoachVileBurrowed', 'BurrowUp'],
'alliedcommanders/RoachWarren': ['EvolveGlialRegeneration/RoachWarren', 'EvolveTunnelingClaws/RoachWarren', 'EvolveAdaptivePlating/RoachWarren', 'EvolveCorrosiveBileRadiusIncrease/RoachWarren', 'EvolveCorrosiveBileDamageIncrease/RoachWarren', 'Cancel'],
'alliedcommanders/RoboticsBay 0': ['ResearchGraviticBooster/RoboticsBay', 'ResearchBarrier/RoboticsBay', 'ResearchReaverIncreasedScarabCount/RoboticsBay', 'ResearchReaverIncreasedScarabSplashRadius/RoboticsBay', 'Cancel'],
'alliedcommanders/RoboticsBay 1': ['ResearchGraviticBooster/RoboticsBay', 'ResearchExtendedThermalLance/RoboticsBay', 'ResearchReaverIncreasedScarabSplashRadius/RoboticsBay', 'ResearchBarrier/RoboticsBay', 'Cancel'],
'alliedcommanders/RoboticsBay 2': ['ResearchGraviticBooster/RoboticsBay', 'ResearchExtendedThermalLance/RoboticsBay', 'ResearchReaverIncreasedScarabCount/RoboticsBay', 'ResearchReaverIncreasedScarabSplashRadius/RoboticsBay', 'Cancel'],
'alliedcommanders/RoboticsBay 3': ['ResearchGraviticBooster/RoboticsBay', 'ResearchExtendedThermalLance/RoboticsBay', 'ResearchReaverIncreasedScarabCount/RoboticsBay', 'ResearchBarrier/RoboticsBay', 'Cancel'],
'alliedcommanders/RoboticsFacility (card index 0)': ['Immortal/RoboticsFacility', 'WarpinDisruptor/RoboticsFacility', 'Observer/RoboticsFacility', 'Rally', 'UpgradeToRoboticsFacilityWarp/RoboticsFacility', 'Cancel'],
'alliedcommanders/SCV (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'TerranBuild/SCV', 'TerranBuildAdvanced/SCV', 'Repair', 'MutatorWorkerSleep/SCV', 'Halt'],
'alliedcommanders/SCV (card index 1) 0': ['CommandCenterOrbRelay/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'BuildKelMorianRocketTurret/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'alliedcommanders/SCV (card index 1) 1': ['CommandCenter/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'BuildKelMorianRocketTurret/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'alliedcommanders/SOAMothershipv4': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryBlackHole/SOAMothershipv4', 'SOAMothershipLineAttack/SOAMothershipv4', 'SOAMothershipBlink/SOAMothershipv4'],
'alliedcommanders/SS_Fighter': ['Attack', 'SS_FighterBomb/SS_Plane'],
'alliedcommanders/ScienceVessel': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'NanoRepair/ScienceVessel', 'Irradiate/ScienceVessel', 'DefensiveMatrixTarget/ScienceVessel'],
'alliedcommanders/Scourge 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DetonateScourge/Scourge', 'EnableBuildingAttackScourge/Scourge'],
'alliedcommanders/Scourge 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DetonateScourge/Scourge', 'DisableBuildingAttackScourge/Scourge'],
'alliedcommanders/ScourgeNest': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveScourgeSplashDamage/ScourgeNest', 'EvolveScourgeGasCostReduction/ScourgeNest', 'Cancel'],
'alliedcommanders/Selendis': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/Selendis', 'Cancel'],
'alliedcommanders/SentryAiur 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryShieldRepair/SentryCampaignBase', 'GuardianShield/SentryCampaignBase', 'Rally'],
'alliedcommanders/SentryAiur 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryShieldRepairDouble/SentryCampaignBase', 'GuardianShield/SentryCampaignBase', 'Rally'],
'alliedcommanders/SentryPhasing': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryChronoBeam/SentryPurifier', 'VoidSentryMobileMode/SentryPurifier', 'ResearchKaraxEnergyRegenUpgrade/SentryPurifier'],
'alliedcommanders/SentryPurifier 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryChronoBeam/SentryCampaignBase', 'EnergizerReclamation/SentryCampaignBase', 'VoidSentryPhasingMode/SentryCampaignBase', 'ResearchKaraxEnergyRegenUpgrade/SentryCampaignBase'],
'alliedcommanders/SentryPurifier 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryChronoBeam/SentryCampaignBase', 'EnergizerReclamation/SentryCampaignBase', 'VoidSentryPhasingMode/SentryCampaignBase', 'Rally'],
'alliedcommanders/ShadowScrambler': ['EMPNova/ShadowScrambler'],
'alliedcommanders/ShieldBattery': ['ShieldBatteryRecharge/ShieldBattery', 'ShieldBatteryStructureBarrier/ShieldBattery', 'ResearchKaraxTurretRange/ShieldBattery', 'ResearchKaraxEnergyRegenUpgrade/ShieldBattery', 'Cancel'],
'alliedcommanders/SiegeTank 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SiegeMode', 'SiegeTankJumpJet/SiegeTank'],
'alliedcommanders/SiegeTank 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SiegeMode', 'IgniteAfterburners/SiegeTank'],
'alliedcommanders/SiegeTankSieged': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Unsiege', 'SiegeTankJumpJet/SiegeTank'],
'alliedcommanders/SiegeTankWreckage': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SiegeMode', 'SwannCommanderRebuild'],
'alliedcommanders/SlaynElemental': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SlaynElementalGrab/SlaynElemental', 'SlaynElementalGrabAOE/SlaynElemental'],
'alliedcommanders/SolarForge (card index 0) 0': ['ResearchSolarEfficiencyLevel1/SolarForge', 'ResearchSOARepairBeamExtraTarget/SolarForge', 'ResearchSOAOrbitalStrikeUpgrade/SolarForge', 'ResearchSOASolarLanceUpgrade/SolarForge', 'Cancel'],
'alliedcommanders/SolarForge (card index 0) 1': ['ResearchSolarEfficiencyLevel2/SolarForge', 'ResearchSOARepairBeamExtraTarget/SolarForge', 'ResearchSOAOrbitalStrikeUpgrade/SolarForge', 'ResearchSOASolarLanceUpgrade/SolarForge', 'Cancel'],
'alliedcommanders/SolarForge (card index 0) 2': ['ResearchSolarEfficiencyLevel3/SolarForge', 'ResearchSOARepairBeamExtraTarget/SolarForge', 'ResearchSOAOrbitalStrikeUpgrade/SolarForge', 'ResearchSOASolarLanceUpgrade/SolarForge', 'Cancel'],
'alliedcommanders/SolarForge (card index 1)': ['BrokenSolarForge/SolarForge'],
'alliedcommanders/SpawningPool': ['zerglingmovementspeed/SpawningPool', 'EvolveHardenedCarapace/SpawningPool', 'zerglingattackspeed/SpawningPool', 'EvolveZerglingArmorShred/SpawningPool', 'EvolveBileLauncherIncreasedRange/SpawningPool', 'EvolveBileLauncherBombardmentCooldown/SpawningPool', 'Cancel'],
'alliedcommanders/Spectre 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpectreHoldFire/Spectre', 'SpectreWeaponsFree/Spectre', 'MindBlast/Spectre', 'VoodooShield/Spectre', 'SpectreDomination/Spectre', 'NukeCalldown/Spectre', 'Cancel'],
'alliedcommanders/Spectre 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpectreHoldFire/Spectre', 'SpectreWeaponsFree/Spectre', 'MindBlast/Spectre', 'VoodooShield/Spectre', 'SpectreDomination/Spectre', 'NukeCalldown/Spectre', 'ReleaseMinion/Spectre'],
'alliedcommanders/Spire 0': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/Spire', 'EvolveViciousGlaive/Spire', 'EvolveSunderingGlave/Spire', 'EvolveGuardianAttackRangeIncrease/Spire', 'EvolveDevourerAoEDamage/Spire', 'GreaterSpireBroodlord/Spire', 'Cancel'],
'alliedcommanders/Spire 1': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/Spire', 'EvolveViciousGlaive/Spire', 'EvolveSunderingGlave/Spire', 'EvolveBroodLordSpeed/Spire', 'EvolveDevourerAoEDamage/Spire', 'GreaterSpireBroodlord/Spire', 'Cancel'],
'alliedcommanders/Spire 2': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/Spire', 'EvolveViciousGlaive/Spire', 'EvolveSunderingGlave/Spire', 'EvolveBroodLordSpeed/Spire', 'EvolveDevourerAoEDamage/Spire', 'GreaterSpireViper/Spire', 'Cancel'],
'alliedcommanders/Spire 3': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/Spire', 'EvolveViciousGlaive/Spire', 'EvolveSunderingGlave/Spire', 'EvolveGuardianAttackRangeIncrease/Spire', 'EvolveDevourerAoEDamage/Spire', 'GreaterSpireViper/Spire', 'Cancel'],
'alliedcommanders/StalkerShakuras': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'StalkerBlinkShieldRestoreBase/StalkerShakuras', 'BlinkShieldRestoreUpgrade/StalkerShakuras', 'Rally'],
'alliedcommanders/Stargate (card index 0)': ['Phoenix/Stargate', 'VoidRay/Stargate', 'Oracle/Stargate', 'Arbiter/Stargate', 'Rally', 'UpgradeToStargateWarp/Stargate', 'Cancel'],
'alliedcommanders/StargateWarp (card index 0)': ['Phoenix/StargateWarp', 'VoidRay/StargateWarp', 'Oracle/StargateWarp', 'Arbiter/StargateWarp', 'MorphBackToStargate/StargateWarp', 'Cancel'],
'alliedcommanders/StarportTechLab': ['ResearchBansheeCloak/StarportTechLab', 'ResearchShockwaveMissileBattery/StarportTechLab', 'ResearchPhobosClassWeaponsSystem/StarportTechLab', 'ResearchRipwaveMissiles/StarportTechLab', 'Cancel'],
'alliedcommanders/StarportTechReactor': ['ResearchBansheeCloak/StarportTechReactor', 'ResearchShockwaveMissileBattery/StarportTechReactor', 'ResearchPhobosClassWeaponsSystem/StarportTechReactor', 'ResearchRipwaveMissiles/StarportTechReactor', 'Cancel'],
'alliedcommanders/SuperWarpGate (card index 1)': ['Probe/SuperWarpGate', 'VoidRay/SuperWarpGate', 'Oracle/SuperWarpGate', 'MothershipCore/SuperWarpGate', 'Stalker', 'WarpInFenixChampion/SuperWarpGate', 'WarpInDarkTemplarChampion/SuperWarpGate', 'WarpInDarkArchonChampion/SuperWarpGate', 'WarpInVulcanChampion/SuperWarpGate', 'WarpInArtanisChampion/SuperWarpGate'],
'alliedcommanders/Swann': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DutchPlaceTurret/Swann'],
'alliedcommanders/SwarmHost': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/SwarmHost', 'RapidIncubation/SwarmHost', 'LocustLaunch/SwarmHost', 'AbathurDeepTunnel/SwarmHost', 'EvolveToBrutalisk/SwarmHost', 'SwarmHostRootBurrow'],
'alliedcommanders/SwarmHostBurrowed': ['Stop', 'Attack', 'HotSPressurizedGlands/SwarmHostBurrowed', 'RapidIncubation/SwarmHostBurrowed', 'LocustLaunch/SwarmHostBurrowed', 'AbathurDeepTunnel/SwarmHostBurrowed', 'EvolveToBrutalisk/SwarmHostBurrowed', 'SwarmHostUprootUnburrow'],
'alliedcommanders/SwarmHostRooted': ['Stop', 'Attack', 'LocustLaunch/SwarmHostRooted', 'RapidIncubation/SwarmHostRooted', 'HotSPressurizedGlands/SwarmHostRooted', 'SwarmHostUproot'],
'alliedcommanders/SwarmHostSplitA 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RapidIncubation/SwarmHostSplitA', 'HotSPressurizedGlands/SwarmHostSplitA', 'SwarmHostRoot'],
'alliedcommanders/SwarmHostSplitA 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RapidIncubation/SwarmHostSplitA', 'HotSPressurizedGlands/SwarmHostSplitA', 'SwarmHostRootBurrow'],
'alliedcommanders/SwarmHostSplitABurrowed': ['Stop', 'Attack', 'LocustFlyingLaunch/SwarmHostSplitABurrowed', 'RapidIncubation/SwarmHostSplitABurrowed', 'HotSPressurizedGlands/SwarmHostSplitABurrowed', 'SwarmHostUprootUnburrow'],
'alliedcommanders/SwarmHostSplitARooted': ['Stop', 'Attack', 'LocustFlyingLaunch/SwarmHostSplitARooted', 'RapidIncubation/SwarmHostSplitARooted', 'HotSPressurizedGlands/SwarmHostSplitARooted', 'SwarmHostUproot'],
'alliedcommanders/SwarmHostSplitB 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/SwarmHostSplitB', 'SwarmHostDeepBurrow/SwarmHostSplitB', 'RapidIncubation/SwarmHostSplitB', 'SwarmHostRoot'],
'alliedcommanders/SwarmHostSplitB 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/SwarmHostSplitB', 'SwarmHostDeepBurrow/SwarmHostSplitB', 'RapidIncubation/SwarmHostSplitB', 'SwarmHostRootBurrow'],
'alliedcommanders/SwarmHostSplitBBurrowed': ['Stop', 'Attack', 'HotSPressurizedGlands/SwarmHostSplitBBurrowed', 'LocustLaunchCreeper/SwarmHostSplitBBurrowed', 'SwarmHostDeepBurrow/SwarmHostSplitBBurrowed', 'RapidIncubation/SwarmHostSplitBBurrowed', 'SwarmHostUprootUnburrow'],
'alliedcommanders/SwarmHostSplitBRooted': ['Stop', 'Attack', 'HotSPressurizedGlands/SwarmHostSplitBRooted', 'LocustLaunchCreeper/SwarmHostSplitBRooted', 'SwarmHostDeepBurrow/SwarmHostSplitBRooted', 'RapidIncubation/SwarmHostSplitBRooted', 'SwarmHostUproot'],
'alliedcommanders/SwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/SwarmQueen', 'SwarmQueenSwarmling/SwarmQueen', 'GrowLargeQueen/SwarmQueen', 'Cancel'],
'alliedcommanders/SwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/SwarmQueen', 'SwarmQueenRaptor/SwarmQueen', 'GrowLargeQueen/SwarmQueen', 'Cancel'],
'alliedcommanders/SwarmQueenEgg (card index 1) 0': ['SwarmQueenZergling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskLurker/SwarmQueenEgg', 'Cancel'],
'alliedcommanders/SwarmQueenEgg (card index 1) 1': ['SwarmQueenZergling/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydraliskLurker/SwarmQueenEgg', 'Cancel'],
'alliedcommanders/SwarmQueenEgg (card index 1) 2': ['SwarmQueenZergling/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'alliedcommanders/Tempest': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LightningBomb/Tempest', 'Rally'],
'alliedcommanders/TemplarArchive': ['ResearchPsiStorm/TemplarArchive', 'ResearchHighTemplarEnergyUpgrade/TemplarArchive', 'ResearchHealingPsionicStorm/TemplarArchive', 'Cancel'],
'alliedcommanders/Thor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', '250mmStrikeCannons/Thor', 'SelfRepair/Thor', 'Cancel'],
'alliedcommanders/ThorAP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ExplosiveMode', 'SelfRepair/Thor', 'Cancel'],
'alliedcommanders/ThorWreckageSwann 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', '250mmStrikeCannons/ThorWreckageSwann', 'SwannCommanderRebuild', 'Cancel'],
'alliedcommanders/ThorWreckageSwann 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', '250mmStrikeCannons/ThorWreckageSwann', 'SelfRepair/ThorWreckageSwann', 'Cancel'],
'alliedcommanders/ToxicNestBurrowed': ['ToxicNestExplode/ToxicNestBurrowed', 'Cancel'],
'alliedcommanders/TwilightCouncil': ['ResearchCharge/TwilightCouncil', 'ResearchDragoonRange/TwilightCouncil', 'ResearchWhirlwind/TwilightCouncil', 'ResearchDragoonChassis/TwilightCouncil', 'Cancel'],
'alliedcommanders/UltraliskCavern': ['EvolveChitinousPlating/UltraliskCavern', 'EvolveBurrowCharge/UltraliskCavern', 'EvolveTissueAssimilation/UltraliskCavern', 'Cancel'],
'alliedcommanders/VespeneDrone': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VespeneDrone/VespeneDrone'],
'alliedcommanders/VikingAssault': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FighterMode', 'IgniteAfterburners/VikingAssault'],
'alliedcommanders/VikingFighter': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AssaultMode', 'IgniteAfterburners/VikingAssault'],
'alliedcommanders/Viper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveViperImprovedCastRange/Viper', 'EvolveViperAbductImprovedStun/Viper', 'FaceEmbrace/Viper', 'DisablingCloud/Viper', 'ViperConsumption/Viper', 'ParasiticBomb/Viper', 'EvolveToLeviathan/Viper'],
'alliedcommanders/VoidCoopWarbot': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WarbotA/VoidCoopWarbot'],
'alliedcommanders/VoidRift (card index 0)': ['Rally', 'TerranBuild/VoidRift', 'ProtossBuild/VoidRift', 'ZergBuild/VoidRift', 'Cancel'],
'alliedcommanders/VoidRift (card index 1)': ['Marine/VoidRift', 'Ghost/VoidRift', 'SiegeTank/VoidRift', 'Banshee/VoidRift', 'Thor/VoidRift', 'Battlecruiser/VoidRift', 'Liberator/VoidRift', 'Medivac/VoidRift', 'Raven/VoidRift', 'Cancel'],
'alliedcommanders/VoidRift (card index 2)': ['Zealot', 'Stalker', 'Colossus/VoidRift', 'Immortal/VoidRift', 'VoidRay/VoidRift', 'Archon/VoidRift', 'Phoenix/VoidRift', 'Oracle/VoidRift', 'Cancel'],
'alliedcommanders/VoidRiftAutoBuild': ['VoidRift/VoidRiftAutoBuild'],
'alliedcommanders/VoidRiftUnselectable (card index 1)': ['Marine/VoidRiftUnselectable', 'Ghost/VoidRiftUnselectable', 'SiegeTank/VoidRiftUnselectable', 'Banshee/VoidRiftUnselectable', 'Thor/VoidRiftUnselectable', 'Battlecruiser/VoidRiftUnselectable', 'Liberator/VoidRiftUnselectable', 'Medivac/VoidRiftUnselectable', 'Raven/VoidRiftUnselectable', 'Cancel'],
'alliedcommanders/VoidRiftUnselectable (card index 2)': ['Zealot', 'Stalker', 'Colossus/VoidRiftUnselectable', 'Immortal/VoidRiftUnselectable', 'VoidRay/VoidRiftUnselectable', 'Archon/VoidRiftUnselectable', 'Phoenix/VoidRiftUnselectable', 'Oracle/VoidRiftUnselectable', 'Cancel'],
'alliedcommanders/VoidShardAC': ['Stop', 'Attack', 'VoidRift/VoidShardAC'],
'alliedcommanders/VoidTendrilDeathGripCrystal': ['VoidTendrilDeathGripAutoCast/VoidTendrilDeathGripCrystal'],
'alliedcommanders/VoidThrasher (card index 1)': ['Zealot', 'Stalker', 'Colossus/VoidThrasher', 'Immortal/VoidThrasher', 'VoidRay/VoidThrasher', 'Zergling/VoidThrasher', 'Hydralisk/VoidThrasher', 'Mutalisk/VoidThrasher', 'Ultralisk/VoidThrasher', 'Marine/VoidThrasher', 'Ghost/VoidThrasher', 'SiegeTank/VoidThrasher', 'Banshee/VoidThrasher', 'Cancel'],
'alliedcommanders/VoidThrasherWalker (card index 1)': ['Zealot', 'Stalker', 'Colossus/VoidThrasherWalker', 'Immortal/VoidThrasherWalker', 'VoidRay/VoidThrasherWalker', 'Zergling/VoidThrasherWalker', 'Hydralisk/VoidThrasherWalker', 'Mutalisk/VoidThrasherWalker', 'Ultralisk/VoidThrasherWalker', 'Marine/VoidThrasherWalker', 'Ghost/VoidThrasherWalker', 'SiegeTank/VoidThrasherWalker', 'Banshee/VoidThrasherWalker', 'Cancel'],
'alliedcommanders/VorazunShadowGuard': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidShadowGuardShadowFury/VorazunShadowGuard', 'ShadowGuardBlink/VorazunShadowGuard', 'VoidStasis/VorazunShadowGuard'],
'alliedcommanders/Vulture': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpiderMine/Vulture', 'SpiderMineReplenish/Vulture', 'IgniteAfterburners/Vulture', 'Cancel'],
'alliedcommanders/WarHound': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TornadoMissile/WarHound'],
'alliedcommanders/WarpGate (card index 0) 0': ['Zealot', 'WarpInReplicant/WarpGate', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/WarpGate', 'Rally', 'MorphBackToGateway/WarpGate', 'Cancel'],
'alliedcommanders/WarpGate (card index 0) 1': ['Zealot', 'Sentry', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/WarpGate', 'Rally', 'MorphBackToGateway/WarpGate', 'Cancel'],
'alliedcommanders/WarpPrismPhasing': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TransportMode/WarpPrism', 'BunkerLoad', 'BunkerUnloadAll'],
'alliedcommanders/WidowMine': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WidowMineBurrow/WidowMine'],
'alliedcommanders/ZagaraReviveCocoon (card index 0)': ['ZagaraVoidCoopBanelingSpawner/ZagaraReviveCocoon', 'Rally', 'ZagaraVoidCoopBanelingBarrage/ZagaraReviveCocoon', 'ZagaraVoidCoopSpawnHunterKillers/ZagaraReviveCocoon', 'ZagaraVoidCoopMassFrenzy/ZagaraReviveCocoon', 'MassRoachDrop/ZagaraReviveCocoon'],
'alliedcommanders/ZagaraVoidCoop': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZagaraVoidCoopBanelingSpawner/ZagaraVoidCoop', 'ZagaraVoidCoopBanelingBarrage/ZagaraVoidCoop', 'ZagaraVoidCoopSpawnHunterKillers/ZagaraVoidCoop', 'ZagaraVoidCoopMassFrenzy/ZagaraVoidCoop', 'MassRoachDrop/ZagaraVoidCoop', 'BurrowDown'],
'alliedcommanders/ZagaraVoidCoopBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZagaraVoidCoopBanelingSpawner/ZagaraVoidCoopBurrowed', 'ZagaraVoidCoopBanelingBarrage/ZagaraVoidCoopBurrowed', 'ZagaraVoidCoopSpawnHunterKillers/ZagaraVoidCoopBurrowed', 'ZagaraVoidCoopMassFrenzy/ZagaraVoidCoopBurrowed', 'MassRoachDrop/ZagaraVoidCoopBurrowed', 'BurrowUp'],
'alliedcommanders/ZenithStone': ['PsiStorm/ZenithStone'],
'campaigncommon/Artanis': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MassRecall/Artanis', 'Vortex/Artanis'],
'campaigncommon/CarrierRepairDrone': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CarrierRepairDroneHeal/CarrierRepairDrone'],
'campaigncommon/DarkArchon': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DarkArchonConfusion/DarkArchon', 'DarkArchonMindControl/DarkArchon', 'Rally'],
'campaigncommon/DarkTemplarTaldarim': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidStasis/DarkTemplarTaldarim', 'Rally'],
'campaigncommon/DisruptorPhased': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PurificationNova/DisruptorPhased', 'Rally'],
'campaigncommon/DrakkenLaserDrill': ['AttackAllowsInvulnerable/DrakkenLaserDrill'],
'campaigncommon/Factory (card index 0) 00': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 01': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 02': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'campaigncommon/Factory (card index 0) 03': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 04': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'campaigncommon/Factory (card index 0) 05': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 06': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 07': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 08': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 09': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'campaigncommon/Factory (card index 0) 10': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'campaigncommon/HighTemplarTaldarim': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidHighTemplarPsiOrb/HighTemplarTaldarim', 'VoidHighTemplarMindBlast/HighTemplarTaldarim', 'AscendantSacrifice/HighTemplarTaldarim', 'Rally'],
'campaigncommon/HotSSplitterlingBig': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSSplitterlingBig', 'EnableBuildingAttack/HotSSplitterlingBig', 'BurrowDown'],
'campaigncommon/HugeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'campaigncommon/HugeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'campaigncommon/HugeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'campaigncommon/HybridDominatorVoid (card index 1)': ['PsionicShockwave/HybridDominatorVoid', 'GravitonPrison/HybridDominatorVoid'],
'campaigncommon/Hydralisk': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HydraliskFrenzy/Hydralisk', 'BurrowDown'],
'campaigncommon/ImmortalShakuras': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalShakurasShadowCannon/ImmortalShakuras'],
'campaigncommon/InfestedArmory': ['InfestedAbomination/InfestedArmory', 'Rally', 'Cancel'],
'campaigncommon/InfestedEngBay': ['InfestedAbomination/InfestedEngBay', 'Rally', 'Cancel'],
'campaigncommon/InfestedStarport': ['InfestedAbomination/InfestedStarport', 'Rally', 'Cancel'],
'campaigncommon/Kerrigan': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'OmegaStorm/Kerrigan'],
'campaigncommon/KorhalPalaceGate': ['StopPlanetaryFortress/KorhalPalaceGate', 'Attack'],
'campaigncommon/Lair (card index 0)': ['Larva', 'Queen', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'campaigncommon/LargeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenRaptor/LargeSwarmQueen', 'SwarmQueenRoach/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'campaigncommon/LargeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenZergling/LargeSwarmQueen', 'SwarmQueenCorpser/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'campaigncommon/NarudEpilogue': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidRift/NarudEpilogue', 'NarudEpilogueSummonShadeofNarud/NarudEpilogue'],
'campaigncommon/PhoenixPurifier': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/PhoenixPurifier', 'Cancel'],
'campaigncommon/PitAlarak': ['Stop', 'MoveHoldPosition', 'MovePatrol', 'AlarakMindBlast/PitAlarak', 'Blink/PitAlarak', 'AlarakPsiOrb/PitAlarak', 'PitAlarakSuperMove/PitAlarak', 'PitAlarakTerrazineTeleport/PitAlarak', 'Cancel'],
'campaigncommon/PitMalash': ['Stop', 'MoveHoldPosition', 'MovePatrol', 'PitMalashPsiShift/PitMalash', 'PitMalashUppercut/PitMalash', 'PitMalashSuperMove/PitMalash', 'Rally'],
'campaigncommon/PrisonZealot': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/Zealot', 'Rally'],
'campaigncommon/QueenClassic': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'QueenClassicParasite/QueenClassic', 'QueenMPEnsnare/QueenClassic', 'QueenMPSpawnBroodlings/QueenClassic', 'CreepTumor/QueenClassic'],
'campaigncommon/RoboticsBay': ['ResearchGraviticBooster/RoboticsBay', 'ResearchGraviticDrive/RoboticsBay', 'ResearchExtendedThermalLance/RoboticsBay', 'Cancel'],
'campaigncommon/RoguePurifierSupportDroneB': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryShieldRepair/RoguePurifierSupportDroneB'],
'campaigncommon/ShadowShieldGenerator': ['ActivateShieldGenerator/ShadowShieldGenerator', 'DeactivateShieldGenerator/ShadowShieldGenerator'],
'campaigncommon/Spectre': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpectreHoldFire/Spectre', 'SpectreWeaponsFree/Spectre', 'UltrasonicPulse/Spectre', 'Obliterate/Spectre', 'CloakOnBanshee', 'SpectreNukeCalldown/Spectre', 'Cancel'],
'campaigncommon/SwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/SwarmQueen', 'SwarmQueenSwarmling/SwarmQueen', 'GrowLargeQueen/SwarmQueen', 'BurrowDown'],
'campaigncommon/SwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/SwarmQueen', 'SwarmQueenRaptor/SwarmQueen', 'GrowLargeQueen/SwarmQueen', 'BurrowDown'],
'campaigncommon/SwarmQueenEgg (card index 1) 0': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskLurker/SwarmQueenEgg', 'Cancel'],
'campaigncommon/SwarmQueenEgg (card index 1) 1': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'campaigncommon/SwarmQueenEgg (card index 1) 2': ['SwarmQueenZergling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'campaigncommon/TalDarimMothership': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WormholeTransit/TalDarimMothership', 'Vortex/TalDarimMothership'],
'campaigncommon/TwilightCouncil 0': ['ResearchCharge/TwilightCouncil', 'WarpInDarkTemplarChampion/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampionAir/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil', 'Cancel'],
'campaigncommon/TwilightCouncil 1': ['WarpInArtanisChampion/TwilightCouncil', 'WarpInDarkTemplarChampion/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampion/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil', 'Cancel'],
'campaigncommon/VoidRift (card index 2)': ['Zealot', 'Stalker', 'Colossus/VoidRift', 'Immortal/VoidRift', 'Carrier/VoidRift', 'Archon/VoidRift', 'Phoenix/VoidRift', 'Oracle/VoidRift', 'Cancel'],
'campaigncommon/VoidRiftUnselectable (card index 2)': ['Zealot', 'Stalker', 'Colossus/VoidRiftUnselectable', 'Immortal/VoidRiftUnselectable', 'Carrier/VoidRiftUnselectable', 'Archon/VoidRiftUnselectable', 'Phoenix/VoidRiftUnselectable', 'Oracle/VoidRiftUnselectable', 'Cancel'],
'campaigncommon/VoidThrasherWalker (card index 1)': ['Zealot', 'Stalker', 'Colossus/VoidThrasherWalker', 'Immortal/VoidThrasherWalker', 'Carrier/VoidThrasherWalker', 'Zergling/VoidThrasherWalker', 'Hydralisk/VoidThrasherWalker', 'Mutalisk/VoidThrasherWalker', 'Ultralisk/VoidThrasherWalker', 'Marine/VoidThrasherWalker', 'Ghost/VoidThrasherWalker', 'SiegeTank/VoidThrasherWalker', 'Banshee/VoidThrasherWalker', 'Cancel'],
'campaigncommon/WarpPrismGiantPhasing': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TransportMode/WarpPrismGiant', 'BunkerLoad', 'BunkerUnloadAll'],
'campaigncommon/XelNagaConstruct': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EntropicBlast/XelNagaConstruct', 'XelNagaShadowStep/XelNagaConstruct', 'XelNagaConstructSmash/XelNagaConstruct', 'XelNagaConstructChaseBeam/XelNagaConstruct', 'Rally'],
'campaigncommon/Yagdra': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YagdraFireball/Yagdra', 'YagdraTunnel/Yagdra', 'YagdraFirebreath/Yagdra'],
'campaigncommon/Yeti': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/Yeti'],
'campaigncommon/ZealotAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/ZealotAiur', 'VoidZealotWhirlwind/ZealotAiur', 'Rally'],
'challenges/Baneling': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/Baneling', 'SapStructure/Baneling', 'BurrowDown'],
'challenges/FactoryFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'BuildTechLabFactory/FactoryFlying', 'Reactor/FactoryFlying', 'Land'],
'challenges/Hatchery': ['Larva', 'Queen', 'ResearchBurrow', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'challenges/InfestationPit': ['EvolvePeristalsis/InfestationPit', 'EvolveInfestorEnergyUpgrade/InfestationPit', 'Cancel'],
'challenges/Raven': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AutoTurret/Raven', 'PointDefenseDrone/Raven', 'HunterSeekerMissile/Raven'],
'challenges/SpineCrawlerUprooted': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpineCrawlerRoot/SpineCrawlerUprooted', 'Cancel'],
'challenges/SupplyDepot': ['SelectBuilder', 'Lower/SupplyDepot', 'Halt', 'Cancel'],
'left2die/Armory 00': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 01': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 02': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 03': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 04': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 05': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 06': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 07': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 08': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 09': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 10': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 11': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 12': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 13': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 14': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 15': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 16': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 17': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 18': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 19': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 20': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 21': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 22': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 23': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 24': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 25': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 26': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 27': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 28': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 29': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 30': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 31': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 32': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 33': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 34': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 35': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 36': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 37': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/Armory 38': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'left2die/BarracksFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechReactorAI/BarracksFlying', 'Reactor/BarracksFlying', 'Land'],
'left2die/ColonistBiodome': ['BiodomeLoad/Biodome', 'BiodomeUnloadAll/Biodome'],
'left2die/CommandCenter': ['SCV', 'UpgradeToPlanetaryFortress/CommandCenter', 'Scan/CommandCenter', 'CalldownMULE/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Halt', 'Cancel'],
'left2die/FactoryFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechReactorAI/FactoryFlying', 'Reactor/FactoryFlying', 'Land'],
'left2die/FleetBeacon': ['ResearchVoidRaySpeedUpgrade/FleetBeacon', 'ResearchInterceptorLaunchSpeedUpgrade/FleetBeacon', 'Cancel'],
'left2die/Lair': ['Larva', 'Queen', 'ResearchBurrow', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'left2die/Medic': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MedicHeal/Medic'],
'left2die/MercCompound': ['HireKelmorianMiners/MercCompound', 'HireDevilDogs/MercCompound', 'HireHammerSecurities/MercCompound', 'HireSpartanCompany/MercCompound', 'HireSiegeBreakers/MercCompound', 'HireHelsAngels/MercCompound', 'HireDuskWing/MercCompound', 'SelectBuilder', 'Rally', 'HireDukesRevenge/MercCompound', 'Halt', 'Cancel'],
'left2die/Odin': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'OdinBarrage/Odin', 'OdinNukeCalldown/Odin', 'Cancel'],
'left2die/Raven': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildAutoTurret/Raven', 'BuildPointDefenseDrone/Raven', 'HunterSeekerMissile/Raven'],
'left2die/Reaper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'D8Charge/Reaper'],
'left2die/Spotter': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CorruptionAbility/Spotter'],
'left2die/Starport': ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'BuildHercules/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Halt', 'Cancel'],
'left2die/StarportTechLab 0': ['ResearchMedivacEnergyUpgrade/StarportTechLab', 'ResearchDurableMaterials/StarportTechLab', 'ResearchSeekerMissile/StarportTechLab', 'ResearchRavenEnergyUpgrade/StarportTechLab', 'WraithCloak/StarportTechLab', 'Cancel'],
'left2die/StarportTechLab 1': ['ResearchMedivacEnergyUpgrade/StarportTechLab', 'ResearchDurableMaterials/StarportTechLab', 'ResearchSeekerMissile/StarportTechLab', 'ResearchRavenEnergyUpgrade/StarportTechLab', 'ResearchBansheeCloak/StarportTechLab', 'Cancel'],
'left2die/UltraliskCavern': ['EvolveAnabolicSynthesis2/UltraliskCavern', 'EvolveChitinousPlating/UltraliskCavern', 'Cancel'],
'left2die/WarpPrism': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PhasingMode/WarpPrism', 'BunkerLoad', 'BunkerUnloadAll'],
'left2die/Wraith': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WraithCloakOn/Wraith', 'WraithCloakOff/Wraith'],
'libertymulti/Baneling': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/Baneling', 'EnableBuildingAttack/Baneling', 'DisableBuildingAttack/Baneling', 'BurrowDown'],
'libertymulti/Corruptor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CorruptionAbility/Corruptor', 'BroodLord/Corruptor', 'Cancel'],
'libertymulti/FactoryTechLab': ['ResearchHighCapacityBarrels/FactoryTechLab', 'ResearchSiegeTech/FactoryTechLab', 'ResearchStrikeCannons/FactoryTechLab', 'Cancel'],
'libertymulti/FleetBeacon': ['AnionPulseCrystals/FleetBeacon', 'ResearchInterceptorLaunchSpeedUpgrade/FleetBeacon', 'Cancel'],
'libertymulti/Immortal': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HardenedShield/Immortal'],
'libertymulti/Mothership': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MassRecall/Mothership', 'Vortex/Mothership'],
'libertymulti/Spire': ['zergflyerattack1', 'zergflyerarmor1', 'GreaterSpire/Spire', 'Cancel'],
'libertystory/Armory 00': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 01': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 02': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 03': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 04': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 05': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 06': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 07': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 08': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 09': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 10': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 11': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 12': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 13': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 14': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 15': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 16': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 17': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 18': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 19': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 20': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 21': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 22': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 23': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 24': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 25': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 26': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 27': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 28': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 29': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 30': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 31': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 32': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 33': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 34': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 35': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 36': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 37': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 38': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 39': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 40': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/BanelingBurrowed': ['Attack', 'Explode/BanelingBurrowed', 'BurrowUp'],
'libertystory/Battlecruiser': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'MissilePods/Battlecruiser', 'DefensiveMatrix/Battlecruiser'],
'libertystory/CommandCenter': ['SCV', 'UpgradeToPlanetaryFortress/CommandCenter', 'Scan/CommandCenter', 'CalldownMULE/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'libertystory/DataCore': ['Rally', 'HutLoad/DataCore', 'HutUnloadAll/DataCore'],
'libertystory/EngineeringBay 0': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 1': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 2': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 3': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 4': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 5': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 6': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 7': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Factory 0': ['Hellion/Factory', 'SiegeTank/Factory', 'Thor/Factory', 'Predator/Factory', 'Vulture/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'libertystory/Factory 1': ['Hellion/Factory', 'SiegeTank/Factory', 'Thor/Factory', 'Predator/Factory', 'Vulture/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'libertystory/FusionReactor': ['ResearchBattlecruiserSpecializations/FusionReactor', 'ResearchBattlecruiserEnergyUpgrade/FusionReactor', 'Cancel'],
'libertystory/Infestor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'InfestedTerrans/Infestor', 'NeuralParasite/Infestor', 'FungalGrowth/Infestor', 'Cancel', 'BurrowDown'],
'libertystory/Larva': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Infestor/Larva', 'Scourge/Larva', 'Mutalisk/Larva', 'Corruptor/Larva', 'Ultralisk/Larva', 'Cancel'],
'libertystory/LurkerDen': ['hydraliskspeed/LurkerDen', 'Cancel'],
'libertystory/MercCompound': ['HireKelmorianMiners/MercCompound', 'HireDevilDogs/MercCompound', 'HireHammerSecurities/MercCompound', 'HireSpartanCompany/MercCompound', 'HireSiegeBreakers/MercCompound', 'HireHelsAngels/MercCompound', 'HireDuskWing/MercCompound', 'SelectBuilder', 'Rally', 'ReaperSpeed/MercCompound', 'Halt', 'Cancel'],
'libertystory/OrbitalCommandFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'CommandCenterLoad', 'BunkerUnloadAll', 'Land'],
'libertystory/Overlord 0': ['Move', 'Stop', 'MoveHoldPosition', 'ColonyInfestation/Overlord', 'Attack', 'MorphToOverseer/Overlord', 'GenerateCreep/Overlord', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'libertystory/Overlord 1': ['Move', 'Stop', 'MoveHoldPosition', 'ColonyInfestation/Overlord', 'Attack', 'MorphToOverseer/Overlord', 'StopGenerateCreep', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'libertystory/Overlord 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'StopGenerateCreep', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'libertystory/Probe (card index 2)': ['TwilightCouncil/Probe', 'Stargate/Probe', 'RoboticsFacility/Probe', 'TemplarArchive/Probe', 'FleetBeacon/Probe', 'RoboticsBay/Probe', 'DarkShrine/Probe', 'Cancel'],
'libertystory/Queen': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/Queen', 'MorphMorphalisk/Queen', 'Transfusion/Queen', 'BurrowDown'],
'libertystory/SCV (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'TerranBuild/SCV', 'TerranBuildAdvanced/SCV', 'Repair', 'Cancel'],
'libertystory/SCV (card index 1) 0': ['CommandCenterOrbRelay/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'PerditionTurret/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'SensorTower/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'libertystory/SCV (card index 1) 1': ['CommandCenter/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'PerditionTurret/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'SensorTower/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'libertystory/SCV (card index 2)': ['GhostAcademy/SCV', 'MercCompound/SCV', 'Factory/SCV', 'Armory/SCV', 'Starport/SCV', 'FusionCore/SCV', 'Cancel'],
'libertystory/Starport': ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'BuildHercules/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'libertystory/StarportFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'BuildTechLabStarport/StarportFlying', 'Reactor/StarportFlying', 'Land'],
'libertystory/Stetmann': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BonesHeal/Stetmann'],
'libertystory/Thor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalityProtocol/Thor', '250mmStrikeCannons/Thor', 'Cancel'],
'libertystory/TychusCommando': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TossGrenadeTychus/TychusCommando', 'LeadFarmer/TychusCommando'],
'libertystory/Zeratul': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZeratulBlink/Zeratul', 'ZeratulStun/Zeratul'],
'novacampaign/Artifact': ['EnergyNova/Artifact'],
'novacampaign/BarracksFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechLabBarracks/BarracksFlying', 'TechReactorAI/BarracksFlying', 'Land'],
'novacampaign/BiodomeHalfBuilt': ['BiodomeLoad/BiodomeHalfBuilt', 'BiodomeUnloadAll/BiodomeHalfBuilt'],
'novacampaign/BroodMother': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/BroodMother', 'QueenBurstHeal/BroodMother', 'DeepTunnel/BroodMother', 'BurrowDown'],
'novacampaign/Bunker 0': ['StopBunker/Bunker', 'Attack', 'SpiderMine/Bunker', 'SelectBuilder', 'SetBunkerRallyPoint/Bunker', 'Stim', 'BunkerLoad', 'BunkerUnloadAll', 'Salvage/Bunker', 'Cancel'],
'novacampaign/Bunker 1': ['Stop', 'Attack', 'SpiderMine/Bunker', 'SelectBuilder', 'SetBunkerRallyPoint/Bunker', 'Stim', 'BunkerLoad', 'BunkerUnloadAll', 'Halt', 'Cancel'],
'novacampaign/CyberneticsCore': ['ProtossAirWeaponsLevel1/CyberneticsCore', 'ProtossAirArmorLevel1/CyberneticsCore', 'ResearchHallucination/CyberneticsCore', 'ResearchWarpGate/CyberneticsCore', 'Cancel'],
'novacampaign/Epilogue02VoidRift (card index 1)': ['Zealot', 'Stalker', 'Colossus/Epilogue02VoidRift', 'Immortal/Epilogue02VoidRift', 'Carrier/Epilogue02VoidRift', 'Zergling/Epilogue02VoidRift', 'Hydralisk/Epilogue02VoidRift', 'Mutalisk/Epilogue02VoidRift', 'Ultralisk/Epilogue02VoidRift', 'Rally', 'Marine/Epilogue02VoidRift', 'Ghost/Epilogue02VoidRift', 'SiegeTank/Epilogue02VoidRift', 'Banshee/Epilogue02VoidRift', 'Cancel'],
'novacampaign/Factory (card index 0) 00': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 01': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 02': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 03': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 04': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 05': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 06': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 07': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 08': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 09': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 10': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 11': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 12': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 13': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 14': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 15': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 16': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 17': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 18': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 19': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 20': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 21': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 22': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 23': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 24': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 25': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 26': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 27': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 28': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 29': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 30': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 31': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 32': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 33': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 34': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 35': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 36': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 37': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 38': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 39': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 40': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 41': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 42': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 43': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 44': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 45': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 46': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 47': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 48': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 49': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 50': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 51': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 52': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 53': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 54': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 55': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 56': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 57': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 58': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/GhostAcademy': ['ResearchPersonalCloaking/GhostAcademy', 'ResearchGhostEnergyUpgrade/GhostAcademy', 'SelectBuilder', 'SpectreNukeArm/GhostAcademy', 'Halt', 'Cancel'],
'novacampaign/GhostVulture': ['Move', 'Stop', 'MovePatrol', 'Attack', 'NukeCalldown/GhostVulture', 'GhostHoldFire/GhostVulture', 'WeaponsFree/GhostVulture', 'Snipe/GhostVulture', 'EMP/GhostVulture', 'GhostVultureLayMine/GhostVulture', 'Cancel'],
'novacampaign/HellionTank': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToHellion/Hellion', 'Stim'],
'novacampaign/HotSHunterBurrowed': ['Explode/HotSHunterBurrowed', 'BurrowUp'],
'novacampaign/HoverSiegeTankSieged': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HoverUnsiege'],
'novacampaign/HugeSwarmQueen 00': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'novacampaign/HugeSwarmQueen 01': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'novacampaign/HugeSwarmQueen 02': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'novacampaign/HugeSwarmQueen 03': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'novacampaign/HugeSwarmQueen 04': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'novacampaign/HugeSwarmQueen 05': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'novacampaign/HugeSwarmQueen 06': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'novacampaign/HugeSwarmQueen 07': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'novacampaign/HugeSwarmQueen 08': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'novacampaign/HugeSwarmQueen 09': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'novacampaign/HugeSwarmQueen 10': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'novacampaign/HugeSwarmQueen 11': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'novacampaign/HybridDominator': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PsionicShockwave/HybridDominator', 'GravitonPrison/HybridDominator', 'PsiStorm/HybridDominator'],
'novacampaign/Hyperion': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HyperionYamatoGun/Hyperion'],
'novacampaign/InfestableHut': ['InfestedAbomination/InfestableHut', 'HutLoad/InfestableHut', 'HutUnloadAll/InfestableHut', 'Rally'],
'novacampaign/InfestedBunker': ['InfestedAbomination/InfestedBunker', 'Attack', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'novacampaign/InfestedFactory': ['InfestedAbomination/InfestedFactory', 'Rally', 'Cancel'],
'novacampaign/InfestedMedic': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MedicHeal/InfestedMedic'],
'novacampaign/InfestedStukov (card index 1)': ['StukovBossBlast/InfestedStukov', 'Cancel'],
'novacampaign/K5KerriganPsiStrike': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganPsiStrike', 'PsionicLift/K5KerriganPsiStrike', 'WildMutation/K5KerriganPsiStrike', 'K5Leviathan/K5KerriganPsiStrike', 'BurrowDown'],
'novacampaign/KaraxChampion': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Reclamation/KaraxChampion', 'PhaseCannon/KaraxChampion', 'Rally'],
'novacampaign/KerriganCharBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DeepTunnel/KerriganCharBurrowed', 'BurrowUp'],
'novacampaign/KerriganEpilogue03 (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KerriganEpilogue03QuantumRay/KerriganEpilogue03', 'KerriganEpilogue03Heal/KerriganEpilogue03', 'KerriganEpilogue03CreepTeleport/KerriganEpilogue03', 'KerriganEpilogue03Extinction/KerriganEpilogue03', 'Cancel'],
'novacampaign/KerriganVoidBurrowed': ['MindBolt/KerriganVoidBurrowed', 'PsionicLift/KerriganVoidBurrowed', 'WildMutation/KerriganVoidBurrowed', 'K5Leviathan/KerriganVoidBurrowed', 'BurrowUp'],
'novacampaign/LargeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenZergling/LargeSwarmQueen', 'SwarmQueenRoach/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'novacampaign/LargeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenRaptor/LargeSwarmQueen', 'SwarmQueenCorpser/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'novacampaign/LargeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenZergling/LargeSwarmQueen', 'SwarmQueenVile/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'novacampaign/LargeSwarmQueen 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenZergling/LargeSwarmQueen', 'SwarmQueenCorpser/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'novacampaign/Larva': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'SwarmHostMP/Larva', 'Mutalisk/Larva', 'Cancel'],
'novacampaign/LarvalQueen': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ParasiticInvasion/LarvalQueen', 'GrowSwarmQueen/LarvalQueen'],
'novacampaign/LocustMPFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LocustMPFlyingSwoop/LocustMPFlying'],
'novacampaign/Medivac': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MedivacSpeedBoost/Medivac', 'Heal/Medivac', 'BunkerLoad', 'BunkerUnloadAll'],
'novacampaign/MengskPalaceGate': ['StopPlanetaryFortress/MengskPalaceGate', 'Attack'],
'novacampaign/NovaShip': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HerculesLoad/NovaShip', 'HerculesUnloadAll/NovaShip'],
'novacampaign/Ravager': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RavagerCorrosiveBile/Ravager', 'BurrowDown'],
'novacampaign/Reaper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpiderMine/Reaper', 'Stim', 'Cancel'],
'novacampaign/RoboticsFacility (card index 0)': ['Immortal/RoboticsFacility', 'Colossus/RoboticsFacility', 'Observer/RoboticsFacility', 'Rally', 'UpgradeToRoboticsFacilityWarp/RoboticsFacility', 'Cancel'],
'novacampaign/RotatingTurretActiveSCW': ['Stop', 'Attack', 'Halt', 'BurrowDown'],
'novacampaign/SJSpaceStationValerian': ['Stop', 'Attack', 'NanoRepair/SJSpaceStationValerian'],
'novacampaign/SS_TerraTron': ['Attack', 'SS_TerraTronSawAttack/SS_Plane', 'SS_TerraTronBeamAttack/SS_Plane'],
'novacampaign/SiegeTankSieged': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Unsiege', 'DeploySpiderMines/SiegeTank'],
'novacampaign/SpacePlatformVentsUnit': ['LeviathanSpawnMutalisk/SpacePlatformVentsUnit', 'SpawnCorruptor/SpacePlatformVentsUnit', 'SpawnBroodLord/SpacePlatformVentsUnit'],
'novacampaign/StalkerShakurasHallucination': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Blink/StalkerShakuras', 'Rally'],
'novacampaign/StargateWarp (card index 0)': ['Phoenix/StargateWarp', 'Oracle/StargateWarp', 'Carrier/StargateWarp', 'MorphBackToStargate/StargateWarp', 'Cancel'],
'novacampaign/Starport (card index 0) 0': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'TechReactorAI/Starport', 'Halt', 'Cancel'],
'novacampaign/Starport (card index 0) 1': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'Lift', 'Cancel'],
'novacampaign/Starport (card index 0) 2': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'Halt', 'Cancel'],
'novacampaign/Starport (card index 0) 3': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'MengskUnits/Starport', 'Rally', 'TechReactorAI/Starport', 'Reactor/Starport', 'Lift', 'Cancel'],
'novacampaign/Starport (card index 0) 4': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'MengskUnits/Starport', 'Rally', 'TechReactorAI/Starport', 'Reactor/Starport', 'Halt', 'Cancel'],
'novacampaign/Starport (card index 0) 5': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'MengskUnits/Starport', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'Halt', 'Cancel'],
'novacampaign/StarportTechLab': ['ResearchMedivacEnergyUpgrade/StarportTechLab', 'ResearchDurableMaterials/StarportTechLab', 'ResearchSeekerMissile/StarportTechLab', 'ResearchRavenEnergyUpgrade/StarportTechLab', 'ResearchLiberatorAGMode/StarportTechLab', 'Cancel'],
'novacampaign/StarportTechReactor': ['ResearchMedivacEnergyUpgrade/StarportTechReactor', 'ResearchBansheeCloak/StarportTechReactor', 'ResearchRavenEnergyUpgrade/StarportTechReactor', 'WraithCloak/StarportTechReactor', 'ResearchDurableMaterials/StarportTechReactor', 'ResearchSeekerMissile/StarportTechReactor', 'Cancel'],
'novacampaign/SwarmHost': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RapidIncubation/SwarmHost', 'SwarmHostRoot'],
'novacampaign/SwarmQueenEgg (card index 1) 0': ['SwarmQueenZergling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydralisk/SwarmQueenEgg', 'Cancel'],
'novacampaign/SwarmQueenEgg (card index 1) 1': ['SwarmQueenSwarmling/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'novacampaign/ThorWreckage': ['ImmortalityProtocol/ThorWreckage', 'Cancel'],
'novacampaign/TwilightCouncil 0': ['WarpInActiveArtanisChampion/TwilightCouncil', 'WarpInDarkTemplarChampion/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampionAir/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil', 'Cancel'],
'novacampaign/TwilightCouncil 1': ['WarpInActiveArtanisChampion/TwilightCouncil', 'ResearchStalkerTeleport/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampion/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil', 'Cancel'],
'novacampaign/TwilightCouncil 2': ['WarpInActiveArtanisChampion/TwilightCouncil', 'ResearchStalkerTeleport/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampionAir/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil', 'Cancel'],
'novacampaign/TwilightCouncil 3': ['ResearchCharge/TwilightCouncil', 'WarpInDarkTemplarChampion/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampion/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil', 'Cancel'],
'novacampaign/TwilightCouncil 4': ['WarpInArtanisChampion/TwilightCouncil', 'WarpInDarkTemplarChampion/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampionAir/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil', 'Cancel'],
'novacampaign/VoidRift (card index 3)': ['Zergling/VoidRift', 'Hydralisk/VoidRift', 'Mutalisk/VoidRift', 'Ultralisk/VoidRift', 'MorphToOverseer/VoidRift', 'Roach/VoidRift', 'Aberration/VoidRift', 'BroodLord/VoidRift', 'Viper/VoidRift', 'Cancel'],
'novacampaign/VoidRiftUnselectable (card index 0)': ['Rally', 'TerranBuild/VoidRiftUnselectable', 'ProtossBuild/VoidRiftUnselectable', 'ZergBuild/VoidRiftUnselectable', 'Cancel'],
'novacampaign/VoidSeeker': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BunkerLoad', 'BunkerUnloadAll', 'PhaseMineBlast/VoidSeeker'],
'novacampaign/VoidThrasher (card index 1)': ['Zealot', 'Stalker', 'Colossus/VoidThrasher', 'Immortal/VoidThrasher', 'Carrier/VoidThrasher', 'Zergling/VoidThrasher', 'Hydralisk/VoidThrasher', 'Mutalisk/VoidThrasher', 'Ultralisk/VoidThrasher', 'Marine/VoidThrasher', 'Ghost/VoidThrasher', 'SiegeTank/VoidThrasher', 'Banshee/VoidThrasher', 'Cancel'],
'novacampaign/VoidThrasherWalker (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Rally', 'KaiserWormScourgeMissile/VoidThrasherWalker', 'VoidThrasherLightningAoE/VoidThrasherWalker', 'VoidThrasherLightningAoEExtra/VoidThrasherWalker'],
'novacampaign/WarpPrismGiant': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PhasingMode/WarpPrismGiant', 'BunkerLoad', 'BunkerUnloadAll'],
'novacampaign/ZealotShakuras': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidZealotShadowCharge/ZealotShakuras', 'VoidZealotShadowChargeStun/ZealotShakuras', 'Rally'],
'novastoryassets/AmonAetherMawEpilogue03': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AetherMawAetherStorm/AmonAetherMawEpilogue03'],
'novastoryassets/Barracks (card index 1)': ['Marine/Barracks', 'Marauder/Barracks', 'Reaper/Barracks', 'Firebat/Barracks', 'Medic/Barracks', 'HireKelmorianMiners/Barracks', 'HireHammerSecurities/Barracks', 'HireDevilDogs/Barracks', 'MercReaper/Barracks', 'MercMedic/Barracks', 'Separatist/Barracks', 'Cancel'],
'novastoryassets/BarracksFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechLabBarracks/BarracksFlying', 'Reactor/BarracksFlying', 'Land'],
'novastoryassets/BroodMother': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/BroodMother', 'QueenBurstHeal/BroodMother', 'DeepTunnel/BroodMother', 'Cancel'],
'novastoryassets/Bunker 0': ['StopBunker/Bunker', 'Attack', 'SpiderMine/Bunker', 'SelectBuilder', 'SetBunkerRallyPoint/Bunker', 'Stim', 'BunkerLoad', 'BunkerUnloadAll', 'Halt', 'Cancel'],
'novastoryassets/Bunker 1': ['Stop', 'Attack', 'SpiderMine/Bunker', 'SelectBuilder', 'SetBunkerRallyPoint/Bunker', 'Stim', 'BunkerLoad', 'BunkerUnloadAll', 'Salvage/Bunker', 'Cancel'],
'novastoryassets/CarrierAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/CarrierAiur', 'RepairDrones/CarrierAiur', 'Rally'],
'novastoryassets/CommandCenter': ['SCV', 'OrbitalCommand/CommandCenter', 'UpgradeToPlanetaryFortress/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 00': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 01': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 02': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 03': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 04': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 05': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 06': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 07': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 08': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 09': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 10': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 11': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 12': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 13': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 14': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 15': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 16': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 17': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 18': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 19': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 20': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 21': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 22': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 23': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 24': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 25': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 26': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 27': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 28': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 29': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 30': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 31': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 32': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 33': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 34': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 35': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 36': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 37': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 38': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 39': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 40': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 41': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 42': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 43': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 44': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 45': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 46': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 47': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 48': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 49': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 50': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 51': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 52': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 53': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 54': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 55': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 56': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 57': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 58': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 59': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 60': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 61': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 62': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 63': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 64': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 65': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 66': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 67': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 68': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 69': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 70': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 71': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 72': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 73': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 74': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 75': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 76': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 77': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 78': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 79': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 80': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 81': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 82': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 0) 83': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novastoryassets/Factory (card index 0) 84': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novastoryassets/Factory (card index 2)': ['Hellion/Factory', 'Goliath/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Thor/Factory', 'MercHellion/Factory', 'HireSpartanCompany/Factory', 'HireSiegeBreakers/Factory', 'Cancel'],
'novastoryassets/Flagship 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CloakOff', 'FlagshipTimeBomb/Flagship', 'FlagshipWarpInPhoenix/Flagship', 'FlagshipWarpInScout/Flagship', 'CloakOnFlagship/Flagship', 'Cancel'],
'novastoryassets/Flagship 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CloakOff', 'FlagshipTimeBomb/Flagship', 'FlagshipWarpInPhoenix/Flagship', 'FlagshipWarpInScout/Flagship', 'CloakOnFlagship/Flagship', 'Rally'],
'novastoryassets/Ghost': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'NukeCalldown/Ghost', 'GhostHoldFire/Ghost', 'WeaponsFree/Ghost', 'Snipe/Ghost', 'EMP/Ghost', 'CloakOnGhost/Ghost', 'CloakOff', 'Cancel'],
'novastoryassets/GiantYeti': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GiantYetiLeap/GiantYeti'],
'novastoryassets/HerculesCrashing': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HerculesLoad/HerculesCrashing', 'HerculesUnloadAll/HerculesCrashing'],
'novastoryassets/HotSNoxious': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PoisonNova/HotSNoxious', 'BurrowChargeCampaignNoxious/HotSNoxious', 'BurrowDown'],
'novastoryassets/HotSTorrasqueBurrowed': ['Attack', 'UltraliskBurrowCharge/HotSTorrasqueBurrowed', 'TorrasqueChrysalis/HotSTorrasqueBurrowed', 'BurrowUp'],
'novastoryassets/HoverHellbat': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToHoverHellion/HoverHellion'],
'novastoryassets/HoverHellion': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToHoverHellbat/HoverHellion'],
'novastoryassets/HoverSiegeTank': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HoverSiegeMode'],
'novastoryassets/HugeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'novastoryassets/HugeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'novastoryassets/HugeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'novastoryassets/HugeSwarmQueen 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'novastoryassets/HugeSwarmQueen 4': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'novastoryassets/HugeSwarmQueen 5': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'novastoryassets/HugeSwarmQueen 6': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'novastoryassets/HybridBehemoth': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ConsumeDNA/HybridBehemoth', 'HybridFAoEStun/HybridBehemoth'],
'novastoryassets/HybridGeneral': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HybridGeneralMindControl/HybridGeneral', 'HybridGeneralPhaseShift/HybridGeneral'],
'novastoryassets/InfestedBunker': ['InfestedAbomination/InfestedBunker', 'BunkerAttack/InfestedBunker', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'novastoryassets/InfestedCC': ['InfestedAbomination/InfestedCC', 'Rally', 'Cancel'],
'novastoryassets/Infestor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FungalGrowth/Infestor', 'InfestedTerrans/Infestor', 'InfestorConsumption/Infestor', 'BurrowDown'],
'novastoryassets/KerriganVoid': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/KerriganVoid', 'PsionicLift/KerriganVoid', 'WildMutation/KerriganVoid', 'K5Leviathan/KerriganVoid', 'BurrowDown'],
'novastoryassets/KerriganVoidUlnar02': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KerriganVoidKineticBlast/KerriganVoidUlnar02', 'KerriganVoidSpawnBanelings/KerriganVoidUlnar02', 'KerriganVoidApocalypse/KerriganVoidUlnar02'],
'novastoryassets/Locust': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/Locust'],
'novastoryassets/LocustFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/LocustFlying'],
'novastoryassets/Loki': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'MissilePods/Loki', 'Lift'],
'novastoryassets/MengskReaper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'D8Charge/MengskReaper'],
'novastoryassets/MercReaper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'D8Charge/MercReaper'],
'novastoryassets/Nexus': ['Probe/Nexus', 'Mothership/Nexus', 'Stop', 'Attack', 'Rally', 'TimeWarp/Nexus', 'Cancel'],
'novastoryassets/NovaVulture': ['Move', 'Stop', 'MovePatrol', 'Attack', 'NovaWeaponCanisterRifleSnipe/NovaVulture', 'NovaGadgetPulseGrenades/NovaVulture'],
'novastoryassets/Overlord': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'GenerateCreep/Overlord', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'novastoryassets/Phoenix 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeamVoidCampaign/Phoenix', 'Cancel'],
'novastoryassets/Phoenix 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/Phoenix', 'Rally'],
'novastoryassets/PhoenixPurifier 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeamVoidCampaign/PhoenixPurifier', 'Cancel'],
'novastoryassets/PhoenixPurifier 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/PhoenixPurifier', 'Rally'],
'novastoryassets/PitMalash': ['Stop', 'MoveHoldPosition', 'MovePatrol', 'PitMalashPsiShift/PitMalash', 'PitMalashUppercut/PitMalash', 'PitMalashSuperMove/PitMalash', 'Cancel'],
'novastoryassets/Purifier': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Vortex/Purifier', 'PlanetCracker/Purifier'],
'novastoryassets/SS_Leviathan': ['SS_LeviathanSpawnBombs/SS_Plane', 'SS_LeviathanTentacleAttackR2/SS_Plane', 'SS_LeviathanTentacleAttackR1/SS_Plane', 'SS_LeviathanTentacleAttackL1/SS_Plane', 'SS_LeviathanTentacleAttackL2/SS_Plane', 'SS_LeviathanTentacleAttackR2NoDelay/SS_Plane', 'SS_LeviathanTentacleAttackR1NoDelay/SS_Plane', 'SS_LeviathanTentacleAttackL1NoDelay/SS_Plane', 'SS_LeviathanTentacleAttackL2NoDelay/SS_Plane'],
'novastoryassets/ShadowShieldGeneratorSmall': ['DeactivateShieldGenerator/ShadowShieldGeneratorSmall'],
'novastoryassets/ShrineGuardian': ['Stop', 'Attack', 'ShrineGuardianDeath/ShrineGuardian', 'Rally'],
'novastoryassets/SiegeTank': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SiegeMode', 'DeploySpiderMines/SiegeTank'],
'novastoryassets/SkyTank': ['Move', 'Stop', 'MoveHoldPosition', 'MissilePods/SkyTank', 'SkyTankLaserBeamFast/SkyTank', 'SkyTankLaserBeamSlow/SkyTank'],
'novastoryassets/StalkerPurifier': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'StalkerBlinkMultiple/Stalker', 'Rally'],
'novastoryassets/Stargate (card index 0)': ['Phoenix/Stargate', 'Oracle/Stargate', 'Carrier/Stargate', 'Rally', 'UpgradeToStargateWarp/Stargate', 'Cancel'],
'novastoryassets/StargateWarp (card index 0)': ['Phoenix/StargateWarp', 'VoidRay/StargateWarp', 'Carrier/StargateWarp', 'MorphBackToStargate/StargateWarp', 'Cancel'],
'novastoryassets/Starport (card index 0) 0': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'SelectBuilder', 'Rally', 'TechReactorAI/Starport', 'Reactor/Starport', 'Lift', 'Cancel'],
'novastoryassets/Starport (card index 0) 1': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'SelectBuilder', 'Rally', 'TechReactorAI/Starport', 'Reactor/Starport', 'Halt', 'Cancel'],
'novastoryassets/Starport (card index 0) 2': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'novastoryassets/Starport (card index 0) 3': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'MengskUnits/Starport', 'Rally', 'TechLabStarport/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'novastoryassets/Starport (card index 0) 4': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'MengskUnits/Starport', 'Rally', 'TechLabStarport/Starport', 'TechReactorAI/Starport', 'Halt', 'Cancel'],
'novastoryassets/Starport (card index 0) 5': ['Liberator/Starport', 'Banshee/Starport', 'Medivac/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'VikingFighter/Starport', 'Raven/Starport', 'MengskUnits/Starport', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'Lift', 'Cancel'],
'novastoryassets/StarportFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'BuildTechLabStarport/StarportFlying', 'TechReactorAI/StarportFlying', 'Land'],
'novastoryassets/SuperWarpGate (card index 1)': ['Probe/SuperWarpGate', 'Carrier/SuperWarpGate', 'Oracle/SuperWarpGate', 'MothershipCore/SuperWarpGate', 'Stalker', 'WarpInFenixChampion/SuperWarpGate', 'WarpInDarkTemplarChampion/SuperWarpGate', 'WarpInDarkArchonChampion/SuperWarpGate', 'WarpInVulcanChampion/SuperWarpGate', 'WarpInArtanisChampion/SuperWarpGate'],
'novastoryassets/SwarmHost': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/SwarmHost', 'SwarmHostRoot'],
'novastoryassets/SwarmHostBurrowedMP': ['Attack', 'SetRallyPointSwarmHost/SwarmHostBurrowedMP', 'SwarmHost/SwarmHostBurrowedMP', 'SwarmHostBurrowUp'],
'novastoryassets/SwarmQueenEgg (card index 1) 0': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydralisk/SwarmQueenEgg', 'Cancel'],
'novastoryassets/SwarmQueenEgg (card index 1) 1': ['SwarmQueenSwarmling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskLurker/SwarmQueenEgg', 'Cancel'],
'novastoryassets/SwarmQueenEgg (card index 1) 2': ['SwarmQueenSwarmling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'novastoryassets/Tassadar': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Feedback/Tassadar', 'PsiStorm/Tassadar', 'Rally'],
'novastoryassets/TempestPurifier': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LightningBomb/TempestPurifier', 'Rally'],
'novastoryassets/Thor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArmorpiercingMode', 'Cancel'],
'novastoryassets/TorrasqueCorpse (card index 1)': ['TorrasqueChrysalis/TorrasqueCorpse'],
'novastoryassets/TwilightCouncil': ['WarpInArtanisChampion/TwilightCouncil', 'ResearchStalkerTeleport/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampionAir/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil', 'Cancel'],
'novastoryassets/Ultralisk': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BurrowChargeCampaign/Ultralisk', 'BurrowDown'],
'novastoryassets/VoidCorruption': ['SelectBuilder', 'VoidRift/VoidCorruption', 'Halt', 'Cancel'],
'novastoryassets/VoidSeekerCrashed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BunkerLoad', 'BunkerUnloadAll', 'PhaseMineBlast/VoidSeekerCrashed'],
'novastoryassets/VoidShard': ['Stop', 'Attack', 'VoidTendrilShockwave/VoidShard', 'VoidRift/VoidShard', 'VoidTendrilDeathGrip/VoidShard', 'VoidTendrilVoidZone/VoidShard', 'VoidTendrilUnstableEnergy/VoidShard'],
'novastoryassets/VoidThrasher (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Rally', 'KaiserWormScourgeMissile/VoidThrasher', 'VoidThrasherLightningAoE/VoidThrasher', 'VoidThrasherLightningAoEExtra/VoidThrasher'],
'novastoryassets/VorazunChampion': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VorazunBlink/VorazunChampion', 'MohandarOmnislash/VorazunChampion', 'Rally'],
'novastoryassets/WarfieldFortress': ['SCV', 'StopPlanetaryFortress/WarfieldFortress', 'Attack', 'Rally', 'CommandCenterLoad', 'BunkerUnloadAll', 'Cancel'],
'novastoryassets/ZaGara': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/ZaGara', 'MorphMorphalisk/ZaGara', 'Transfusion/ZaGara', 'DeepTunnel/ZaGara', 'BurrowDown'],
'swarmmulti/Changeling': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Disguise/Changeling'],
'swarmmulti/Drone (card index 1)': ['Hatchery/Drone', 'Extractor/Drone', 'SpawningPool/Drone', 'EvolutionChamber/Drone', 'RoachWarren/Drone', 'BanelingNest/Drone', 'SpineCrawler/Drone', 'SporeCrawler/Drone', 'Cancel'],
'swarmmulti/GhostNova': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'NukeCalldown/Ghost', 'GhostHoldFire/Ghost', 'WeaponsFree/Ghost', 'Snipe/Ghost', 'EMP/Ghost', 'CloakOnBanshee', 'CloakOff', 'Cancel'],
'swarmmulti/HydraliskDen': ['hydraliskspeed/HydraliskDen', 'MuscularAugments/HydraliskDen', 'Cancel'],
'swarmmulti/InfestationPit': ['EvolveInfestorEnergyUpgrade/InfestationPit', 'ResearchNeuralParasite/InfestationPit', 'EvolveFlyingLocusts/InfestationPit', 'Cancel'],
'swarmmulti/Larva': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Mutalisk/Larva', 'Corruptor/Larva', 'Infestor/Larva', 'SwarmHostMP/Larva', 'Viper/Larva', 'Ultralisk/Larva', 'Cancel'],
'swarmmulti/LurkerMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BurrowLurkerMP'],
'swarmmulti/MothershipCore': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToMothership/MothershipCore', 'MothershipCoreWeapon/MothershipCore', 'MothershipCoreMassRecall/MothershipCore', 'TemporalField/MothershipCore', 'Cancel'],
'swarmmulti/NydusCanalCreeper (card index 0)': ['DigesterCreepSpray/NydusCanalCreeper'],
'swarmmulti/Oracle': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'OracleRevelation/Oracle', 'LightofAiur/Oracle', 'OracleWeaponOn', 'OracleWeaponOff', 'Cancel'],
'swarmmulti/SupplyDepotLowered': ['Raise/SupplyDepotLowered'],
'swarmmulti/SwarmHostBurrowedMP': ['Attack', 'VoidSwarmHostSpawnLocust/SwarmHostBurrowedMP', 'SwarmHostBurrowUp'],
'swarmmulti/VoidRay': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidRaySwarmDamageBoost/VoidRay'],
'swarmmulti/WidowMineBurrowed': ['Attack', 'WidowMineUnburrow/WidowMine'],
'swarmmulti/Zergling': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Baneling/Zergling', 'BurrowDown'],
'swarmstory/Barracks (card index 0) 0': ['Marine/Barracks', 'Marauder/Barracks', 'Reaper/Barracks', 'Ghost/Barracks', 'Medic/Barracks', 'Firebat/Barracks', 'Spectre/Barracks', 'MengskUnits/Barracks', 'Rally', 'TechLabBarracks/Barracks', 'Reactor/Barracks', 'TechReactorAI/Barracks', 'Lift', 'Cancel'],
'swarmstory/Barracks (card index 0) 1': ['Marine/Barracks', 'Marauder/Barracks', 'Reaper/Barracks', 'Ghost/Barracks', 'Medic/Barracks', 'Firebat/Barracks', 'Spectre/Barracks', 'SelectBuilder', 'Rally', 'TechLabBarracks/Barracks', 'Reactor/Barracks', 'TechReactorAI/Barracks', 'Halt', 'Cancel'],
'swarmstory/BarracksTechReactor': ['ResearchShieldWall/BarracksTechReactor', 'Stimpack/BarracksTechReactor', 'ReaperSpeed/BarracksTechReactor', 'Cancel'],
'swarmstory/ColonistVehicleUnit': ['Move', 'Stop', 'MoveHoldPosition', 'ParkColonistVehicle/ColonistVehicleUnit', 'StartColonistVehicle/ColonistVehicleUnit'],
'swarmstory/CommandCenterFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Land'],
'swarmstory/CreepTumorBurrowed': ['BuildCreepTumorPropagate/CreepTumorBurrowed', 'Cancel'],
'swarmstory/EngineeringBay': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'swarmstory/Factory (card index 0) 0': ['Hellion/Factory', 'SiegeTank/Factory', 'WarHound/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'swarmstory/Factory (card index 0) 1': ['Hellion/Factory', 'SiegeTank/Factory', 'WarHound/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'swarmstory/Factory (card index 0) 2': ['Hellion/Factory', 'SiegeTank/Factory', 'WarHound/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'swarmstory/FleetBeacon 0': ['ResearchInterceptorLaunchSpeedUpgrade/FleetBeacon', 'OracleEnergyUpgrade/FleetBeacon', 'TempestRangeUpgrade/FleetBeacon', 'Cancel'],
'swarmstory/FleetBeacon 1': ['AnionPulseCrystals/FleetBeacon', 'OracleEnergyUpgrade/FleetBeacon', 'TempestRangeUpgrade/FleetBeacon', 'Cancel'],
'swarmstory/FusionCore': ['ResearchBattlecruiserSpecializations/FusionCore', 'ResearchBattlecruiserEnergyUpgrade/FusionCore', 'SelectBuilder', 'Halt', 'Cancel'],
'swarmstory/HiveMindEmulator': ['MindControl/HiveMindEmulator', 'Cancel'],
'swarmstory/HotSSplitterlingBig': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSSplitterlingBig', 'DisableBuildingAttack/HotSSplitterlingBig', 'BurrowDown'],
'swarmstory/HotSSwarmling': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Baneling/HotSSwarmling', 'BurrowDown'],
'swarmstory/HugeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'swarmstory/HugeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'swarmstory/HugeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'swarmstory/HugeSwarmQueen 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'swarmstory/HugeSwarmQueen 4': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'swarmstory/HugeSwarmQueen 5': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'swarmstory/HugeSwarmQueen 6': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'swarmstory/HugeSwarmQueen 7': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'swarmstory/HugeSwarmQueen 8': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'swarmstory/InfestedBarracks': ['InfestedAbomination/InfestedBarracks', 'Rally', 'Cancel'],
'swarmstory/InfestedRefinery': ['InfestedAbomination/InfestedRefinery', 'Rally', 'Cancel'],
'swarmstory/Infestor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FungalGrowth/Infestor', 'NPSwarm/Infestor', 'InfestorConsumption/Infestor', 'BurrowDown'],
'swarmstory/KerriganChar': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'OmegaStorm/KerriganChar', 'Implosion/KerriganChar', 'DeepTunnel/KerriganChar', 'BurrowDown'],
'swarmstory/KerriganGhostLab': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/KerriganGhostLab', 'PsionicLift/KerriganGhostLab'],
'swarmstory/LargeSwarmQueen': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenRaptor/LargeSwarmQueen', 'SwarmQueenVile/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'swarmstory/LurkerDenMP': ['hydraliskspeed/LurkerDenMP', 'MuscularAugments/LurkerDenMP', 'Cancel'],
'swarmstory/MengskBC': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'MissilePods/MengskBC', 'DefensiveMatrix/MengskBC'],
'swarmstory/MengskMedic': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MercMedicHeal/MengskMedic'],
'swarmstory/MercCompound': ['HireKelmorianMiners/MercCompound', 'HireDevilDogs/MercCompound', 'HireHammerSecurities/MercCompound', 'HireSpartanCompany/MercCompound', 'HireSiegeBreakers/MercCompound', 'HireHelsAngels/MercCompound', 'HireDuskWing/MercCompound', 'HireDukesRevenge/MercCompound', 'Rally', 'MercMedic/MercCompound', 'MercHellion/MercCompound', 'MercReaper/MercCompound', 'Halt', 'Cancel'],
'swarmstory/MercenaryFortress': ['SCV', 'StopPlanetaryFortress/MercenaryFortress', 'Attack', 'Rally', 'CommandCenterLoad', 'BunkerUnloadAll', 'Cancel'],
'swarmstory/Oracle': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSiphon/Oracle', 'OracleRevelation/Oracle', 'ResourceStun/Oracle'],
'swarmstory/PrimalTownHall (card index 0)': ['Stop', 'Attack', 'PrimalZergling/PrimalTownHall', 'PrimalRoach/PrimalTownHall', 'PrimalHydralisk/PrimalTownHall', 'PrimalFlyer/PrimalTownHall', 'Rally', 'PrimalMutalisk/PrimalTownHall', 'PrimalUltralisk/PrimalTownHall', 'Cancel'],
'swarmstory/SJMercStarport': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Rally', 'Battlecruiser/SJMercStarport', 'Cancel'],
'swarmstory/SS_ScienceVessel': ['Attack', 'ZeratulBlink/SS_Plane'],
'swarmstory/SporeCrawlerUprooted': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SporeCrawlerRoot/SporeCrawlerUprooted', 'Cancel'],
'swarmstory/Stalker': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Blink/Stalker', 'Rally'],
'swarmstory/Stargate': ['Phoenix/Stargate', 'VoidRay/Stargate', 'Carrier/Stargate', 'Oracle/Stargate', 'Tempest/Stargate', 'WarpInScout/Stargate', 'Rally', 'Cancel'],
'swarmstory/Starport (card index 0)': ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'CampaignVehicles/Starport', 'MengskUnits/Starport', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'swarmstory/Starport (card index 2)': ['VikingFighter/Starport', 'Banshee/Starport', 'Wraith/Starport', 'Battlecruiser/Starport', 'HireDuskWing/Starport', 'HireHelsAngels/Starport', 'HireDukesRevenge/Starport', 'Cancel'],
'swarmstory/SuperWarpGate (card index 0)': ['Zealot', 'Stalker', 'Sentry', 'HighTemplar', 'DarkTemplar', 'Immortal/SuperWarpGate', 'Phoenix/SuperWarpGate', 'Carrier/SuperWarpGate', 'VoidRay/SuperWarpGate', 'Rally', 'Archon/SuperWarpGate', 'WarpInScout/SuperWarpGate', 'Colossus/SuperWarpGate', 'Blink/SuperWarpGate', 'Cancel'],
'swarmstory/SwarmQueen': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/SwarmQueen', 'SwarmQueenZergling/SwarmQueen', 'GrowLargeQueen/SwarmQueen', 'BurrowDown'],
'swarmstory/SwarmQueenEgg (card index 1) 0': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydralisk/SwarmQueenEgg', 'Cancel'],
'swarmstory/SwarmQueenEgg (card index 1) 1': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydraliskLurker/SwarmQueenEgg', 'Cancel'],
'swarmstory/SwarmQueenEgg (card index 1) 2': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'swarmstory/SwarmQueenEgg (card index 1) 3': ['SwarmQueenSwarmling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydralisk/SwarmQueenEgg', 'Cancel'],
'swarmstory/SwarmQueenEgg (card index 1) 4': ['SwarmQueenSwarmling/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydralisk/SwarmQueenEgg', 'Cancel'],
'swarmstory/TestShop': ['SCV', 'Designate/TestShop', 'Rally', 'Cancel'],
'swarmstory/TitanMechAssault': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TitanMechGunShotCharge/TitanMechAssault', 'TitanMechGunShot/TitanMechAssault', 'TitanMechMissileShot/TitanMechAssault', 'TitanMechRepel/TitanMechAssault', 'FighterMode'],
'swarmstory/Urun 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/Urun', 'Rally'],
'swarmstory/Urun 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/Urun', 'Cancel'],
'swarmstory/XelNagaWorldshipVault': ['Stop', 'ChainLightning/XelNagaWorldshipVault'],
'voidmulti/Adept 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AdeptPhaseShift/Adept', 'Rally'],
'voidmulti/Adept 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AdeptPhaseShift/Adept', 'Cancel'],
'voidmulti/Armory': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehicleAndShipPlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'voidmulti/Carrier': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/Carrier', 'ReleaseInterceptors/Carrier', 'GravitonCatapult/Carrier', 'Cancel'],
'voidmulti/Corruptor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CausticSpray/Corruptor', 'BroodLord/Corruptor', 'Cancel'],
'voidmulti/DefilerMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DefilerMPConsume/DefilerMP', 'DefilerMPDarkSwarm/DefilerMP', 'DefilerMPPlague/DefilerMP', 'BurrowDown'],
'voidmulti/Factory 0': ['Hellion/Factory', 'WidowMine/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'HellionTank/Factory', 'Thor/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'voidmulti/Factory 1': ['Hellion/Factory', 'WidowMine/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'HellionTank/Factory', 'Thor/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'voidmulti/FactoryTechLab': ['ResearchHighCapacityBarrels/FactoryTechLab', 'ResearchDrillClaws/FactoryTechLab', 'CycloneResearchLockOnDamageUpgrade/FactoryTechLab', 'Cancel'],
'voidmulti/Gateway': ['Zealot', 'Sentry', 'Stalker', 'WarpInAdept/Gateway', 'HighTemplar', 'DarkTemplar', 'Rally', 'UpgradeToWarpGate/Gateway', 'Cancel'],
'voidmulti/GhostNova': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'NukeCalldown/Ghost', 'GhostHoldFire/Ghost', 'WeaponsFree/Ghost', 'ChannelSnipe/Ghost', 'EMP/Ghost', 'CloakOnBanshee', 'CloakOff', 'Cancel'],
'voidmulti/Hydralisk': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LurkerMP/Hydralisk', 'BurrowDown'],
'voidmulti/HydraliskDen': ['hydraliskspeed/HydraliskDen', 'MutateintoLurkerDen/HydraliskDen', 'Cancel'],
'voidmulti/InfestorBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'InfestedTerrans/InfestorBurrowed', 'BurrowUp'],
'voidmulti/LiberatorAG': ['Stop', 'Attack', 'LiberatorAAMode/Liberator'],
'voidmulti/Mothership': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MothershipCoreWeapon/Mothership', 'MothershipMassRecall/Mothership', 'TemporalField/Mothership'],
'voidmulti/NydusNetwork': ['Stop', 'SummonNydusWorm/NydusNetwork', 'Rally', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'voidmulti/Overlord 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'GenerateCreep/Overlord', 'MorphtoOverlordTransport/Overlord', 'Cancel'],
'voidmulti/Overlord 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'StopGenerateCreep', 'MorphtoOverlordTransport/Overlord', 'Cancel'],
'voidmulti/QueenMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'QueenMPEnsnare/QueenMP', 'QueenMPSpawnBroodlings/QueenMP', 'QueenMPInfestCommandCenter/QueenMP'],
'voidmulti/Reaper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KD8Charge/Reaper'],
'voidmulti/RoboticsFacility': ['Observer/RoboticsFacility', 'WarpPrism/RoboticsFacility', 'Immortal/RoboticsFacility', 'Colossus/RoboticsFacility', 'WarpinDisruptor/RoboticsFacility', 'Rally', 'Cancel'],
'voidmulti/SpineCrawler': ['Stop', 'Attack', 'SpineCrawlerUproot/SpineCrawler', 'Cancel'],
'voidmulti/StarportTechLab': ['ResearchHighCapacityFuelTanks/StarportTechLab', 'ResearchExplosiveShrapnelShells/StarportTechLab', 'ResearchRavenEnergyUpgrade/StarportTechLab', 'ResearchBansheeCloak/StarportTechLab', 'BansheeSpeed/StarportTechLab', 'ResearchBallisticRange/StarportTechLab', 'Cancel'],
'voidmulti/TwilightCouncil': ['ResearchCharge/TwilightCouncil', 'ResearchStalkerTeleport/TwilightCouncil', 'AdeptResearchPiercingUpgrade/TwilightCouncil', 'Cancel'],
'voidmulti/Viper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ViperConsume/Viper', 'FaceEmbrace/Viper', 'BlindingCloud/Viper', 'ParasiticBomb/Viper'],
'voidmulti/WarpGate': ['Zealot', 'Sentry', 'Stalker', 'WarpInAdept/WarpGate', 'HighTemplar', 'DarkTemplar', 'Rally', 'MorphBackToGateway/WarpGate'],
'voidprologue/Armory': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'voidprologue/Ball': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Taunt/Ball'],
'voidprologue/Barracks (card index 0) 0': ['Marine/Barracks', 'Marauder/Barracks', 'Reaper/Barracks', 'Ghost/Barracks', 'Medic/Barracks', 'Firebat/Barracks', 'Spectre/Barracks', 'MengskUnits/Barracks', 'Rally', 'TechLabBarracks/Barracks', 'Reactor/Barracks', 'TechReactorAI/Barracks', 'Halt', 'Cancel'],
'voidprologue/Barracks (card index 0) 1': ['Marine/Barracks', 'Marauder/Barracks', 'Reaper/Barracks', 'Ghost/Barracks', 'Medic/Barracks', 'Firebat/Barracks', 'Spectre/Barracks', 'SelectBuilder', 'Rally', 'TechLabBarracks/Barracks', 'Reactor/Barracks', 'TechReactorAI/Barracks', 'Lift', 'Cancel'],
'voidprologue/BarracksTechLab': ['ResearchShieldWall/BarracksTechLab', 'Stimpack/BarracksTechLab', 'ResearchPunisherGrenades/BarracksTechLab', 'ReaperSpeed/BarracksTechLab', 'Cancel'],
'voidprologue/Dehaka': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Drag/Dehaka', 'DehakaMirrorImage/Dehaka', 'DehakaHeal/Dehaka', 'BurrowDown'],
'voidprologue/DukesRevenge': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'MissilePods/DukesRevenge', 'DefensiveMatrix/DukesRevenge'],
'voidprologue/Factory (card index 0)': ['Hellion/Factory', 'SiegeTank/Factory', 'WarHound/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'voidprologue/Factory (card index 1)': ['Vulture/Factory', 'Predator/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'MicroBot/Factory', 'Thor/Factory', 'Hellion/Factory', 'Cancel'],
'voidprologue/GhostAcademy': ['ResearchPersonalCloaking/GhostAcademy', 'ResearchGhostEnergyUpgrade/GhostAcademy', 'SelectBuilder', 'NukeArm/GhostAcademy', 'Halt', 'Cancel'],
'voidprologue/Hatchery (card index 0)': ['Larva', 'Queen', 'RespawnZergling/Hatchery', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'voidprologue/HotSHunter': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSHunter', 'EnableBuildingAttack/HotSHunter', 'BurrowDown'],
'voidprologue/HotSRaptor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Baneling/HotSRaptor', 'BurrowDown'],
'voidprologue/HugeSwarmQueen 00': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'voidprologue/HugeSwarmQueen 01': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'voidprologue/HugeSwarmQueen 02': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'voidprologue/HugeSwarmQueen 03': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'voidprologue/HugeSwarmQueen 04': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'voidprologue/HugeSwarmQueen 05': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'voidprologue/HugeSwarmQueen 06': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'voidprologue/HugeSwarmQueen 07': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'voidprologue/HugeSwarmQueen 08': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'voidprologue/HugeSwarmQueen 09': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'voidprologue/HugeSwarmQueen 10': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'voidprologue/Hybrid': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ConsumeDNA/Hybrid', 'HybridFAoEStun/Hybrid'],
'voidprologue/HydraliskDen': ['hydraliskspeed/HydraliskDen', 'LurkerDen/HydraliskDen', 'Cancel'],
'voidprologue/Immortal': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalBarrierBase/Immortal'],
'voidprologue/InfestedMercHaven': ['InfestedAbomination/InfestedMercHaven', 'Rally', 'Cancel'],
'voidprologue/InfestedStukov (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DevastatingShot/InfestedStukov', 'StukovInfestedTerrans/InfestedStukov'],
'voidprologue/Kraith': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KraithSpineVolley/Kraith'],
'voidprologue/LargeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenSwarmling/LargeSwarmQueen', 'SwarmQueenCorpser/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'voidprologue/LargeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenSwarmling/LargeSwarmQueen', 'SwarmQueenCorpser/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'voidprologue/LargeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenRaptor/LargeSwarmQueen', 'SwarmQueenVile/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'voidprologue/LargeSwarmQueen 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenZergling/LargeSwarmQueen', 'SwarmQueenVile/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'voidprologue/LargeSwarmQueen 4': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenSwarmling/LargeSwarmQueen', 'SwarmQueenRoach/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'voidprologue/Leviathan': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BioPlasmidDischarge/Leviathan', 'BioStasis/Leviathan', 'LeviathanSpawnMutalisk/Leviathan', 'SpawnBroodLord/Leviathan'],
'voidprologue/MengskWraith': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WraithCloakOn/MengskWraith', 'CloakOff'],
'voidprologue/MercCompound': ['HireKelmorianMiners/MercCompound', 'HireDevilDogs/MercCompound', 'HireHammerSecurities/MercCompound', 'HireSpartanCompany/MercCompound', 'HireSiegeBreakers/MercCompound', 'HireHelsAngels/MercCompound', 'HireDuskWing/MercCompound', 'HireDukesRevenge/MercCompound', 'Rally', 'ReaperSpeed/MercCompound', 'MercHellion/MercCompound', 'MercReaper/MercCompound', 'Halt', 'Cancel'],
'voidprologue/MutaliskBroodlord': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BroodLord/MutaliskBroodlord'],
'voidprologue/MutaliskViper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Viper/MutaliskViper'],
'voidprologue/Nova': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'NovaSnipe/Nova', 'Domination/Nova', 'ReleaseMinion/Nova', 'HeroNukeCalldown/Nova', 'Cancel'],
'voidprologue/Overseer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpawnChangeling/Overseer', 'Contaminate/Overseer'],
'voidprologue/PrimalTownHallUprooted': ['Move', 'Stop', 'Attack', 'PrimalZergling/PrimalTownHallUprooted', 'PrimalRoach/PrimalTownHallUprooted', 'PrimalHydralisk/PrimalTownHallUprooted', 'PrimalFlyer/PrimalTownHallUprooted', 'Rally', 'PrimalMutalisk/PrimalTownHallUprooted', 'PrimalUltralisk/PrimalTownHallUprooted', 'PrimalBuildingRoot/PrimalTownHallUprooted', 'Cancel'],
'voidprologue/Probe (card index 3)': ['GasCanisterGather/Probe'],
'voidprologue/PrologueZeratul': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZeratulBlink/PrologueZeratul', 'PrologueVoidArmor/PrologueZeratul', 'ShadowBlade/PrologueZeratul', 'Rally'],
'voidprologue/Raynor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PlantC4Charge/Raynor', 'TossGrenade/Raynor', 'ExperimentalPlasmaGun/Raynor', 'TheMorosDevice/Raynor'],
'voidprologue/ResidualVortex': ['ShadowMissile/ResidualVortex', 'Rally', 'Zealot', 'Stalker', 'Archon/ResidualVortex'],
'voidprologue/SS_CarrierBoss': ['SS_CarrierSpawnInterceptor/SS_Plane', 'Attack'],
'voidprologue/ShadowOfTheVoidHybrid': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ConsumeDNA/ShadowOfTheVoidHybrid', 'HybridFAoEStun/ShadowOfTheVoidHybrid'],
'voidprologue/ShadowOfTheVoidHybridDominator': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PsionicShockwave/ShadowOfTheVoidHybridDominator', 'GravitonPrison/ShadowOfTheVoidHybridDominator', 'PsiStorm/ShadowOfTheVoidHybridDominator'],
'voidprologue/ShadowOfTheVoidStalker': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Blink/ShadowOfTheVoidStalker', 'Rally'],
'voidprologue/ShadowOfTheVoidZealot': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/ShadowOfTheVoidZealot', 'Rally'],
'voidprologue/Spectre': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpectreHoldFire/Spectre', 'SpectreWeaponsFree/Spectre', 'UltrasonicPulse/Spectre', 'Obliterate/Spectre', 'CloakOff', 'SpectreNukeCalldown/Spectre', 'Cancel'],
'voidprologue/Starport (card index 0) 0': ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'CampaignVehicles/Starport', 'MengskUnits/Starport', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Halt', 'Cancel'],
'voidprologue/Starport (card index 0) 1': ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'CampaignVehicles/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'voidprologue/Starport (card index 0) 2': ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'CampaignVehicles/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Halt', 'Cancel'],
'voidprologue/SwarmQueenEgg (card index 1)': ['SwarmQueenSwarmling/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydraliskLurker/SwarmQueenEgg', 'Cancel'],
'voidprologue/TestHero (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'Cancel'],
'voidprologue/Tosh': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBlast/Tosh', 'VoodooShield/Tosh', 'Consumption/Tosh', 'HeroNukeCalldown/Tosh'],
'voidprologue/YagdraEggBig': ['PrimalUltralisk/YagdraEggBig', 'Rally', 'Cancel'],
'voidstory/AmonCrystalEpilogue03': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'AmonCrystalDematerialize/AmonCrystalEpilogue03'],
'voidstory/ArbiterMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArbiterMPStasisField/ArbiterMP', 'ArbiterMPRecall/ArbiterMP', 'Rally'],
'voidstory/ArtanisVoid (card index 1)': ['ArtanisChannel/ArtanisVoid', 'ArtanisChannelOff/ArtanisVoid'],
'voidstory/CarrierAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/CarrierAiur', 'RepairDrones/CarrierAiur', 'Cancel'],
'voidstory/CarrierTaldarim 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/Carrier', 'RepairDrones/Carrier', 'Cancel'],
'voidstory/CarrierTaldarim 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/Carrier', 'RepairDrones/Carrier', 'Rally'],
'voidstory/ColonistVehicleUnit01': ['Move', 'Stop', 'MoveHoldPosition', 'ParkColonistVehicle/ColonistVehicleUnit01', 'StartColonistVehicle/ColonistVehicleUnit01'],
'voidstory/CommandCenter': ['SCV', 'OrbitalCommand/CommandCenter', 'UpgradeToPlanetaryFortress/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'voidstory/DarkShrine': ['DarkShrineAssignRally/DarkShrine'],
'voidstory/DehakaMirrorImage': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Drag/DehakaMirrorImage', 'BurrowDown'],
'voidstory/Disruptor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PurificationNovaTargeted/Disruptor', 'Rally'],
'voidstory/Factory (card index 0) 00': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'voidstory/Factory (card index 0) 01': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'voidstory/Factory (card index 0) 02': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'voidstory/Factory (card index 0) 03': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'voidstory/Factory (card index 0) 04': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'voidstory/Factory (card index 0) 05': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'voidstory/Factory (card index 0) 06': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'voidstory/Factory (card index 0) 07': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'voidstory/Factory (card index 0) 08': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'voidstory/Factory (card index 0) 09': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'voidstory/Factory (card index 0) 10': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'voidstory/Factory (card index 0) 11': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'voidstory/Factory (card index 0) 12': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'voidstory/FactoryTechReactor': ['ResearchHighCapacityBarrels/FactoryTechReactor', 'ResearchSiegeTech/FactoryTechReactor', 'Cancel'],