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
 1158
 1159
 1160
 1161
 1162
 1163
 1164
 1165
 1166
 1167
 1168
 1169
 1170
 1171
 1172
 1173
 1174
 1175
 1176
 1177
 1178
 1179
 1180
 1181
 1182
 1183
 1184
 1185
 1186
 1187
 1188
 1189
 1190
 1191
 1192
 1193
 1194
 1195
 1196
 1197
 1198
 1199
 1200
 1201
 1202
 1203
 1204
 1205
 1206
 1207
 1208
 1209
 1210
 1211
 1212
 1213
 1214
 1215
 1216
 1217
 1218
 1219
 1220
 1221
 1222
 1223
 1224
 1225
 1226
 1227
 1228
 1229
 1230
 1231
 1232
 1233
 1234
 1235
 1236
 1237
 1238
 1239
 1240
 1241
 1242
 1243
 1244
 1245
 1246
 1247
 1248
 1249
 1250
 1251
 1252
 1253
 1254
 1255
 1256
 1257
 1258
 1259
 1260
 1261
 1262
 1263
 1264
 1265
 1266
 1267
 1268
 1269
 1270
 1271
 1272
 1273
 1274
 1275
 1276
 1277
 1278
 1279
 1280
 1281
 1282
 1283
 1284
 1285
 1286
 1287
 1288
 1289
 1290
 1291
 1292
 1293
 1294
 1295
 1296
 1297
 1298
 1299
 1300
 1301
 1302
 1303
 1304
 1305
 1306
 1307
 1308
 1309
 1310
 1311
 1312
 1313
 1314
 1315
 1316
 1317
 1318
 1319
 1320
 1321
 1322
 1323
 1324
 1325
 1326
 1327
 1328
 1329
 1330
 1331
 1332
 1333
 1334
 1335
 1336
 1337
 1338
 1339
 1340
 1341
 1342
 1343
 1344
 1345
 1346
 1347
 1348
 1349
 1350
 1351
 1352
 1353
 1354
 1355
 1356
 1357
 1358
 1359
 1360
 1361
 1362
 1363
 1364
 1365
 1366
 1367
 1368
 1369
 1370
 1371
 1372
 1373
 1374
 1375
 1376
 1377
 1378
 1379
 1380
 1381
 1382
 1383
 1384
 1385
 1386
 1387
 1388
 1389
 1390
 1391
 1392
 1393
 1394
 1395
 1396
 1397
 1398
 1399
 1400
 1401
 1402
 1403
 1404
 1405
 1406
 1407
 1408
 1409
 1410
 1411
 1412
 1413
 1414
 1415
 1416
 1417
 1418
 1419
 1420
 1421
 1422
 1423
 1424
 1425
 1426
 1427
 1428
 1429
 1430
 1431
 1432
 1433
 1434
 1435
 1436
 1437
 1438
 1439
 1440
 1441
 1442
 1443
 1444
 1445
 1446
 1447
 1448
 1449
 1450
 1451
 1452
 1453
 1454
 1455
 1456
 1457
 1458
 1459
 1460
 1461
 1462
 1463
 1464
 1465
 1466
 1467
 1468
 1469
 1470
 1471
 1472
 1473
 1474
 1475
 1476
 1477
 1478
 1479
 1480
 1481
 1482
 1483
 1484
 1485
 1486
 1487
 1488
 1489
 1490
 1491
 1492
 1493
 1494
 1495
 1496
 1497
 1498
 1499
 1500
 1501
 1502
 1503
 1504
 1505
 1506
 1507
 1508
 1509
 1510
 1511
 1512
 1513
 1514
 1515
 1516
 1517
 1518
 1519
 1520
 1521
 1522
 1523
 1524
 1525
 1526
 1527
 1528
 1529
 1530
 1531
 1532
 1533
 1534
 1535
 1536
 1537
 1538
 1539
 1540
 1541
 1542
 1543
 1544
 1545
 1546
 1547
 1548
 1549
 1550
 1551
 1552
 1553
 1554
 1555
 1556
 1557
 1558
 1559
 1560
 1561
 1562
 1563
 1564
 1565
 1566
 1567
 1568
 1569
 1570
 1571
 1572
 1573
 1574
 1575
 1576
 1577
 1578
 1579
 1580
 1581
 1582
 1583
 1584
 1585
 1586
 1587
 1588
 1589
 1590
 1591
 1592
 1593
 1594
 1595
 1596
 1597
 1598
 1599
 1600
 1601
 1602
 1603
 1604
 1605
 1606
 1607
 1608
 1609
 1610
 1611
 1612
 1613
 1614
 1615
 1616
 1617
 1618
 1619
 1620
 1621
 1622
 1623
 1624
 1625
 1626
 1627
 1628
 1629
 1630
 1631
 1632
 1633
 1634
 1635
 1636
 1637
 1638
 1639
 1640
 1641
 1642
 1643
 1644
 1645
 1646
 1647
 1648
 1649
 1650
 1651
 1652
 1653
 1654
 1655
 1656
 1657
 1658
 1659
 1660
 1661
 1662
 1663
 1664
 1665
 1666
 1667
 1668
 1669
 1670
 1671
 1672
 1673
 1674
 1675
 1676
 1677
 1678
 1679
 1680
 1681
 1682
 1683
 1684
 1685
 1686
 1687
 1688
 1689
 1690
 1691
 1692
 1693
 1694
 1695
 1696
 1697
 1698
 1699
 1700
 1701
 1702
 1703
 1704
 1705
 1706
 1707
 1708
 1709
 1710
 1711
 1712
 1713
 1714
 1715
 1716
 1717
 1718
 1719
 1720
 1721
 1722
 1723
 1724
 1725
 1726
 1727
 1728
 1729
 1730
 1731
 1732
 1733
 1734
 1735
 1736
 1737
 1738
 1739
 1740
 1741
 1742
 1743
 1744
 1745
 1746
 1747
 1748
 1749
 1750
 1751
 1752
 1753
 1754
 1755
 1756
 1757
 1758
 1759
 1760
 1761
 1762
 1763
 1764
 1765
 1766
 1767
 1768
 1769
 1770
 1771
 1772
 1773
 1774
 1775
 1776
 1777
 1778
 1779
 1780
 1781
 1782
 1783
 1784
 1785
 1786
 1787
 1788
 1789
 1790
 1791
 1792
 1793
 1794
 1795
 1796
 1797
 1798
 1799
 1800
 1801
 1802
 1803
 1804
 1805
 1806
 1807
 1808
 1809
 1810
 1811
 1812
 1813
 1814
 1815
 1816
 1817
 1818
 1819
 1820
 1821
 1822
 1823
 1824
 1825
 1826
 1827
 1828
 1829
 1830
 1831
 1832
 1833
 1834
 1835
 1836
 1837
 1838
 1839
 1840
 1841
 1842
 1843
 1844
 1845
 1846
 1847
 1848
 1849
 1850
 1851
 1852
 1853
 1854
 1855
 1856
 1857
 1858
 1859
 1860
 1861
 1862
 1863
 1864
 1865
 1866
 1867
 1868
 1869
 1870
 1871
 1872
 1873
 1874
 1875
 1876
 1877
 1878
 1879
 1880
 1881
 1882
 1883
 1884
 1885
 1886
 1887
 1888
 1889
 1890
 1891
 1892
 1893
 1894
 1895
 1896
 1897
 1898
 1899
 1900
 1901
 1902
 1903
 1904
 1905
 1906
 1907
 1908
 1909
 1910
 1911
 1912
 1913
 1914
 1915
 1916
 1917
 1918
 1919
 1920
 1921
 1922
 1923
 1924
 1925
 1926
 1927
 1928
 1929
 1930
 1931
 1932
 1933
 1934
 1935
 1936
 1937
 1938
 1939
 1940
 1941
 1942
 1943
 1944
 1945
 1946
 1947
 1948
 1949
 1950
 1951
 1952
 1953
 1954
 1955
 1956
 1957
 1958
 1959
 1960
 1961
 1962
 1963
 1964
 1965
 1966
 1967
 1968
 1969
 1970
 1971
 1972
 1973
 1974
 1975
 1976
 1977
 1978
 1979
 1980
 1981
 1982
 1983
 1984
 1985
 1986
 1987
 1988
 1989
 1990
 1991
 1992
 1993
 1994
 1995
 1996
 1997
 1998
 1999
 2000
 2001
 2002
 2003
 2004
 2005
 2006
 2007
 2008
 2009
 2010
 2011
 2012
 2013
 2014
 2015
 2016
 2017
 2018
 2019
 2020
 2021
 2022
 2023
 2024
 2025
 2026
 2027
 2028
 2029
 2030
 2031
 2032
 2033
 2034
 2035
 2036
 2037
 2038
 2039
 2040
 2041
 2042
 2043
 2044
 2045
 2046
 2047
 2048
 2049
 2050
 2051
 2052
 2053
 2054
 2055
 2056
 2057
 2058
 2059
 2060
 2061
 2062
 2063
 2064
 2065
 2066
 2067
 2068
 2069
 2070
 2071
 2072
 2073
 2074
 2075
 2076
 2077
 2078
 2079
 2080
 2081
 2082
 2083
 2084
 2085
 2086
 2087
 2088
 2089
 2090
 2091
 2092
 2093
 2094
 2095
 2096
 2097
 2098
 2099
 2100
 2101
 2102
 2103
 2104
 2105
 2106
 2107
 2108
 2109
 2110
 2111
 2112
 2113
 2114
 2115
 2116
 2117
 2118
 2119
 2120
 2121
 2122
 2123
 2124
 2125
 2126
 2127
 2128
 2129
 2130
 2131
 2132
 2133
 2134
 2135
 2136
 2137
 2138
 2139
 2140
 2141
 2142
 2143
 2144
 2145
 2146
 2147
 2148
 2149
 2150
 2151
 2152
 2153
 2154
 2155
 2156
 2157
 2158
 2159
 2160
 2161
 2162
 2163
 2164
 2165
 2166
 2167
 2168
 2169
 2170
 2171
 2172
 2173
 2174
 2175
 2176
 2177
 2178
 2179
 2180
 2181
 2182
 2183
 2184
 2185
 2186
 2187
 2188
 2189
 2190
 2191
 2192
 2193
 2194
 2195
 2196
 2197
 2198
 2199
 2200
 2201
 2202
 2203
 2204
 2205
 2206
 2207
 2208
 2209
 2210
 2211
 2212
 2213
 2214
 2215
 2216
 2217
 2218
 2219
 2220
 2221
 2222
 2223
 2224
 2225
 2226
 2227
 2228
 2229
 2230
 2231
 2232
 2233
 2234
 2235
 2236
 2237
 2238
 2239
 2240
 2241
 2242
 2243
 2244
 2245
 2246
 2247
 2248
 2249
 2250
 2251
 2252
 2253
 2254
 2255
 2256
 2257
 2258
 2259
 2260
 2261
 2262
 2263
 2264
 2265
 2266
 2267
 2268
 2269
 2270
 2271
 2272
 2273
 2274
 2275
 2276
 2277
 2278
 2279
 2280
 2281
 2282
 2283
 2284
 2285
 2286
 2287
 2288
 2289
 2290
 2291
 2292
 2293
 2294
 2295
 2296
 2297
 2298
 2299
 2300
 2301
 2302
 2303
 2304
 2305
 2306
 2307
 2308
 2309
 2310
 2311
 2312
 2313
 2314
 2315
 2316
 2317
 2318
 2319
 2320
 2321
 2322
 2323
 2324
 2325
 2326
 2327
 2328
 2329
 2330
 2331
 2332
 2333
 2334
 2335
 2336
 2337
 2338
 2339
 2340
 2341
 2342
 2343
 2344
 2345
 2346
 2347
 2348
 2349
 2350
 2351
 2352
 2353
 2354
 2355
 2356
 2357
 2358
 2359
 2360
 2361
 2362
 2363
 2364
 2365
 2366
 2367
 2368
 2369
 2370
 2371
 2372
 2373
 2374
 2375
 2376
 2377
 2378
 2379
 2380
 2381
 2382
 2383
 2384
 2385
 2386
 2387
 2388
 2389
 2390
 2391
 2392
 2393
 2394
 2395
 2396
 2397
 2398
 2399
 2400
 2401
 2402
 2403
 2404
 2405
 2406
 2407
 2408
 2409
 2410
 2411
 2412
 2413
 2414
 2415
 2416
 2417
 2418
 2419
 2420
 2421
 2422
 2423
 2424
 2425
 2426
 2427
 2428
 2429
 2430
 2431
 2432
 2433
 2434
 2435
 2436
 2437
 2438
 2439
 2440
 2441
 2442
 2443
 2444
 2445
 2446
 2447
 2448
 2449
 2450
 2451
 2452
 2453
 2454
 2455
 2456
 2457
 2458
 2459
 2460
 2461
 2462
 2463
 2464
 2465
 2466
 2467
 2468
 2469
 2470
 2471
 2472
 2473
 2474
 2475
 2476
 2477
 2478
 2479
 2480
 2481
 2482
 2483
 2484
 2485
 2486
 2487
 2488
 2489
 2490
 2491
 2492
 2493
 2494
 2495
 2496
 2497
 2498
 2499
 2500
 2501
 2502
 2503
 2504
 2505
 2506
 2507
 2508
 2509
 2510
 2511
 2512
 2513
 2514
 2515
 2516
 2517
 2518
 2519
 2520
 2521
 2522
 2523
 2524
 2525
 2526
 2527
 2528
 2529
 2530
 2531
 2532
 2533
 2534
 2535
 2536
 2537
 2538
 2539
 2540
 2541
 2542
 2543
 2544
 2545
 2546
 2547
 2548
 2549
 2550
 2551
 2552
 2553
 2554
 2555
 2556
 2557
 2558
 2559
 2560
 2561
 2562
 2563
 2564
 2565
 2566
 2567
 2568
 2569
 2570
 2571
 2572
 2573
 2574
 2575
 2576
 2577
 2578
 2579
 2580
 2581
 2582
 2583
 2584
 2585
 2586
 2587
 2588
 2589
 2590
 2591
 2592
 2593
 2594
 2595
 2596
 2597
 2598
 2599
 2600
 2601
 2602
 2603
 2604
 2605
 2606
 2607
 2608
 2609
 2610
 2611
 2612
 2613
 2614
 2615
 2616
 2617
 2618
 2619
 2620
 2621
 2622
 2623
 2624
 2625
 2626
 2627
 2628
 2629
 2630
 2631
 2632
 2633
 2634
 2635
 2636
 2637
 2638
 2639
 2640
 2641
 2642
 2643
 2644
 2645
 2646
 2647
 2648
 2649
 2650
 2651
 2652
 2653
 2654
 2655
 2656
 2657
 2658
 2659
 2660
 2661
 2662
 2663
 2664
 2665
 2666
 2667
 2668
 2669
 2670
 2671
 2672
 2673
 2674
 2675
 2676
 2677
 2678
 2679
 2680
 2681
 2682
 2683
 2684
 2685
 2686
 2687
 2688
 2689
 2690
 2691
 2692
 2693
 2694
 2695
 2696
 2697
 2698
 2699
 2700
 2701
 2702
 2703
 2704
 2705
 2706
 2707
 2708
 2709
 2710
 2711
 2712
 2713
 2714
 2715
 2716
 2717
 2718
 2719
 2720
 2721
 2722
 2723
 2724
 2725
 2726
 2727
 2728
 2729
 2730
 2731
 2732
 2733
 2734
 2735
 2736
 2737
 2738
 2739
 2740
 2741
 2742
 2743
 2744
 2745
 2746
 2747
 2748
 2749
 2750
 2751
 2752
 2753
 2754
 2755
 2756
 2757
 2758
 2759
 2760
 2761
 2762
 2763
 2764
 2765
 2766
 2767
 2768
 2769
 2770
 2771
 2772
 2773
 2774
 2775
 2776
 2777
 2778
 2779
 2780
 2781
 2782
 2783
 2784
 2785
 2786
 2787
 2788
 2789
 2790
 2791
 2792
 2793
 2794
 2795
 2796
 2797
 2798
 2799
 2800
 2801
 2802
 2803
 2804
 2805
 2806
 2807
 2808
 2809
 2810
 2811
 2812
 2813
 2814
 2815
 2816
 2817
 2818
 2819
 2820
 2821
 2822
 2823
 2824
 2825
 2826
 2827
 2828
 2829
 2830
 2831
 2832
 2833
 2834
 2835
 2836
 2837
 2838
 2839
 2840
 2841
 2842
 2843
 2844
 2845
 2846
 2847
 2848
 2849
 2850
 2851
 2852
 2853
 2854
 2855
 2856

content / test / data / gpu / webgl2_conformance_android_runtimes.json [blame]

{
  "times": {
    "WebglExtension_EXT_color_buffer_float": 0.5,
    "WebglExtension_EXT_color_buffer_half_float": 0.6057,
    "WebglExtension_EXT_disjoint_timer_query_webgl2": 0,
    "WebglExtension_EXT_float_blend": 1.0081,
    "WebglExtension_EXT_texture_compression_bptc": 0,
    "WebglExtension_EXT_texture_compression_rgtc": 0,
    "WebglExtension_EXT_texture_filter_anisotropic": 0.6725,
    "WebglExtension_EXT_texture_norm16": 0.4992,
    "WebglExtension_KHR_parallel_shader_compile": 0.578,
    "WebglExtension_OES_draw_buffers_indexed": 0.5103,
    "WebglExtension_OES_texture_float_linear": 0.3185,
    "WebglExtension_OVR_multiview2": 5.5942,
    "WebglExtension_TestCoverage": 0.3178,
    "WebglExtension_WEBGL_clip_cull_distance": 0.5361,
    "WebglExtension_WEBGL_compressed_texture_astc": 0.3421,
    "WebglExtension_WEBGL_compressed_texture_etc": 0.2902,
    "WebglExtension_WEBGL_compressed_texture_etc1": 0.3661,
    "WebglExtension_WEBGL_compressed_texture_pvrtc": 0,
    "WebglExtension_WEBGL_compressed_texture_s3tc": 0,
    "WebglExtension_WEBGL_compressed_texture_s3tc_srgb": 0,
    "WebglExtension_WEBGL_debug_renderer_info": 0.5306,
    "WebglExtension_WEBGL_debug_shaders": 0.2059,
    "WebglExtension_WEBGL_draw_instanced_base_vertex_base_instance": 0.6589,
    "WebglExtension_WEBGL_lose_context": 0.2456,
    "WebglExtension_WEBGL_multi_draw": 0.5717,
    "WebglExtension_WEBGL_multi_draw_instanced_base_vertex_base_instance": 0.2594,
    "WebglExtension_WEBGL_provoking_vertex": 0,
    "WebglExtension_WEBGL_video_texture": 0,
    "WebglExtension_WEBGL_webcodecs_video_frame": 0.2634,
    "conformance/attribs/gl-bindAttribLocation-aliasing.html": 0.709,
    "conformance/attribs/gl-bindAttribLocation-matrix.html": 0.6517,
    "conformance/attribs/gl-bindAttribLocation-nonexistent-attribute.html": 0.4774,
    "conformance/attribs/gl-bindAttribLocation-repeated.html": 0.5127,
    "conformance/attribs/gl-disabled-vertex-attrib-update.html": 0.4682,
    "conformance/attribs/gl-disabled-vertex-attrib.html": 0.4409,
    "conformance/attribs/gl-enable-vertex-attrib.html": 0.6094,
    "conformance/attribs/gl-matrix-attributes.html": 0.7405,
    "conformance/attribs/gl-vertex-attrib-context-switch.html": 0.4984,
    "conformance/attribs/gl-vertex-attrib-render.html": 0.7151,
    "conformance/attribs/gl-vertex-attrib-unconsumed-out-of-bounds.html": 0.4259,
    "conformance/attribs/gl-vertex-attrib-zero-issues.html": 0.5053,
    "conformance/attribs/gl-vertexattribpointer-offsets.html": 0.8251,
    "conformance/attribs/gl-vertexattribpointer.html": 1.5779,
    "conformance/buffers/buffer-bind-test.html": 0.6198,
    "conformance/buffers/buffer-data-and-buffer-sub-data.html": 0.3004,
    "conformance/buffers/buffer-data-array-buffer-delete.html": 2.8211,
    "conformance/buffers/buffer-data-dynamic-delay.html": 0.4926,
    "conformance/buffers/buffer-uninitialized.html": 0.4488,
    "conformance/buffers/element-array-buffer-delete-recreate.html": 0.2929,
    "conformance/buffers/index-validation-copies-indices.html": 0.2688,
    "conformance/buffers/index-validation-crash-with-buffer-sub-data.html": 0.2147,
    "conformance/buffers/index-validation-large-buffer.html": 0.442,
    "conformance/buffers/index-validation-verifies-too-many-indices.html": 0.45,
    "conformance/buffers/index-validation-with-resized-buffer.html": 0.2748,
    "conformance/buffers/index-validation.html": 0.5146,
    "conformance/buffers/vertex-buffer-updated-after-draw.html": 0.2302,
    "conformance/canvas/buffer-offscreen-test.html": 0.3949,
    "conformance/canvas/buffer-preserve-test.html": 1.0066,
    "conformance/canvas/canvas-test.html": 0.507,
    "conformance/canvas/canvas-zero-size.html": 0.2537,
    "conformance/canvas/draw-static-webgl-to-multiple-canvas-test.html": 1.2108,
    "conformance/canvas/draw-webgl-to-canvas-test.html": 1.1695,
    "conformance/canvas/drawingbuffer-hd-dpi-test.html": 0.4542,
    "conformance/canvas/drawingbuffer-static-canvas-test.html": 0.3624,
    "conformance/canvas/drawingbuffer-test.html": 0.3381,
    "conformance/canvas/framebuffer-bindings-affected-by-to-data-url.html": 0.9109,
    "conformance/canvas/framebuffer-bindings-unaffected-on-resize.html": 0.6794,
    "conformance/canvas/rapid-resizing.html": 2.2673,
    "conformance/canvas/render-after-resize-test.html": 6.4176,
    "conformance/canvas/texture-bindings-unaffected-on-resize.html": 0.301,
    "conformance/canvas/to-data-url-after-composite.html": 0.4754,
    "conformance/canvas/to-data-url-test.html": 0.8768,
    "conformance/canvas/viewport-unchanged-upon-resize.html": 0.3495,
    "conformance/canvas/webgl-to-2d-canvas.html": 0.4484,
    "conformance/context/context-attribute-preserve-drawing-buffer-antialias.html": 0.5618,
    "conformance/context/context-attribute-preserve-drawing-buffer.html": 0.4845,
    "conformance/context/context-attributes-alpha-depth-stencil-antialias.html": 1.1787,
    "conformance/context/context-creation-and-destruction.html": 1.8181,
    "conformance/context/context-creation.html": 1.895,
    "conformance/context/context-eviction-with-garbage-collection.html": 1.6853,
    "conformance/context/context-hidden-alpha.html": 0.377,
    "conformance/context/context-lost-restored.html": 0.4473,
    "conformance/context/context-lost.html": 0.3193,
    "conformance/context/context-no-alpha-fbo-with-alpha.html": 0.2985,
    "conformance/context/context-release-upon-reload.html": 3.3267,
    "conformance/context/context-release-with-workers.html": 3.5242,
    "conformance/context/context-size-change.html": 0.3077,
    "conformance/context/deleted-object-behavior.html": 0.297,
    "conformance/context/incorrect-context-object-behaviour.html": 0.9371,
    "conformance/context/premultiplyalpha-test.html": 0.8354,
    "conformance/context/user-defined-properties-on-context.html": 0.2936,
    "conformance/context/zero-sized-canvas.html": 0.2749,
    "conformance/extensions/ext-color-buffer-half-float.html": 6.5913,
    "conformance/extensions/ext-disjoint-timer-query.html": 0.3186,
    "conformance/extensions/ext-float-blend.html": 0.3264,
    "conformance/extensions/ext-polygon-offset-clamp.html": 0.2256,
    "conformance/extensions/ext-texture-compression-bptc.html": 0.3246,
    "conformance/extensions/ext-texture-compression-rgtc.html": 0.2943,
    "conformance/extensions/ext-texture-filter-anisotropic.html": 0.2804,
    "conformance/extensions/get-extension.html": 0.5235,
    "conformance/extensions/khr-parallel-shader-compile.html": 10.0244,
    "conformance/extensions/oes-texture-float-linear.html": 0.8014,
    "conformance/extensions/s3tc-and-rgtc.html": 0.6685,
    "conformance/extensions/webgl-compressed-texture-astc.html": 21.2233,
    "conformance/extensions/webgl-compressed-texture-etc.html": 0.6755,
    "conformance/extensions/webgl-compressed-texture-etc1.html": 0.3064,
    "conformance/extensions/webgl-compressed-texture-pvrtc.html": 0.2812,
    "conformance/extensions/webgl-compressed-texture-s3tc-srgb.html": 0.3264,
    "conformance/extensions/webgl-compressed-texture-size-limit.html": 0.2582,
    "conformance/extensions/webgl-debug-renderer-info.html": 0.2857,
    "conformance/extensions/webgl-debug-shaders.html": 0.3222,
    "conformance/extensions/webgl-multi-draw.html": 3.0622,
    "conformance/glsl/bugs/angle-ambiguous-function-call.html": 0.3833,
    "conformance/glsl/bugs/angle-constructor-invalid-parameters.html": 0.2505,
    "conformance/glsl/bugs/angle-d3d11-compiler-error.html": 0.3181,
    "conformance/glsl/bugs/angle-dx-variable-bug.html": 0.2578,
    "conformance/glsl/bugs/array-of-struct-with-int-first-position.html": 0.37,
    "conformance/glsl/bugs/assign-to-swizzled-twice-in-function.html": 0.3779,
    "conformance/glsl/bugs/bool-type-cast-bug-int-float.html": 0.4074,
    "conformance/glsl/bugs/character-set.html": 0.3976,
    "conformance/glsl/bugs/compare-loop-index-to-uniform.html": 0.3343,
    "conformance/glsl/bugs/complex-glsl-does-not-crash.html": 2.2661,
    "conformance/glsl/bugs/compound-assignment-type-combination.html": 1.6166,
    "conformance/glsl/bugs/conditional-discard-in-loop.html": 0.3128,
    "conformance/glsl/bugs/conditional-discard-optimization.html": 0.3517,
    "conformance/glsl/bugs/conditional-texture-fetch.html": 0.3274,
    "conformance/glsl/bugs/constant-precision-qualifier.html": 0.4113,
    "conformance/glsl/bugs/floor-div-cos-should-not-truncate.html": 0.3197,
    "conformance/glsl/bugs/floored-division-accuracy.html": 0.3145,
    "conformance/glsl/bugs/fragcoord-linking-bug.html": 0.299,
    "conformance/glsl/bugs/gl-fragcoord-multisampling-bug.html": 0.4169,
    "conformance/glsl/bugs/global-invariant-does-not-leak-across-shaders.html": 0.3083,
    "conformance/glsl/bugs/if-return-and-elseif.html": 0.3712,
    "conformance/glsl/bugs/in-parameter-passed-as-inout-argument-and-global.html": 0.3426,
    "conformance/glsl/bugs/init-array-with-loop.html": 0.2536,
    "conformance/glsl/bugs/invariant-does-not-leak-across-shaders.html": 0.2923,
    "conformance/glsl/bugs/logic-inside-block-without-braces.html": 0.3199,
    "conformance/glsl/bugs/long-expressions-should-not-crash.html": 1.9092,
    "conformance/glsl/bugs/loop-if-loop-gradient.html": 0.2417,
    "conformance/glsl/bugs/modulo-arithmetic-accuracy.html": 0.2456,
    "conformance/glsl/bugs/multiplication-assignment.html": 0.3575,
    "conformance/glsl/bugs/nested-functions-should-not-crash.html": 0.6358,
    "conformance/glsl/bugs/nested-loops-with-break-and-continue.html": 0.2811,
    "conformance/glsl/bugs/nested-sequence-operator.html": 0.3742,
    "conformance/glsl/bugs/pow-of-small-constant-in-user-defined-function.html": 0.3523,
    "conformance/glsl/bugs/pow-with-constant-exponent-should-not-crash.html": 0.2841,
    "conformance/glsl/bugs/qualcomm-crash.html": 0.2858,
    "conformance/glsl/bugs/qualcomm-loop-with-continue-crash.html": 0.2996,
    "conformance/glsl/bugs/sampler-array-struct-function-arg.html": 0.3093,
    "conformance/glsl/bugs/sampler-array-using-loop-index.html": 0.2768,
    "conformance/glsl/bugs/sampler-struct-function-arg.html": 0.3423,
    "conformance/glsl/bugs/sequence-operator-evaluation-order.html": 0.3114,
    "conformance/glsl/bugs/sketchfab-lighting-shader-crash.html": 0.3692,
    "conformance/glsl/bugs/struct-constructor-highp-bug.html": 0.325,
    "conformance/glsl/bugs/struct-with-single-member-constructor.html": 0.2878,
    "conformance/glsl/bugs/temp-expressions-should-not-crash.html": 1.484,
    "conformance/glsl/bugs/unary-minus-operator-float-bug.html": 0.2405,
    "conformance/glsl/bugs/undefined-index-should-not-crash.html": 0.3084,
    "conformance/glsl/bugs/uniforms-should-not-lose-values.html": 0.349,
    "conformance/glsl/bugs/varying-arrays-should-not-be-reversed.html": 0.3286,
    "conformance/glsl/bugs/vector-matrix-constructor-scalarization.html": 0.4455,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop-complex.html": 0.3202,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop.html": 0.394,
    "conformance/glsl/constructors/glsl-construct-bvec2.html": 0.8647,
    "conformance/glsl/constructors/glsl-construct-bvec3.html": 1.0104,
    "conformance/glsl/constructors/glsl-construct-bvec4.html": 1.2136,
    "conformance/glsl/constructors/glsl-construct-ivec2.html": 0.8382,
    "conformance/glsl/constructors/glsl-construct-ivec3.html": 1.0219,
    "conformance/glsl/constructors/glsl-construct-ivec4.html": 1.1515,
    "conformance/glsl/constructors/glsl-construct-mat2.html": 1.0871,
    "conformance/glsl/constructors/glsl-construct-mat3.html": 0.8345,
    "conformance/glsl/constructors/glsl-construct-mat4.html": 0.6993,
    "conformance/glsl/constructors/glsl-construct-vec-mat-corner-cases.html": 0.2975,
    "conformance/glsl/constructors/glsl-construct-vec-mat-index.html": 0.3608,
    "conformance/glsl/constructors/glsl-construct-vec2.html": 0.8477,
    "conformance/glsl/constructors/glsl-construct-vec3.html": 0.9908,
    "conformance/glsl/constructors/glsl-construct-vec4.html": 1.2333,
    "conformance/glsl/functions/glsl-function-abs.html": 0.6752,
    "conformance/glsl/functions/glsl-function-acos.html": 0.6237,
    "conformance/glsl/functions/glsl-function-asin.html": 0.63,
    "conformance/glsl/functions/glsl-function-atan-xy.html": 0.6538,
    "conformance/glsl/functions/glsl-function-atan.html": 0.6595,
    "conformance/glsl/functions/glsl-function-ceil.html": 0.8247,
    "conformance/glsl/functions/glsl-function-clamp-float.html": 0.6908,
    "conformance/glsl/functions/glsl-function-clamp-gentype.html": 0.697,
    "conformance/glsl/functions/glsl-function-cos.html": 0.5833,
    "conformance/glsl/functions/glsl-function-cross.html": 0.4053,
    "conformance/glsl/functions/glsl-function-distance.html": 0.7773,
    "conformance/glsl/functions/glsl-function-dot.html": 0.7896,
    "conformance/glsl/functions/glsl-function-faceforward.html": 0.7129,
    "conformance/glsl/functions/glsl-function-floor.html": 0.6711,
    "conformance/glsl/functions/glsl-function-fract.html": 0.6995,
    "conformance/glsl/functions/glsl-function-length.html": 0.7684,
    "conformance/glsl/functions/glsl-function-max-float.html": 0.6716,
    "conformance/glsl/functions/glsl-function-max-gentype.html": 0.7179,
    "conformance/glsl/functions/glsl-function-min-float.html": 0.7115,
    "conformance/glsl/functions/glsl-function-min-gentype.html": 0.7187,
    "conformance/glsl/functions/glsl-function-mix-float.html": 0.8076,
    "conformance/glsl/functions/glsl-function-mix-gentype.html": 0.6534,
    "conformance/glsl/functions/glsl-function-mod-float.html": 0.7257,
    "conformance/glsl/functions/glsl-function-mod-gentype.html": 0.7199,
    "conformance/glsl/functions/glsl-function-normalize.html": 0.7573,
    "conformance/glsl/functions/glsl-function-reflect.html": 0.6647,
    "conformance/glsl/functions/glsl-function-sign.html": 0.6241,
    "conformance/glsl/functions/glsl-function-sin.html": 0.642,
    "conformance/glsl/functions/glsl-function-smoothstep-float.html": 0.6602,
    "conformance/glsl/functions/glsl-function-smoothstep-gentype.html": 0.69,
    "conformance/glsl/functions/glsl-function-step-float.html": 0.7678,
    "conformance/glsl/functions/glsl-function-step-gentype.html": 0.7032,
    "conformance/glsl/functions/glsl-function.html": 0.6605,
    "conformance/glsl/implicit/add_int_float.vert.html": 0.2765,
    "conformance/glsl/implicit/add_int_mat2.vert.html": 0.2831,
    "conformance/glsl/implicit/add_int_mat3.vert.html": 0.2523,
    "conformance/glsl/implicit/add_int_mat4.vert.html": 0.2513,
    "conformance/glsl/implicit/add_int_vec2.vert.html": 0.3146,
    "conformance/glsl/implicit/add_int_vec3.vert.html": 0.289,
    "conformance/glsl/implicit/add_int_vec4.vert.html": 0.2864,
    "conformance/glsl/implicit/add_ivec2_vec2.vert.html": 0.2155,
    "conformance/glsl/implicit/add_ivec3_vec3.vert.html": 0.2737,
    "conformance/glsl/implicit/add_ivec4_vec4.vert.html": 0.2398,
    "conformance/glsl/implicit/assign_int_to_float.vert.html": 0.3073,
    "conformance/glsl/implicit/assign_ivec2_to_vec2.vert.html": 0.2842,
    "conformance/glsl/implicit/assign_ivec3_to_vec3.vert.html": 0.2748,
    "conformance/glsl/implicit/assign_ivec4_to_vec4.vert.html": 0.2979,
    "conformance/glsl/implicit/construct_struct.vert.html": 0.221,
    "conformance/glsl/implicit/divide_int_float.vert.html": 0.2784,
    "conformance/glsl/implicit/divide_int_mat2.vert.html": 0.277,
    "conformance/glsl/implicit/divide_int_mat3.vert.html": 0.2142,
    "conformance/glsl/implicit/divide_int_mat4.vert.html": 0.2791,
    "conformance/glsl/implicit/divide_int_vec2.vert.html": 0.257,
    "conformance/glsl/implicit/divide_int_vec3.vert.html": 0.2811,
    "conformance/glsl/implicit/divide_int_vec4.vert.html": 0.3298,
    "conformance/glsl/implicit/divide_ivec2_vec2.vert.html": 0.3012,
    "conformance/glsl/implicit/divide_ivec3_vec3.vert.html": 0.2762,
    "conformance/glsl/implicit/divide_ivec4_vec4.vert.html": 0.2591,
    "conformance/glsl/implicit/equal_int_float.vert.html": 0.2717,
    "conformance/glsl/implicit/equal_ivec2_vec2.vert.html": 0.2709,
    "conformance/glsl/implicit/equal_ivec3_vec3.vert.html": 0.3021,
    "conformance/glsl/implicit/equal_ivec4_vec4.vert.html": 0.3046,
    "conformance/glsl/implicit/function_int_float.vert.html": 0.2467,
    "conformance/glsl/implicit/function_ivec2_vec2.vert.html": 0.2353,
    "conformance/glsl/implicit/function_ivec3_vec3.vert.html": 0.2299,
    "conformance/glsl/implicit/function_ivec4_vec4.vert.html": 0.2885,
    "conformance/glsl/implicit/greater_than.vert.html": 0.2429,
    "conformance/glsl/implicit/greater_than_equal.vert.html": 0.2295,
    "conformance/glsl/implicit/less_than.vert.html": 0.2727,
    "conformance/glsl/implicit/less_than_equal.vert.html": 0.2856,
    "conformance/glsl/implicit/multiply_int_float.vert.html": 0.287,
    "conformance/glsl/implicit/multiply_int_mat2.vert.html": 0.2895,
    "conformance/glsl/implicit/multiply_int_mat3.vert.html": 0.3022,
    "conformance/glsl/implicit/multiply_int_mat4.vert.html": 0.3,
    "conformance/glsl/implicit/multiply_int_vec2.vert.html": 0.2569,
    "conformance/glsl/implicit/multiply_int_vec3.vert.html": 0.2896,
    "conformance/glsl/implicit/multiply_int_vec4.vert.html": 0.2373,
    "conformance/glsl/implicit/multiply_ivec2_vec2.vert.html": 0.3207,
    "conformance/glsl/implicit/multiply_ivec3_vec3.vert.html": 0.328,
    "conformance/glsl/implicit/multiply_ivec4_vec4.vert.html": 0.2665,
    "conformance/glsl/implicit/not_equal_int_float.vert.html": 0.2775,
    "conformance/glsl/implicit/not_equal_ivec2_vec2.vert.html": 0.2911,
    "conformance/glsl/implicit/not_equal_ivec3_vec3.vert.html": 0.2593,
    "conformance/glsl/implicit/not_equal_ivec4_vec4.vert.html": 0.3028,
    "conformance/glsl/implicit/subtract_int_float.vert.html": 0.301,
    "conformance/glsl/implicit/subtract_int_mat2.vert.html": 0.3191,
    "conformance/glsl/implicit/subtract_int_mat3.vert.html": 0.328,
    "conformance/glsl/implicit/subtract_int_mat4.vert.html": 0.3158,
    "conformance/glsl/implicit/subtract_int_vec2.vert.html": 0.322,
    "conformance/glsl/implicit/subtract_int_vec3.vert.html": 0.2887,
    "conformance/glsl/implicit/subtract_int_vec4.vert.html": 0.312,
    "conformance/glsl/implicit/subtract_ivec2_vec2.vert.html": 0.3239,
    "conformance/glsl/implicit/subtract_ivec3_vec3.vert.html": 0.3067,
    "conformance/glsl/implicit/subtract_ivec4_vec4.vert.html": 0.2895,
    "conformance/glsl/implicit/ternary_int_float.vert.html": 0.307,
    "conformance/glsl/implicit/ternary_ivec2_vec2.vert.html": 0.2537,
    "conformance/glsl/implicit/ternary_ivec3_vec3.vert.html": 0.3279,
    "conformance/glsl/implicit/ternary_ivec4_vec4.vert.html": 0.2757,
    "conformance/glsl/literals/float_literal.vert.html": 0.2487,
    "conformance/glsl/literals/literal_precision.html": 0.2327,
    "conformance/glsl/literals/overflow_leak.vert.html": 0.2823,
    "conformance/glsl/matrices/glsl-mat3-construction.html": 0.38,
    "conformance/glsl/matrices/glsl-mat4-to-mat3.html": 0.4185,
    "conformance/glsl/matrices/matrix-compound-multiply.html": 0.4009,
    "conformance/glsl/misc/boolean_precision.html": 0.2576,
    "conformance/glsl/misc/const-variable-initialization.html": 1.3165,
    "conformance/glsl/misc/embedded-struct-definitions-forbidden.html": 0.3388,
    "conformance/glsl/misc/empty-declaration.html": 0.3393,
    "conformance/glsl/misc/empty_main.vert.html": 0.3024,
    "conformance/glsl/misc/expression-list-in-declarator-initializer.html": 0.8436,
    "conformance/glsl/misc/fragcolor-fragdata-invariant.html": 0.2399,
    "conformance/glsl/misc/gl_position_unset.vert.html": 0.3022,
    "conformance/glsl/misc/global-variable-init.html": 0.3725,
    "conformance/glsl/misc/glsl-function-nodes.html": 0.272,
    "conformance/glsl/misc/glsl-long-variable-names.html": 0.3307,
    "conformance/glsl/misc/glsl-vertex-branch.html": 0.3043,
    "conformance/glsl/misc/large-loop-compile.html": 0.8524,
    "conformance/glsl/misc/local-variable-shadowing-outer-function.html": 0.308,
    "conformance/glsl/misc/non-ascii-comments.vert.html": 0.2142,
    "conformance/glsl/misc/non-ascii.vert.html": 0.2967,
    "conformance/glsl/misc/re-compile-re-link.html": 0.4379,
    "conformance/glsl/misc/sampler-operand.html": 0.2215,
    "conformance/glsl/misc/sequence-operator-returns-constant.html": 0.248,
    "conformance/glsl/misc/shader-precision-format-obeyed.html": 0.3894,
    "conformance/glsl/misc/shader-struct-scope.html": 0.3181,
    "conformance/glsl/misc/shader-uniform-packing-restrictions.html": 3.047,
    "conformance/glsl/misc/shader-varying-packing-restrictions.html": 1.0207,
    "conformance/glsl/misc/shader-with-256-character-define.html": 0.2664,
    "conformance/glsl/misc/shader-with-256-character-identifier.frag.html": 0.3262,
    "conformance/glsl/misc/shader-with-_webgl-identifier.vert.html": 0.2107,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.frag.html": 0.2373,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.vert.html": 0.3163,
    "conformance/glsl/misc/shader-with-array-of-structs-containing-arrays.html": 0.3018,
    "conformance/glsl/misc/shader-with-array-of-structs-uniform.html": 0.3695,
    "conformance/glsl/misc/shader-with-attrib-array.vert.html": 0.3195,
    "conformance/glsl/misc/shader-with-attrib-struct.vert.html": 0.3152,
    "conformance/glsl/misc/shader-with-clipvertex.vert.html": 0.2553,
    "conformance/glsl/misc/shader-with-comma-assignment.html": 0.3081,
    "conformance/glsl/misc/shader-with-comma-conditional-assignment.html": 0.4237,
    "conformance/glsl/misc/shader-with-comma-separated-variable-declarations.html": 0.2846,
    "conformance/glsl/misc/shader-with-conditional-scoping-negative.html": 0.2306,
    "conformance/glsl/misc/shader-with-conditional-scoping.html": 0.2929,
    "conformance/glsl/misc/shader-with-default-precision.frag.html": 0.2689,
    "conformance/glsl/misc/shader-with-default-precision.vert.html": 0.2487,
    "conformance/glsl/misc/shader-with-dfdx-no-ext.frag.html": 0.3315,
    "conformance/glsl/misc/shader-with-dfdx.frag.html": 0.2268,
    "conformance/glsl/misc/shader-with-do-loop.html": 0.3003,
    "conformance/glsl/misc/shader-with-error-directive.html": 0.2616,
    "conformance/glsl/misc/shader-with-explicit-int-cast.vert.html": 0.3233,
    "conformance/glsl/misc/shader-with-float-return-value.frag.html": 0.2068,
    "conformance/glsl/misc/shader-with-for-loop.html": 0.3,
    "conformance/glsl/misc/shader-with-for-scoping.html": 0.3157,
    "conformance/glsl/misc/shader-with-frag-depth.frag.html": 0.2741,
    "conformance/glsl/misc/shader-with-function-recursion.frag.html": 0.3043,
    "conformance/glsl/misc/shader-with-function-scoped-struct.html": 0.2946,
    "conformance/glsl/misc/shader-with-functional-scoping.html": 0.2871,
    "conformance/glsl/misc/shader-with-glcolor.vert.html": 0.2282,
    "conformance/glsl/misc/shader-with-gles-1.frag.html": 0.2703,
    "conformance/glsl/misc/shader-with-gles-symbol.frag.html": 0.2643,
    "conformance/glsl/misc/shader-with-global-variable-precision-mismatch.html": 0.3315,
    "conformance/glsl/misc/shader-with-glprojectionmatrix.vert.html": 0.2873,
    "conformance/glsl/misc/shader-with-hex-int-constant-macro.html": 0.264,
    "conformance/glsl/misc/shader-with-implicit-vec3-to-vec4-cast.vert.html": 0.3013,
    "conformance/glsl/misc/shader-with-include.vert.html": 0.3292,
    "conformance/glsl/misc/shader-with-int-return-value.frag.html": 0.2588,
    "conformance/glsl/misc/shader-with-invalid-identifier.frag.html": 0.3346,
    "conformance/glsl/misc/shader-with-ivec2-return-value.frag.html": 0.3256,
    "conformance/glsl/misc/shader-with-ivec3-return-value.frag.html": 0.2405,
    "conformance/glsl/misc/shader-with-ivec4-return-value.frag.html": 0.2257,
    "conformance/glsl/misc/shader-with-limited-indexing.frag.html": 0.2385,
    "conformance/glsl/misc/shader-with-long-line.html": 0.2996,
    "conformance/glsl/misc/shader-with-non-ascii-error.frag.html": 0.3297,
    "conformance/glsl/misc/shader-with-non-reserved-words-1-of-8.html": 5.1023,
    "conformance/glsl/misc/shader-with-non-reserved-words-2-of-8.html": 5.3237,
    "conformance/glsl/misc/shader-with-non-reserved-words-3-of-8.html": 5.5075,
    "conformance/glsl/misc/shader-with-non-reserved-words-4-of-8.html": 5.0354,
    "conformance/glsl/misc/shader-with-non-reserved-words-5-of-8.html": 2.2462,
    "conformance/glsl/misc/shader-with-non-reserved-words-6-of-8.html": 3.1495,
    "conformance/glsl/misc/shader-with-non-reserved-words-7-of-8.html": 5.1814,
    "conformance/glsl/misc/shader-with-non-reserved-words-8-of-8.html": 1.8512,
    "conformance/glsl/misc/shader-with-precision.frag.html": 0.3525,
    "conformance/glsl/misc/shader-with-preprocessor-whitespace.html": 0.3228,
    "conformance/glsl/misc/shader-with-quoted-error.frag.html": 0.259,
    "conformance/glsl/misc/shader-with-reserved-words.html": 6.6509,
    "conformance/glsl/misc/shader-with-short-circuiting-operators.html": 0.7742,
    "conformance/glsl/misc/shader-with-similar-uniform-array-names.html": 0.3079,
    "conformance/glsl/misc/shader-with-too-many-uniforms.html": 0.3644,
    "conformance/glsl/misc/shader-with-two-initializer-types.html": 0.368,
    "conformance/glsl/misc/shader-with-undefined-preprocessor-symbol.frag.html": 0.2874,
    "conformance/glsl/misc/shader-with-uniform-in-loop-condition.vert.html": 0.2317,
    "conformance/glsl/misc/shader-with-vec2-return-value.frag.html": 0.3126,
    "conformance/glsl/misc/shader-with-vec3-return-value.frag.html": 0.225,
    "conformance/glsl/misc/shader-with-vec4-return-value.frag.html": 0.2279,
    "conformance/glsl/misc/shader-with-vec4-vec3-vec4-conditional.html": 0.2628,
    "conformance/glsl/misc/shader-with-version-100.frag.html": 0.2436,
    "conformance/glsl/misc/shader-with-version-100.vert.html": 0.3667,
    "conformance/glsl/misc/shader-with-version-120.vert.html": 0.3094,
    "conformance/glsl/misc/shader-with-version-130.vert.html": 0.2318,
    "conformance/glsl/misc/shader-with-webgl-identifier.vert.html": 0.2914,
    "conformance/glsl/misc/shader-with-while-loop.html": 0.2985,
    "conformance/glsl/misc/shader-without-precision.frag.html": 0.3091,
    "conformance/glsl/misc/shaders-with-constant-expression-loop-conditions.html": 0.2917,
    "conformance/glsl/misc/shaders-with-invariance.html": 0.3979,
    "conformance/glsl/misc/shaders-with-mis-matching-uniforms.html": 0.5397,
    "conformance/glsl/misc/shaders-with-mis-matching-varyings.html": 0.3433,
    "conformance/glsl/misc/shaders-with-missing-varyings.html": 0.3535,
    "conformance/glsl/misc/shaders-with-name-conflicts.html": 0.2719,
    "conformance/glsl/misc/shaders-with-uniform-structs.html": 0.3677,
    "conformance/glsl/misc/shaders-with-varyings.html": 0.2753,
    "conformance/glsl/misc/shared.html": 0.3042,
    "conformance/glsl/misc/struct-as-inout-parameter.html": 0.3254,
    "conformance/glsl/misc/struct-as-out-parameter.html": 0.3663,
    "conformance/glsl/misc/struct-assign.html": 0.4095,
    "conformance/glsl/misc/struct-equals.html": 0.3496,
    "conformance/glsl/misc/struct-mixed-array-declarators.html": 0.8626,
    "conformance/glsl/misc/struct-nesting-exceeds-maximum.html": 0.2897,
    "conformance/glsl/misc/struct-nesting-of-variable-names.html": 1.9576,
    "conformance/glsl/misc/struct-nesting-under-maximum.html": 0.2319,
    "conformance/glsl/misc/struct-specifiers-in-uniforms.html": 0.6115,
    "conformance/glsl/misc/struct-unary-operators.html": 0.4225,
    "conformance/glsl/misc/ternary-operator-on-arrays.html": 0.3013,
    "conformance/glsl/misc/ternary-operators-in-global-initializers.html": 0.546,
    "conformance/glsl/misc/ternary-operators-in-initializers.html": 0.4554,
    "conformance/glsl/misc/uninitialized-local-global-variables.html": 0.5222,
    "conformance/glsl/preprocessor/comments.html": 0.302,
    "conformance/glsl/preprocessor/macro-expansion-tricky.html": 0.2939,
    "conformance/glsl/reserved/_webgl_field.vert.html": 0.2753,
    "conformance/glsl/reserved/_webgl_function.vert.html": 0.3428,
    "conformance/glsl/reserved/_webgl_struct.vert.html": 0.2124,
    "conformance/glsl/reserved/_webgl_variable.vert.html": 0.3089,
    "conformance/glsl/reserved/webgl_field.vert.html": 0.2655,
    "conformance/glsl/reserved/webgl_function.vert.html": 0.2955,
    "conformance/glsl/reserved/webgl_struct.vert.html": 0.2474,
    "conformance/glsl/reserved/webgl_variable.vert.html": 0.2532,
    "conformance/glsl/samplers/glsl-function-texture2d-bias.html": 0.3154,
    "conformance/glsl/samplers/glsl-function-texture2dlod.html": 0.3466,
    "conformance/glsl/samplers/glsl-function-texture2dproj.html": 0.5411,
    "conformance/glsl/samplers/glsl-function-texture2dprojlod.html": 0.902,
    "conformance/glsl/variables/gl-fragcoord-xy-values.html": 0.2492,
    "conformance/glsl/variables/gl-fragcoord.html": 0.3264,
    "conformance/glsl/variables/gl-fragdata-and-fragcolor.html": 0.2526,
    "conformance/glsl/variables/gl-frontfacing.html": 0.2628,
    "conformance/glsl/variables/gl-pointcoord.html": 0.387,
    "conformance/glsl/variables/glsl-built-ins.html": 0.4939,
    "conformance/limits/gl-line-width.html": 0.3149,
    "conformance/limits/gl-max-texture-dimensions.html": 0.2449,
    "conformance/limits/gl-min-attribs.html": 0.2349,
    "conformance/limits/gl-min-textures.html": 0.3096,
    "conformance/limits/gl-min-uniforms.html": 0.4089,
    "conformance/misc/bad-arguments-test.html": 0.3503,
    "conformance/misc/boolean-argument-conversion.html": 0.3924,
    "conformance/misc/delayed-drawing.html": 1.3258,
    "conformance/misc/error-reporting.html": 0.405,
    "conformance/misc/expando-loss.html": 0.4816,
    "conformance/misc/functions-returning-strings.html": 0.3041,
    "conformance/misc/hint.html": 0.3737,
    "conformance/misc/invalid-passed-params.html": 0.2815,
    "conformance/misc/is-object.html": 0.2988,
    "conformance/misc/null-object-behaviour.html": 0.4044,
    "conformance/misc/object-deletion-behaviour.html": 0.7425,
    "conformance/misc/shader-precision-format.html": 0.4617,
    "conformance/misc/type-conversion-test.html": 0.4763,
    "conformance/misc/uninitialized-test.html": 0.5514,
    "conformance/misc/webgl-specific-stencil-settings.html": 0.6169,
    "conformance/misc/webgl-specific.html": 0.2888,
    "conformance/more/conformance/constants.html": 0.3547,
    "conformance/more/conformance/getContext.html": 0.3245,
    "conformance/more/conformance/methods.html": 0.5135,
    "conformance/more/conformance/quickCheckAPI-A.html": 0.3844,
    "conformance/more/conformance/quickCheckAPI-B1.html": 0.6032,
    "conformance/more/conformance/quickCheckAPI-B2.html": 0.4841,
    "conformance/more/conformance/quickCheckAPI-B3.html": 0.4361,
    "conformance/more/conformance/quickCheckAPI-B4.html": 0.3944,
    "conformance/more/conformance/quickCheckAPI-C.html": 0.4344,
    "conformance/more/conformance/quickCheckAPI-D_G.html": 0.4383,
    "conformance/more/conformance/quickCheckAPI-G_I.html": 0.5231,
    "conformance/more/conformance/quickCheckAPI-L_S.html": 0.3992,
    "conformance/more/conformance/quickCheckAPI-S_V.html": 0.3892,
    "conformance/more/conformance/webGLArrays.html": 0.4114,
    "conformance/more/functions/bindBuffer.html": 0.2591,
    "conformance/more/functions/bindBufferBadArgs.html": 0.3196,
    "conformance/more/functions/bindFramebufferLeaveNonZero.html": 0.2814,
    "conformance/more/functions/bufferData.html": 0.2821,
    "conformance/more/functions/bufferDataBadArgs.html": 0.3895,
    "conformance/more/functions/bufferSubData.html": 0.3455,
    "conformance/more/functions/bufferSubDataBadArgs.html": 0.4358,
    "conformance/more/functions/copyTexImage2D.html": 0.403,
    "conformance/more/functions/copyTexImage2DBadArgs.html": 0.3689,
    "conformance/more/functions/copyTexSubImage2D.html": 0.3942,
    "conformance/more/functions/copyTexSubImage2DBadArgs.html": 0.3526,
    "conformance/more/functions/deleteBufferBadArgs.html": 0.3073,
    "conformance/more/functions/drawArrays.html": 0.3681,
    "conformance/more/functions/drawElements.html": 0.3825,
    "conformance/more/functions/isTests.html": 0.4403,
    "conformance/more/functions/isTestsBadArgs.html": 0.3074,
    "conformance/more/functions/readPixels.html": 0.3628,
    "conformance/more/functions/readPixelsBadArgs.html": 0.4028,
    "conformance/more/functions/texImage2D.html": 0.3131,
    "conformance/more/functions/texImage2DBadArgs.html": 0.3681,
    "conformance/more/functions/texImage2DHTML.html": 0.7517,
    "conformance/more/functions/texImage2DHTMLBadArgs.html": 0.3354,
    "conformance/more/functions/texSubImage2D.html": 0.3343,
    "conformance/more/functions/texSubImage2DBadArgs.html": 0.3789,
    "conformance/more/functions/texSubImage2DHTML.html": 0.4969,
    "conformance/more/functions/texSubImage2DHTMLBadArgs.html": 0.2916,
    "conformance/more/functions/uniformMatrix.html": 0.2976,
    "conformance/more/functions/uniformMatrixBadArgs.html": 0.3796,
    "conformance/more/functions/uniformf.html": 0.3075,
    "conformance/more/functions/uniformfArrayLen1.html": 0.3315,
    "conformance/more/functions/uniformfBadArgs.html": 0.4452,
    "conformance/more/functions/uniformi.html": 0.3707,
    "conformance/more/functions/uniformiBadArgs.html": 0.3628,
    "conformance/more/functions/vertexAttrib.html": 0.384,
    "conformance/more/functions/vertexAttribBadArgs.html": 0.3586,
    "conformance/more/functions/vertexAttribPointer.html": 0.3137,
    "conformance/more/functions/vertexAttribPointerBadArgs.html": 0.3257,
    "conformance/more/glsl/arrayOutOfBounds.html": 0.4316,
    "conformance/more/glsl/uniformOutOfBounds.html": 0.3101,
    "conformance/offscreencanvas/context-attribute-preserve-drawing-buffer.html": 0.8414,
    "conformance/offscreencanvas/context-creation-worker.html": 0.2641,
    "conformance/offscreencanvas/context-creation.html": 0.3199,
    "conformance/offscreencanvas/context-lost-restored-worker.html": 0.4043,
    "conformance/offscreencanvas/context-lost-restored.html": 0.3781,
    "conformance/offscreencanvas/context-lost-worker.html": 0.3946,
    "conformance/offscreencanvas/context-lost.html": 0.3818,
    "conformance/offscreencanvas/methods-worker.html": 0.3227,
    "conformance/offscreencanvas/methods.html": 0.2963,
    "conformance/offscreencanvas/offscreencanvas-resize.html": 0.2887,
    "conformance/offscreencanvas/offscreencanvas-timer-query.html": 0.2946,
    "conformance/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.369,
    "conformance/ogles/GL/abs/abs_001_to_006.html": 1.1132,
    "conformance/ogles/GL/acos/acos_001_to_006.html": 1.5444,
    "conformance/ogles/GL/all/all_001_to_004.html": 0.8235,
    "conformance/ogles/GL/any/any_001_to_004.html": 0.868,
    "conformance/ogles/GL/array/array_001_to_006.html": 0.8853,
    "conformance/ogles/GL/asin/asin_001_to_006.html": 1.2745,
    "conformance/ogles/GL/atan/atan_001_to_008.html": 1.53,
    "conformance/ogles/GL/atan/atan_009_to_012.html": 1.2661,
    "conformance/ogles/GL/biConstants/biConstants_001_to_008.html": 1.1436,
    "conformance/ogles/GL/biConstants/biConstants_009_to_016.html": 1.1905,
    "conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html": 0.485,
    "conformance/ogles/GL/build/build_001_to_008.html": 0.5708,
    "conformance/ogles/GL/build/build_009_to_016.html": 0.5329,
    "conformance/ogles/GL/build/build_017_to_024.html": 0.4903,
    "conformance/ogles/GL/build/build_025_to_032.html": 0.5392,
    "conformance/ogles/GL/build/build_033_to_040.html": 0.4663,
    "conformance/ogles/GL/build/build_041_to_048.html": 0.3195,
    "conformance/ogles/GL/build/build_049_to_056.html": 0.4778,
    "conformance/ogles/GL/build/build_057_to_064.html": 0.3996,
    "conformance/ogles/GL/build/build_065_to_072.html": 0.3744,
    "conformance/ogles/GL/build/build_073_to_080.html": 0.4386,
    "conformance/ogles/GL/build/build_081_to_088.html": 0.397,
    "conformance/ogles/GL/build/build_089_to_096.html": 0.4889,
    "conformance/ogles/GL/build/build_097_to_104.html": 0.3939,
    "conformance/ogles/GL/build/build_105_to_112.html": 0.508,
    "conformance/ogles/GL/build/build_113_to_120.html": 0.4314,
    "conformance/ogles/GL/build/build_121_to_128.html": 0.3914,
    "conformance/ogles/GL/build/build_129_to_136.html": 0.4984,
    "conformance/ogles/GL/build/build_137_to_144.html": 0.3758,
    "conformance/ogles/GL/build/build_145_to_152.html": 0.3886,
    "conformance/ogles/GL/build/build_153_to_160.html": 0.4463,
    "conformance/ogles/GL/build/build_161_to_168.html": 0.4829,
    "conformance/ogles/GL/build/build_169_to_176.html": 0.4223,
    "conformance/ogles/GL/build/build_177_to_178.html": 0.382,
    "conformance/ogles/GL/built_in_varying_array_out_of_bounds/built_in_varying_array_out_of_bounds_001_to_001.html": 0.4951,
    "conformance/ogles/GL/ceil/ceil_001_to_006.html": 1.1604,
    "conformance/ogles/GL/clamp/clamp_001_to_006.html": 1.1195,
    "conformance/ogles/GL/control_flow/control_flow_001_to_008.html": 0.9529,
    "conformance/ogles/GL/control_flow/control_flow_009_to_010.html": 0.4185,
    "conformance/ogles/GL/cos/cos_001_to_006.html": 1.1844,
    "conformance/ogles/GL/cross/cross_001_to_002.html": 0.7334,
    "conformance/ogles/GL/default/default_001_to_001.html": 0.3749,
    "conformance/ogles/GL/degrees/degrees_001_to_006.html": 1.1721,
    "conformance/ogles/GL/discard/discard_001_to_002.html": 0.4918,
    "conformance/ogles/GL/distance/distance_001_to_006.html": 1.1371,
    "conformance/ogles/GL/dot/dot_001_to_006.html": 1.0337,
    "conformance/ogles/GL/equal/equal_001_to_008.html": 1.3525,
    "conformance/ogles/GL/equal/equal_009_to_012.html": 0.7247,
    "conformance/ogles/GL/exp/exp_001_to_008.html": 1.3941,
    "conformance/ogles/GL/exp/exp_009_to_012.html": 1.0393,
    "conformance/ogles/GL/exp2/exp2_001_to_008.html": 1.4068,
    "conformance/ogles/GL/exp2/exp2_009_to_012.html": 1.0075,
    "conformance/ogles/GL/faceforward/faceforward_001_to_006.html": 1.1918,
    "conformance/ogles/GL/floor/floor_001_to_006.html": 1.1008,
    "conformance/ogles/GL/fract/fract_001_to_006.html": 1.1903,
    "conformance/ogles/GL/functions/functions_001_to_008.html": 1.1524,
    "conformance/ogles/GL/functions/functions_009_to_016.html": 0.937,
    "conformance/ogles/GL/functions/functions_017_to_024.html": 0.9728,
    "conformance/ogles/GL/functions/functions_025_to_032.html": 0.9946,
    "conformance/ogles/GL/functions/functions_033_to_040.html": 0.9355,
    "conformance/ogles/GL/functions/functions_041_to_048.html": 0.9226,
    "conformance/ogles/GL/functions/functions_049_to_056.html": 0.9504,
    "conformance/ogles/GL/functions/functions_057_to_064.html": 0.8547,
    "conformance/ogles/GL/functions/functions_065_to_072.html": 1.0157,
    "conformance/ogles/GL/functions/functions_073_to_080.html": 0.8636,
    "conformance/ogles/GL/functions/functions_081_to_088.html": 0.9868,
    "conformance/ogles/GL/functions/functions_089_to_096.html": 1.054,
    "conformance/ogles/GL/functions/functions_097_to_104.html": 0.9217,
    "conformance/ogles/GL/functions/functions_105_to_112.html": 1.0145,
    "conformance/ogles/GL/functions/functions_113_to_120.html": 1.0121,
    "conformance/ogles/GL/functions/functions_121_to_126.html": 0.8403,
    "conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html": 0.5198,
    "conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html": 0.3613,
    "conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html": 1.3496,
    "conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html": 1.2305,
    "conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html": 1.0683,
    "conformance/ogles/GL/length/length_001_to_006.html": 0.9163,
    "conformance/ogles/GL/lessThan/lessThan_001_to_008.html": 1.1758,
    "conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html": 1.214,
    "conformance/ogles/GL/log/log_001_to_008.html": 1.3381,
    "conformance/ogles/GL/log/log_009_to_012.html": 1.0551,
    "conformance/ogles/GL/log2/log2_001_to_008.html": 1.3588,
    "conformance/ogles/GL/log2/log2_009_to_012.html": 0.9885,
    "conformance/ogles/GL/mat/mat_001_to_008.html": 0.953,
    "conformance/ogles/GL/mat/mat_009_to_016.html": 1.0532,
    "conformance/ogles/GL/mat/mat_017_to_024.html": 0.8768,
    "conformance/ogles/GL/mat/mat_025_to_032.html": 1.2184,
    "conformance/ogles/GL/mat/mat_033_to_040.html": 1.0098,
    "conformance/ogles/GL/mat/mat_041_to_046.html": 0.7579,
    "conformance/ogles/GL/mat3/mat3_001_to_006.html": 0.7826,
    "conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html": 0.8658,
    "conformance/ogles/GL/max/max_001_to_006.html": 0.9933,
    "conformance/ogles/GL/min/min_001_to_006.html": 0.9996,
    "conformance/ogles/GL/mix/mix_001_to_006.html": 0.9743,
    "conformance/ogles/GL/mod/mod_001_to_008.html": 1.3079,
    "conformance/ogles/GL/normalize/normalize_001_to_006.html": 1.111,
    "conformance/ogles/GL/not/not_001_to_004.html": 0.7599,
    "conformance/ogles/GL/notEqual/notEqual_001_to_008.html": 1.2943,
    "conformance/ogles/GL/notEqual/notEqual_009_to_012.html": 0.7204,
    "conformance/ogles/GL/operators/operators_001_to_008.html": 0.8774,
    "conformance/ogles/GL/operators/operators_009_to_016.html": 0.8274,
    "conformance/ogles/GL/operators/operators_017_to_024.html": 0.852,
    "conformance/ogles/GL/operators/operators_025_to_026.html": 0.486,
    "conformance/ogles/GL/pow/pow_001_to_008.html": 1.143,
    "conformance/ogles/GL/pow/pow_009_to_016.html": 1.42,
    "conformance/ogles/GL/pow/pow_017_to_024.html": 1.5963,
    "conformance/ogles/GL/radians/radians_001_to_006.html": 1.0571,
    "conformance/ogles/GL/reflect/reflect_001_to_006.html": 1.2271,
    "conformance/ogles/GL/refract/refract_001_to_006.html": 1.1764,
    "conformance/ogles/GL/sign/sign_001_to_006.html": 1.1427,
    "conformance/ogles/GL/sin/sin_001_to_006.html": 1.2083,
    "conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html": 1.1572,
    "conformance/ogles/GL/sqrt/sqrt_001_to_006.html": 1.0824,
    "conformance/ogles/GL/step/step_001_to_006.html": 0.9886,
    "conformance/ogles/GL/struct/struct_001_to_008.html": 1.145,
    "conformance/ogles/GL/struct/struct_009_to_016.html": 1.1529,
    "conformance/ogles/GL/struct/struct_017_to_024.html": 1.1341,
    "conformance/ogles/GL/struct/struct_025_to_032.html": 1.1198,
    "conformance/ogles/GL/struct/struct_033_to_040.html": 1.087,
    "conformance/ogles/GL/struct/struct_041_to_048.html": 1.1526,
    "conformance/ogles/GL/struct/struct_049_to_056.html": 1.1402,
    "conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html": 1.1818,
    "conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html": 1.2173,
    "conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html": 1.182,
    "conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html": 1.2643,
    "conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html": 1.3092,
    "conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html": 1.3364,
    "conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html": 1.1779,
    "conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html": 1.2935,
    "conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html": 1.2417,
    "conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html": 1.1847,
    "conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html": 1.2269,
    "conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html": 1.3154,
    "conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html": 1.2551,
    "conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html": 1.2019,
    "conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html": 1.2859,
    "conformance/ogles/GL/tan/tan_001_to_006.html": 1.0468,
    "conformance/ogles/GL/vec/vec_001_to_008.html": 0.8491,
    "conformance/ogles/GL/vec/vec_009_to_016.html": 0.9398,
    "conformance/ogles/GL/vec/vec_017_to_018.html": 0.4522,
    "conformance/ogles/GL/vec3/vec3_001_to_008.html": 0.9379,
    "conformance/programs/get-active-test.html": 0.4353,
    "conformance/programs/gl-bind-attrib-location-long-names-test.html": 0.2275,
    "conformance/programs/gl-bind-attrib-location-test.html": 0.2341,
    "conformance/programs/gl-get-active-attribute.html": 0.2722,
    "conformance/programs/gl-get-active-uniform.html": 0.401,
    "conformance/programs/gl-getshadersource.html": 0.2262,
    "conformance/programs/gl-shader-test.html": 0.2545,
    "conformance/programs/invalid-UTF-16.html": 0.1895,
    "conformance/programs/program-handling.html": 0.3362,
    "conformance/programs/program-infolog.html": 0.2836,
    "conformance/programs/program-test.html": 0.4139,
    "conformance/programs/use-program-crash-with-discard-in-fragment-shader.html": 0.2208,
    "conformance/reading/fbo-remains-unchanged-after-read-pixels.html": 0.2177,
    "conformance/reading/read-pixels-pack-alignment.html": 0.4609,
    "conformance/reading/read-pixels-test.html": 1.1221,
    "conformance/renderbuffers/depth-renderbuffer-initialization.html": 0.3291,
    "conformance/renderbuffers/feedback-loop.html": 0.3054,
    "conformance/renderbuffers/framebuffer-state-restoration.html": 0.4382,
    "conformance/renderbuffers/renderbuffer-initialization.html": 0.3946,
    "conformance/renderbuffers/stencil-renderbuffer-initialization.html": 0.3379,
    "conformance/rendering/bind-framebuffer-flush-bug.html": 0.2421,
    "conformance/rendering/blending.html": 0.3586,
    "conformance/rendering/canvas-alpha-bug.html": 0.2534,
    "conformance/rendering/clear-after-copyTexImage2D.html": 0.2934,
    "conformance/rendering/clear-default-framebuffer-with-scissor-test.html": 0.2188,
    "conformance/rendering/color-mask-preserved-during-implicit-clears.html": 1.6569,
    "conformance/rendering/color-mask-should-not-affect-antialiased-framebuffer-resolution.html": 0.2313,
    "conformance/rendering/culling.html": 0.2697,
    "conformance/rendering/default-texture-draw-bug.html": 0.3542,
    "conformance/rendering/draw-arrays-out-of-bounds.html": 0.377,
    "conformance/rendering/draw-elements-out-of-bounds.html": 0.4107,
    "conformance/rendering/draw-webgl-to-canvas-2d-repeatedly.html": 0.2984,
    "conformance/rendering/draw-with-changing-start-vertex-bug.html": 0.2672,
    "conformance/rendering/framebuffer-switch.html": 0.3379,
    "conformance/rendering/framebuffer-texture-clear.html": 0.3692,
    "conformance/rendering/framebuffer-texture-switch.html": 0.2817,
    "conformance/rendering/gl-clear.html": 0.2721,
    "conformance/rendering/gl-drawarrays.html": 0.2501,
    "conformance/rendering/gl-drawelements.html": 0.2811,
    "conformance/rendering/gl-scissor-canvas-dimensions.html": 0.2876,
    "conformance/rendering/gl-scissor-fbo-test.html": 0.4197,
    "conformance/rendering/gl-scissor-test.html": 0.4249,
    "conformance/rendering/gl-viewport-test.html": 0.4368,
    "conformance/rendering/line-loop-tri-fan.html": 0.2718,
    "conformance/rendering/line-rendering-quality.html": 0.352,
    "conformance/rendering/many-draw-calls.html": 3.424,
    "conformance/rendering/more-than-65536-indices.html": 0.3311,
    "conformance/rendering/multisample-corruption.html": 4.0624,
    "conformance/rendering/negative-one-index.html": 0.3511,
    "conformance/rendering/out-of-bounds-array-buffers.html": 0.3237,
    "conformance/rendering/out-of-bounds-index-buffers.html": 0.3211,
    "conformance/rendering/point-no-attributes.html": 0.2192,
    "conformance/rendering/point-size.html": 0.3152,
    "conformance/rendering/point-specific-shader-variables.html": 0.3039,
    "conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html": 0.3914,
    "conformance/rendering/polygon-offset.html": 0.2389,
    "conformance/rendering/preservedrawingbuffer-leak.html": 0.5059,
    "conformance/rendering/rendering-sampling-feedback-loop.html": 0.4067,
    "conformance/rendering/rendering-stencil-large-viewport.html": 0.3595,
    "conformance/rendering/scissor-rect-repeated-rendering.html": 0.4997,
    "conformance/rendering/simple.html": 0.3433,
    "conformance/rendering/texture-switch-performance.html": 0,
    "conformance/rendering/triangle.html": 0.3444,
    "conformance/state/fb-attach-implicit-target-assignment.html": 0.3538,
    "conformance/state/gl-enable-enum-test.html": 0.4601,
    "conformance/state/gl-get-calls.html": 0.3407,
    "conformance/state/gl-geterror.html": 0.3495,
    "conformance/state/gl-initial-state.html": 0.4011,
    "conformance/state/state-uneffected-after-compositing.html": 0.3775,
    "conformance/textures/canvas/tex-2d-alpha-alpha-unsigned_byte.html": 1.1159,
    "conformance/textures/canvas/tex-2d-luminance-luminance-unsigned_byte.html": 1.2129,
    "conformance/textures/canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.2741,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_byte.html": 2.844,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.1271,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_byte.html": 3.1221,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.0603,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.1534,
    "conformance/textures/canvas_sub_rectangle/tex-2d-alpha-alpha-unsigned_byte.html": 1.5054,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance-luminance-unsigned_byte.html": 1.5425,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.6383,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_byte.html": 1.3124,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.3945,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_byte.html": 1.2685,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.329,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.3002,
    "conformance/textures/image/tex-2d-alpha-alpha-unsigned_byte.html": 0.5657,
    "conformance/textures/image/tex-2d-luminance-luminance-unsigned_byte.html": 0.5108,
    "conformance/textures/image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.5592,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html": 0.5849,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5741,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_byte.html": 0.5714,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.6024,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.552,
    "conformance/textures/image_bitmap_from_blob/tex-2d-alpha-alpha-unsigned_byte.html": 0.8903,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance-luminance-unsigned_byte.html": 0.8175,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.8008,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_byte.html": 0.8835,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.8614,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_byte.html": 0.8983,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.8435,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.8466,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.883,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.8897,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.0108,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 0.862,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.9458,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 0.8456,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.89,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.9087,
    "conformance/textures/image_bitmap_from_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.5364,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.5312,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.526,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.512,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5798,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.5481,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5058,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5235,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-alpha-alpha-unsigned_byte.html": 0.5265,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance-luminance-unsigned_byte.html": 0.554,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.5079,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_byte.html": 0.4954,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5736,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_byte.html": 0.5907,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5127,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5311,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.5443,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.5267,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.4595,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.497,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.5929,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.5157,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.5185,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.5151,
    "conformance/textures/image_bitmap_from_video/tex-2d-alpha-alpha-unsigned_byte.html": 1.3106,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance-luminance-unsigned_byte.html": 1.2822,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.201,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_byte.html": 0.9724,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.0809,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_byte.html": 1.2079,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.1007,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.3079,
    "conformance/textures/image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.887,
    "conformance/textures/image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.8189,
    "conformance/textures/image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.8619,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.8875,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.9107,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.812,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.8272,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.8494,
    "conformance/textures/misc/canvas-teximage-after-multiple-drawimages.html": 0.3873,
    "conformance/textures/misc/copy-tex-image-2d-formats.html": 0.3862,
    "conformance/textures/misc/copy-tex-image-and-sub-image-2d.html": 0.6941,
    "conformance/textures/misc/copy-tex-image-crash.html": 0.278,
    "conformance/textures/misc/copytexsubimage2d-large-partial-copy-corruption.html": 0.4063,
    "conformance/textures/misc/copytexsubimage2d-subrects.html": 0.2383,
    "conformance/textures/misc/cube-incomplete-fbo.html": 0.2387,
    "conformance/textures/misc/cube-map-uploads-out-of-order.html": 1.2694,
    "conformance/textures/misc/default-texture.html": 0.2792,
    "conformance/textures/misc/exif-orientation.html": 1.5253,
    "conformance/textures/misc/format-filterable-renderable.html": 0.5042,
    "conformance/textures/misc/gl-pixelstorei.html": 0.3785,
    "conformance/textures/misc/gl-teximage.html": 0.639,
    "conformance/textures/misc/mipmap-fbo.html": 0.2743,
    "conformance/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.3369,
    "conformance/textures/misc/origin-clean-conformance.html": 0.3236,
    "conformance/textures/misc/png-image-types.html": 0.7571,
    "conformance/textures/misc/tex-image-and-sub-image-2d-with-array-buffer-view.html": 2.9333,
    "conformance/textures/misc/tex-image-and-uniform-binding-bugs.html": 0.3542,
    "conformance/textures/misc/tex-image-canvas-corruption.html": 0.3313,
    "conformance/textures/misc/tex-image-webgl.html": 0.3345,
    "conformance/textures/misc/tex-image-with-format-and-type.html": 0.5105,
    "conformance/textures/misc/tex-image-with-invalid-data.html": 0.2698,
    "conformance/textures/misc/tex-sub-image-2d-bad-args.html": 0.3585,
    "conformance/textures/misc/tex-sub-image-2d.html": 0.2965,
    "conformance/textures/misc/tex-video-using-tex-unit-non-zero.html": 1.0273,
    "conformance/textures/misc/texparameter-test.html": 0.2517,
    "conformance/textures/misc/texture-active-bind-2.html": 0.2592,
    "conformance/textures/misc/texture-active-bind.html": 0.2693,
    "conformance/textures/misc/texture-attachment-formats.html": 0.2409,
    "conformance/textures/misc/texture-clear.html": 0.3083,
    "conformance/textures/misc/texture-complete.html": 0.3473,
    "conformance/textures/misc/texture-copying-and-deletion.html": 1.2338,
    "conformance/textures/misc/texture-copying-feedback-loops.html": 0.2765,
    "conformance/textures/misc/texture-corner-case-videos.html": 0.4863,
    "conformance/textures/misc/texture-cube-as-fbo-attachment.html": 0.2539,
    "conformance/textures/misc/texture-draw-with-2d-and-cube.html": 0.3206,
    "conformance/textures/misc/texture-hd-dpi.html": 0.2965,
    "conformance/textures/misc/texture-mips.html": 0.3668,
    "conformance/textures/misc/texture-size-cube-maps.html": 0.9072,
    "conformance/textures/misc/texture-size-limit.html": 0.5498,
    "conformance/textures/misc/texture-size.html": 0.8761,
    "conformance/textures/misc/texture-srgb-upload.html": 0.5754,
    "conformance/textures/misc/texture-sub-image-cube-maps.html": 0.3368,
    "conformance/textures/misc/texture-transparent-pixels-initialized.html": 0.2575,
    "conformance/textures/misc/texture-upload-cube-maps.html": 0.2625,
    "conformance/textures/misc/texture-upload-size.html": 0.8385,
    "conformance/textures/misc/texture-video-transparent.html": 2.4892,
    "conformance/textures/misc/texture-with-flip-y-and-premultiply-alpha.html": 0.2348,
    "conformance/textures/misc/upload-from-srcset-with-empty-data.html": 0.2615,
    "conformance/textures/misc/video-rotation.html": 1.2235,
    "conformance/textures/svg_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.4107,
    "conformance/textures/svg_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.439,
    "conformance/textures/svg_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.3579,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.3974,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3768,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.3505,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3715,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.4262,
    "conformance/textures/video/tex-2d-alpha-alpha-unsigned_byte.html": 2.0024,
    "conformance/textures/video/tex-2d-luminance-luminance-unsigned_byte.html": 2.1175,
    "conformance/textures/video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.8383,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_byte.html": 1.7715,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.709,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html": 1.9305,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.8474,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.7749,
    "conformance/textures/webgl_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 1.6002,
    "conformance/textures/webgl_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 1.54,
    "conformance/textures/webgl_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.7642,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 4.3031,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.4533,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 3.9897,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.4001,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.3811,
    "conformance/typedarrays/array-buffer-crash.html": 0.2938,
    "conformance/typedarrays/array-buffer-view-crash.html": 0.2237,
    "conformance/typedarrays/array-large-array-tests.html": 0.2461,
    "conformance/typedarrays/array-unit-tests.html": 0.3049,
    "conformance/typedarrays/data-view-crash.html": 0.1888,
    "conformance/typedarrays/data-view-test.html": 0.3445,
    "conformance/typedarrays/typed-arrays-in-workers.html": 0.3526,
    "conformance/uniforms/gl-get-uniform-non-current-program.html": 0.3283,
    "conformance/uniforms/gl-uniform-arrays.html": 0.6532,
    "conformance/uniforms/gl-uniform-bool.html": 0.2515,
    "conformance/uniforms/gl-uniformmatrix4fv.html": 0.3553,
    "conformance/uniforms/gl-unknown-uniform.html": 0.2977,
    "conformance/uniforms/no-over-optimization-on-uniform-array-00.html": 0.5113,
    "conformance/uniforms/no-over-optimization-on-uniform-array-01.html": 0.2771,
    "conformance/uniforms/no-over-optimization-on-uniform-array-02.html": 0.2553,
    "conformance/uniforms/no-over-optimization-on-uniform-array-03.html": 0.3028,
    "conformance/uniforms/no-over-optimization-on-uniform-array-04.html": 0.2555,
    "conformance/uniforms/no-over-optimization-on-uniform-array-05.html": 0.3819,
    "conformance/uniforms/no-over-optimization-on-uniform-array-06.html": 0.5373,
    "conformance/uniforms/no-over-optimization-on-uniform-array-07.html": 0.5657,
    "conformance/uniforms/no-over-optimization-on-uniform-array-08.html": 0.5342,
    "conformance/uniforms/no-over-optimization-on-uniform-array-09.html": 0.6557,
    "conformance/uniforms/no-over-optimization-on-uniform-array-10.html": 0.3043,
    "conformance/uniforms/no-over-optimization-on-uniform-array-11.html": 0.3503,
    "conformance/uniforms/no-over-optimization-on-uniform-array-12.html": 0.3817,
    "conformance/uniforms/no-over-optimization-on-uniform-array-13.html": 0.2595,
    "conformance/uniforms/no-over-optimization-on-uniform-array-14.html": 0.5591,
    "conformance/uniforms/no-over-optimization-on-uniform-array-15.html": 0.5325,
    "conformance/uniforms/no-over-optimization-on-uniform-array-16.html": 0.5416,
    "conformance/uniforms/no-over-optimization-on-uniform-array-17.html": 0.5712,
    "conformance/uniforms/null-uniform-location.html": 0.3579,
    "conformance/uniforms/out-of-bounds-uniform-array-access.html": 4.3962,
    "conformance/uniforms/uniform-default-values.html": 2.323,
    "conformance/uniforms/uniform-location.html": 0.4731,
    "conformance/uniforms/uniform-samplers-test.html": 49.8111,
    "conformance/uniforms/uniform-values-per-program.html": 1.438,
    "conformance2/attribs/gl-bindAttribLocation-aliasing-inactive.html": 0.658,
    "conformance2/attribs/gl-vertex-attrib-i-render.html": 0.2853,
    "conformance2/attribs/gl-vertex-attrib-normalized-int.html": 0.2363,
    "conformance2/attribs/gl-vertex-attrib.html": 0.9776,
    "conformance2/attribs/gl-vertexattribipointer-offsets.html": 0.5626,
    "conformance2/attribs/gl-vertexattribipointer.html": 0.7434,
    "conformance2/attribs/invalid-vertex-attribs.html": 0.3261,
    "conformance2/attribs/render-no-enabled-attrib-arrays.html": 0.3186,
    "conformance2/buffers/bound-buffer-size-change-test.html": 0.2715,
    "conformance2/buffers/buffer-copying-contents.html": 0.5072,
    "conformance2/buffers/buffer-copying-restrictions.html": 0.3297,
    "conformance2/buffers/buffer-data-and-buffer-sub-data-sub-source.html": 0.3353,
    "conformance2/buffers/buffer-overflow-test.html": 0.3425,
    "conformance2/buffers/buffer-type-restrictions.html": 0.4323,
    "conformance2/buffers/delete-buffer.html": 0.2793,
    "conformance2/buffers/get-buffer-sub-data-validity.html": 0.356,
    "conformance2/buffers/get-buffer-sub-data.html": 0.324,
    "conformance2/buffers/one-large-uniform-buffer.html": 0.3635,
    "conformance2/buffers/uniform-buffers-second-compile.html": 0.3649,
    "conformance2/buffers/uniform-buffers-state-restoration.html": 0.306,
    "conformance2/buffers/uniform-buffers.html": 0.405,
    "conformance2/canvas/to-data-url-with-pack-params.html": 0.2903,
    "conformance2/context/constants-and-properties-2.html": 0.2945,
    "conformance2/context/context-attributes-depth-stencil-antialias-obeyed.html": 0.3981,
    "conformance2/context/context-mode.html": 0.2733,
    "conformance2/context/context-resize-changes-buffer-binding-bug.html": 0.2971,
    "conformance2/context/context-sharing-texture2darray-texture3d-data-bug.html": 0.3643,
    "conformance2/context/context-type-test-2.html": 0.3379,
    "conformance2/context/incorrect-context-object-behaviour.html": 0.44,
    "conformance2/context/methods-2.html": 0.2599,
    "conformance2/context/no-experimental-webgl2.html": 0.2316,
    "conformance2/extensions/ext-color-buffer-float.html": 0.6281,
    "conformance2/extensions/ext-color-buffer-half-float.html": 0.6385,
    "conformance2/extensions/ext-disjoint-timer-query-webgl2.html": 0.2894,
    "conformance2/extensions/ext-texture-filter-anisotropic.html": 0.2796,
    "conformance2/extensions/ext-texture-norm16.html": 0.4245,
    "conformance2/extensions/oes-draw-buffers-indexed.html": 1.292,
    "conformance2/extensions/ovr_multiview2.html": 0.2936,
    "conformance2/extensions/ovr_multiview2_depth.html": 0.2199,
    "conformance2/extensions/ovr_multiview2_draw_buffers.html": 0.2398,
    "conformance2/extensions/ovr_multiview2_flat_varying.html": 0.3029,
    "conformance2/extensions/ovr_multiview2_instanced_draw.html": 0.2884,
    "conformance2/extensions/ovr_multiview2_non_multiview_shaders.html": 0.2252,
    "conformance2/extensions/ovr_multiview2_single_view_operations.html": 0.2973,
    "conformance2/extensions/ovr_multiview2_timer_query.html": 0.3078,
    "conformance2/extensions/ovr_multiview2_transform_feedback.html": 0.2331,
    "conformance2/extensions/promoted-extensions-in-shaders.html": 0.5166,
    "conformance2/extensions/promoted-extensions.html": 0.2369,
    "conformance2/extensions/required-extensions.html": 0.2357,
    "conformance2/extensions/webgl-clip-cull-distance.html": 0.4297,
    "conformance2/extensions/webgl-multi-draw-instanced-base-vertex-base-instance.html": 5.5139,
    "conformance2/extensions/webgl-provoking-vertex.html": 0.2806,
    "conformance2/extensions/webgl-shader-pixel-local-storage.html": 0.3383,
    "conformance2/glsl3/array-as-return-value.html": 0.3861,
    "conformance2/glsl3/array-assign-constructor.html": 0.3378,
    "conformance2/glsl3/array-assign.html": 0.301,
    "conformance2/glsl3/array-complex-indexing.html": 0.3333,
    "conformance2/glsl3/array-element-increment.html": 0.343,
    "conformance2/glsl3/array-equality.html": 0.4437,
    "conformance2/glsl3/array-in-complex-expression.html": 0.343,
    "conformance2/glsl3/array-initialize-with-same-name-array.html": 0.2359,
    "conformance2/glsl3/array-length-side-effects.html": 0.3405,
    "conformance2/glsl3/attrib-location-length-limits.html": 0.3257,
    "conformance2/glsl3/bool-type-cast-bug-uint-ivec-uvec.html": 0.4493,
    "conformance2/glsl3/compare-structs-containing-arrays.html": 0.2527,
    "conformance2/glsl3/compound-assignment-type-combination.html": 2.509,
    "conformance2/glsl3/const-array-init.html": 0.3138,
    "conformance2/glsl3/const-struct-from-array-as-function-parameter.html": 0.2593,
    "conformance2/glsl3/float-parsing.html": 0.3668,
    "conformance2/glsl3/forbidden-operators.html": 0.3343,
    "conformance2/glsl3/forward-declaration.html": 0.2528,
    "conformance2/glsl3/frag-depth.html": 0.3095,
    "conformance2/glsl3/fragment-shader-loop-crash.html": 0,
    "conformance2/glsl3/gradient-in-discontinuous-loop.html": 0.2555,
    "conformance2/glsl3/input-with-interpotaion-as-lvalue.html": 0.2712,
    "conformance2/glsl3/invalid-default-precision.html": 0.3167,
    "conformance2/glsl3/invalid-invariant.html": 0.2322,
    "conformance2/glsl3/loops-with-side-effects.html": 0.571,
    "conformance2/glsl3/matrix-row-major-dynamic-indexing.html": 0.3072,
    "conformance2/glsl3/matrix-row-major.html": 0.2335,
    "conformance2/glsl3/misplaced-version-directive.html": 0.3017,
    "conformance2/glsl3/no-attribute-vertex-shader.html": 0.2698,
    "conformance2/glsl3/precision-side-effects-bug.html": 0.3106,
    "conformance2/glsl3/reciprocal-sqrt-of-sum-of-squares-crash.html": 0.2894,
    "conformance2/glsl3/sampler-array-indexing.html": 0.3462,
    "conformance2/glsl3/sampler-no-precision.html": 0.2649,
    "conformance2/glsl3/sequence-operator-returns-non-constant.html": 0.224,
    "conformance2/glsl3/shader-linking.html": 0.2479,
    "conformance2/glsl3/shader-with-1024-character-define.html": 0.2705,
    "conformance2/glsl3/shader-with-1024-character-identifier.frag.html": 0.2571,
    "conformance2/glsl3/shader-with-1025-character-define.html": 0.2292,
    "conformance2/glsl3/shader-with-1025-character-identifier.frag.html": 0.2406,
    "conformance2/glsl3/shader-with-invalid-characters.html": 0.245,
    "conformance2/glsl3/shader-with-mis-matching-uniform-block.html": 0.2363,
    "conformance2/glsl3/short-circuiting-in-loop-condition.html": 0.3813,
    "conformance2/glsl3/switch-case.html": 0.3704,
    "conformance2/glsl3/texture-bias.html": 0.3493,
    "conformance2/glsl3/texture-offset-non-constant-offset.html": 0.2538,
    "conformance2/glsl3/texture-offset-out-of-range.html": 0.2517,
    "conformance2/glsl3/texture-offset-uniform-texture-coordinate.html": 0.3495,
    "conformance2/glsl3/tricky-loop-conditions.html": 1.1358,
    "conformance2/glsl3/uint-int-shift-bug.html": 5.6577,
    "conformance2/glsl3/unary-minus-operator-in-dynamic-loop.html": 0.4838,
    "conformance2/glsl3/uniform-block-layout-match.html": 0.2357,
    "conformance2/glsl3/uniform-block-layouts.html": 0.2527,
    "conformance2/glsl3/uniform-location-length-limits.html": 0.3121,
    "conformance2/glsl3/uniform-struct-with-non-square-matrix.html": 0.2608,
    "conformance2/glsl3/uninitialized-local-global-variables.html": 0.2872,
    "conformance2/glsl3/valid-invariant.html": 0.3446,
    "conformance2/glsl3/varying-struct-inline-definition.html": 0.2507,
    "conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html": 0.2684,
    "conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html": 0.3341,
    "conformance2/glsl3/vector-dynamic-indexing.html": 0.4863,
    "conformance2/misc/blend-integer.html": 0.3263,
    "conformance2/misc/expando-loss-2.html": 0.4384,
    "conformance2/misc/getextension-while-pbo-bound-stability.html": 0.2458,
    "conformance2/misc/instanceof-test.html": 0.2505,
    "conformance2/misc/null-object-behaviour-2.html": 0.5709,
    "conformance2/misc/object-deletion-behaviour-2.html": 0.3356,
    "conformance2/misc/uninitialized-test-2.html": 10.0144,
    "conformance2/misc/views-with-offsets.html": 0.4714,
    "conformance2/offscreencanvas/context-creation-worker.html": 0.3121,
    "conformance2/offscreencanvas/context-creation.html": 0.2449,
    "conformance2/offscreencanvas/methods-2-worker.html": 0.2827,
    "conformance2/offscreencanvas/methods-2.html": 0.281,
    "conformance2/offscreencanvas/offscreencanvas-query.html": 0.3112,
    "conformance2/offscreencanvas/offscreencanvas-sync.html": 0.2624,
    "conformance2/offscreencanvas/offscreencanvas-timer-query.html": 0.3018,
    "conformance2/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.3195,
    "conformance2/programs/active-built-in-attribs.html": 0.2988,
    "conformance2/programs/get-uniform-indices.html": 0.2354,
    "conformance2/programs/gl-get-frag-data-location.html": 0.3446,
    "conformance2/programs/sampler-uniforms.html": 0.429,
    "conformance2/query/occlusion-query.html": 6.919,
    "conformance2/query/query.html": 0.3344,
    "conformance2/reading/format-r11f-g11f-b10f.html": 0.623,
    "conformance2/reading/read-pixels-from-fbo-test.html": 3.8432,
    "conformance2/reading/read-pixels-from-rgb8-into-pbo-bug.html": 0.2362,
    "conformance2/reading/read-pixels-into-pixel-pack-buffer.html": 0.5613,
    "conformance2/reading/read-pixels-pack-parameters.html": 0.5343,
    "conformance2/renderbuffers/framebuffer-object-attachment.html": 0.3639,
    "conformance2/renderbuffers/framebuffer-test.html": 0.5028,
    "conformance2/renderbuffers/framebuffer-texture-layer.html": 0.3926,
    "conformance2/renderbuffers/invalidate-framebuffer.html": 0.4075,
    "conformance2/renderbuffers/multisample-draws-between-blits.html": 0.3152,
    "conformance2/renderbuffers/multisample-with-full-sample-counts.html": 3.1386,
    "conformance2/renderbuffers/multisampled-depth-renderbuffer-initialization.html": 0.4949,
    "conformance2/renderbuffers/multisampled-renderbuffer-initialization.html": 0.3924,
    "conformance2/renderbuffers/multisampled-stencil-renderbuffer-initialization.html": 0.4318,
    "conformance2/renderbuffers/readbuffer.html": 0.5628,
    "conformance2/rendering/attrib-type-match.html": 0.5498,
    "conformance2/rendering/blitframebuffer-filter-outofbounds.html": 0.2368,
    "conformance2/rendering/blitframebuffer-filter-srgb.html": 0.2527,
    "conformance2/rendering/blitframebuffer-multisampled-readbuffer.html": 0.3509,
    "conformance2/rendering/blitframebuffer-outside-readbuffer.html": 0.2952,
    "conformance2/rendering/blitframebuffer-r11f-g11f-b10f.html": 0.341,
    "conformance2/rendering/blitframebuffer-resolve-to-back-buffer.html": 0.527,
    "conformance2/rendering/blitframebuffer-scissor-enabled.html": 0.4492,
    "conformance2/rendering/blitframebuffer-size-overflow.html": 0.2699,
    "conformance2/rendering/blitframebuffer-srgb-and-linear-drawbuffers.html": 0.3343,
    "conformance2/rendering/blitframebuffer-stencil-only.html": 0.3712,
    "conformance2/rendering/blitframebuffer-test.html": 0.2947,
    "conformance2/rendering/blitframebuffer-unaffected-by-colormask.html": 0.2435,
    "conformance2/rendering/canvas-resizing-with-pbo-bound.html": 0.4345,
    "conformance2/rendering/clear-func-buffer-type-match.html": 0.3684,
    "conformance2/rendering/clear-srgb-color-buffer.html": 0.2424,
    "conformance2/rendering/clearbuffer-sub-source.html": 0.2704,
    "conformance2/rendering/clearbufferfv-with-alpha-false.html": 0.2375,
    "conformance2/rendering/clipping-wide-points.html": 0.3488,
    "conformance2/rendering/depth-stencil-feedback-loop.html": 0.3109,
    "conformance2/rendering/draw-buffers-dirty-state-bug.html": 0.2419,
    "conformance2/rendering/draw-buffers-driver-hang.html": 0.3613,
    "conformance2/rendering/draw-buffers-sparse-output-locations.html": 0.5101,
    "conformance2/rendering/draw-buffers.html": 0.5938,
    "conformance2/rendering/draw-with-integer-texture-base-level.html": 0.2668,
    "conformance2/rendering/element-index-uint.html": 0.5685,
    "conformance2/rendering/framebuffer-completeness-draw-framebuffer.html": 0.2634,
    "conformance2/rendering/framebuffer-completeness-unaffected.html": 0.2731,
    "conformance2/rendering/framebuffer-mismatched-attachment-targets.html": 0.392,
    "conformance2/rendering/framebuffer-render-to-layer-angle-issue.html": 0.2495,
    "conformance2/rendering/framebuffer-render-to-layer.html": 4.1582,
    "conformance2/rendering/framebuffer-texture-changing-base-level.html": 0.2379,
    "conformance2/rendering/framebuffer-texture-level1.html": 0.2687,
    "conformance2/rendering/framebuffer-to-texture.html": 0.38,
    "conformance2/rendering/framebuffer-unsupported.html": 0.2465,
    "conformance2/rendering/fs-color-type-mismatch-color-buffer-type.html": 0.3261,
    "conformance2/rendering/instanced-arrays.html": 0.3723,
    "conformance2/rendering/instanced-rendering-bug.html": 0.3621,
    "conformance2/rendering/instanced-rendering-large-divisor.html": 0.4832,
    "conformance2/rendering/line-rendering-quality.html": 0.2717,
    "conformance2/rendering/multisampling-depth-resolve.html": 0.2905,
    "conformance2/rendering/multisampling-fragment-evaluation.html": 0.2774,
    "conformance2/rendering/out-of-bounds-index-buffers-after-copying.html": 0.2493,
    "conformance2/rendering/rasterizer-discard-and-implicit-clear.html": 0.7549,
    "conformance2/rendering/read-draw-when-missing-image.html": 0.3547,
    "conformance2/rendering/rgb-format-support.html": 0.258,
    "conformance2/rendering/texture-switch-performance.html": 0,
    "conformance2/rendering/uniform-block-buffer-size.html": 0.64,
    "conformance2/rendering/vertex-id-large-count.html": 0.8476,
    "conformance2/rendering/vertex-id.html": 0.3681,
    "conformance2/samplers/multi-context-sampler-test.html": 0.3492,
    "conformance2/samplers/sampler-drawing-test.html": 0.2531,
    "conformance2/samplers/samplers.html": 0.3546,
    "conformance2/state/gl-enum-tests.html": 0.4771,
    "conformance2/state/gl-get-calls.html": 0.3914,
    "conformance2/state/gl-getstring.html": 0.2335,
    "conformance2/state/gl-object-get-calls.html": 60.8543,
    "conformance2/sync/sync-webgl-specific.html": 24.5062,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 1.7102,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.0643,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.9633,
    "conformance2/textures/canvas/tex-2d-r16f-red-float.html": 1.4618,
    "conformance2/textures/canvas/tex-2d-r16f-red-half_float.html": 1.0635,
    "conformance2/textures/canvas/tex-2d-r32f-red-float.html": 1.3341,
    "conformance2/textures/canvas/tex-2d-r8-red-unsigned_byte.html": 1.0292,
    "conformance2/textures/canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.3788,
    "conformance2/textures/canvas/tex-2d-rg16f-rg-float.html": 1.5788,
    "conformance2/textures/canvas/tex-2d-rg16f-rg-half_float.html": 1.0426,
    "conformance2/textures/canvas/tex-2d-rg32f-rg-float.html": 1.4423,
    "conformance2/textures/canvas/tex-2d-rg8-rg-unsigned_byte.html": 1.0287,
    "conformance2/textures/canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 1.1234,
    "conformance2/textures/canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.1088,
    "conformance2/textures/canvas/tex-2d-rgb16f-rgb-float.html": 1.6777,
    "conformance2/textures/canvas/tex-2d-rgb16f-rgb-half_float.html": 1.657,
    "conformance2/textures/canvas/tex-2d-rgb32f-rgb-float.html": 1.5463,
    "conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 1,
    "conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.988,
    "conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.0244,
    "conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.1095,
    "conformance2/textures/canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 1.3852,
    "conformance2/textures/canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.8597,
    "conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-float.html": 2.0138,
    "conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-half_float.html": 1.8466,
    "conformance2/textures/canvas/tex-2d-rgba16f-rgba-float.html": 1.7346,
    "conformance2/textures/canvas/tex-2d-rgba16f-rgba-half_float.html": 1.0406,
    "conformance2/textures/canvas/tex-2d-rgba32f-rgba-float.html": 1.5593,
    "conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 1.0478,
    "conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.021,
    "conformance2/textures/canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 0.9618,
    "conformance2/textures/canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.0416,
    "conformance2/textures/canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 1.219,
    "conformance2/textures/canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.3177,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 5.5733,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 5.6985,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 5.5286,
    "conformance2/textures/canvas/tex-3d-r16f-red-float.html": 5.5194,
    "conformance2/textures/canvas/tex-3d-r16f-red-half_float.html": 5.5822,
    "conformance2/textures/canvas/tex-3d-r32f-red-float.html": 5.5219,
    "conformance2/textures/canvas/tex-3d-r8-red-unsigned_byte.html": 5.5429,
    "conformance2/textures/canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 5.4888,
    "conformance2/textures/canvas/tex-3d-rg16f-rg-float.html": 5.5209,
    "conformance2/textures/canvas/tex-3d-rg16f-rg-half_float.html": 5.5533,
    "conformance2/textures/canvas/tex-3d-rg32f-rg-float.html": 5.5591,
    "conformance2/textures/canvas/tex-3d-rg8-rg-unsigned_byte.html": 5.5065,
    "conformance2/textures/canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 5.5869,
    "conformance2/textures/canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 5.5583,
    "conformance2/textures/canvas/tex-3d-rgb16f-rgb-float.html": 5.5977,
    "conformance2/textures/canvas/tex-3d-rgb16f-rgb-half_float.html": 5.6229,
    "conformance2/textures/canvas/tex-3d-rgb32f-rgb-float.html": 5.5565,
    "conformance2/textures/canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 5.5202,
    "conformance2/textures/canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 5.5426,
    "conformance2/textures/canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 5.5914,
    "conformance2/textures/canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 5.4937,
    "conformance2/textures/canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 5.4858,
    "conformance2/textures/canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 5.761,
    "conformance2/textures/canvas/tex-3d-rgb9_e5-rgb-float.html": 5.822,
    "conformance2/textures/canvas/tex-3d-rgb9_e5-rgb-half_float.html": 5.739,
    "conformance2/textures/canvas/tex-3d-rgba16f-rgba-float.html": 5.5319,
    "conformance2/textures/canvas/tex-3d-rgba16f-rgba-half_float.html": 5.5007,
    "conformance2/textures/canvas/tex-3d-rgba32f-rgba-float.html": 5.5399,
    "conformance2/textures/canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 5.5576,
    "conformance2/textures/canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 5.6055,
    "conformance2/textures/canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 5.7635,
    "conformance2/textures/canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 5.597,
    "conformance2/textures/canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 5.5525,
    "conformance2/textures/canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 5.5854,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-float.html": 2.7559,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.226,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.2792,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-float.html": 2.3997,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-half_float.html": 1.3267,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r32f-red-float.html": 2.2102,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r8-red-unsigned_byte.html": 1.2494,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r8ui-red_integer-unsigned_byte.html": 2.223,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-float.html": 2.7092,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-half_float.html": 1.3903,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg32f-rg-float.html": 2.3313,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg8-rg-unsigned_byte.html": 1.2658,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 2.141,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.3223,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-float.html": 2.8292,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-half_float.html": 2.3001,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb32f-rgb-float.html": 2.5483,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_byte.html": 1.2864,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 1.2782,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.2658,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.2956,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8-rgb-unsigned_byte.html": 1.3243,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 2.5529,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-float.html": 3.4318,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-half_float.html": 2.9729,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-float.html": 2.6372,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-half_float.html": 1.3055,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba32f-rgba-float.html": 2.3528,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_byte.html": 1.2839,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.3521,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8-rgba-unsigned_byte.html": 1.3813,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.3148,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8-rgb-unsigned_byte.html": 1.5316,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.6354,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-float.html": 2.6792,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 2.6584,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 2.7154,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r16f-red-float.html": 2.4785,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r16f-red-half_float.html": 2.3609,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r32f-red-float.html": 2.3821,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r8-red-unsigned_byte.html": 2.3325,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r8ui-red_integer-unsigned_byte.html": 2.2385,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg16f-rg-float.html": 2.8054,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg16f-rg-half_float.html": 2.488,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg32f-rg-float.html": 2.5593,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg8-rg-unsigned_byte.html": 2.3234,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 2.3096,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 2.4682,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb16f-rgb-float.html": 2.606,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb16f-rgb-half_float.html": 2.6031,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb32f-rgb-float.html": 2.7598,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb565-rgb-unsigned_byte.html": 2.4647,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 2.3725,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 2.4726,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 2.2453,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb8-rgb-unsigned_byte.html": 2.3631,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 3.0074,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb9_e5-rgb-float.html": 2.9512,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb9_e5-rgb-half_float.html": 2.9572,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba16f-rgba-float.html": 2.8825,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba16f-rgba-half_float.html": 2.4371,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba32f-rgba-float.html": 2.6724,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba4-rgba-unsigned_byte.html": 2.3661,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 2.2163,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba8-rgba-unsigned_byte.html": 2.3333,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 2.2566,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-srgb8-rgb-unsigned_byte.html": 2.2579,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 2.3009,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5769,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.7362,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.6732,
    "conformance2/textures/image/tex-2d-r16f-red-float.html": 0.5431,
    "conformance2/textures/image/tex-2d-r16f-red-half_float.html": 0.5663,
    "conformance2/textures/image/tex-2d-r32f-red-float.html": 0.5086,
    "conformance2/textures/image/tex-2d-r8-red-unsigned_byte.html": 0.5248,
    "conformance2/textures/image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.572,
    "conformance2/textures/image/tex-2d-rg16f-rg-float.html": 0.6002,
    "conformance2/textures/image/tex-2d-rg16f-rg-half_float.html": 0.609,
    "conformance2/textures/image/tex-2d-rg32f-rg-float.html": 0.5874,
    "conformance2/textures/image/tex-2d-rg8-rg-unsigned_byte.html": 0.773,
    "conformance2/textures/image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.5468,
    "conformance2/textures/image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.5902,
    "conformance2/textures/image/tex-2d-rgb16f-rgb-float.html": 0.5067,
    "conformance2/textures/image/tex-2d-rgb16f-rgb-half_float.html": 0.5492,
    "conformance2/textures/image/tex-2d-rgb32f-rgb-float.html": 0.5626,
    "conformance2/textures/image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.6567,
    "conformance2/textures/image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.4997,
    "conformance2/textures/image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.5022,
    "conformance2/textures/image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.5716,
    "conformance2/textures/image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.5059,
    "conformance2/textures/image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.6062,
    "conformance2/textures/image/tex-2d-rgb9_e5-rgb-float.html": 0.5188,
    "conformance2/textures/image/tex-2d-rgb9_e5-rgb-half_float.html": 0.5328,
    "conformance2/textures/image/tex-2d-rgba16f-rgba-float.html": 0.6263,
    "conformance2/textures/image/tex-2d-rgba16f-rgba-half_float.html": 0.7291,
    "conformance2/textures/image/tex-2d-rgba32f-rgba-float.html": 0.6156,
    "conformance2/textures/image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.524,
    "conformance2/textures/image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.5385,
    "conformance2/textures/image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.565,
    "conformance2/textures/image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.5615,
    "conformance2/textures/image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.5051,
    "conformance2/textures/image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.5469,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.5077,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.5654,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4891,
    "conformance2/textures/image/tex-3d-r16f-red-float.html": 0.5802,
    "conformance2/textures/image/tex-3d-r16f-red-half_float.html": 0.5305,
    "conformance2/textures/image/tex-3d-r32f-red-float.html": 0.5303,
    "conformance2/textures/image/tex-3d-r8-red-unsigned_byte.html": 0.5528,
    "conformance2/textures/image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.5908,
    "conformance2/textures/image/tex-3d-rg16f-rg-float.html": 0.503,
    "conformance2/textures/image/tex-3d-rg16f-rg-half_float.html": 0.5364,
    "conformance2/textures/image/tex-3d-rg32f-rg-float.html": 0.5456,
    "conformance2/textures/image/tex-3d-rg8-rg-unsigned_byte.html": 0.5122,
    "conformance2/textures/image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.5058,
    "conformance2/textures/image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.4882,
    "conformance2/textures/image/tex-3d-rgb16f-rgb-float.html": 0.6877,
    "conformance2/textures/image/tex-3d-rgb16f-rgb-half_float.html": 0.5541,
    "conformance2/textures/image/tex-3d-rgb32f-rgb-float.html": 0.4927,
    "conformance2/textures/image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.5067,
    "conformance2/textures/image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.4859,
    "conformance2/textures/image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.4912,
    "conformance2/textures/image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.5021,
    "conformance2/textures/image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.476,
    "conformance2/textures/image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.544,
    "conformance2/textures/image/tex-3d-rgb9_e5-rgb-float.html": 0.5135,
    "conformance2/textures/image/tex-3d-rgb9_e5-rgb-half_float.html": 0.4955,
    "conformance2/textures/image/tex-3d-rgba16f-rgba-float.html": 0.5315,
    "conformance2/textures/image/tex-3d-rgba16f-rgba-half_float.html": 0.5193,
    "conformance2/textures/image/tex-3d-rgba32f-rgba-float.html": 0.511,
    "conformance2/textures/image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.5516,
    "conformance2/textures/image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.5191,
    "conformance2/textures/image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.4613,
    "conformance2/textures/image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.499,
    "conformance2/textures/image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.5235,
    "conformance2/textures/image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.5173,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.8283,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.8397,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.9127,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r16f-red-float.html": 0.8318,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r16f-red-half_float.html": 0.7775,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r32f-red-float.html": 0.8047,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r8-red-unsigned_byte.html": 0.8369,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.9835,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg16f-rg-float.html": 0.8271,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg16f-rg-half_float.html": 0.8617,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg32f-rg-float.html": 0.8924,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg8-rg-unsigned_byte.html": 0.8202,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.9552,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.792,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb16f-rgb-float.html": 1.045,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb16f-rgb-half_float.html": 0.9161,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb32f-rgb-float.html": 0.8465,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb565-rgb-unsigned_byte.html": 1.0591,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.8389,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.005,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.776,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb8-rgb-unsigned_byte.html": 0.8225,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.9562,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb9_e5-rgb-float.html": 0.8763,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb9_e5-rgb-half_float.html": 1.1412,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba16f-rgba-float.html": 0.8825,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba16f-rgba-half_float.html": 0.7882,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba32f-rgba-float.html": 0.8193,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba4-rgba-unsigned_byte.html": 0.8733,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.8262,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba8-rgba-unsigned_byte.html": 0.7699,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.8286,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-srgb8-rgb-unsigned_byte.html": 0.8077,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.4368,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.3727,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.4291,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4101,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r16f-red-float.html": 0.3991,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r16f-red-half_float.html": 1.0923,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r32f-red-float.html": 0.6288,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r8-red-unsigned_byte.html": 0.4066,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.4142,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg16f-rg-float.html": 0.4183,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg16f-rg-half_float.html": 0.383,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg32f-rg-float.html": 0.4148,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg8-rg-unsigned_byte.html": 0.4176,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.4474,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.4133,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb16f-rgb-float.html": 0.4073,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb16f-rgb-half_float.html": 0.4226,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb32f-rgb-float.html": 1.0659,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb565-rgb-unsigned_byte.html": 0.4035,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.6286,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.4057,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.3916,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb8-rgb-unsigned_byte.html": 0.4303,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.6073,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb9_e5-rgb-float.html": 0.393,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb9_e5-rgb-half_float.html": 0.5606,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba16f-rgba-float.html": 0.4452,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba16f-rgba-half_float.html": 0.5852,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba32f-rgba-float.html": 0.4079,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba4-rgba-unsigned_byte.html": 0.5473,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.4234,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba8-rgba-unsigned_byte.html": 0.4176,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.4009,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-srgb8-rgb-unsigned_byte.html": 0.4013,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4123,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 1.1083,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.0051,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.9454,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r16f-red-float.html": 0.9455,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r16f-red-half_float.html": 0.8933,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r32f-red-float.html": 0.8201,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r8-red-unsigned_byte.html": 0.8916,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.8884,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg16f-rg-float.html": 1.2101,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg16f-rg-half_float.html": 0.8521,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg32f-rg-float.html": 1.0118,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg8-rg-unsigned_byte.html": 0.7916,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.8588,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.8006,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb16f-rgb-float.html": 1.1601,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb16f-rgb-half_float.html": 1.2029,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb32f-rgb-float.html": 1.0727,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 0.9355,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.8487,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.8704,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.8092,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 0.8647,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.5567,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb9_e5-rgb-float.html": 1.4187,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb9_e5-rgb-half_float.html": 1.3523,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba16f-rgba-float.html": 1.0981,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba16f-rgba-half_float.html": 0.9285,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba32f-rgba-float.html": 1.0516,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 0.9026,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.8076,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 0.8712,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.8647,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 0.847,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.905,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.702,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.6944,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.6312,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r16f-red-float.html": 0.6049,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r16f-red-half_float.html": 0.5588,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r32f-red-float.html": 0.5844,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r8-red-unsigned_byte.html": 0.565,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.5462,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg16f-rg-float.html": 1.7779,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg16f-rg-half_float.html": 0.5675,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg32f-rg-float.html": 0.5578,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg8-rg-unsigned_byte.html": 0.6542,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.6713,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.58,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb16f-rgb-float.html": 0.6987,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb16f-rgb-half_float.html": 0.7301,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb32f-rgb-float.html": 0.6493,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 0.5938,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5667,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.6807,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.5637,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 0.5378,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.8055,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb9_e5-rgb-float.html": 0.732,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb9_e5-rgb-half_float.html": 0.7008,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba16f-rgba-float.html": 0.6039,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba16f-rgba-half_float.html": 1.41,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba32f-rgba-float.html": 0.593,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 0.6488,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.5553,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 0.6084,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.5455,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 0.5511,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.5694,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5324,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5093,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.5229,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r16f-red-float.html": 0.5172,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r16f-red-half_float.html": 0.5006,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r32f-red-float.html": 0.5249,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r8-red-unsigned_byte.html": 0.5246,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.0068,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg16f-rg-float.html": 0.5659,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg16f-rg-half_float.html": 0.5109,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg32f-rg-float.html": 0.5177,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg8-rg-unsigned_byte.html": 0.5768,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.5347,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.5611,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb16f-rgb-float.html": 0.5755,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb16f-rgb-half_float.html": 0.5343,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb32f-rgb-float.html": 0.6758,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.4973,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5477,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.5462,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.5885,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.5527,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.5959,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb9_e5-rgb-float.html": 0.6057,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb9_e5-rgb-half_float.html": 0.5612,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba16f-rgba-float.html": 0.5071,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba16f-rgba-half_float.html": 0.5386,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba32f-rgba-float.html": 0.536,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.5125,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.4924,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.5652,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.5744,
    "conformance2/textures/image_bitmap_from_image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.5892,
    "conformance2/textures/image_bitmap_from_image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.5039,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.4217,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.3901,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4443,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r16f-red-float.html": 0.4543,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r16f-red-half_float.html": 0.4469,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r32f-red-float.html": 0.3594,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r8-red-unsigned_byte.html": 0.5113,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.4443,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg16f-rg-float.html": 0.4145,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg16f-rg-half_float.html": 0.3906,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg32f-rg-float.html": 0.4578,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg8-rg-unsigned_byte.html": 0.4918,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.5275,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.468,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb16f-rgb-float.html": 0.3873,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb16f-rgb-half_float.html": 0.4393,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb32f-rgb-float.html": 0.4059,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.4099,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3665,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.397,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4171,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.4119,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.4393,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb9_e5-rgb-float.html": 0.3875,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb9_e5-rgb-half_float.html": 0.3761,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba16f-rgba-float.html": 0.4503,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba16f-rgba-half_float.html": 0.4773,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba32f-rgba-float.html": 0.3892,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.5941,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.4457,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.4722,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3925,
    "conformance2/textures/image_bitmap_from_image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.3969,
    "conformance2/textures/image_bitmap_from_image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.6092,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5504,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5205,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.6251,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r16f-red-float.html": 0.517,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r16f-red-half_float.html": 0.7092,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r32f-red-float.html": 0.5664,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r8-red-unsigned_byte.html": 0.5175,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.4313,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg16f-rg-float.html": 0.4861,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg16f-rg-half_float.html": 0.5299,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg32f-rg-float.html": 0.5714,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg8-rg-unsigned_byte.html": 0.5156,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.5251,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.5502,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb16f-rgb-float.html": 0.5235,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb16f-rgb-half_float.html": 0.5623,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb32f-rgb-float.html": 0.5029,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb565-rgb-unsigned_byte.html": 0.5551,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 1.3595,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.4915,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.5092,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb8-rgb-unsigned_byte.html": 0.5094,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.504,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb9_e5-rgb-float.html": 0.5285,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb9_e5-rgb-half_float.html": 0.5536,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba16f-rgba-float.html": 0.4894,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba16f-rgba-half_float.html": 0.5327,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba32f-rgba-float.html": 0.5353,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba4-rgba-unsigned_byte.html": 0.5603,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.5059,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba8-rgba-unsigned_byte.html": 0.4958,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.5161,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-srgb8-rgb-unsigned_byte.html": 0.505,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.5801,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.4074,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.4337,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.3858,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r16f-red-float.html": 0.3971,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r16f-red-half_float.html": 0.3883,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r32f-red-float.html": 0.3645,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r8-red-unsigned_byte.html": 0.4457,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.396,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg16f-rg-float.html": 2.8501,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg16f-rg-half_float.html": 0.3651,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg32f-rg-float.html": 0.4323,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg8-rg-unsigned_byte.html": 0.4082,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 2.2257,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.4548,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb16f-rgb-float.html": 0.4039,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb16f-rgb-half_float.html": 0.3445,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb32f-rgb-float.html": 0.3679,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb565-rgb-unsigned_byte.html": 0.3646,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3868,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.4337,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4075,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb8-rgb-unsigned_byte.html": 0.3736,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.624,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb9_e5-rgb-float.html": 0.3964,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb9_e5-rgb-half_float.html": 0.5753,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba16f-rgba-float.html": 0.4054,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba16f-rgba-half_float.html": 0.3935,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba32f-rgba-float.html": 0.4554,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba4-rgba-unsigned_byte.html": 0.3496,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3627,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba8-rgba-unsigned_byte.html": 0.5373,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3723,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-srgb8-rgb-unsigned_byte.html": 0.381,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4665,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5443,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.5299,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.5913,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r16f-red-float.html": 0.5059,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r16f-red-half_float.html": 0.5008,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r32f-red-float.html": 0.4964,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r8-red-unsigned_byte.html": 0.4884,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.5259,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg16f-rg-float.html": 0.4758,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg16f-rg-half_float.html": 0.5676,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg32f-rg-float.html": 0.4878,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg8-rg-unsigned_byte.html": 0.4989,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.5203,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.5027,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb16f-rgb-float.html": 0.5066,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb16f-rgb-half_float.html": 0.5114,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb32f-rgb-float.html": 0.511,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb565-rgb-unsigned_byte.html": 1.0762,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5382,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.5292,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.5423,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb8-rgb-unsigned_byte.html": 0.526,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.5217,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb9_e5-rgb-float.html": 0.5793,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb9_e5-rgb-half_float.html": 0.5022,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba16f-rgba-float.html": 0.4809,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba16f-rgba-half_float.html": 0.5248,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba32f-rgba-float.html": 0.6019,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba4-rgba-unsigned_byte.html": 0.4991,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.5531,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba8-rgba-unsigned_byte.html": 0.5255,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.5386,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-srgb8-rgb-unsigned_byte.html": 0.4854,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.499,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.3824,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.3927,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4593,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r16f-red-float.html": 0.3613,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r16f-red-half_float.html": 0.602,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r32f-red-float.html": 0.3834,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r8-red-unsigned_byte.html": 0.3737,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.401,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg16f-rg-float.html": 0.3819,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg16f-rg-half_float.html": 0.3144,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg32f-rg-float.html": 0.3569,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg8-rg-unsigned_byte.html": 0.3126,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.3883,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.358,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb16f-rgb-float.html": 0.4156,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb16f-rgb-half_float.html": 0.3685,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb32f-rgb-float.html": 0.3587,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb565-rgb-unsigned_byte.html": 0.3355,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.4798,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.3738,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4451,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb8-rgb-unsigned_byte.html": 0.4177,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3886,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb9_e5-rgb-float.html": 0.3758,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb9_e5-rgb-half_float.html": 0.4594,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba16f-rgba-float.html": 0.3803,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba16f-rgba-half_float.html": 0.3826,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba32f-rgba-float.html": 0.3635,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba4-rgba-unsigned_byte.html": 0.3579,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.382,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba8-rgba-unsigned_byte.html": 0.4353,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3775,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-srgb8-rgb-unsigned_byte.html": 0.3907,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4284,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-float.html": 1.0808,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.1215,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.021,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r16f-red-float.html": 1.0568,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r16f-red-half_float.html": 1.0293,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r32f-red-float.html": 0.9521,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r8-red-unsigned_byte.html": 1.0871,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.966,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg16f-rg-float.html": 1.2846,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg16f-rg-half_float.html": 0.941,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg32f-rg-float.html": 0.9189,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg8-rg-unsigned_byte.html": 1.1644,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.9443,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.0361,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb16f-rgb-float.html": 0.9958,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb16f-rgb-half_float.html": 0.9754,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb32f-rgb-float.html": 1.1646,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb565-rgb-unsigned_byte.html": 0.9346,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.9603,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.9219,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.9492,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb8-rgb-unsigned_byte.html": 0.9633,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.018,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb9_e5-rgb-float.html": 1.0904,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb9_e5-rgb-half_float.html": 1.2104,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba16f-rgba-float.html": 0.9971,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba16f-rgba-half_float.html": 0.9603,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba32f-rgba-float.html": 1.0264,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba4-rgba-unsigned_byte.html": 1.0092,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.9503,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba8-rgba-unsigned_byte.html": 1.0047,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.0325,
    "conformance2/textures/image_bitmap_from_video/tex-2d-srgb8-rgb-unsigned_byte.html": 1.1568,
    "conformance2/textures/image_bitmap_from_video/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.9638,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-float.html": 1.0455,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.9666,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.0748,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r16f-red-float.html": 0.9842,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r16f-red-half_float.html": 0.9725,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r32f-red-float.html": 0.9674,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r8-red-unsigned_byte.html": 1.0166,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.9448,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg16f-rg-float.html": 1.0036,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg16f-rg-half_float.html": 0.9967,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg32f-rg-float.html": 0.9924,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg8-rg-unsigned_byte.html": 0.9867,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 1.0458,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.0907,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb16f-rgb-float.html": 1.0322,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb16f-rgb-half_float.html": 1.0075,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb32f-rgb-float.html": 1.0392,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb565-rgb-unsigned_byte.html": 1.0597,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.9488,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.9599,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.9591,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb8-rgb-unsigned_byte.html": 0.9373,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 1.0835,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb9_e5-rgb-float.html": 1.0421,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb9_e5-rgb-half_float.html": 1.0366,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba16f-rgba-float.html": 1.0306,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba16f-rgba-half_float.html": 1.0346,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba32f-rgba-float.html": 1.0712,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba4-rgba-unsigned_byte.html": 0.9863,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.9673,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba8-rgba-unsigned_byte.html": 0.949,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 1.1701,
    "conformance2/textures/image_bitmap_from_video/tex-3d-srgb8-rgb-unsigned_byte.html": 0.9514,
    "conformance2/textures/image_bitmap_from_video/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.9961,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.9014,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.7965,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.8387,
    "conformance2/textures/image_data/tex-2d-r16f-red-float.html": 0.872,
    "conformance2/textures/image_data/tex-2d-r16f-red-half_float.html": 0.8447,
    "conformance2/textures/image_data/tex-2d-r32f-red-float.html": 0.8256,
    "conformance2/textures/image_data/tex-2d-r8-red-unsigned_byte.html": 0.8861,
    "conformance2/textures/image_data/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.9311,
    "conformance2/textures/image_data/tex-2d-rg16f-rg-float.html": 0.9224,
    "conformance2/textures/image_data/tex-2d-rg16f-rg-half_float.html": 0.8877,
    "conformance2/textures/image_data/tex-2d-rg32f-rg-float.html": 0.9407,
    "conformance2/textures/image_data/tex-2d-rg8-rg-unsigned_byte.html": 0.9597,
    "conformance2/textures/image_data/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.8321,
    "conformance2/textures/image_data/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.8117,
    "conformance2/textures/image_data/tex-2d-rgb16f-rgb-float.html": 0.8743,
    "conformance2/textures/image_data/tex-2d-rgb16f-rgb-half_float.html": 0.8071,
    "conformance2/textures/image_data/tex-2d-rgb32f-rgb-float.html": 0.8797,
    "conformance2/textures/image_data/tex-2d-rgb565-rgb-unsigned_byte.html": 0.877,
    "conformance2/textures/image_data/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.8247,
    "conformance2/textures/image_data/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.8584,
    "conformance2/textures/image_data/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.8645,
    "conformance2/textures/image_data/tex-2d-rgb8-rgb-unsigned_byte.html": 0.8619,
    "conformance2/textures/image_data/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.926,
    "conformance2/textures/image_data/tex-2d-rgb9_e5-rgb-float.html": 0.833,
    "conformance2/textures/image_data/tex-2d-rgb9_e5-rgb-half_float.html": 0.8062,
    "conformance2/textures/image_data/tex-2d-rgba16f-rgba-float.html": 0.9161,
    "conformance2/textures/image_data/tex-2d-rgba16f-rgba-half_float.html": 0.8189,
    "conformance2/textures/image_data/tex-2d-rgba32f-rgba-float.html": 0.8876,
    "conformance2/textures/image_data/tex-2d-rgba4-rgba-unsigned_byte.html": 0.8743,
    "conformance2/textures/image_data/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.8825,
    "conformance2/textures/image_data/tex-2d-rgba8-rgba-unsigned_byte.html": 0.857,
    "conformance2/textures/image_data/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.8775,
    "conformance2/textures/image_data/tex-2d-srgb8-rgb-unsigned_byte.html": 0.8771,
    "conformance2/textures/image_data/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.8588,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.7152,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.7465,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.7544,
    "conformance2/textures/image_data/tex-3d-r16f-red-float.html": 0.7492,
    "conformance2/textures/image_data/tex-3d-r16f-red-half_float.html": 0.8114,
    "conformance2/textures/image_data/tex-3d-r32f-red-float.html": 0.6953,
    "conformance2/textures/image_data/tex-3d-r8-red-unsigned_byte.html": 0.7203,
    "conformance2/textures/image_data/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.6888,
    "conformance2/textures/image_data/tex-3d-rg16f-rg-float.html": 0.7021,
    "conformance2/textures/image_data/tex-3d-rg16f-rg-half_float.html": 0.7739,
    "conformance2/textures/image_data/tex-3d-rg32f-rg-float.html": 0.7541,
    "conformance2/textures/image_data/tex-3d-rg8-rg-unsigned_byte.html": 0.7195,
    "conformance2/textures/image_data/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.7488,
    "conformance2/textures/image_data/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.6875,
    "conformance2/textures/image_data/tex-3d-rgb16f-rgb-float.html": 0.7427,
    "conformance2/textures/image_data/tex-3d-rgb16f-rgb-half_float.html": 0.7237,
    "conformance2/textures/image_data/tex-3d-rgb32f-rgb-float.html": 0.6841,
    "conformance2/textures/image_data/tex-3d-rgb565-rgb-unsigned_byte.html": 0.7481,
    "conformance2/textures/image_data/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.7686,
    "conformance2/textures/image_data/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.7621,
    "conformance2/textures/image_data/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.7558,
    "conformance2/textures/image_data/tex-3d-rgb8-rgb-unsigned_byte.html": 0.7364,
    "conformance2/textures/image_data/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.7347,
    "conformance2/textures/image_data/tex-3d-rgb9_e5-rgb-float.html": 0.7799,
    "conformance2/textures/image_data/tex-3d-rgb9_e5-rgb-half_float.html": 0.8083,
    "conformance2/textures/image_data/tex-3d-rgba16f-rgba-float.html": 0.7777,
    "conformance2/textures/image_data/tex-3d-rgba16f-rgba-half_float.html": 0.7107,
    "conformance2/textures/image_data/tex-3d-rgba32f-rgba-float.html": 0.7424,
    "conformance2/textures/image_data/tex-3d-rgba4-rgba-unsigned_byte.html": 0.7566,
    "conformance2/textures/image_data/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.7663,
    "conformance2/textures/image_data/tex-3d-rgba8-rgba-unsigned_byte.html": 0.7076,
    "conformance2/textures/image_data/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.7145,
    "conformance2/textures/image_data/tex-3d-srgb8-rgb-unsigned_byte.html": 0.8177,
    "conformance2/textures/image_data/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.713,
    "conformance2/textures/misc/active-3d-texture-bug.html": 0.2677,
    "conformance2/textures/misc/angle-stuck-depth-textures.html": 0.3328,
    "conformance2/textures/misc/canvas-remains-unchanged-after-used-in-webgl-texture.html": 0.2309,
    "conformance2/textures/misc/compressed-tex-from-pbo-crash.html": 0.2846,
    "conformance2/textures/misc/compressed-tex-image.html": 0.433,
    "conformance2/textures/misc/copy-texture-cube-map-AMD-bug.html": 0.2881,
    "conformance2/textures/misc/copy-texture-cube-map-bug.html": 0.2627,
    "conformance2/textures/misc/copy-texture-image-luma-format.html": 4.2006,
    "conformance2/textures/misc/copy-texture-image-same-texture.html": 0.3784,
    "conformance2/textures/misc/copy-texture-image-webgl-specific.html": 0.3895,
    "conformance2/textures/misc/copy-texture-image.html": 0.4337,
    "conformance2/textures/misc/generate-mipmap-with-large-base-level.html": 0.2423,
    "conformance2/textures/misc/gl-get-tex-parameter.html": 0.4961,
    "conformance2/textures/misc/immutable-tex-render-feedback.html": 1.7115,
    "conformance2/textures/misc/integer-cubemap-specification-order-bug.html": 0.4752,
    "conformance2/textures/misc/integer-cubemap-texture-sampling.html": 1.7659,
    "conformance2/textures/misc/mipmap-fbo.html": 0.2339,
    "conformance2/textures/misc/npot-video-sizing.html": 0.4512,
    "conformance2/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.2982,
    "conformance2/textures/misc/tex-3d-mipmap-levels-intel-bug.html": 0.3444,
    "conformance2/textures/misc/tex-3d-size-limit.html": 0.3196,
    "conformance2/textures/misc/tex-base-level-bug.html": 0.2817,
    "conformance2/textures/misc/tex-image-and-sub-image-with-array-buffer-view-sub-source.html": 0.5007,
    "conformance2/textures/misc/tex-image-with-bad-args-from-dom-elements.html": 0.6986,
    "conformance2/textures/misc/tex-image-with-bad-args.html": 0.3331,
    "conformance2/textures/misc/tex-image-with-different-data-source.html": 0.2781,
    "conformance2/textures/misc/tex-input-validation.html": 0.5152,
    "conformance2/textures/misc/tex-mipmap-levels.html": 0.3317,
    "conformance2/textures/misc/tex-new-formats.html": 0.6343,
    "conformance2/textures/misc/tex-srgb-mipmap.html": 0.2971,
    "conformance2/textures/misc/tex-storage-2d.html": 0.4579,
    "conformance2/textures/misc/tex-storage-and-subimage-3d.html": 0.375,
    "conformance2/textures/misc/tex-storage-compressed-formats.html": 0.4043,
    "conformance2/textures/misc/tex-subimage3d-canvas-bug.html": 0.3072,
    "conformance2/textures/misc/tex-subimage3d-pixel-buffer-bug.html": 0.3321,
    "conformance2/textures/misc/tex-unpack-params-imagedata.html": 0.2239,
    "conformance2/textures/misc/tex-unpack-params-with-flip-y-and-premultiply-alpha.html": 0.6441,
    "conformance2/textures/misc/tex-unpack-params.html": 0.8594,
    "conformance2/textures/misc/texel-fetch-undefined.html": 0.304,
    "conformance2/textures/misc/texture-npot.html": 0.3051,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.3597,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.3906,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4151,
    "conformance2/textures/svg_image/tex-2d-r16f-red-float.html": 0.3632,
    "conformance2/textures/svg_image/tex-2d-r16f-red-half_float.html": 0.3979,
    "conformance2/textures/svg_image/tex-2d-r32f-red-float.html": 0.4438,
    "conformance2/textures/svg_image/tex-2d-r8-red-unsigned_byte.html": 0.3754,
    "conformance2/textures/svg_image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.3714,
    "conformance2/textures/svg_image/tex-2d-rg16f-rg-float.html": 0.3806,
    "conformance2/textures/svg_image/tex-2d-rg16f-rg-half_float.html": 0.3438,
    "conformance2/textures/svg_image/tex-2d-rg32f-rg-float.html": 0.4263,
    "conformance2/textures/svg_image/tex-2d-rg8-rg-unsigned_byte.html": 0.3515,
    "conformance2/textures/svg_image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.3735,
    "conformance2/textures/svg_image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3626,
    "conformance2/textures/svg_image/tex-2d-rgb16f-rgb-float.html": 0.3666,
    "conformance2/textures/svg_image/tex-2d-rgb16f-rgb-half_float.html": 0.3896,
    "conformance2/textures/svg_image/tex-2d-rgb32f-rgb-float.html": 0.4045,
    "conformance2/textures/svg_image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.3442,
    "conformance2/textures/svg_image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.345,
    "conformance2/textures/svg_image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.3746,
    "conformance2/textures/svg_image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.4044,
    "conformance2/textures/svg_image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.3433,
    "conformance2/textures/svg_image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3426,
    "conformance2/textures/svg_image/tex-2d-rgb9_e5-rgb-float.html": 0.3346,
    "conformance2/textures/svg_image/tex-2d-rgb9_e5-rgb-half_float.html": 0.3289,
    "conformance2/textures/svg_image/tex-2d-rgba16f-rgba-float.html": 0.3364,
    "conformance2/textures/svg_image/tex-2d-rgba16f-rgba-half_float.html": 0.3927,
    "conformance2/textures/svg_image/tex-2d-rgba32f-rgba-float.html": 0.3281,
    "conformance2/textures/svg_image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.4176,
    "conformance2/textures/svg_image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3299,
    "conformance2/textures/svg_image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.3447,
    "conformance2/textures/svg_image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3706,
    "conformance2/textures/svg_image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.377,
    "conformance2/textures/svg_image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.3216,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.2795,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.2831,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.3454,
    "conformance2/textures/svg_image/tex-3d-r16f-red-float.html": 0.3006,
    "conformance2/textures/svg_image/tex-3d-r16f-red-half_float.html": 0.3518,
    "conformance2/textures/svg_image/tex-3d-r32f-red-float.html": 0.2865,
    "conformance2/textures/svg_image/tex-3d-r8-red-unsigned_byte.html": 0.2639,
    "conformance2/textures/svg_image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.262,
    "conformance2/textures/svg_image/tex-3d-rg16f-rg-float.html": 0.347,
    "conformance2/textures/svg_image/tex-3d-rg16f-rg-half_float.html": 0.4081,
    "conformance2/textures/svg_image/tex-3d-rg32f-rg-float.html": 0.3493,
    "conformance2/textures/svg_image/tex-3d-rg8-rg-unsigned_byte.html": 0.2861,
    "conformance2/textures/svg_image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.3029,
    "conformance2/textures/svg_image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2973,
    "conformance2/textures/svg_image/tex-3d-rgb16f-rgb-float.html": 0.3042,
    "conformance2/textures/svg_image/tex-3d-rgb16f-rgb-half_float.html": 0.2726,
    "conformance2/textures/svg_image/tex-3d-rgb32f-rgb-float.html": 0.2839,
    "conformance2/textures/svg_image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.2605,
    "conformance2/textures/svg_image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2547,
    "conformance2/textures/svg_image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.2884,
    "conformance2/textures/svg_image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2552,
    "conformance2/textures/svg_image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.3538,
    "conformance2/textures/svg_image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2763,
    "conformance2/textures/svg_image/tex-3d-rgb9_e5-rgb-float.html": 0.3592,
    "conformance2/textures/svg_image/tex-3d-rgb9_e5-rgb-half_float.html": 0.275,
    "conformance2/textures/svg_image/tex-3d-rgba16f-rgba-float.html": 0.2658,
    "conformance2/textures/svg_image/tex-3d-rgba16f-rgba-half_float.html": 0.2537,
    "conformance2/textures/svg_image/tex-3d-rgba32f-rgba-float.html": 0.2708,
    "conformance2/textures/svg_image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.3576,
    "conformance2/textures/svg_image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3507,
    "conformance2/textures/svg_image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.2511,
    "conformance2/textures/svg_image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.304,
    "conformance2/textures/svg_image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.2871,
    "conformance2/textures/svg_image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2529,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-float.html": 1.6936,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.6681,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.6526,
    "conformance2/textures/video/tex-2d-r16f-red-float.html": 1.6214,
    "conformance2/textures/video/tex-2d-r16f-red-half_float.html": 1.814,
    "conformance2/textures/video/tex-2d-r32f-red-float.html": 1.7097,
    "conformance2/textures/video/tex-2d-r8-red-unsigned_byte.html": 1.6254,
    "conformance2/textures/video/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.6963,
    "conformance2/textures/video/tex-2d-rg16f-rg-float.html": 1.6857,
    "conformance2/textures/video/tex-2d-rg16f-rg-half_float.html": 1.6947,
    "conformance2/textures/video/tex-2d-rg32f-rg-float.html": 1.6135,
    "conformance2/textures/video/tex-2d-rg8-rg-unsigned_byte.html": 1.8795,
    "conformance2/textures/video/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 1.7474,
    "conformance2/textures/video/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.758,
    "conformance2/textures/video/tex-2d-rgb16f-rgb-float.html": 1.6458,
    "conformance2/textures/video/tex-2d-rgb16f-rgb-half_float.html": 1.7554,
    "conformance2/textures/video/tex-2d-rgb32f-rgb-float.html": 1.6872,
    "conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_byte.html": 1.7352,
    "conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 1.6736,
    "conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.82,
    "conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.6894,
    "conformance2/textures/video/tex-2d-rgb8-rgb-unsigned_byte.html": 1.8953,
    "conformance2/textures/video/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.7817,
    "conformance2/textures/video/tex-2d-rgb9_e5-rgb-float.html": 1.7299,
    "conformance2/textures/video/tex-2d-rgb9_e5-rgb-half_float.html": 1.7628,
    "conformance2/textures/video/tex-2d-rgba16f-rgba-float.html": 1.6801,
    "conformance2/textures/video/tex-2d-rgba16f-rgba-half_float.html": 1.7433,
    "conformance2/textures/video/tex-2d-rgba32f-rgba-float.html": 1.6068,
    "conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_byte.html": 1.7054,
    "conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.9249,
    "conformance2/textures/video/tex-2d-rgba8-rgba-unsigned_byte.html": 1.7204,
    "conformance2/textures/video/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.6833,
    "conformance2/textures/video/tex-2d-srgb8-rgb-unsigned_byte.html": 1.7692,
    "conformance2/textures/video/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.7895,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-float.html": 1.5713,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 1.5632,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.6257,
    "conformance2/textures/video/tex-3d-r16f-red-float.html": 1.5674,
    "conformance2/textures/video/tex-3d-r16f-red-half_float.html": 1.6332,
    "conformance2/textures/video/tex-3d-r32f-red-float.html": 1.6524,
    "conformance2/textures/video/tex-3d-r8-red-unsigned_byte.html": 1.6001,
    "conformance2/textures/video/tex-3d-r8ui-red_integer-unsigned_byte.html": 1.7032,
    "conformance2/textures/video/tex-3d-rg16f-rg-float.html": 1.5963,
    "conformance2/textures/video/tex-3d-rg16f-rg-half_float.html": 1.6542,
    "conformance2/textures/video/tex-3d-rg32f-rg-float.html": 1.6494,
    "conformance2/textures/video/tex-3d-rg8-rg-unsigned_byte.html": 1.599,
    "conformance2/textures/video/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 1.7004,
    "conformance2/textures/video/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.6558,
    "conformance2/textures/video/tex-3d-rgb16f-rgb-float.html": 1.6512,
    "conformance2/textures/video/tex-3d-rgb16f-rgb-half_float.html": 1.5978,
    "conformance2/textures/video/tex-3d-rgb32f-rgb-float.html": 1.5902,
    "conformance2/textures/video/tex-3d-rgb565-rgb-unsigned_byte.html": 1.6451,
    "conformance2/textures/video/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 1.7031,
    "conformance2/textures/video/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 1.7112,
    "conformance2/textures/video/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.6933,
    "conformance2/textures/video/tex-3d-rgb8-rgb-unsigned_byte.html": 1.5668,
    "conformance2/textures/video/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 1.737,
    "conformance2/textures/video/tex-3d-rgb9_e5-rgb-float.html": 1.613,
    "conformance2/textures/video/tex-3d-rgb9_e5-rgb-half_float.html": 1.6168,
    "conformance2/textures/video/tex-3d-rgba16f-rgba-float.html": 1.6497,
    "conformance2/textures/video/tex-3d-rgba16f-rgba-half_float.html": 1.5573,
    "conformance2/textures/video/tex-3d-rgba32f-rgba-float.html": 1.6488,
    "conformance2/textures/video/tex-3d-rgba4-rgba-unsigned_byte.html": 1.6099,
    "conformance2/textures/video/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.6204,
    "conformance2/textures/video/tex-3d-rgba8-rgba-unsigned_byte.html": 1.5352,
    "conformance2/textures/video/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 1.5637,
    "conformance2/textures/video/tex-3d-srgb8-rgb-unsigned_byte.html": 1.6119,
    "conformance2/textures/video/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 1.6312,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 2.0357,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.4643,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.3997,
    "conformance2/textures/webgl_canvas/tex-2d-r16f-red-float.html": 1.9045,
    "conformance2/textures/webgl_canvas/tex-2d-r16f-red-half_float.html": 1.4736,
    "conformance2/textures/webgl_canvas/tex-2d-r32f-red-float.html": 1.9508,
    "conformance2/textures/webgl_canvas/tex-2d-r8-red-unsigned_byte.html": 1.46,
    "conformance2/textures/webgl_canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.8529,
    "conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-float.html": 1.9971,
    "conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-half_float.html": 1.649,
    "conformance2/textures/webgl_canvas/tex-2d-rg32f-rg-float.html": 1.9159,
    "conformance2/textures/webgl_canvas/tex-2d-rg8-rg-unsigned_byte.html": 1.3927,
    "conformance2/textures/webgl_canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 1.4276,
    "conformance2/textures/webgl_canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.4807,
    "conformance2/textures/webgl_canvas/tex-2d-rgb16f-rgb-float.html": 1.8879,
    "conformance2/textures/webgl_canvas/tex-2d-rgb16f-rgb-half_float.html": 1.902,
    "conformance2/textures/webgl_canvas/tex-2d-rgb32f-rgb-float.html": 1.9714,
    "conformance2/textures/webgl_canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 1.5177,
    "conformance2/textures/webgl_canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 1.4404,
    "conformance2/textures/webgl_canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.3901,
    "conformance2/textures/webgl_canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.5407,
    "conformance2/textures/webgl_canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 1.4462,
    "conformance2/textures/webgl_canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 2.0559,
    "conformance2/textures/webgl_canvas/tex-2d-rgb9_e5-rgb-float.html": 2.349,
    "conformance2/textures/webgl_canvas/tex-2d-rgb9_e5-rgb-half_float.html": 2.1109,
    "conformance2/textures/webgl_canvas/tex-2d-rgba16f-rgba-float.html": 2.1513,
    "conformance2/textures/webgl_canvas/tex-2d-rgba16f-rgba-half_float.html": 1.5015,
    "conformance2/textures/webgl_canvas/tex-2d-rgba32f-rgba-float.html": 1.9005,
    "conformance2/textures/webgl_canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 1.3959,
    "conformance2/textures/webgl_canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.4264,
    "conformance2/textures/webgl_canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 1.5063,
    "conformance2/textures/webgl_canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.4384,
    "conformance2/textures/webgl_canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 1.5979,
    "conformance2/textures/webgl_canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.5894,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 5.6857,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 5.7289,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 5.8089,
    "conformance2/textures/webgl_canvas/tex-3d-r16f-red-float.html": 5.6988,
    "conformance2/textures/webgl_canvas/tex-3d-r16f-red-half_float.html": 5.6271,
    "conformance2/textures/webgl_canvas/tex-3d-r32f-red-float.html": 5.6945,
    "conformance2/textures/webgl_canvas/tex-3d-r8-red-unsigned_byte.html": 5.5527,
    "conformance2/textures/webgl_canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 5.7089,
    "conformance2/textures/webgl_canvas/tex-3d-rg16f-rg-float.html": 5.6303,
    "conformance2/textures/webgl_canvas/tex-3d-rg16f-rg-half_float.html": 5.6716,
    "conformance2/textures/webgl_canvas/tex-3d-rg32f-rg-float.html": 5.6992,
    "conformance2/textures/webgl_canvas/tex-3d-rg8-rg-unsigned_byte.html": 5.5958,
    "conformance2/textures/webgl_canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 5.6809,
    "conformance2/textures/webgl_canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 5.5646,
    "conformance2/textures/webgl_canvas/tex-3d-rgb16f-rgb-float.html": 5.7614,
    "conformance2/textures/webgl_canvas/tex-3d-rgb16f-rgb-half_float.html": 5.6462,
    "conformance2/textures/webgl_canvas/tex-3d-rgb32f-rgb-float.html": 5.7228,
    "conformance2/textures/webgl_canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 5.6645,
    "conformance2/textures/webgl_canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 5.6221,
    "conformance2/textures/webgl_canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 5.6932,
    "conformance2/textures/webgl_canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 5.6538,
    "conformance2/textures/webgl_canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 5.687,
    "conformance2/textures/webgl_canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 5.8581,
    "conformance2/textures/webgl_canvas/tex-3d-rgb9_e5-rgb-float.html": 5.6735,
    "conformance2/textures/webgl_canvas/tex-3d-rgb9_e5-rgb-half_float.html": 5.6266,
    "conformance2/textures/webgl_canvas/tex-3d-rgba16f-rgba-float.html": 5.6879,
    "conformance2/textures/webgl_canvas/tex-3d-rgba16f-rgba-half_float.html": 5.6338,
    "conformance2/textures/webgl_canvas/tex-3d-rgba32f-rgba-float.html": 5.716,
    "conformance2/textures/webgl_canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 5.7028,
    "conformance2/textures/webgl_canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 5.6452,
    "conformance2/textures/webgl_canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 5.5292,
    "conformance2/textures/webgl_canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 5.6805,
    "conformance2/textures/webgl_canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 5.6082,
    "conformance2/textures/webgl_canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 5.6757,
    "conformance2/transform_feedback/default_transform_feedback.html": 0.3215,
    "conformance2/transform_feedback/non-existent-varying.html": 0.289,
    "conformance2/transform_feedback/same-buffer-two-binding-points.html": 0.3809,
    "conformance2/transform_feedback/simultaneous_binding.html": 5.911,
    "conformance2/transform_feedback/switching-objects.html": 0.3358,
    "conformance2/transform_feedback/too-small-buffers.html": 0.4138,
    "conformance2/transform_feedback/transform_feedback.html": 3.1307,
    "conformance2/transform_feedback/two-unreferenced-varyings.html": 0.3173,
    "conformance2/transform_feedback/unwritten-output-defaults-to-zero.html": 0.287,
    "conformance2/uniforms/dependent-buffer-change.html": 0.3031,
    "conformance2/uniforms/draw-with-uniform-blocks.html": 0.3267,
    "conformance2/uniforms/gl-uniform-arrays-sub-source.html": 1.1127,
    "conformance2/uniforms/incompatible-texture-type-for-sampler.html": 2.7982,
    "conformance2/uniforms/large-uniform-buffers.html": 0.2562,
    "conformance2/uniforms/query-uniform-blocks-after-shader-detach.html": 0.269,
    "conformance2/uniforms/simple-buffer-change.html": 0.242,
    "conformance2/uniforms/uniform-blocks-with-arrays.html": 0.2942,
    "conformance2/vertex_arrays/vertex-array-object-and-disabled-attributes.html": 0.2573,
    "conformance2/vertex_arrays/vertex-array-object.html": 0.3942,
    "deqp/data/gles3/shaders/arrays.html": 4.9954,
    "deqp/data/gles3/shaders/conditionals.html": 1.8442,
    "deqp/data/gles3/shaders/constant_expressions.html": 1.9636,
    "deqp/data/gles3/shaders/constants.html": 3.9189,
    "deqp/data/gles3/shaders/conversions_matrix_combine.html": 20.1245,
    "deqp/data/gles3/shaders/conversions_matrix_to_matrix.html": 8.97,
    "deqp/data/gles3/shaders/conversions_scalar_to_matrix.html": 6.8024,
    "deqp/data/gles3/shaders/conversions_scalar_to_scalar.html": 3.0302,
    "deqp/data/gles3/shaders/conversions_scalar_to_vector.html": 8.5227,
    "deqp/data/gles3/shaders/conversions_vector_combine.html": 30.7615,
    "deqp/data/gles3/shaders/conversions_vector_illegal.html": 1.9398,
    "deqp/data/gles3/shaders/conversions_vector_to_scalar.html": 6.9232,
    "deqp/data/gles3/shaders/conversions_vector_to_vector.html": 12.8697,
    "deqp/data/gles3/shaders/declarations.html": 1.112,
    "deqp/data/gles3/shaders/fragdata.html": 0.4136,
    "deqp/data/gles3/shaders/functions.html": 11.717,
    "deqp/data/gles3/shaders/invalid_texture_functions.html": 1.944,
    "deqp/data/gles3/shaders/keywords.html": 4.8038,
    "deqp/data/gles3/shaders/linkage.html": 5.3628,
    "deqp/data/gles3/shaders/negative.html": 0.5065,
    "deqp/data/gles3/shaders/preprocessor.html": 10.6763,
    "deqp/data/gles3/shaders/qualification_order.html": 1.7907,
    "deqp/data/gles3/shaders/scoping.html": 2.4583,
    "deqp/data/gles3/shaders/switch.html": 0.9654,
    "deqp/data/gles3/shaders/swizzles_bvec2.html": 2.9281,
    "deqp/data/gles3/shaders/swizzles_bvec3.html": 5.3557,
    "deqp/data/gles3/shaders/swizzles_bvec4.html": 6.7387,
    "deqp/data/gles3/shaders/swizzles_ivec2.html": 3.1151,
    "deqp/data/gles3/shaders/swizzles_ivec3.html": 5.204,
    "deqp/data/gles3/shaders/swizzles_ivec4.html": 6.1007,
    "deqp/data/gles3/shaders/swizzles_vec2.html": 2.9518,
    "deqp/data/gles3/shaders/swizzles_vec3.html": 5.0036,
    "deqp/data/gles3/shaders/swizzles_vec4.html": 6.1123,
    "deqp/framework/opengl/simplereference/referencecontext.html": 1.9924,
    "deqp/functional/gles3/attriblocation.html": 6.6875,
    "deqp/functional/gles3/booleanstatequery.html": 0.4417,
    "deqp/functional/gles3/buffercopy.html": 5.1712,
    "deqp/functional/gles3/bufferobjectquery.html": 0.4909,
    "deqp/functional/gles3/clipping.html": 9.9817,
    "deqp/functional/gles3/defaultvertexattribute.html": 5.9152,
    "deqp/functional/gles3/draw/draw_arrays.html": 40.4743,
    "deqp/functional/gles3/draw/draw_arrays_instanced.html": 47.6688,
    "deqp/functional/gles3/draw/draw_elements.html": 25.4024,
    "deqp/functional/gles3/draw/draw_elements_instanced.html": 33.5208,
    "deqp/functional/gles3/draw/draw_range_elements.html": 15.8596,
    "deqp/functional/gles3/draw/instancing.html": 1.0407,
    "deqp/functional/gles3/draw/random.html": 24.545,
    "deqp/functional/gles3/fbocolorbuffer/blend.html": 10.2322,
    "deqp/functional/gles3/fbocolorbuffer/clear.html": 3.2283,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_00.html": 13.48,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_01.html": 12.6219,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_02.html": 14.1271,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_03.html": 11.8984,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_04.html": 13.2873,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_05.html": 11.6447,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_00.html": 16.2957,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_01.html": 15.3425,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_02.html": 15.7487,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_03.html": 15.9546,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_04.html": 15.6598,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_05.html": 14.4534,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_00.html": 15.7619,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_01.html": 14.9789,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_02.html": 14.9655,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_03.html": 15.2606,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_04.html": 14.9958,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_05.html": 12.2264,
    "deqp/functional/gles3/fbocolorbuffer/texcube_00.html": 17.8303,
    "deqp/functional/gles3/fbocolorbuffer/texcube_01.html": 16.1472,
    "deqp/functional/gles3/fbocolorbuffer/texcube_02.html": 17.044,
    "deqp/functional/gles3/fbocolorbuffer/texcube_03.html": 15.5139,
    "deqp/functional/gles3/fbocolorbuffer/texcube_04.html": 16.5058,
    "deqp/functional/gles3/fbocolorbuffer/texcube_05.html": 14.9026,
    "deqp/functional/gles3/fbocompleteness.html": 3.753,
    "deqp/functional/gles3/fbodepthbuffer.html": 9.6947,
    "deqp/functional/gles3/fboinvalidate/default.html": 25.3968,
    "deqp/functional/gles3/fboinvalidate/format_00.html": 10.3096,
    "deqp/functional/gles3/fboinvalidate/format_01.html": 10.6146,
    "deqp/functional/gles3/fboinvalidate/format_02.html": 10.7957,
    "deqp/functional/gles3/fboinvalidate/sub.html": 16.7372,
    "deqp/functional/gles3/fboinvalidate/target.html": 26.4628,
    "deqp/functional/gles3/fboinvalidate/whole.html": 16.8586,
    "deqp/functional/gles3/fbomultisample.2_samples.html": 29.1239,
    "deqp/functional/gles3/fbomultisample.4_samples.html": 31.3422,
    "deqp/functional/gles3/fbomultisample.8_samples.html": 0.8393,
    "deqp/functional/gles3/fborender/recreate_color_00.html": 9.9168,
    "deqp/functional/gles3/fborender/recreate_color_01.html": 11.0069,
    "deqp/functional/gles3/fborender/recreate_color_02.html": 10.0637,
    "deqp/functional/gles3/fborender/recreate_color_03.html": 10.2045,
    "deqp/functional/gles3/fborender/recreate_color_04.html": 10.4701,
    "deqp/functional/gles3/fborender/recreate_color_05.html": 10.6923,
    "deqp/functional/gles3/fborender/recreate_color_06.html": 10.0142,
    "deqp/functional/gles3/fborender/recreate_depth_stencil.html": 13.1208,
    "deqp/functional/gles3/fborender/resize_00.html": 10.1649,
    "deqp/functional/gles3/fborender/resize_01.html": 9.8832,
    "deqp/functional/gles3/fborender/resize_02.html": 10.1059,
    "deqp/functional/gles3/fborender/resize_03.html": 18.1748,
    "deqp/functional/gles3/fborender/shared_colorbuffer_00.html": 14.4598,
    "deqp/functional/gles3/fborender/shared_colorbuffer_01.html": 14.8659,
    "deqp/functional/gles3/fborender/shared_colorbuffer_02.html": 18.0337,
    "deqp/functional/gles3/fborender/shared_colorbuffer_clear.html": 4.5882,
    "deqp/functional/gles3/fborender/shared_depth_stencil.html": 11.0607,
    "deqp/functional/gles3/fborender/stencil_clear.html": 4.4705,
    "deqp/functional/gles3/fbostatequery.html": 0.4807,
    "deqp/functional/gles3/fbostencilbuffer.html": 9.8908,
    "deqp/functional/gles3/floatstatequery.html": 0.8087,
    "deqp/functional/gles3/fragdepth.html": 3.208,
    "deqp/functional/gles3/fragmentoutput/array.fixed.html": 5.851,
    "deqp/functional/gles3/fragmentoutput/array.float.html": 13.8744,
    "deqp/functional/gles3/fragmentoutput/array.int.html": 10.6057,
    "deqp/functional/gles3/fragmentoutput/array.uint.html": 11.592,
    "deqp/functional/gles3/fragmentoutput/basic.fixed.html": 3.357,
    "deqp/functional/gles3/fragmentoutput/basic.float.html": 7.3152,
    "deqp/functional/gles3/fragmentoutput/basic.int.html": 5.2299,
    "deqp/functional/gles3/fragmentoutput/basic.uint.html": 5.8269,
    "deqp/functional/gles3/fragmentoutput/random_00.html": 6.361,
    "deqp/functional/gles3/fragmentoutput/random_01.html": 6.8024,
    "deqp/functional/gles3/fragmentoutput/random_02.html": 6.6593,
    "deqp/functional/gles3/framebufferblit/conversion_00.html": 6.5648,
    "deqp/functional/gles3/framebufferblit/conversion_01.html": 6.2401,
    "deqp/functional/gles3/framebufferblit/conversion_02.html": 6.5753,
    "deqp/functional/gles3/framebufferblit/conversion_03.html": 7.5742,
    "deqp/functional/gles3/framebufferblit/conversion_04.html": 9.8322,
    "deqp/functional/gles3/framebufferblit/conversion_05.html": 6.5017,
    "deqp/functional/gles3/framebufferblit/conversion_06.html": 7.0984,
    "deqp/functional/gles3/framebufferblit/conversion_07.html": 10.3223,
    "deqp/functional/gles3/framebufferblit/conversion_08.html": 10.4421,
    "deqp/functional/gles3/framebufferblit/conversion_09.html": 7.2977,
    "deqp/functional/gles3/framebufferblit/conversion_10.html": 10.0821,
    "deqp/functional/gles3/framebufferblit/conversion_11.html": 9.9799,
    "deqp/functional/gles3/framebufferblit/conversion_12.html": 9.7589,
    "deqp/functional/gles3/framebufferblit/conversion_13.html": 10.3967,
    "deqp/functional/gles3/framebufferblit/conversion_14.html": 6.2214,
    "deqp/functional/gles3/framebufferblit/conversion_15.html": 6.6705,
    "deqp/functional/gles3/framebufferblit/conversion_16.html": 6.5618,
    "deqp/functional/gles3/framebufferblit/conversion_17.html": 7.2199,
    "deqp/functional/gles3/framebufferblit/conversion_18.html": 10.0716,
    "deqp/functional/gles3/framebufferblit/conversion_19.html": 6.2781,
    "deqp/functional/gles3/framebufferblit/conversion_20.html": 6.9049,
    "deqp/functional/gles3/framebufferblit/conversion_21.html": 6.5908,
    "deqp/functional/gles3/framebufferblit/conversion_22.html": 7.077,
    "deqp/functional/gles3/framebufferblit/conversion_23.html": 6.3101,
    "deqp/functional/gles3/framebufferblit/conversion_24.html": 6.8705,
    "deqp/functional/gles3/framebufferblit/conversion_25.html": 9.9134,
    "deqp/functional/gles3/framebufferblit/conversion_26.html": 6.619,
    "deqp/functional/gles3/framebufferblit/conversion_27.html": 6.7011,
    "deqp/functional/gles3/framebufferblit/conversion_28.html": 9.992,
    "deqp/functional/gles3/framebufferblit/conversion_29.html": 10.2632,
    "deqp/functional/gles3/framebufferblit/conversion_30.html": 11.072,
    "deqp/functional/gles3/framebufferblit/conversion_31.html": 9.8465,
    "deqp/functional/gles3/framebufferblit/conversion_32.html": 11.1859,
    "deqp/functional/gles3/framebufferblit/conversion_33.html": 9.653,
    "deqp/functional/gles3/framebufferblit/conversion_34.html": 9.8615,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_00.html": 9.9594,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_01.html": 11.5819,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_02.html": 7.3638,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_03.html": 10.2901,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_04.html": 24.8251,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_05.html": 9.7312,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_06.html": 11.3525,
    "deqp/functional/gles3/framebufferblit/depth_stencil.html": 15.7727,
    "deqp/functional/gles3/framebufferblit/rect_00.html": 10.2257,
    "deqp/functional/gles3/framebufferblit/rect_01.html": 9.7883,
    "deqp/functional/gles3/framebufferblit/rect_02.html": 5.5819,
    "deqp/functional/gles3/framebufferblit/rect_03.html": 2.2699,
    "deqp/functional/gles3/framebufferblit/rect_04.html": 2.7504,
    "deqp/functional/gles3/framebufferblit/rect_05.html": 0.5064,
    "deqp/functional/gles3/framebufferblit/rect_06.html": 0.4992,
    "deqp/functional/gles3/indexedstatequery.html": 0.3352,
    "deqp/functional/gles3/instancedrendering.html": 11.3873,
    "deqp/functional/gles3/integerstatequery.html": 1.6413,
    "deqp/functional/gles3/internalformatquery.html": 0.6145,
    "deqp/functional/gles3/lifetime.html": 1.0466,
    "deqp/functional/gles3/multisample/default_fbo.html": 0.5744,
    "deqp/functional/gles3/multisample/fbo_4_samples.html": 21.0211,
    "deqp/functional/gles3/multisample/fbo_8_samples.html": 0.7027,
    "deqp/functional/gles3/multisample/fbo_max_samples.html": 20.7726,
    "deqp/functional/gles3/negativebufferapi.html": 0.5773,
    "deqp/functional/gles3/negativefragmentapi.html": 0.5128,
    "deqp/functional/gles3/negativeshaderapi.html": 0.8732,
    "deqp/functional/gles3/negativestateapi.html": 0.6701,
    "deqp/functional/gles3/negativetextureapi.html": 1.1511,
    "deqp/functional/gles3/negativevertexarrayapi.html": 0.7465,
    "deqp/functional/gles3/occlusionquery_conservative.html": 23.2636,
    "deqp/functional/gles3/occlusionquery_strict.html": 22.1075,
    "deqp/functional/gles3/pixelbufferobject.html": 4.9613,
    "deqp/functional/gles3/primitiverestart/00.html": 3.3942,
    "deqp/functional/gles3/primitiverestart/01.html": 3.6182,
    "deqp/functional/gles3/primitiverestart/02.html": 3.7447,
    "deqp/functional/gles3/primitiverestart/03.html": 4.1141,
    "deqp/functional/gles3/primitiverestart/04.html": 3.7297,
    "deqp/functional/gles3/primitiverestart/05.html": 3.6735,
    "deqp/functional/gles3/primitiverestart/06.html": 3.6252,
    "deqp/functional/gles3/primitiverestart/07.html": 3.6914,
    "deqp/functional/gles3/rasterizerdiscard.html": 7.1349,
    "deqp/functional/gles3/rbostatequery.html": 0.4954,
    "deqp/functional/gles3/readpixel.html": 1.4413,
    "deqp/functional/gles3/samplerobject.html": 3.364,
    "deqp/functional/gles3/samplerstatequery.html": 0.5778,
    "deqp/functional/gles3/shaderapi.html": 0.7645,
    "deqp/functional/gles3/shaderbuiltinvar.html": 3.7597,
    "deqp/functional/gles3/shadercommonfunction.html": 11.9953,
    "deqp/functional/gles3/shaderderivate_dfdx.html": 9.2227,
    "deqp/functional/gles3/shaderderivate_dfdy.html": 47.2596,
    "deqp/functional/gles3/shaderderivate_fwidth.html": 8.9302,
    "deqp/functional/gles3/shaderindexing/mat_00.html": 18.7209,
    "deqp/functional/gles3/shaderindexing/mat_01.html": 20.5883,
    "deqp/functional/gles3/shaderindexing/mat_02.html": 30.042,
    "deqp/functional/gles3/shaderindexing/tmp.html": 26.4547,
    "deqp/functional/gles3/shaderindexing/uniform.html": 6.7828,
    "deqp/functional/gles3/shaderindexing/varying.html": 14.4872,
    "deqp/functional/gles3/shaderindexing/vec2.html": 13.733,
    "deqp/functional/gles3/shaderindexing/vec3.html": 13.9183,
    "deqp/functional/gles3/shaderindexing/vec4.html": 14.118,
    "deqp/functional/gles3/shaderloop_do_while.html": 33.8573,
    "deqp/functional/gles3/shaderloop_for.html": 36.1621,
    "deqp/functional/gles3/shaderloop_while.html": 36.2705,
    "deqp/functional/gles3/shadermatrix/add_assign.html": 21.7741,
    "deqp/functional/gles3/shadermatrix/add_const.html": 38.6497,
    "deqp/functional/gles3/shadermatrix/add_dynamic.html": 38.8242,
    "deqp/functional/gles3/shadermatrix/add_uniform.html": 37.388,
    "deqp/functional/gles3/shadermatrix/determinant.html": 7.7491,
    "deqp/functional/gles3/shadermatrix/div_assign.html": 21.7989,
    "deqp/functional/gles3/shadermatrix/div_const.html": 36.9657,
    "deqp/functional/gles3/shadermatrix/div_dynamic.html": 63.7758,
    "deqp/functional/gles3/shadermatrix/div_uniform.html": 39.2852,
    "deqp/functional/gles3/shadermatrix/inverse.html": 16.0587,
    "deqp/functional/gles3/shadermatrix/matrixcompmult.html": 21.6013,
    "deqp/functional/gles3/shadermatrix/mul_assign.html": 7.8841,
    "deqp/functional/gles3/shadermatrix/mul_const_highp.html": 24.3747,
    "deqp/functional/gles3/shadermatrix/mul_const_lowp.html": 37.6657,
    "deqp/functional/gles3/shadermatrix/mul_const_mediump.html": 23.9759,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_highp.html": 37.9118,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_lowp.html": 38.7337,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_mediump.html": 37.6281,
    "deqp/functional/gles3/shadermatrix/mul_uniform_highp.html": 36.5817,
    "deqp/functional/gles3/shadermatrix/mul_uniform_lowp.html": 35.4919,
    "deqp/functional/gles3/shadermatrix/mul_uniform_mediump.html": 34.8466,
    "deqp/functional/gles3/shadermatrix/negation.html": 18.7331,
    "deqp/functional/gles3/shadermatrix/outerproduct.html": 18.1585,
    "deqp/functional/gles3/shadermatrix/post_decrement.html": 19.062,
    "deqp/functional/gles3/shadermatrix/post_increment.html": 19.2922,
    "deqp/functional/gles3/shadermatrix/pre_decrement.html": 21.7687,
    "deqp/functional/gles3/shadermatrix/pre_increment.html": 23.2538,
    "deqp/functional/gles3/shadermatrix/sub_assign.html": 21.6808,
    "deqp/functional/gles3/shadermatrix/sub_const.html": 37.2998,
    "deqp/functional/gles3/shadermatrix/sub_dynamic.html": 42.3262,
    "deqp/functional/gles3/shadermatrix/sub_uniform.html": 36.5391,
    "deqp/functional/gles3/shadermatrix/transpose.html": 18.6593,
    "deqp/functional/gles3/shadermatrix/unary_addition.html": 16.6261,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_00.html": 19.6965,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_01.html": 12.5989,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_02.html": 14.0589,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_03.html": 10.083,
    "deqp/functional/gles3/shaderoperator/binary_operator_00.html": 55.441,
    "deqp/functional/gles3/shaderoperator/binary_operator_01.html": 54.4246,
    "deqp/functional/gles3/shaderoperator/binary_operator_02.html": 32.5003,
    "deqp/functional/gles3/shaderoperator/binary_operator_03.html": 32.5214,
    "deqp/functional/gles3/shaderoperator/binary_operator_04.html": 44.8953,
    "deqp/functional/gles3/shaderoperator/binary_operator_05.html": 38.6696,
    "deqp/functional/gles3/shaderoperator/binary_operator_06.html": 40.3758,
    "deqp/functional/gles3/shaderoperator/binary_operator_07.html": 22.7647,
    "deqp/functional/gles3/shaderoperator/binary_operator_08.html": 23.7656,
    "deqp/functional/gles3/shaderoperator/binary_operator_09.html": 43.9533,
    "deqp/functional/gles3/shaderoperator/binary_operator_10.html": 40.4774,
    "deqp/functional/gles3/shaderoperator/binary_operator_11.html": 39.4791,
    "deqp/functional/gles3/shaderoperator/binary_operator_12.html": 23.1972,
    "deqp/functional/gles3/shaderoperator/binary_operator_13.html": 22.858,
    "deqp/functional/gles3/shaderoperator/binary_operator_14.html": 45.3321,
    "deqp/functional/gles3/shaderoperator/binary_operator_15.html": 47.0424,
    "deqp/functional/gles3/shaderoperator/bool_compare.html": 7.1731,
    "deqp/functional/gles3/shaderoperator/common_functions_00.html": 22.9967,
    "deqp/functional/gles3/shaderoperator/common_functions_01.html": 39.4513,
    "deqp/functional/gles3/shaderoperator/common_functions_02.html": 22.6258,
    "deqp/functional/gles3/shaderoperator/common_functions_03.html": 20.9683,
    "deqp/functional/gles3/shaderoperator/common_functions_04.html": 23.0638,
    "deqp/functional/gles3/shaderoperator/common_functions_05.html": 24.2955,
    "deqp/functional/gles3/shaderoperator/common_functions_06.html": 17.1445,
    "deqp/functional/gles3/shaderoperator/exponential.html": 21.8733,
    "deqp/functional/gles3/shaderoperator/float_compare.html": 53.1759,
    "deqp/functional/gles3/shaderoperator/geometric.html": 21.5834,
    "deqp/functional/gles3/shaderoperator/int_compare.html": 28.5015,
    "deqp/functional/gles3/shaderoperator/selection.html": 17.9377,
    "deqp/functional/gles3/shaderoperator/sequence.html": 17.7631,
    "deqp/functional/gles3/shaderoperator/unary_operator_00.html": 30.681,
    "deqp/functional/gles3/shaderoperator/unary_operator_01.html": 51.7437,
    "deqp/functional/gles3/shaderoperator/unary_operator_02.html": 49.0248,
    "deqp/functional/gles3/shaderpackingfunction.html": 1.1079,
    "deqp/functional/gles3/shaderprecision_float.html": 24.2691,
    "deqp/functional/gles3/shaderprecision_int.html": 23.2431,
    "deqp/functional/gles3/shaderprecision_uint.html": 22.8385,
    "deqp/functional/gles3/shaderstatequery.html": 1.1352,
    "deqp/functional/gles3/shaderstruct.html": 18.6333,
    "deqp/functional/gles3/shaderswitch.html": 21.2843,
    "deqp/functional/gles3/shadertexturefunction/texelfetch.html": 7.1065,
    "deqp/functional/gles3/shadertexturefunction/texelfetchoffset.html": 7.2608,
    "deqp/functional/gles3/shadertexturefunction/texture.html": 18.5226,
    "deqp/functional/gles3/shadertexturefunction/texturegrad.html": 11.5054,
    "deqp/functional/gles3/shadertexturefunction/texturegradoffset.html": 8.1762,
    "deqp/functional/gles3/shadertexturefunction/texturelod.html": 10.6433,
    "deqp/functional/gles3/shadertexturefunction/texturelodoffset.html": 7.8487,
    "deqp/functional/gles3/shadertexturefunction/textureoffset.html": 13.4863,
    "deqp/functional/gles3/shadertexturefunction/textureproj.html": 11.7173,
    "deqp/functional/gles3/shadertexturefunction/textureprojgrad.html": 7.5144,
    "deqp/functional/gles3/shadertexturefunction/textureprojgradoffset.html": 8.101,
    "deqp/functional/gles3/shadertexturefunction/textureprojlod.html": 6.9135,
    "deqp/functional/gles3/shadertexturefunction/textureprojlodoffset.html": 7.0607,
    "deqp/functional/gles3/shadertexturefunction/textureprojoffset.html": 10.4996,
    "deqp/functional/gles3/shadertexturefunction/texturesize.html": 12.2171,
    "deqp/functional/gles3/stringquery.html": 0.4582,
    "deqp/functional/gles3/sync.html": 4.736,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_00.html": 3.72,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_01.html": 3.5733,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_02.html": 3.6552,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_03.html": 3.7788,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_04.html": 4.5124,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_05.html": 4.6416,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_00.html": 4.2364,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_01.html": 3.3794,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_02.html": 2.7667,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_03.html": 3.0846,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_04.html": 3.5033,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_05.html": 3.1262,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_06.html": 3.0552,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_07.html": 3.0789,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_08.html": 3.1477,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_09.html": 3.1328,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_00.html": 2.1584,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_01.html": 2.0916,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_02.html": 2.6556,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_03.html": 2.729,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_04.html": 2.7185,
    "deqp/functional/gles3/texturefiltering/2d_combinations_00.html": 2.7016,
    "deqp/functional/gles3/texturefiltering/2d_combinations_01.html": 2.7064,
    "deqp/functional/gles3/texturefiltering/2d_combinations_02.html": 2.704,
    "deqp/functional/gles3/texturefiltering/2d_combinations_03.html": 2.6293,
    "deqp/functional/gles3/texturefiltering/2d_combinations_04.html": 2.6847,
    "deqp/functional/gles3/texturefiltering/2d_combinations_05.html": 2.892,
    "deqp/functional/gles3/texturefiltering/2d_formats_00.html": 2.3619,
    "deqp/functional/gles3/texturefiltering/2d_formats_01.html": 2.0776,
    "deqp/functional/gles3/texturefiltering/2d_formats_02.html": 1.4868,
    "deqp/functional/gles3/texturefiltering/2d_formats_03.html": 1.3872,
    "deqp/functional/gles3/texturefiltering/2d_formats_04.html": 1.715,
    "deqp/functional/gles3/texturefiltering/2d_formats_05.html": 1.3488,
    "deqp/functional/gles3/texturefiltering/2d_formats_06.html": 1.5152,
    "deqp/functional/gles3/texturefiltering/2d_formats_07.html": 1.474,
    "deqp/functional/gles3/texturefiltering/2d_formats_08.html": 1.5262,
    "deqp/functional/gles3/texturefiltering/2d_formats_09.html": 1.4533,
    "deqp/functional/gles3/texturefiltering/2d_sizes_00.html": 1.436,
    "deqp/functional/gles3/texturefiltering/2d_sizes_01.html": 1.4854,
    "deqp/functional/gles3/texturefiltering/2d_sizes_02.html": 1.4463,
    "deqp/functional/gles3/texturefiltering/2d_sizes_03.html": 1.5047,
    "deqp/functional/gles3/texturefiltering/2d_sizes_04.html": 1.5122,
    "deqp/functional/gles3/texturefiltering/2d_sizes_05.html": 1.5214,
    "deqp/functional/gles3/texturefiltering/3d_combinations_00.html": 2.9768,
    "deqp/functional/gles3/texturefiltering/3d_combinations_01.html": 3.2011,
    "deqp/functional/gles3/texturefiltering/3d_combinations_02.html": 3.0558,
    "deqp/functional/gles3/texturefiltering/3d_combinations_03.html": 3.3219,
    "deqp/functional/gles3/texturefiltering/3d_combinations_04.html": 3.3235,
    "deqp/functional/gles3/texturefiltering/3d_combinations_05.html": 3.14,
    "deqp/functional/gles3/texturefiltering/3d_combinations_06.html": 3.3186,
    "deqp/functional/gles3/texturefiltering/3d_combinations_07.html": 3.4939,
    "deqp/functional/gles3/texturefiltering/3d_combinations_08.html": 3.1918,
    "deqp/functional/gles3/texturefiltering/3d_combinations_09.html": 3.5011,
    "deqp/functional/gles3/texturefiltering/3d_combinations_10.html": 3.4042,
    "deqp/functional/gles3/texturefiltering/3d_combinations_11.html": 3.3537,
    "deqp/functional/gles3/texturefiltering/3d_combinations_12.html": 3.0804,
    "deqp/functional/gles3/texturefiltering/3d_combinations_13.html": 3.1415,
    "deqp/functional/gles3/texturefiltering/3d_combinations_14.html": 3.0079,
    "deqp/functional/gles3/texturefiltering/3d_combinations_15.html": 3.2875,
    "deqp/functional/gles3/texturefiltering/3d_combinations_16.html": 3.3425,
    "deqp/functional/gles3/texturefiltering/3d_combinations_17.html": 3.2241,
    "deqp/functional/gles3/texturefiltering/3d_combinations_18.html": 3.2674,
    "deqp/functional/gles3/texturefiltering/3d_combinations_19.html": 3.2112,
    "deqp/functional/gles3/texturefiltering/3d_combinations_20.html": 3.2882,
    "deqp/functional/gles3/texturefiltering/3d_combinations_21.html": 3.3741,
    "deqp/functional/gles3/texturefiltering/3d_combinations_22.html": 3.5229,
    "deqp/functional/gles3/texturefiltering/3d_combinations_23.html": 3.4291,
    "deqp/functional/gles3/texturefiltering/3d_combinations_24.html": 3.1395,
    "deqp/functional/gles3/texturefiltering/3d_combinations_25.html": 3.1647,
    "deqp/functional/gles3/texturefiltering/3d_combinations_26.html": 3.1641,
    "deqp/functional/gles3/texturefiltering/3d_combinations_27.html": 3.2308,
    "deqp/functional/gles3/texturefiltering/3d_combinations_28.html": 3.3772,
    "deqp/functional/gles3/texturefiltering/3d_combinations_29.html": 3.1805,
    "deqp/functional/gles3/texturefiltering/3d_combinations_30.html": 3.3615,
    "deqp/functional/gles3/texturefiltering/3d_combinations_31.html": 3.475,
    "deqp/functional/gles3/texturefiltering/3d_combinations_32.html": 3.3651,
    "deqp/functional/gles3/texturefiltering/3d_combinations_33.html": 3.536,
    "deqp/functional/gles3/texturefiltering/3d_combinations_34.html": 3.5778,
    "deqp/functional/gles3/texturefiltering/3d_combinations_35.html": 3.4505,
    "deqp/functional/gles3/texturefiltering/3d_formats_00.html": 3.9522,
    "deqp/functional/gles3/texturefiltering/3d_formats_01.html": 3.1535,
    "deqp/functional/gles3/texturefiltering/3d_formats_02.html": 2.6859,
    "deqp/functional/gles3/texturefiltering/3d_formats_03.html": 2.5374,
    "deqp/functional/gles3/texturefiltering/3d_formats_04.html": 2.5124,
    "deqp/functional/gles3/texturefiltering/3d_formats_05.html": 2.0898,
    "deqp/functional/gles3/texturefiltering/3d_formats_06.html": 2.0026,
    "deqp/functional/gles3/texturefiltering/3d_formats_07.html": 1.9426,
    "deqp/functional/gles3/texturefiltering/3d_formats_08.html": 2.691,
    "deqp/functional/gles3/texturefiltering/3d_formats_09.html": 2.1677,
    "deqp/functional/gles3/texturefiltering/3d_sizes_00.html": 1.5236,
    "deqp/functional/gles3/texturefiltering/3d_sizes_01.html": 1.7392,
    "deqp/functional/gles3/texturefiltering/3d_sizes_02.html": 2.6202,
    "deqp/functional/gles3/texturefiltering/3d_sizes_03.html": 1.4972,
    "deqp/functional/gles3/texturefiltering/3d_sizes_04.html": 2.5192,
    "deqp/functional/gles3/texturefiltering/cube_combinations_00.html": 10.8671,
    "deqp/functional/gles3/texturefiltering/cube_combinations_01.html": 10.982,
    "deqp/functional/gles3/texturefiltering/cube_combinations_02.html": 21.4485,
    "deqp/functional/gles3/texturefiltering/cube_combinations_03.html": 18.3655,
    "deqp/functional/gles3/texturefiltering/cube_combinations_04.html": 40.7131,
    "deqp/functional/gles3/texturefiltering/cube_combinations_05.html": 38.643,
    "deqp/functional/gles3/texturefiltering/cube_formats_00.html": 10.4944,
    "deqp/functional/gles3/texturefiltering/cube_formats_01.html": 9.8664,
    "deqp/functional/gles3/texturefiltering/cube_formats_02.html": 8.6656,
    "deqp/functional/gles3/texturefiltering/cube_formats_03.html": 9.1592,
    "deqp/functional/gles3/texturefiltering/cube_formats_04.html": 8.8884,
    "deqp/functional/gles3/texturefiltering/cube_formats_05.html": 9.2053,
    "deqp/functional/gles3/texturefiltering/cube_formats_06.html": 8.1031,
    "deqp/functional/gles3/texturefiltering/cube_formats_07.html": 8.6678,
    "deqp/functional/gles3/texturefiltering/cube_formats_08.html": 9.0879,
    "deqp/functional/gles3/texturefiltering/cube_formats_09.html": 9.0121,
    "deqp/functional/gles3/texturefiltering/cube_no_edges_visible.html": 2.9753,
    "deqp/functional/gles3/texturefiltering/cube_sizes_00.html": 4.4976,
    "deqp/functional/gles3/texturefiltering/cube_sizes_01.html": 8.7085,
    "deqp/functional/gles3/texturefiltering/cube_sizes_02.html": 10.4383,
    "deqp/functional/gles3/texturefiltering/cube_sizes_03.html": 4.4176,
    "deqp/functional/gles3/texturefiltering/cube_sizes_04.html": 9.1778,
    "deqp/functional/gles3/textureformat/compressed_2d.html": 1.7877,
    "deqp/functional/gles3/textureformat/compressed_cube.html": 4.991,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_00.html": 3.9528,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_01.html": 3.7776,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_02.html": 3.8208,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_03.html": 3.808,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_00.html": 4.8129,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_01.html": 4.4176,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_02.html": 4.613,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_03.html": 4.4761,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_00.html": 1.4161,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_01.html": 1.3963,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_02.html": 1.3711,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_03.html": 1.3492,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_00.html": 1.824,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_01.html": 1.7769,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_02.html": 1.7605,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_03.html": 1.8771,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_00.html": 2.8453,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_01.html": 2.7951,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_02.html": 2.7332,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_03.html": 2.733,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_00.html": 5.5381,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_01.html": 5.3472,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_02.html": 5.1776,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_03.html": 5.3266,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_00.html": 3.4125,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_01.html": 3.483,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_02.html": 3.3821,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_03.html": 3.4658,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_00.html": 3.8194,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_01.html": 3.5832,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_02.html": 3.7014,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_03.html": 3.5088,
    "deqp/functional/gles3/textureformat/sized_depth_stencil.html": 4.4934,
    "deqp/functional/gles3/textureformat/unsized_2d.html": 4.7523,
    "deqp/functional/gles3/textureformat/unsized_2d_array.html": 4.6318,
    "deqp/functional/gles3/textureformat/unsized_3d.html": 4.9204,
    "deqp/functional/gles3/textureshadow/2d_array_linear_always.html": 1.9048,
    "deqp/functional/gles3/textureshadow/2d_array_linear_equal.html": 5.431,
    "deqp/functional/gles3/textureshadow/2d_array_linear_greater.html": 4.9718,
    "deqp/functional/gles3/textureshadow/2d_array_linear_greater_or_equal.html": 4.9281,
    "deqp/functional/gles3/textureshadow/2d_array_linear_less.html": 5.0133,
    "deqp/functional/gles3/textureshadow/2d_array_linear_less_or_equal.html": 4.6895,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_always.html": 1.9488,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_equal.html": 7.489,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_greater.html": 7.5174,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_greater_or_equal.html": 9.3725,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_less.html": 9.8123,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_less_or_equal.html": 7.3988,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_never.html": 1.9944,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_not_equal.html": 7.7466,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_always.html": 1.8115,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_equal.html": 4.916,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_greater.html": 5.8371,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_greater_or_equal.html": 5.7396,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_less.html": 5.821,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_less_or_equal.html": 5.7527,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_never.html": 1.7717,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_not_equal.html": 4.5928,
    "deqp/functional/gles3/textureshadow/2d_array_linear_never.html": 1.7825,
    "deqp/functional/gles3/textureshadow/2d_array_linear_not_equal.html": 4.9938,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_always.html": 1.757,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_equal.html": 1.872,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_greater.html": 1.8841,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_greater_or_equal.html": 1.808,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_less.html": 1.6448,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_less_or_equal.html": 1.7922,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_always.html": 1.932,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_equal.html": 5.162,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_greater.html": 4.7098,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_greater_or_equal.html": 6.1844,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_less.html": 5.7571,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_less_or_equal.html": 4.3575,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_never.html": 1.8307,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_not_equal.html": 5.3642,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_always.html": 1.7385,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_equal.html": 3.9303,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater.html": 3.6358,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater_or_equal.html": 3.1994,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less.html": 3.1849,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less_or_equal.html": 3.9095,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_never.html": 1.8085,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_not_equal.html": 3.8983,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_never.html": 1.7203,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_not_equal.html": 1.8069,
    "deqp/functional/gles3/textureshadow/2d_linear_always.html": 1.7682,
    "deqp/functional/gles3/textureshadow/2d_linear_equal.html": 5.3079,
    "deqp/functional/gles3/textureshadow/2d_linear_greater.html": 4.8546,
    "deqp/functional/gles3/textureshadow/2d_linear_greater_or_equal.html": 4.7182,
    "deqp/functional/gles3/textureshadow/2d_linear_less.html": 4.6517,
    "deqp/functional/gles3/textureshadow/2d_linear_less_or_equal.html": 4.7498,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_always.html": 1.7489,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_equal.html": 8.4819,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_greater.html": 6.0519,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_greater_or_equal.html": 8.7235,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_less.html": 9.0216,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_less_or_equal.html": 6.6621,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_never.html": 1.748,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_not_equal.html": 8.1672,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_always.html": 1.6872,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_equal.html": 4.7696,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater.html": 5.0122,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater_or_equal.html": 5.0585,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less.html": 4.829,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less_or_equal.html": 6.0062,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_never.html": 1.8655,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_not_equal.html": 4.5367,
    "deqp/functional/gles3/textureshadow/2d_linear_never.html": 1.8913,
    "deqp/functional/gles3/textureshadow/2d_linear_not_equal.html": 5.7351,
    "deqp/functional/gles3/textureshadow/2d_nearest_always.html": 1.4839,
    "deqp/functional/gles3/textureshadow/2d_nearest_equal.html": 1.7916,
    "deqp/functional/gles3/textureshadow/2d_nearest_greater.html": 1.6364,
    "deqp/functional/gles3/textureshadow/2d_nearest_greater_or_equal.html": 1.6198,
    "deqp/functional/gles3/textureshadow/2d_nearest_less.html": 1.6657,
    "deqp/functional/gles3/textureshadow/2d_nearest_less_or_equal.html": 1.6238,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_always.html": 1.836,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_equal.html": 6.0707,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_greater.html": 3.9409,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_greater_or_equal.html": 4.9535,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_less.html": 4.6323,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_less_or_equal.html": 4.3383,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_never.html": 1.695,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_not_equal.html": 5.8119,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_always.html": 1.6653,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_equal.html": 3.5869,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater.html": 3.6141,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater_or_equal.html": 3.0246,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less.html": 3.1331,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less_or_equal.html": 4.0118,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_never.html": 1.6447,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_not_equal.html": 4.0145,
    "deqp/functional/gles3/textureshadow/2d_nearest_never.html": 1.6404,
    "deqp/functional/gles3/textureshadow/2d_nearest_not_equal.html": 1.7729,
    "deqp/functional/gles3/textureshadow/cube_linear_always.html": 5.213,
    "deqp/functional/gles3/textureshadow/cube_linear_equal.html": 11.3917,
    "deqp/functional/gles3/textureshadow/cube_linear_greater.html": 10.9341,
    "deqp/functional/gles3/textureshadow/cube_linear_greater_or_equal.html": 10.9197,
    "deqp/functional/gles3/textureshadow/cube_linear_less.html": 10.8528,
    "deqp/functional/gles3/textureshadow/cube_linear_less_or_equal.html": 10.3624,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_always.html": 5.2849,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_equal.html": 16.2872,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_greater.html": 16.0333,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_greater_or_equal.html": 14.6642,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_less.html": 15.6219,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_less_or_equal.html": 16.3683,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_never.html": 5.4528,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_not_equal.html": 16.1702,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_always.html": 4.8466,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_equal.html": 11.5997,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_greater.html": 10.77,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_greater_or_equal.html": 9.7803,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_less.html": 10.9245,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_less_or_equal.html": 10.6716,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_never.html": 5.0735,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_not_equal.html": 11.2927,
    "deqp/functional/gles3/textureshadow/cube_linear_never.html": 5.1233,
    "deqp/functional/gles3/textureshadow/cube_linear_not_equal.html": 11.7205,
    "deqp/functional/gles3/textureshadow/cube_nearest_always.html": 4.7844,
    "deqp/functional/gles3/textureshadow/cube_nearest_equal.html": 4.782,
    "deqp/functional/gles3/textureshadow/cube_nearest_greater.html": 5.1167,
    "deqp/functional/gles3/textureshadow/cube_nearest_greater_or_equal.html": 5.4213,
    "deqp/functional/gles3/textureshadow/cube_nearest_less.html": 5.3132,
    "deqp/functional/gles3/textureshadow/cube_nearest_less_or_equal.html": 5.0055,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_always.html": 5.2574,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_equal.html": 13.4307,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_greater.html": 12.1995,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_greater_or_equal.html": 13.1557,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_less.html": 12.9231,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_less_or_equal.html": 12.1915,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_never.html": 5.1147,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_not_equal.html": 13.1869,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_always.html": 5.0875,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_equal.html": 9.9298,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_greater.html": 9.2616,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_greater_or_equal.html": 9.6835,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_less.html": 9.8742,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_less_or_equal.html": 9.3398,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_never.html": 4.8814,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_not_equal.html": 10.3389,
    "deqp/functional/gles3/textureshadow/cube_nearest_never.html": 4.787,
    "deqp/functional/gles3/textureshadow/cube_nearest_not_equal.html": 4.7325,
    "deqp/functional/gles3/texturespecification/basic_copyteximage2d.html": 18.2051,
    "deqp/functional/gles3/texturespecification/basic_copytexsubimage2d.html": 19.2168,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_2d_00.html": 9.4341,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_2d_01.html": 9.1554,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_00.html": 9.9872,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_01.html": 9.8914,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_02.html": 9.8965,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_03.html": 9.0832,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_04.html": 8.6615,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_00.html": 9.6512,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_01.html": 8.2738,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_02.html": 8.0061,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_00.html": 6.3725,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_01.html": 6.8459,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_02.html": 6.0672,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_03.html": 6.6788,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_04.html": 5.9559,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_00.html": 6.9809,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_01.html": 6.3351,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_02.html": 6.6241,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_00.html": 10.2097,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_01.html": 9.3183,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_02.html": 10.0108,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_03.html": 9.7467,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_04.html": 8.8716,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_00.html": 6.0104,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_01.html": 5.7523,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_02.html": 5.6445,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_03.html": 5.4321,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_04.html": 5.0811,
    "deqp/functional/gles3/texturespecification/random_teximage2d_2d.html": 5.7402,
    "deqp/functional/gles3/texturespecification/random_teximage2d_cube.html": 12.7352,
    "deqp/functional/gles3/texturespecification/teximage2d_align.html": 11.8317,
    "deqp/functional/gles3/texturespecification/teximage2d_depth.html": 2.1002,
    "deqp/functional/gles3/texturespecification/teximage2d_depth_pbo.html": 1.9349,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_2d_00.html": 3.4149,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_2d_01.html": 3.2089,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_00.html": 6.8348,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_01.html": 6.8829,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_02.html": 6.9841,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_03.html": 7.19,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_04.html": 7.0614,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_params.html": 2.0485,
    "deqp/functional/gles3/texturespecification/teximage2d_unpack_params.html": 1.769,
    "deqp/functional/gles3/texturespecification/teximage3d_depth.html": 3.3744,
    "deqp/functional/gles3/texturespecification/teximage3d_depth_pbo.html": 2.4407,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_00.html": 3.6838,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_01.html": 3.3963,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_00.html": 3.3523,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_01.html": 3.4312,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_params.html": 2.7355,
    "deqp/functional/gles3/texturespecification/teximage3d_unpack_params.html": 2.6462,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_00.html": 7.4823,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_01.html": 6.82,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_02.html": 7.3824,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_00.html": 7.5625,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_01.html": 7.8379,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_02.html": 7.917,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_03.html": 7.1819,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_04.html": 6.5847,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_depth_stencil.html": 5.2624,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_size.html": 4.9806,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_00.html": 5.8803,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_01.html": 4.8471,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_02.html": 5.568,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_00.html": 8.6936,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_01.html": 8.0285,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_02.html": 8.7689,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_03.html": 8.7773,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_depth_stencil.html": 1.9009,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_size.html": 8.6148,
    "deqp/functional/gles3/texturespecification/texsubimage2d_align.html": 14.9943,
    "deqp/functional/gles3/texturespecification/texsubimage2d_depth.html": 1.4592,
    "deqp/functional/gles3/texturespecification/texsubimage2d_empty_tex.html": 4.1314,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_2d_00.html": 3.9659,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_2d_01.html": 3.7197,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_00.html": 7.2011,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_01.html": 7.1995,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_02.html": 7.1742,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_03.html": 7.355,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_04.html": 6.2506,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_params.html": 3.5818,
    "deqp/functional/gles3/texturespecification/texsubimage2d_unpack_params.html": 2.8316,
    "deqp/functional/gles3/texturespecification/texsubimage3d_depth.html": 3.0184,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_2d_array_00.html": 6.6471,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_2d_array_01.html": 5.8628,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_00.html": 6.7264,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_01.html": 6.4502,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_params.html": 3.2317,
    "deqp/functional/gles3/texturespecification/texsubimage3d_unpack_params.html": 3.0833,
    "deqp/functional/gles3/texturestatequery.html": 1.9654,
    "deqp/functional/gles3/texturewrap/eac_r11_npot.html": 4.1919,
    "deqp/functional/gles3/texturewrap/eac_r11_pot.html": 4.1078,
    "deqp/functional/gles3/texturewrap/eac_rg11_npot.html": 4.2794,
    "deqp/functional/gles3/texturewrap/eac_rg11_pot.html": 4.231,
    "deqp/functional/gles3/texturewrap/eac_signed_r11_npot.html": 4.1684,
    "deqp/functional/gles3/texturewrap/eac_signed_r11_pot.html": 4.0239,
    "deqp/functional/gles3/texturewrap/eac_signed_rg11_npot.html": 4.3306,
    "deqp/functional/gles3/texturewrap/eac_signed_rg11_pot.html": 4.2369,
    "deqp/functional/gles3/texturewrap/etc2_eac_rgba8_npot.html": 4.0327,
    "deqp/functional/gles3/texturewrap/etc2_eac_rgba8_pot.html": 3.7487,
    "deqp/functional/gles3/texturewrap/etc2_eac_srgb8_alpha8_npot.html": 4.5463,
    "deqp/functional/gles3/texturewrap/etc2_eac_srgb8_alpha8_pot.html": 4.4356,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_npot.html": 3.862,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_pot.html": 3.7983,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_punchthrough_alpha1_npot.html": 3.9137,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_punchthrough_alpha1_pot.html": 3.7939,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_npot.html": 4.5702,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_pot.html": 4.2281,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_punchthrough_alpha1_npot.html": 4.6786,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_punchthrough_alpha1_pot.html": 4.4495,
    "deqp/functional/gles3/texturewrap/rgba8_npot.html": 4.1347,
    "deqp/functional/gles3/texturewrap/rgba8_pot.html": 4.0357,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_lines.html": 2.9004,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_points.html": 2.8458,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_triangles.html": 2.8244,
    "deqp/functional/gles3/transformfeedback/array_element_separate_lines.html": 2.3745,
    "deqp/functional/gles3/transformfeedback/array_element_separate_points.html": 2.8356,
    "deqp/functional/gles3/transformfeedback/array_element_separate_triangles.html": 2.8379,
    "deqp/functional/gles3/transformfeedback/array_interleaved_lines.html": 2.5683,
    "deqp/functional/gles3/transformfeedback/array_interleaved_points.html": 2.7391,
    "deqp/functional/gles3/transformfeedback/array_interleaved_triangles.html": 2.6249,
    "deqp/functional/gles3/transformfeedback/array_separate_lines.html": 2.363,
    "deqp/functional/gles3/transformfeedback/array_separate_points.html": 2.6449,
    "deqp/functional/gles3/transformfeedback/array_separate_triangles.html": 2.5979,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_lines.html": 15.258,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_points.html": 15.3795,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_triangles.html": 15.3703,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_lines.html": 10.9797,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_points.html": 10.6233,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_triangles.html": 10.3328,
    "deqp/functional/gles3/transformfeedback/interpolation_centroid.html": 4.8119,
    "deqp/functional/gles3/transformfeedback/interpolation_flat.html": 4.7633,
    "deqp/functional/gles3/transformfeedback/interpolation_smooth.html": 4.8927,
    "deqp/functional/gles3/transformfeedback/point_size.html": 1.8554,
    "deqp/functional/gles3/transformfeedback/position.html": 1.905,
    "deqp/functional/gles3/transformfeedback/random_interleaved_lines.html": 2.9636,
    "deqp/functional/gles3/transformfeedback/random_interleaved_points.html": 2.9851,
    "deqp/functional/gles3/transformfeedback/random_interleaved_triangles.html": 2.8531,
    "deqp/functional/gles3/transformfeedback/random_separate_lines.html": 3.1573,
    "deqp/functional/gles3/transformfeedback/random_separate_points.html": 3.1241,
    "deqp/functional/gles3/transformfeedback/random_separate_triangles.html": 3.1153,
    "deqp/functional/gles3/uniformapi/info_query.html": 17.0571,
    "deqp/functional/gles3/uniformapi/random.html": 6.058,
    "deqp/functional/gles3/uniformapi/value_assigned.html": 34.9535,
    "deqp/functional/gles3/uniformapi/value_initial.html": 14.861,
    "deqp/functional/gles3/uniformbuffers/instance_array_basic_type.html": 5.2029,
    "deqp/functional/gles3/uniformbuffers/multi_basic_types.html": 1.1885,
    "deqp/functional/gles3/uniformbuffers/multi_nested_struct.html": 1.6263,
    "deqp/functional/gles3/uniformbuffers/random.html": 20.5511,
    "deqp/functional/gles3/uniformbuffers/single_basic_array.html": 5.1401,
    "deqp/functional/gles3/uniformbuffers/single_basic_type.html": 11.7956,
    "deqp/functional/gles3/uniformbuffers/single_nested_struct.html": 1.3697,
    "deqp/functional/gles3/uniformbuffers/single_nested_struct_array.html": 1.6309,
    "deqp/functional/gles3/uniformbuffers/single_struct.html": 1.0196,
    "deqp/functional/gles3/uniformbuffers/single_struct_array.html": 1.5703,
    "deqp/functional/gles3/vertexarrayobject.html": 1.4414,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.count.html": 30.0769,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.output.html": 97.832,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.storage.html": 5.2415,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.stride.html": 106.9008,
    "deqp/functional/gles3/vertexarrays/single_attribute.first.html": 82.7142,
    "deqp/functional/gles3/vertexarrays/single_attribute.normalize.html": 36.2913,
    "deqp/functional/gles3/vertexarrays/single_attribute.offset.html": 74.7788,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.byte.html": 25.2653,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.float.html": 23.4692,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.half.html": 27.4303,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.int.html": 24.3877,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.int_2_10_10_10.html": 13.5661,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.short.html": 29.3593,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_byte.html": 24.9468,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int.html": 24.0114,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int_2_10_10_10.html": 7.3326,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_short.html": 24.8286,
    "deqp/functional/gles3/vertexarrays/single_attribute.stride.html": 32.2277,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_copy.html": 25.3615,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_draw.html": 27.7978,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_read.html": 26.185,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_copy.html": 31.5355,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_draw.html": 29.9337,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_read.html": 26.1746,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_copy.html": 27.0429,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_draw.html": 28.1274,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_read.html": 26.38
  }
}