8.6. The Layout Shipped with the ToolΒΆ

Finally, here an example full layout file for reference:

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
#!/usr/bin/python
"""Generated on 2017-12-28 at 20:57:49 UTC using tanium_hat v1.0.1 'generate_layout.py'.

Input file: layouts/layout_tanium.pptx
Total layout slides in input file: 18

For each layout slide index:
* "name":
  * should be changed to something more friendly, but must be unique

* "add_order":
  * is set to index of layout slide by this generator, but:
  * can be changed to be any order you like
  * can be commented out, the default add_order used by PptxBuilder will be 5100
  * if commented out and this slide depends on a plugin and the plugin has a PRIORITY set,
    add_order will be the plugins PRIORITY + 100.

* "add_dependency":
  * can be any of:
    * "config": to ensure the layout slide is always added
    * "plugin name": any plugin name to ensure the layout slide is only added when plugin is enabled
    * "any other word": to disable adding this layout slide

* "items":
  * uncomment the placeholder indexes you wish to update and set the value to any of:
    * "any text here": to do a simple string update for this placeholder
    * "Customer Name: {{ fetch('config', 'customer_name') }}": to do a dynamic string update for
      this placeholder. This particular example would produce "Customer Name: Foo Inc." if the
      configuration file for THAT had customer_name set to "Foo Inc.".
    * "Total Adobe Products: {{ fetch('adobe', 'product_count') }}": another dynamic string
      example. This would produce "Total Adobe Products: 56" if the adobe plugin was enabled and
      there was a calculation named "product_count" defined in the ANALYZE_RESULTS dictionary
      of the plugin.
"""

VERSION = "1.0.1"

MINIMUM_THAT_VERSION = "1.0.1"

PPTX_INPUT_FILE = "layout_tanium.pptx"

LAYOUTS = {}

# ===========================================================================
#  Layout slide definition for index 0 (name inside pptx: "Main Title 1")
LAYOUTS[0] = {}
LAYOUTS[0]["name"] = "header"
LAYOUTS[0]["add_order"] = 0
LAYOUTS[0]["add_dependency"] = "config"
LAYOUTS[0]["items"] = {}

# ===========================================================================
#  Layout slide definition for index 1 (name inside pptx: "Main Title 2")
LAYOUTS[1] = {}
LAYOUTS[1]["name"] = "title"
LAYOUTS[1]["add_order"] = 1
LAYOUTS[1]["add_dependency"] = "config"
LAYOUTS[1]["items"] = {}

#  Placeholder index 0 for layout slide index 1, type "CENTER_TITLE (3)"
#  Placeholder default text: u'CLICK TO EDIT \nPRESENTATION TITLE'
LAYOUTS[1]["items"][0] = "{{ fetch('config', 'customer_name') }} Hygiene Assessment"

#  Placeholder index 1 for layout slide index 1, type "SUBTITLE (4)"
#  Placeholder default text: u'Click to edit presenter name'
LAYOUTS[1]["items"][1] = "Prepared by {{ fetch('config', 'contact_name') }}"

#  Placeholder index 2 for layout slide index 1, type "BODY (2)"
#  Placeholder default text: u'Click to edit date'
LAYOUTS[1]["items"][2] = "Prepared on {{ fetch('config', 'prepared_on') }}"

# ===========================================================================
#  Layout slide definition for index 2 (name inside pptx: "Hygiene Assessment Overview")
LAYOUTS[2] = {}
LAYOUTS[2]["name"] = "overview"
LAYOUTS[2]["add_order"] = 2
LAYOUTS[2]["add_dependency"] = "config"
LAYOUTS[2]["items"] = {}

#  Placeholder index 0 for layout slide index 2, type "BODY (2)"
#  Placeholder default text: u'USE THIS SLIDE FOR ADDITIONAL COMMENTS & DATA, SUCH AS SCREENSHOTS, ASSESSMENT TIMELINE, ASSESSMENT SPECIFICATIONS, OR OTHERS.\n\nHIDE OR DELETE THIS SLIDE IF NO FURTHER CONTENT/COMMENTS REQUIRED.'
#  LAYOUTS[2]["items"][0] = ""

# ===========================================================================
#  Layout slide definition for index 3 (name inside pptx: "Custom Content")
LAYOUTS[3] = {}
LAYOUTS[3]["name"] = "blank"
LAYOUTS[3]["add_order"] = 3
LAYOUTS[3]["add_dependency"] = "config"
LAYOUTS[3]["items"] = {}

#  Placeholder index 0 for layout slide index 3, type "BODY (2)"
#  Placeholder default text: u'USE THIS SLIDE FOR ADDITIONAL COMMENTS & DATA, SUCH AS SCREENSHOTS, ASSESSMENT TIMELINE, ASSESSMENT SPECIFICATIONS, OR OTHERS.\n\nHIDE OR DELETE THIS SLIDE IF NO FURTHER CONTENT/COMMENTS REQUIRED.'
#  LAYOUTS[3]["items"][0] = ""

#  Placeholder index 1 for layout slide index 3, type "BODY (2)"
#  Placeholder default text: u'Empty Slide For Custom Content'
#  LAYOUTS[3]["items"][1] = ""

# ===========================================================================
#  Layout slide definition for index 4 (name inside pptx: "Closing Logo Only")
LAYOUTS[4] = {}
LAYOUTS[4]["name"] = "closing"
LAYOUTS[4]["add_order"] = 50000  # ensure this gets added last
LAYOUTS[4]["add_dependency"] = "config"
LAYOUTS[4]["items"] = {}

# ===========================================================================
#  Layout slide definition for index 5 (name inside pptx: "patch")
LAYOUTS[5] = {}
LAYOUTS[5]["name"] = "patch"
# LAYOUTS[5]["add_order"] = 5
# let plugin order determine slide order
LAYOUTS[5]["add_dependency"] = "patch"
LAYOUTS[5]["items"] = {}

#  Placeholder index 0 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[5]["items"][0] = "Total Number of Machines Scanned for Patch Statistics"

#  Placeholder index 1 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[5]["items"][1] = "{{ fetch('patch', 'total_targets') }}"

#  Placeholder index 2 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[5]["items"][2] = "Total Unique Missing Patches (Any Severity)"

#  Placeholder index 3 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[5]["items"][3] = "{{ fetch('patch', 'any_patch_count') }}"

#  Placeholder index 4 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[5]["items"][4] = "Total Unique Missing Critical Patches"

#  Placeholder index 5 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[5]["items"][5] = "{{ fetch('patch', 'critical_patch_count') }}"

#  Placeholder index 6 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[5]["items"][6] = "Approximate Number of Microsoft Products Affected"

#  Placeholder index 7 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[5]["items"][7] = "{{ fetch('patch', 'msft_prod_affected') }}"

#  Placeholder index 8 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[5]["items"][8] = "Total Count of Missing Patches Across All Endpoints (Any Severity)"

#  Placeholder index 9 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[5]["items"][9] = "{{ fetch('patch', 'any_req_patch') }}"

#  Placeholder index 10 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[5]["items"][10] = "Total Count of Missing Critical Patches Across All Endpoints"

#  Placeholder index 11 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[5]["items"][11] = "{{ fetch('patch', 'critical_req_patch') }}"

#  Placeholder index 12 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[5]["items"][12] = "Number of Endpoints Requiring 5 or More Critical Patches"

#  Placeholder index 13 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[5]["items"][13] = "{{ fetch('patch', 'five_critical') }}"

#  Placeholder index 14 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[5]["items"][14] = "Oldest Missing Patch Date Detected Across Endpoints"

#  Placeholder index 15 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[5]["items"][15] = "{{ fetch('patch', 'oldest_patch') }}"

#  Placeholder index 16 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[5]["items"][16] = "Number of Endpoints Requiring Reboot"

#  Placeholder index 17 for layout slide index 5, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[5]["items"][17] = "{{ fetch('patch', 'reboot_req') }}"

# ===========================================================================
#  Layout slide definition for index 6 (name inside pptx: "sccm")
LAYOUTS[6] = {}
LAYOUTS[6]["name"] = "sccm"
# LAYOUTS[6]["add_order"] = 6
# let plugin order determine slide order
LAYOUTS[6]["add_dependency"] = "sccm"
LAYOUTS[6]["items"] = {}

#  Placeholder index 0 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[6]["items"][0] = "Total Number of Endpoints Scanned for SCCM Statistics"

#  Placeholder index 1 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[6]["items"][1] = "{{ fetch('sccm', 'total_targets') }}"

#  Placeholder index 2 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[6]["items"][2] = "Longest Number of Days an Endpoint has Not Registered into SCCM"

#  Placeholder index 3 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[6]["items"][3] = "{{ fetch('sccm', 'max_days_old') }}"

#  Placeholder index 4 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[6]["items"][4] = "Number of Endpoints Reporting Communication/Registration Issues"

#  Placeholder index 5 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[6]["items"][5] = "{{ fetch('sccm', 'comm_ep') }}"

#  Placeholder index 6 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[6]["items"][6] = "Number of Endpoints with SCCM Not Installed"

#  Placeholder index 7 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[6]["items"][7] = "{{ fetch('sccm', 'sccm_not_installed') }}"

#  Placeholder index 8 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[6]["items"][8] = "Number of Distinct SCCM Client Versions Installed"

#  Placeholder index 9 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[6]["items"][9] = "{{ fetch('sccm', 'distinct_versions') }}"

#  Placeholder index 10 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[6]["items"][10] = "Number of Endpoints Running Older SCCM Versions than Latest Version Detected"

#  Placeholder index 11 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[6]["items"][11] = "{{ fetch('sccm', 'old_versions_ep') }}"

#  Placeholder index 12 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[6]["items"][12] = "Number of Endpoints where SCCM is Not Running"

#  Placeholder index 13 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[6]["items"][13] = "{{ fetch('sccm', 'not_run_ep') }}"

#  Placeholder index 14 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[6]["items"][14] = "Number of Endpoints Reporting WMI Errors"

#  Placeholder index 15 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[6]["items"][15] = "{{ fetch('sccm', 'wmi_err') }}"

#  Placeholder index 16 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[6]["items"][16] = "Approximate Number of Actions Required to Remediate SCCM Across Endpoints"

#  Placeholder index 17 for layout slide index 6, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[6]["items"][17] = "{{ fetch('sccm', 'total_remediation') }}"

# ===========================================================================
#  Layout slide definition for index 7 (name inside pptx: "java")
LAYOUTS[7] = {}
LAYOUTS[7]["name"] = "java"
# LAYOUTS[7]["add_order"] = 7
# let plugin order determine slide order
LAYOUTS[7]["add_dependency"] = "java"
LAYOUTS[7]["items"] = {}

#  Placeholder index 0 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[7]["items"][0] = "Total Number of Endpoints Targeted for Java Statistics"

#  Placeholder index 1 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[7]["items"][1] = "{{ fetch('java', 'java_install_total') }}"

#  Placeholder index 2 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[7]["items"][2] = "Total Number of Distinct Java Products/Versions Found"

#  Placeholder index 3 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[7]["items"][3] = "{{ fetch('java', 'product_count') }}"

#  Placeholder index 4 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[7]["items"][4] = "Total Install Count of Java Products Across All Endpoints"

#  Placeholder index 5 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[7]["items"][5] = "{{ fetch('java', 'install_count') }}"

#  Placeholder index 6 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[7]["items"][6] = "Average Number of Java Products Installed Per Endpoint"

#  Placeholder index 7 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[7]["items"][7] = "{{ fetch('java', 'install_avg') }}"

#  Placeholder index 8 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[7]["items"][8] = "Number of Distinct Java Runtime Versions Detected"

#  Placeholder index 9 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[7]["items"][9] = "{{ fetch('java', 'jre_product_count') }}"

#  Placeholder index 10 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[7]["items"][10] = "Count of Java Runtime Installs Across All Endpoints"

#  Placeholder index 11 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[7]["items"][11] = "{{ fetch('java', 'jre_install_count') }}"

#  Placeholder index 12 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[7]["items"][12] = "Number of Known Java Runtime Vulnerabilities (source: cvedetails.com)"

#  Placeholder index 13 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[7]["items"][13] = "{{ fetch('java', 'jre_vul_count') }}"

#  Placeholder index 14 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[7]["items"][14] = "Approximate Percentage of Installed Java Runtime Versions Affected by Vulnerabilities"

#  Placeholder index 15 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[7]["items"][15] = "{{ fetch('java', 'jre_percent_vul_endpoints') }}%"

#  Placeholder index 16 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[7]["items"][16] = "Approximate Number of Non-Vulnerable Installations of Java Runtime"

#  Placeholder index 17 for layout slide index 7, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[7]["items"][17] = "{{ fetch('java', 'jre_non_vul_endpoints') }}"

# ===========================================================================
#  Layout slide definition for index 8 (name inside pptx: "adobe")
LAYOUTS[8] = {}
LAYOUTS[8]["name"] = "adobe"
# LAYOUTS[8]["add_order"] = 8
# let plugin order determine slide order
LAYOUTS[8]["add_dependency"] = "adobe"
LAYOUTS[8]["items"] = {}

#  Placeholder index 0 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[8]["items"][0] = "Total Number of Distinct Adobe Products/Versions Found"

#  Placeholder index 1 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[8]["items"][1] = "{{ fetch('adobe', 'product_count') }}"

#  Placeholder index 2 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[8]["items"][2] = "Total Install Count of Adobe Products Across All Endpoints"

#  Placeholder index 3 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[8]["items"][3] = "{{ fetch('adobe', 'install_count') }}"

#  Placeholder index 4 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[8]["items"][4] = "Average Number of Adobe Products on Endpoints with at least one Adobe Product"

#  Placeholder index 5 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[8]["items"][5] = "{{ fetch('adobe', 'install_avg') }}"

#  Placeholder index 6 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[8]["items"][6] = "Number of Distinct Adobe Shockwave Versions Installed"

#  Placeholder index 7 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[8]["items"][7] = "{{ fetch('adobe', 'shockwave_count') }}"

#  Placeholder index 8 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[8]["items"][8] = "Number of Known Adobe Shockwave Vulnerabilities (source: cvedetails.com)"

#  Placeholder index 9 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[8]["items"][9] = "{{ fetch('adobe', 'shockwave_vul_count') }}"

#  Placeholder index 10 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[8]["items"][10] = "Approximate Number of Vulnerable Installations of Adobe Shockwave"

#  Placeholder index 11 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[8]["items"][11] = "{{ fetch('adobe', 'shockwave_vul_endpoints') }}"

#  Placeholder index 12 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[8]["items"][12] = "Number of Distinct Adobe Flash Versions Installed"

#  Placeholder index 13 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[8]["items"][13] = "{{ fetch('adobe', 'flash_count') }}"

#  Placeholder index 14 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[8]["items"][14] = "Number of Known Adobe Flash Vulnerabilities (source: cvedetails.com)"

#  Placeholder index 15 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[8]["items"][15] = "{{ fetch('adobe', 'flash_vul_count') }}"

#  Placeholder index 16 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[8]["items"][16] = "Approximate Number of Vulnerable Installations of Adobe Flash"

#  Placeholder index 17 for layout slide index 8, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[8]["items"][17] = "{{ fetch('adobe', 'flash_vul_endpoints') }}"

# ===========================================================================
#  Layout slide definition for index 9 (name inside pptx: "taniumstats")
LAYOUTS[9] = {}
LAYOUTS[9]["name"] = "taniumstats"
# LAYOUTS[9]["add_order"] = 9
# let plugin order determine slide order
LAYOUTS[9]["add_dependency"] = "taniumstats"
LAYOUTS[9]["items"] = {}

#  Placeholder index 0 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[9]["items"][0] = "Total Number Endpoints Registering into Tanium"

#  Placeholder index 1 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[9]["items"][1] = "{{ fetch('taniumstats', 'managed_clients') }}"

#  Placeholder index 2 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[9]["items"][2] = "Total Number of Unmanaged Assets Discovered"

#  Placeholder index 3 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[9]["items"][3] = "{{ fetch('taniumstats', 'unmanaged_clients') }}"

#  Placeholder index 4 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[9]["items"][4] = "Total Number of Questions Asked to Date"

#  Placeholder index 5 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[9]["items"][5] = "{{ fetch('taniumstats', 'tanium_total_questions') }}"

#  Placeholder index 6 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[9]["items"][6] = "Total Number of Actions Deployed to Endpoints to Date"

#  Placeholder index 7 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[9]["items"][7] = "{{ fetch('taniumstats', 'tanium_total_actions') }}"

#  Placeholder index 8 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[9]["items"][8] = "Number of Questions Extracted Programmatically for this Report"

#  Placeholder index 9 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[9]["items"][9] = "{{ fetch('taniumstats', 'that_questions_asked') }}"

#  Placeholder index 10 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[9]["items"][10] = "Average Number of Seconds To Process Each Question for this Report"

#  Placeholder index 11 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[9]["items"][11] = "{{ fetch('taniumstats', 'that_avg_question_seconds') }}"

#  Placeholder index 12 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[9]["items"][12] = "Tanium Platform Version"

#  Placeholder index 13 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[9]["items"][13] = "{{ fetch('taniumstats', 'tanium_version') }}"

#  Placeholder index 14 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[9]["items"][14] = ""

#  Placeholder index 15 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[9]["items"][15] = ""

#  Placeholder index 16 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[9]["items"][16] = ""

#  Placeholder index 17 for layout slide index 9, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[9]["items"][17] = ""

# ===========================================================================
#  Layout slide definition for index 10 (name inside pptx: "mcafee")
LAYOUTS[10] = {}
LAYOUTS[10]["name"] = "mcafee"
# LAYOUTS[10]["add_order"] = 10
# let plugin order determine slide order
LAYOUTS[10]["add_dependency"] = "mcafee"
LAYOUTS[10]["items"] = {}

#  Placeholder index 0 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[10]["items"][0] = "Total Number of Endpoints Scanned"

#  Placeholder index 1 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[10]["items"][1] = "{{ fetch('mcafee', 'mcafee_scanned_total') }}"

#  Placeholder index 2 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[10]["items"][2] = "Total Number of Distinct McAfee Products/Versions Detected"

#  Placeholder index 3 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[10]["items"][3] = "{{ fetch('mcafee', 'mcafee_total_products') }}"

#  Placeholder index 4 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[10]["items"][4] = "Total Number of McAfee Installations Across Endpoints"

#  Placeholder index 5 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[10]["items"][5] = "{{ fetch('mcafee', 'mcafee_total_install_count') }}"

#  Placeholder index 6 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[10]["items"][6] = "Number of Unsupported McAfee VirusScan Versions (older than v8.7)"

#  Placeholder index 7 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[10]["items"][7] = "{{ fetch('mcafee', 'unsupported_version_count') }}"

#  Placeholder index 8 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[10]["items"][8] = "Number of Unsupported McAfee VirusScan Installs Across Endpoints"

#  Placeholder index 9 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[10]["items"][9] = "{{ fetch('mcafee', 'unsupported_total_installs_count') }}"

#  Placeholder index 10 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[10]["items"][10] = "Approximate Percentage of Endpoints where McAfee VirusScan is NOT Installed"

#  Placeholder index 11 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[10]["items"][11] = "{{ fetch('mcafee', 'mcafee_notinstalled_perc_total') }}%"

#  Placeholder index 12 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[10]["items"][12] = "Number of Outdated McAfee VirusScan DAT Versions (Greater than 3 Days)"

#  Placeholder index 13 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[10]["items"][13] = "{{ fetch('mcafee', 'outdated_mcafee_dat') }}"

#  Placeholder index 14 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[10]["items"][14] = "Number of Endpoints with Outdated McAfee VirusScan DAT Versions"

#  Placeholder index 15 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[10]["items"][15] = "{{ fetch('mcafee', 'outdated_mcafee_dat_total_installs') }}"

#  Placeholder index 16 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[10]["items"][16] = "Number of Endpoints with McAfee VirusScan On-Access Scanning Disabled"

#  Placeholder index 17 for layout slide index 10, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[10]["items"][17] = "{{ fetch('mcafee', 'mcafee_onaccess_disabled') }}"

# ===========================================================================
#  Layout slide definition for index 11 (name inside pptx: "security")
LAYOUTS[11] = {}
LAYOUTS[11]["name"] = "security"
# LAYOUTS[11]["add_order"] = 11
# let plugin order determine slide order
LAYOUTS[11]["add_dependency"] = "security"
LAYOUTS[11]["items"] = {}

#  Placeholder index 0 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[11]["items"][0] = "Total Number of DNS Servers configured across Endpoints"

#  Placeholder index 1 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[11]["items"][1] = "{{ fetch('security', 'dns_server_count') }}"

#  Placeholder index 2 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[11]["items"][2] = "Total Number of Firewall Profiles in Disabled State Across Endpoints"

#  Placeholder index 3 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[11]["items"][3] = "{{ fetch('security', 'firewall_disabled') }}"

#  Placeholder index 4 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[11]["items"][4] = "Number of Endpoints connected to Unencrypted Wifi Network"

#  Placeholder index 5 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[11]["items"][5] = "{{ fetch('security', 'open_wifi') }}"

#  Placeholder index 6 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[11]["items"][6] = "Number of IP Gateways (Potential Egress Points) Detected Across Endpoints"

#  Placeholder index 7 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[11]["items"][7] = "{{ fetch('security', 'net_gateway') }}"

#  Placeholder index 8 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[11]["items"][8] = "Number of Endpoints with UAC Disabled"

#  Placeholder index 9 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[11]["items"][9] = "{{ fetch('security', 'uac_status') }}"

#  Placeholder index 10 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[11]["items"][10] = "Endpoints where policy (LM Hash is prevented from being stored) is Disabled"

#  Placeholder index 11 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[11]["items"][11] = "{{ fetch('security', 'lm_hash_enabled') }}"

#  Placeholder index 12 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[11]["items"][12] = "Number of Endpoints with Protected LSA Auditing Disabled"

#  Placeholder index 13 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[11]["items"][13] = "{{ fetch('security', 'lsa_auditing_disabled') }}"

#  Placeholder index 14 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[11]["items"][14] = "Number of Endpoints with CachedLogonsCount set to 10 (Default)"

#  Placeholder index 15 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[11]["items"][15] = "{{ fetch('security', 'cache_cred_count') }}"

#  Placeholder index 16 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[11]["items"][16] = "Number of Endpoints Missing KB2871997 Enhanced Credential Security Update"

#  Placeholder index 17 for layout slide index 11, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[11]["items"][17] = "{{ fetch('security', 'KB2871997') }}"

# ===========================================================================
#  Layout slide definition for index 12 (name inside pptx: "trendmicro")
LAYOUTS[12] = {}
LAYOUTS[12]["name"] = "trendmicro"
# LAYOUTS[12]["add_order"] = 12
# let plugin order determine slide order
LAYOUTS[12]["add_dependency"] = "trendmicro"
LAYOUTS[12]["items"] = {}

#  Placeholder index 0 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[12]["items"][0] = "Total Number of Endpoints Scanned"

#  Placeholder index 1 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[12]["items"][1] = "{{ fetch('trendmicro', 'trendmicro_targets') }}"

#  Placeholder index 2 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[12]["items"][2] = "Approximate Number of TrendMicro Products Detected"

#  Placeholder index 3 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[12]["items"][3] = "{{ fetch('trendmicro', 'product_count') }}"

#  Placeholder index 4 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[12]["items"][4] = "Install Count of TrendMicro Products Across All Endpoints"

#  Placeholder index 5 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[12]["items"][5] = "{{ fetch('trendmicro', 'install_count') }}"

#  Placeholder index 6 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[12]["items"][6] = "Average Number of TrendMicro Installs per Endpoint"

#  Placeholder index 7 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[12]["items"][7] = "{{ fetch('trendmicro', 'install_avg') }}"

#  Placeholder index 8 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[12]["items"][8] = "Number of Distinct TrendMicro Versions Detected"

#  Placeholder index 9 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[12]["items"][9] = "{{ fetch('trendmicro', 'versions_installed') }}"

#  Placeholder index 10 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[12]["items"][10] = "Number of Endpoints where TrendMicro is Not Installed"

#  Placeholder index 11 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[12]["items"][11] = "{{ fetch('trendmicro', 'not_installed') }}"

#  Placeholder index 12 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[12]["items"][12] = "Oldest TrendMicro Pattern Detected (in Days)"

#  Placeholder index 13 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[12]["items"][13] = "{{ fetch('trendmicro', 'oldest_pat_days') }}"

#  Placeholder index 14 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[12]["items"][14] = "Number of Detected TrendMicro Pattern Versions"

#  Placeholder index 15 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[12]["items"][15] = "{{ fetch('trendmicro', 'pat_versions') }}"

#  Placeholder index 16 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[12]["items"][16] = "Number of Endpoints Not Using Latest TrendMicro Pattern Version {{ fetch('trendmicro', 'newest_version') }}"

#  Placeholder index 17 for layout slide index 12, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[12]["items"][17] = "{{ fetch('trendmicro', 'old_pat_versions_ep') }}"

#  Layout slide definition for index 13 (name inside pptx: "symantec")
LAYOUTS[13] = {}
LAYOUTS[13]["name"] = "Symantec"
# LAYOUTS[13]["add_order"] = 13
# let plugin order determine slide order
LAYOUTS[13]["add_dependency"] = "symantec"
LAYOUTS[13]["items"] = {}

#  Placeholder index 0 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[13]["items"][0] = "Total Number of Endpoints Scanned"

#  Placeholder index 1 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[13]["items"][1] = "{{ fetch('symantec', 'ep_install_total') }}"

#  Placeholder index 2 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[13]["items"][2] = "Approximate Number of Symantec Products Detected"

#  Placeholder index 3 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[13]["items"][3] = "{{ fetch('symantec', 'product_count') }}"

#  Placeholder index 4 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[13]["items"][4] = "Install Count of Symantec Products Across All Endpoints"

#  Placeholder index 5 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[13]["items"][5] = "{{ fetch('symantec', 'install_count') }}"

#  Placeholder index 6 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[13]["items"][6] = "Average Number of symantec Installs per Endpoint"

#  Placeholder index 7 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[13]["items"][7] = "{{ fetch('symantec', 'install_avg') }}"

#  Placeholder index 8 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[13]["items"][8] = "Number of Distinct symantec Versions Detected"

#  Placeholder index 9 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[13]["items"][9] = "{{ fetch('symantec', 'versions_installed') }}"

#  Placeholder index 10 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[13]["items"][10] = "Number of Endpoints where symantec is Not Installed"

#  Placeholder index 11 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[13]["items"][11] = "{{ fetch('symantec', 'not_installed') }}"

#  Placeholder index 13 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[13]["items"][12] = "Oldest symantec Pattern Detected (in Days)"

#  Placeholder index 13 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[13]["items"][13] = "{{ fetch('symantec', 'oldest_dat_days') }}"

#  Placeholder index 14 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[13]["items"][14] = "Number of Detected symantec Pattern Versions"

#  Placeholder index 15 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[13]["items"][15] = "{{ fetch('symantec', 'dat_versions') }}"

#  Placeholder index 16 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[13]["items"][16] = "Number of Endpoints Not Using Latest symantec Pattern Version {{ fetch('symantec', 'newest_version') }}"

#  Placeholder index 17 for layout slide index 13, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[13]["items"][17] = "{{ fetch('symantec', 'old_dat_versions_ep') }}"


# ===========================================================================
#  Layout slide definition for index 14 (name inside pptx: "cylance")
#  LAYOUTS[14] = {}
# LAYOUTS[14] = {}
# LAYOUTS[14]["name"] = "slide_index_14"
# LAYOUTS[14]["add_order"] = 14
# LAYOUTS[14]["add_dependency"] = "config"
# LAYOUTS[14]["items"] = {}

#  Placeholder index 0 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[14]["items"][0] = ""

#  Placeholder index 1 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[14]["items"][1] = ""

#  Placeholder index 2 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[14]["items"][2] = ""

#  Placeholder index 3 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[14]["items"][3] = ""

#  Placeholder index 4 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[14]["items"][4] = ""

#  Placeholder index 5 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[14]["items"][5] = ""

#  Placeholder index 6 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[14]["items"][6] = ""

#  Placeholder index 7 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[14]["items"][7] = ""

#  Placeholder index 8 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[14]["items"][8] = ""

#  Placeholder index 9 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[14]["items"][9] = ""

#  Placeholder index 10 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[14]["items"][10] = ""

#  Placeholder index 11 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[14]["items"][11] = ""

#  Placeholder index 12 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[14]["items"][12] = ""

#  Placeholder index 13 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[14]["items"][13] = ""

#  Placeholder index 14 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[14]["items"][14] = ""

#  Placeholder index 15 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[14]["items"][15] = ""

#  Placeholder index 16 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[14]["items"][16] = ""

#  Placeholder index 17 for layout slide index 14, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[14]["items"][17] = ""

# ===========================================================================
#  Layout slide definition for index 15 (name inside pptx: "roi")
# LAYOUTS[15] = {}
# LAYOUTS[15]["name"] = "slide_index_15"
# LAYOUTS[15]["add_order"] = 15
# LAYOUTS[15]["add_dependency"] = "config"
# LAYOUTS[15]["items"] = {}

#  Placeholder index 0 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[15]["items"][0] = ""

#  Placeholder index 1 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[15]["items"][1] = ""

#  Placeholder index 2 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[15]["items"][2] = ""

#  Placeholder index 3 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[15]["items"][3] = ""

#  Placeholder index 4 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[15]["items"][4] = ""

#  Placeholder index 5 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[15]["items"][5] = ""

#  Placeholder index 6 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[15]["items"][6] = ""

#  Placeholder index 7 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[15]["items"][7] = ""

#  Placeholder index 8 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[15]["items"][8] = ""

#  Placeholder index 9 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[15]["items"][9] = ""

#  Placeholder index 10 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[15]["items"][10] = ""

#  Placeholder index 11 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[15]["items"][11] = ""

#  Placeholder index 12 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[15]["items"][12] = ""

#  Placeholder index 13 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[15]["items"][13] = ""

#  Placeholder index 14 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[15]["items"][14] = ""

#  Placeholder index 15 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[15]["items"][15] = ""

#  Placeholder index 16 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[15]["items"][16] = ""

#  Placeholder index 17 for layout slide index 15, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[15]["items"][17] = ""

# ===========================================================================
#  Layout slide definition for index 16 (name inside pptx: "custom_grid")
LAYOUTS[16] = {}
LAYOUTS[16]["name"] = "slide_index_16"
LAYOUTS[16]["add_order"] = 16
LAYOUTS[16]["add_dependency"] = "config"
LAYOUTS[16]["items"] = {}

#  Placeholder index 0 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[16]["items"][0] = ""

#  Placeholder index 1 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[16]["items"][1] = ""

#  Placeholder index 2 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[16]["items"][2] = ""

#  Placeholder index 3 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[16]["items"][3] = ""

#  Placeholder index 4 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[16]["items"][4] = ""

#  Placeholder index 5 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[16]["items"][5] = ""

#  Placeholder index 6 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[16]["items"][6] = ""

#  Placeholder index 7 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[16]["items"][7] = ""

#  Placeholder index 8 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[16]["items"][8] = ""

#  Placeholder index 9 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[16]["items"][9] = ""

#  Placeholder index 10 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[16]["items"][10] = ""

#  Placeholder index 11 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[16]["items"][11] = ""

#  Placeholder index 12 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[16]["items"][12] = ""

#  Placeholder index 13 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[16]["items"][13] = ""

#  Placeholder index 14 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[16]["items"][14] = ""

#  Placeholder index 15 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[16]["items"][15] = ""

#  Placeholder index 16 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'Description'
#  LAYOUTS[16]["items"][16] = ""

#  Placeholder index 17 for layout slide index 16, type "BODY (2)"
#  Placeholder default text: u'###'
#  LAYOUTS[16]["items"][17] = ""

# ===========================================================================
#  Layout slide definition for index 17 (name inside pptx: "patch2")
LAYOUTS[17] = {}
LAYOUTS[17]["name"] = "patch2"
# LAYOUTS[17]["add_order"] = 5
# let plugin order determine slide order
LAYOUTS[17]["add_dependency"] = "patch2"
LAYOUTS[17]["items"] = {}

#  Placeholder index 0 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[17]["items"][0] = "Number of Machines Running Patch2"

#  Placeholder index 1 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[17]["items"][1] = "{{ fetch('patch2', 'patch2_total_targets') }}"

#  Placeholder index 2 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[17]["items"][2] = "Total Unique Missing Patches (Any Severity)"

#  Placeholder index 3 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[17]["items"][3] = "{{ fetch('patch2', 'patch2_any_patch_count') }}"

#  Placeholder index 4 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[17]["items"][4] = "Total Unique Missing Patches (Critical Severity)"

#  Placeholder index 17 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[17]["items"][5] = "{{ fetch('patch2', 'patch2_critical_patch_count') }}"

#  Placeholder index 6 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[17]["items"][6] = "Approximate Number of Microsoft Products Affected"

#  Placeholder index 7 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[17]["items"][7] = "{{ fetch('patch2', 'patch2_msft_prod_affected') }}"

#  Placeholder index 8 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[17]["items"][8] = "Total Required Patch Installations (Any Severity)"

#  Placeholder index 9 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[17]["items"][9] = "{{ fetch('patch2', 'patch2_any_req_patch') }}"

#  Placeholder index 10 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[17]["items"][10] = "Total Required Patch Installations (Critical Severity)"

#  Placeholder index 11 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[17]["items"][11] = "{{ fetch('patch2', 'patch2_critical_req_patch') }}"

#  Placeholder index 12 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[17]["items"][12] = "Average Number of Missing Patch Installations per Endpoint (Any Severity)"

#  Placeholder index 13 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[17]["items"][13] = "{{ fetch('patch2', 'patch2_any_req_patch_avg') }}"

#  Placeholder index 14 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[17]["items"][14] = "Oldest Missing Patch Date Detected"

#  Placeholder index 15 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[17]["items"][15] = "{{ fetch('patch2', 'patch2_oldest_patch') }}"

#  Placeholder index 16 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'Description'
LAYOUTS[17]["items"][16] = "Number of Endpoints Requiring Reboot"

#  Placeholder index 17 for layout slide index 17, type "BODY (2)"
#  Placeholder default text: u'###'
LAYOUTS[17]["items"][17] = "{{ fetch('patch2', 'patch2_reboot_req') }}"