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_linux_runtimes.json [blame]

{
  "times": {
    "WebglExtension_EXT_color_buffer_float": 0.4483,
    "WebglExtension_EXT_color_buffer_half_float": 0.4134,
    "WebglExtension_EXT_disjoint_timer_query_webgl2": 0.225,
    "WebglExtension_EXT_float_blend": 0.4744,
    "WebglExtension_EXT_texture_compression_bptc": 0.458,
    "WebglExtension_EXT_texture_compression_rgtc": 0.4677,
    "WebglExtension_EXT_texture_filter_anisotropic": 0.4506,
    "WebglExtension_EXT_texture_norm16": 0.2351,
    "WebglExtension_KHR_parallel_shader_compile": 0.2659,
    "WebglExtension_OES_draw_buffers_indexed": 0.4395,
    "WebglExtension_OES_texture_float_linear": 0.4785,
    "WebglExtension_OVR_multiview2": 0.4392,
    "WebglExtension_TestCoverage": 0.2319,
    "WebglExtension_WEBGL_clip_cull_distance": 0.4043,
    "WebglExtension_WEBGL_compressed_texture_astc": 0,
    "WebglExtension_WEBGL_compressed_texture_etc": 0,
    "WebglExtension_WEBGL_compressed_texture_etc1": 0,
    "WebglExtension_WEBGL_compressed_texture_pvrtc": 0,
    "WebglExtension_WEBGL_compressed_texture_s3tc": 0.4662,
    "WebglExtension_WEBGL_compressed_texture_s3tc_srgb": 0,
    "WebglExtension_WEBGL_debug_renderer_info": 0.2442,
    "WebglExtension_WEBGL_debug_shaders": 0.2832,
    "WebglExtension_WEBGL_draw_instanced_base_vertex_base_instance": 0.4737,
    "WebglExtension_WEBGL_lose_context": 0.2661,
    "WebglExtension_WEBGL_multi_draw": 0.4479,
    "WebglExtension_WEBGL_multi_draw_instanced_base_vertex_base_instance": 0.3857,
    "WebglExtension_WEBGL_provoking_vertex": 0.4675,
    "WebglExtension_WEBGL_video_texture": 0.4609,
    "WebglExtension_WEBGL_webcodecs_video_frame": 0,
    "conformance/attribs/gl-bindAttribLocation-aliasing.html": 0.5436,
    "conformance/attribs/gl-bindAttribLocation-matrix.html": 0.6873,
    "conformance/attribs/gl-bindAttribLocation-nonexistent-attribute.html": 0.4643,
    "conformance/attribs/gl-bindAttribLocation-repeated.html": 0.5214,
    "conformance/attribs/gl-disabled-vertex-attrib-update.html": 0.4333,
    "conformance/attribs/gl-disabled-vertex-attrib.html": 0.8229,
    "conformance/attribs/gl-enable-vertex-attrib.html": 0.4601,
    "conformance/attribs/gl-matrix-attributes.html": 0.8307,
    "conformance/attribs/gl-vertex-attrib-context-switch.html": 0.7094,
    "conformance/attribs/gl-vertex-attrib-render.html": 0.6728,
    "conformance/attribs/gl-vertex-attrib-unconsumed-out-of-bounds.html": 0.5809,
    "conformance/attribs/gl-vertex-attrib-zero-issues.html": 0.4943,
    "conformance/attribs/gl-vertexattribpointer-offsets.html": 0.6046,
    "conformance/attribs/gl-vertexattribpointer.html": 0.7484,
    "conformance/buffers/buffer-bind-test.html": 0.5131,
    "conformance/buffers/buffer-data-and-buffer-sub-data.html": 0.439,
    "conformance/buffers/buffer-data-array-buffer-delete.html": 2.4621,
    "conformance/buffers/buffer-data-dynamic-delay.html": 0.399,
    "conformance/buffers/buffer-uninitialized.html": 0.4843,
    "conformance/buffers/element-array-buffer-delete-recreate.html": 0.4642,
    "conformance/buffers/index-validation-copies-indices.html": 0.2437,
    "conformance/buffers/index-validation-crash-with-buffer-sub-data.html": 0.3157,
    "conformance/buffers/index-validation-large-buffer.html": 0.471,
    "conformance/buffers/index-validation-verifies-too-many-indices.html": 0.3004,
    "conformance/buffers/index-validation-with-resized-buffer.html": 0.4761,
    "conformance/buffers/index-validation.html": 0.4785,
    "conformance/buffers/vertex-buffer-updated-after-draw.html": 0.5121,
    "conformance/canvas/buffer-offscreen-test.html": 0.7097,
    "conformance/canvas/buffer-preserve-test.html": 1.3437,
    "conformance/canvas/canvas-test.html": 0.5966,
    "conformance/canvas/canvas-zero-size.html": 0.2971,
    "conformance/canvas/draw-static-webgl-to-multiple-canvas-test.html": 0.8442,
    "conformance/canvas/draw-webgl-to-canvas-test.html": 0.7528,
    "conformance/canvas/drawingbuffer-hd-dpi-test.html": 0.5843,
    "conformance/canvas/drawingbuffer-static-canvas-test.html": 0.4869,
    "conformance/canvas/drawingbuffer-test.html": 0.2856,
    "conformance/canvas/framebuffer-bindings-affected-by-to-data-url.html": 0.5379,
    "conformance/canvas/framebuffer-bindings-unaffected-on-resize.html": 0.5718,
    "conformance/canvas/rapid-resizing.html": 2.6131,
    "conformance/canvas/render-after-resize-test.html": 0.5117,
    "conformance/canvas/texture-bindings-unaffected-on-resize.html": 0.4783,
    "conformance/canvas/to-data-url-after-composite.html": 0.5705,
    "conformance/canvas/to-data-url-test.html": 0.5694,
    "conformance/canvas/viewport-unchanged-upon-resize.html": 0.4505,
    "conformance/canvas/webgl-to-2d-canvas.html": 1.0184,
    "conformance/context/context-attribute-preserve-drawing-buffer-antialias.html": 0.4123,
    "conformance/context/context-attribute-preserve-drawing-buffer.html": 0.8602,
    "conformance/context/context-attributes-alpha-depth-stencil-antialias.html": 0.9941,
    "conformance/context/context-creation-and-destruction.html": 0.9003,
    "conformance/context/context-creation.html": 0.987,
    "conformance/context/context-eviction-with-garbage-collection.html": 1.2343,
    "conformance/context/context-hidden-alpha.html": 0.231,
    "conformance/context/context-lost-restored.html": 0.7231,
    "conformance/context/context-lost.html": 0.6328,
    "conformance/context/context-no-alpha-fbo-with-alpha.html": 0.5196,
    "conformance/context/context-release-upon-reload.html": 1.8795,
    "conformance/context/context-release-with-workers.html": 1.5809,
    "conformance/context/context-size-change.html": 0.0852,
    "conformance/context/deleted-object-behavior.html": 0.562,
    "conformance/context/incorrect-context-object-behaviour.html": 0.6744,
    "conformance/context/premultiplyalpha-test.html": 1.0118,
    "conformance/context/user-defined-properties-on-context.html": 0.0767,
    "conformance/context/zero-sized-canvas.html": 0.2985,
    "conformance/extensions/ext-color-buffer-half-float.html": 0.7325,
    "conformance/extensions/ext-disjoint-timer-query.html": 0.0568,
    "conformance/extensions/ext-float-blend.html": 0.32,
    "conformance/extensions/ext-polygon-offset-clamp.html": 0.5715,
    "conformance/extensions/ext-texture-compression-bptc.html": 0.5544,
    "conformance/extensions/ext-texture-compression-rgtc.html": 0.2783,
    "conformance/extensions/ext-texture-filter-anisotropic.html": 0.4327,
    "conformance/extensions/get-extension.html": 0.3218,
    "conformance/extensions/khr-parallel-shader-compile.html": 9.8413,
    "conformance/extensions/oes-texture-float-linear.html": 0.7018,
    "conformance/extensions/s3tc-and-rgtc.html": 1.9267,
    "conformance/extensions/webgl-compressed-texture-astc.html": 0.2712,
    "conformance/extensions/webgl-compressed-texture-etc.html": 0.0898,
    "conformance/extensions/webgl-compressed-texture-etc1.html": 0.4828,
    "conformance/extensions/webgl-compressed-texture-pvrtc.html": 0.2881,
    "conformance/extensions/webgl-compressed-texture-s3tc-srgb.html": 1.4738,
    "conformance/extensions/webgl-compressed-texture-size-limit.html": 3.1683,
    "conformance/extensions/webgl-debug-renderer-info.html": 0.2263,
    "conformance/extensions/webgl-debug-shaders.html": 0.5324,
    "conformance/extensions/webgl-multi-draw.html": 2.9653,
    "conformance/glsl/bugs/angle-ambiguous-function-call.html": 0.2257,
    "conformance/glsl/bugs/angle-constructor-invalid-parameters.html": 0.2116,
    "conformance/glsl/bugs/angle-d3d11-compiler-error.html": 0.2111,
    "conformance/glsl/bugs/angle-dx-variable-bug.html": 0.6698,
    "conformance/glsl/bugs/array-of-struct-with-int-first-position.html": 0.4602,
    "conformance/glsl/bugs/assign-to-swizzled-twice-in-function.html": 0.3046,
    "conformance/glsl/bugs/bool-type-cast-bug-int-float.html": 0.1441,
    "conformance/glsl/bugs/character-set.html": 0.3142,
    "conformance/glsl/bugs/compare-loop-index-to-uniform.html": 0.5346,
    "conformance/glsl/bugs/complex-glsl-does-not-crash.html": 1.2799,
    "conformance/glsl/bugs/compound-assignment-type-combination.html": 1.2747,
    "conformance/glsl/bugs/conditional-discard-in-loop.html": 0.1831,
    "conformance/glsl/bugs/conditional-discard-optimization.html": 0.2084,
    "conformance/glsl/bugs/conditional-texture-fetch.html": 0.4744,
    "conformance/glsl/bugs/constant-precision-qualifier.html": 0.2821,
    "conformance/glsl/bugs/floor-div-cos-should-not-truncate.html": 0.0937,
    "conformance/glsl/bugs/floored-division-accuracy.html": 0.139,
    "conformance/glsl/bugs/fragcoord-linking-bug.html": 0.3603,
    "conformance/glsl/bugs/gl-fragcoord-multisampling-bug.html": 0.4554,
    "conformance/glsl/bugs/global-invariant-does-not-leak-across-shaders.html": 0.4802,
    "conformance/glsl/bugs/if-return-and-elseif.html": 0.2549,
    "conformance/glsl/bugs/in-parameter-passed-as-inout-argument-and-global.html": 0.297,
    "conformance/glsl/bugs/init-array-with-loop.html": 0.1339,
    "conformance/glsl/bugs/invariant-does-not-leak-across-shaders.html": 0.1669,
    "conformance/glsl/bugs/logic-inside-block-without-braces.html": 0.2539,
    "conformance/glsl/bugs/long-expressions-should-not-crash.html": 0.9591,
    "conformance/glsl/bugs/loop-if-loop-gradient.html": 0.1663,
    "conformance/glsl/bugs/modulo-arithmetic-accuracy.html": 0.3352,
    "conformance/glsl/bugs/multiplication-assignment.html": 0.5368,
    "conformance/glsl/bugs/nested-functions-should-not-crash.html": 0.2301,
    "conformance/glsl/bugs/nested-loops-with-break-and-continue.html": 0.1377,
    "conformance/glsl/bugs/nested-sequence-operator.html": 0.3724,
    "conformance/glsl/bugs/pow-of-small-constant-in-user-defined-function.html": 0.5496,
    "conformance/glsl/bugs/pow-with-constant-exponent-should-not-crash.html": 0.3672,
    "conformance/glsl/bugs/qualcomm-crash.html": 0.0848,
    "conformance/glsl/bugs/qualcomm-loop-with-continue-crash.html": 0.2187,
    "conformance/glsl/bugs/sampler-array-struct-function-arg.html": 0.2636,
    "conformance/glsl/bugs/sampler-array-using-loop-index.html": 0.1797,
    "conformance/glsl/bugs/sampler-struct-function-arg.html": 0.2891,
    "conformance/glsl/bugs/sequence-operator-evaluation-order.html": 0.1765,
    "conformance/glsl/bugs/sketchfab-lighting-shader-crash.html": 0.2098,
    "conformance/glsl/bugs/struct-constructor-highp-bug.html": 0.3413,
    "conformance/glsl/bugs/struct-with-single-member-constructor.html": 0.1358,
    "conformance/glsl/bugs/temp-expressions-should-not-crash.html": 0.9964,
    "conformance/glsl/bugs/unary-minus-operator-float-bug.html": 0.3439,
    "conformance/glsl/bugs/undefined-index-should-not-crash.html": 0.0712,
    "conformance/glsl/bugs/uniforms-should-not-lose-values.html": 0.5218,
    "conformance/glsl/bugs/varying-arrays-should-not-be-reversed.html": 0.1142,
    "conformance/glsl/bugs/vector-matrix-constructor-scalarization.html": 0.3037,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop-complex.html": 0.2474,
    "conformance/glsl/bugs/vector-scalar-arithmetic-inside-loop.html": 0.3298,
    "conformance/glsl/constructors/glsl-construct-bvec2.html": 0.3944,
    "conformance/glsl/constructors/glsl-construct-bvec3.html": 0.6289,
    "conformance/glsl/constructors/glsl-construct-bvec4.html": 0.753,
    "conformance/glsl/constructors/glsl-construct-ivec2.html": 0.3466,
    "conformance/glsl/constructors/glsl-construct-ivec3.html": 0.5547,
    "conformance/glsl/constructors/glsl-construct-ivec4.html": 0.7415,
    "conformance/glsl/constructors/glsl-construct-mat2.html": 0.4234,
    "conformance/glsl/constructors/glsl-construct-mat3.html": 0.3606,
    "conformance/glsl/constructors/glsl-construct-mat4.html": 0.3656,
    "conformance/glsl/constructors/glsl-construct-vec-mat-corner-cases.html": 0.2766,
    "conformance/glsl/constructors/glsl-construct-vec-mat-index.html": 0.0884,
    "conformance/glsl/constructors/glsl-construct-vec2.html": 0.4714,
    "conformance/glsl/constructors/glsl-construct-vec3.html": 0.4361,
    "conformance/glsl/constructors/glsl-construct-vec4.html": 0.6648,
    "conformance/glsl/functions/glsl-function-abs.html": 0.6185,
    "conformance/glsl/functions/glsl-function-acos.html": 0.2453,
    "conformance/glsl/functions/glsl-function-asin.html": 0.6857,
    "conformance/glsl/functions/glsl-function-atan-xy.html": 0.7281,
    "conformance/glsl/functions/glsl-function-atan.html": 0.457,
    "conformance/glsl/functions/glsl-function-ceil.html": 0.6355,
    "conformance/glsl/functions/glsl-function-clamp-float.html": 0.4927,
    "conformance/glsl/functions/glsl-function-clamp-gentype.html": 0.5022,
    "conformance/glsl/functions/glsl-function-cos.html": 0.4592,
    "conformance/glsl/functions/glsl-function-cross.html": 0.4161,
    "conformance/glsl/functions/glsl-function-distance.html": 0.486,
    "conformance/glsl/functions/glsl-function-dot.html": 0.5047,
    "conformance/glsl/functions/glsl-function-faceforward.html": 0.5248,
    "conformance/glsl/functions/glsl-function-floor.html": 0.4673,
    "conformance/glsl/functions/glsl-function-fract.html": 0.6352,
    "conformance/glsl/functions/glsl-function-length.html": 0.4649,
    "conformance/glsl/functions/glsl-function-max-float.html": 0.4862,
    "conformance/glsl/functions/glsl-function-max-gentype.html": 0.4958,
    "conformance/glsl/functions/glsl-function-min-float.html": 0.3899,
    "conformance/glsl/functions/glsl-function-min-gentype.html": 0.3389,
    "conformance/glsl/functions/glsl-function-mix-float.html": 0.7072,
    "conformance/glsl/functions/glsl-function-mix-gentype.html": 0.9923,
    "conformance/glsl/functions/glsl-function-mod-float.html": 0.4747,
    "conformance/glsl/functions/glsl-function-mod-gentype.html": 0.4758,
    "conformance/glsl/functions/glsl-function-normalize.html": 0.3985,
    "conformance/glsl/functions/glsl-function-reflect.html": 0.3915,
    "conformance/glsl/functions/glsl-function-sign.html": 0.4952,
    "conformance/glsl/functions/glsl-function-sin.html": 0.2764,
    "conformance/glsl/functions/glsl-function-smoothstep-float.html": 0.4451,
    "conformance/glsl/functions/glsl-function-smoothstep-gentype.html": 0.5128,
    "conformance/glsl/functions/glsl-function-step-float.html": 0.3812,
    "conformance/glsl/functions/glsl-function-step-gentype.html": 0.461,
    "conformance/glsl/functions/glsl-function.html": 0.5921,
    "conformance/glsl/implicit/add_int_float.vert.html": 0.178,
    "conformance/glsl/implicit/add_int_mat2.vert.html": 0.161,
    "conformance/glsl/implicit/add_int_mat3.vert.html": 0.3003,
    "conformance/glsl/implicit/add_int_mat4.vert.html": 0.167,
    "conformance/glsl/implicit/add_int_vec2.vert.html": 0.2518,
    "conformance/glsl/implicit/add_int_vec3.vert.html": 0.2483,
    "conformance/glsl/implicit/add_int_vec4.vert.html": 0.2664,
    "conformance/glsl/implicit/add_ivec2_vec2.vert.html": 0.2205,
    "conformance/glsl/implicit/add_ivec3_vec3.vert.html": 0.218,
    "conformance/glsl/implicit/add_ivec4_vec4.vert.html": 0.23,
    "conformance/glsl/implicit/assign_int_to_float.vert.html": 0.1578,
    "conformance/glsl/implicit/assign_ivec2_to_vec2.vert.html": 0.1587,
    "conformance/glsl/implicit/assign_ivec3_to_vec3.vert.html": 0.2943,
    "conformance/glsl/implicit/assign_ivec4_to_vec4.vert.html": 0.2138,
    "conformance/glsl/implicit/construct_struct.vert.html": 0.2311,
    "conformance/glsl/implicit/divide_int_float.vert.html": 0.1125,
    "conformance/glsl/implicit/divide_int_mat2.vert.html": 0.0605,
    "conformance/glsl/implicit/divide_int_mat3.vert.html": 0.2694,
    "conformance/glsl/implicit/divide_int_mat4.vert.html": 0.2222,
    "conformance/glsl/implicit/divide_int_vec2.vert.html": 0.1803,
    "conformance/glsl/implicit/divide_int_vec3.vert.html": 0.1143,
    "conformance/glsl/implicit/divide_int_vec4.vert.html": 0.11,
    "conformance/glsl/implicit/divide_ivec2_vec2.vert.html": 0.2117,
    "conformance/glsl/implicit/divide_ivec3_vec3.vert.html": 0.2234,
    "conformance/glsl/implicit/divide_ivec4_vec4.vert.html": 0.2568,
    "conformance/glsl/implicit/equal_int_float.vert.html": 0.2529,
    "conformance/glsl/implicit/equal_ivec2_vec2.vert.html": 0.3079,
    "conformance/glsl/implicit/equal_ivec3_vec3.vert.html": 0.2339,
    "conformance/glsl/implicit/equal_ivec4_vec4.vert.html": 0.3159,
    "conformance/glsl/implicit/function_int_float.vert.html": 0.2042,
    "conformance/glsl/implicit/function_ivec2_vec2.vert.html": 0.2919,
    "conformance/glsl/implicit/function_ivec3_vec3.vert.html": 0.1087,
    "conformance/glsl/implicit/function_ivec4_vec4.vert.html": 0.2947,
    "conformance/glsl/implicit/greater_than.vert.html": 0.2078,
    "conformance/glsl/implicit/greater_than_equal.vert.html": 0.2707,
    "conformance/glsl/implicit/less_than.vert.html": 0.2148,
    "conformance/glsl/implicit/less_than_equal.vert.html": 0.2367,
    "conformance/glsl/implicit/multiply_int_float.vert.html": 0.2555,
    "conformance/glsl/implicit/multiply_int_mat2.vert.html": 0.2126,
    "conformance/glsl/implicit/multiply_int_mat3.vert.html": 0.2202,
    "conformance/glsl/implicit/multiply_int_mat4.vert.html": 0.3184,
    "conformance/glsl/implicit/multiply_int_vec2.vert.html": 0.2763,
    "conformance/glsl/implicit/multiply_int_vec3.vert.html": 0.1705,
    "conformance/glsl/implicit/multiply_int_vec4.vert.html": 0.1098,
    "conformance/glsl/implicit/multiply_ivec2_vec2.vert.html": 0.2208,
    "conformance/glsl/implicit/multiply_ivec3_vec3.vert.html": 0.276,
    "conformance/glsl/implicit/multiply_ivec4_vec4.vert.html": 0.2105,
    "conformance/glsl/implicit/not_equal_int_float.vert.html": 0.2843,
    "conformance/glsl/implicit/not_equal_ivec2_vec2.vert.html": 0.259,
    "conformance/glsl/implicit/not_equal_ivec3_vec3.vert.html": 0.2934,
    "conformance/glsl/implicit/not_equal_ivec4_vec4.vert.html": 0.2567,
    "conformance/glsl/implicit/subtract_int_float.vert.html": 0.0608,
    "conformance/glsl/implicit/subtract_int_mat2.vert.html": 0.2746,
    "conformance/glsl/implicit/subtract_int_mat3.vert.html": 0.2794,
    "conformance/glsl/implicit/subtract_int_mat4.vert.html": 0.2229,
    "conformance/glsl/implicit/subtract_int_vec2.vert.html": 0.0562,
    "conformance/glsl/implicit/subtract_int_vec3.vert.html": 0.0726,
    "conformance/glsl/implicit/subtract_int_vec4.vert.html": 0.3141,
    "conformance/glsl/implicit/subtract_ivec2_vec2.vert.html": 0.0524,
    "conformance/glsl/implicit/subtract_ivec3_vec3.vert.html": 0.1151,
    "conformance/glsl/implicit/subtract_ivec4_vec4.vert.html": 0.2137,
    "conformance/glsl/implicit/ternary_int_float.vert.html": 0.3139,
    "conformance/glsl/implicit/ternary_ivec2_vec2.vert.html": 0.2797,
    "conformance/glsl/implicit/ternary_ivec3_vec3.vert.html": 0.0546,
    "conformance/glsl/implicit/ternary_ivec4_vec4.vert.html": 0.2882,
    "conformance/glsl/literals/float_literal.vert.html": 0.2693,
    "conformance/glsl/literals/literal_precision.html": 0.1616,
    "conformance/glsl/literals/overflow_leak.vert.html": 0.2817,
    "conformance/glsl/matrices/glsl-mat3-construction.html": 0.3183,
    "conformance/glsl/matrices/glsl-mat4-to-mat3.html": 0.1094,
    "conformance/glsl/matrices/matrix-compound-multiply.html": 0.1053,
    "conformance/glsl/misc/boolean_precision.html": 0.3297,
    "conformance/glsl/misc/const-variable-initialization.html": 1.2919,
    "conformance/glsl/misc/embedded-struct-definitions-forbidden.html": 0.2542,
    "conformance/glsl/misc/empty-declaration.html": 0.3734,
    "conformance/glsl/misc/empty_main.vert.html": 0.1156,
    "conformance/glsl/misc/expression-list-in-declarator-initializer.html": 0.7215,
    "conformance/glsl/misc/fragcolor-fragdata-invariant.html": 0.0586,
    "conformance/glsl/misc/gl_position_unset.vert.html": 0.0758,
    "conformance/glsl/misc/global-variable-init.html": 0.394,
    "conformance/glsl/misc/glsl-function-nodes.html": 0.3326,
    "conformance/glsl/misc/glsl-long-variable-names.html": 0.0971,
    "conformance/glsl/misc/glsl-vertex-branch.html": 0.4315,
    "conformance/glsl/misc/large-loop-compile.html": 0.5957,
    "conformance/glsl/misc/local-variable-shadowing-outer-function.html": 0.0661,
    "conformance/glsl/misc/non-ascii-comments.vert.html": 0.0623,
    "conformance/glsl/misc/non-ascii.vert.html": 0.0585,
    "conformance/glsl/misc/re-compile-re-link.html": 0.1191,
    "conformance/glsl/misc/sampler-operand.html": 0.0676,
    "conformance/glsl/misc/sequence-operator-returns-constant.html": 0.2356,
    "conformance/glsl/misc/shader-precision-format-obeyed.html": 0.1017,
    "conformance/glsl/misc/shader-struct-scope.html": 0.0874,
    "conformance/glsl/misc/shader-uniform-packing-restrictions.html": 1.7455,
    "conformance/glsl/misc/shader-varying-packing-restrictions.html": 0.4222,
    "conformance/glsl/misc/shader-with-256-character-define.html": 0.1018,
    "conformance/glsl/misc/shader-with-256-character-identifier.frag.html": 0.0836,
    "conformance/glsl/misc/shader-with-_webgl-identifier.vert.html": 0.0873,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.frag.html": 0.0638,
    "conformance/glsl/misc/shader-with-arbitrary-indexing.vert.html": 0.0786,
    "conformance/glsl/misc/shader-with-array-of-structs-containing-arrays.html": 0.081,
    "conformance/glsl/misc/shader-with-array-of-structs-uniform.html": 0.1296,
    "conformance/glsl/misc/shader-with-attrib-array.vert.html": 0.0609,
    "conformance/glsl/misc/shader-with-attrib-struct.vert.html": 0.0563,
    "conformance/glsl/misc/shader-with-clipvertex.vert.html": 0.0689,
    "conformance/glsl/misc/shader-with-comma-assignment.html": 0.1682,
    "conformance/glsl/misc/shader-with-comma-conditional-assignment.html": 0.1777,
    "conformance/glsl/misc/shader-with-comma-separated-variable-declarations.html": 0.2817,
    "conformance/glsl/misc/shader-with-conditional-scoping-negative.html": 0.105,
    "conformance/glsl/misc/shader-with-conditional-scoping.html": 0.2671,
    "conformance/glsl/misc/shader-with-default-precision.frag.html": 0.2995,
    "conformance/glsl/misc/shader-with-default-precision.vert.html": 0.3197,
    "conformance/glsl/misc/shader-with-dfdx-no-ext.frag.html": 0.0716,
    "conformance/glsl/misc/shader-with-dfdx.frag.html": 0.1123,
    "conformance/glsl/misc/shader-with-do-loop.html": 0.0606,
    "conformance/glsl/misc/shader-with-error-directive.html": 0.0731,
    "conformance/glsl/misc/shader-with-explicit-int-cast.vert.html": 0.0693,
    "conformance/glsl/misc/shader-with-float-return-value.frag.html": 0.0621,
    "conformance/glsl/misc/shader-with-for-loop.html": 0.0828,
    "conformance/glsl/misc/shader-with-for-scoping.html": 0.0864,
    "conformance/glsl/misc/shader-with-frag-depth.frag.html": 0.2757,
    "conformance/glsl/misc/shader-with-function-recursion.frag.html": 0.0858,
    "conformance/glsl/misc/shader-with-function-scoped-struct.html": 0.052,
    "conformance/glsl/misc/shader-with-functional-scoping.html": 0.1003,
    "conformance/glsl/misc/shader-with-glcolor.vert.html": 0.0588,
    "conformance/glsl/misc/shader-with-gles-1.frag.html": 0.0629,
    "conformance/glsl/misc/shader-with-gles-symbol.frag.html": 0.0565,
    "conformance/glsl/misc/shader-with-global-variable-precision-mismatch.html": 0.0697,
    "conformance/glsl/misc/shader-with-glprojectionmatrix.vert.html": 0.0757,
    "conformance/glsl/misc/shader-with-hex-int-constant-macro.html": 0.1846,
    "conformance/glsl/misc/shader-with-implicit-vec3-to-vec4-cast.vert.html": 0.052,
    "conformance/glsl/misc/shader-with-include.vert.html": 0.0612,
    "conformance/glsl/misc/shader-with-int-return-value.frag.html": 0.0734,
    "conformance/glsl/misc/shader-with-invalid-identifier.frag.html": 0.0533,
    "conformance/glsl/misc/shader-with-ivec2-return-value.frag.html": 0.0681,
    "conformance/glsl/misc/shader-with-ivec3-return-value.frag.html": 0.0698,
    "conformance/glsl/misc/shader-with-ivec4-return-value.frag.html": 0.0639,
    "conformance/glsl/misc/shader-with-limited-indexing.frag.html": 0.3125,
    "conformance/glsl/misc/shader-with-long-line.html": 0.0655,
    "conformance/glsl/misc/shader-with-non-ascii-error.frag.html": 0.2134,
    "conformance/glsl/misc/shader-with-non-reserved-words-1-of-8.html": 2.5214,
    "conformance/glsl/misc/shader-with-non-reserved-words-2-of-8.html": 2.2196,
    "conformance/glsl/misc/shader-with-non-reserved-words-3-of-8.html": 2.2609,
    "conformance/glsl/misc/shader-with-non-reserved-words-4-of-8.html": 2.3697,
    "conformance/glsl/misc/shader-with-non-reserved-words-5-of-8.html": 0.8938,
    "conformance/glsl/misc/shader-with-non-reserved-words-6-of-8.html": 1.3666,
    "conformance/glsl/misc/shader-with-non-reserved-words-7-of-8.html": 2.1776,
    "conformance/glsl/misc/shader-with-non-reserved-words-8-of-8.html": 0.7401,
    "conformance/glsl/misc/shader-with-precision.frag.html": 0.2165,
    "conformance/glsl/misc/shader-with-preprocessor-whitespace.html": 0.221,
    "conformance/glsl/misc/shader-with-quoted-error.frag.html": 0.2122,
    "conformance/glsl/misc/shader-with-reserved-words.html": 2.7221,
    "conformance/glsl/misc/shader-with-short-circuiting-operators.html": 0.243,
    "conformance/glsl/misc/shader-with-similar-uniform-array-names.html": 0.3429,
    "conformance/glsl/misc/shader-with-too-many-uniforms.html": 0.6754,
    "conformance/glsl/misc/shader-with-two-initializer-types.html": 0.1154,
    "conformance/glsl/misc/shader-with-undefined-preprocessor-symbol.frag.html": 0.1496,
    "conformance/glsl/misc/shader-with-uniform-in-loop-condition.vert.html": 0.2115,
    "conformance/glsl/misc/shader-with-vec2-return-value.frag.html": 0.1389,
    "conformance/glsl/misc/shader-with-vec3-return-value.frag.html": 0.0994,
    "conformance/glsl/misc/shader-with-vec4-return-value.frag.html": 0.2843,
    "conformance/glsl/misc/shader-with-vec4-vec3-vec4-conditional.html": 0.0665,
    "conformance/glsl/misc/shader-with-version-100.frag.html": 0.1746,
    "conformance/glsl/misc/shader-with-version-100.vert.html": 0.0647,
    "conformance/glsl/misc/shader-with-version-120.vert.html": 0.0612,
    "conformance/glsl/misc/shader-with-version-130.vert.html": 0.4612,
    "conformance/glsl/misc/shader-with-webgl-identifier.vert.html": 0.2089,
    "conformance/glsl/misc/shader-with-while-loop.html": 0.0564,
    "conformance/glsl/misc/shader-without-precision.frag.html": 0.2552,
    "conformance/glsl/misc/shaders-with-constant-expression-loop-conditions.html": 0.2254,
    "conformance/glsl/misc/shaders-with-invariance.html": 0.1159,
    "conformance/glsl/misc/shaders-with-mis-matching-uniforms.html": 0.2909,
    "conformance/glsl/misc/shaders-with-mis-matching-varyings.html": 0.2001,
    "conformance/glsl/misc/shaders-with-missing-varyings.html": 0.2207,
    "conformance/glsl/misc/shaders-with-name-conflicts.html": 0.2653,
    "conformance/glsl/misc/shaders-with-uniform-structs.html": 0.3197,
    "conformance/glsl/misc/shaders-with-varyings.html": 0.3053,
    "conformance/glsl/misc/shared.html": 0.2322,
    "conformance/glsl/misc/struct-as-inout-parameter.html": 0.1718,
    "conformance/glsl/misc/struct-as-out-parameter.html": 0.1287,
    "conformance/glsl/misc/struct-assign.html": 0.1307,
    "conformance/glsl/misc/struct-equals.html": 0.2455,
    "conformance/glsl/misc/struct-mixed-array-declarators.html": 0.5116,
    "conformance/glsl/misc/struct-nesting-exceeds-maximum.html": 0.0626,
    "conformance/glsl/misc/struct-nesting-of-variable-names.html": 1.3477,
    "conformance/glsl/misc/struct-nesting-under-maximum.html": 0.0693,
    "conformance/glsl/misc/struct-specifiers-in-uniforms.html": 0.3964,
    "conformance/glsl/misc/struct-unary-operators.html": 0.0722,
    "conformance/glsl/misc/ternary-operator-on-arrays.html": 0.0582,
    "conformance/glsl/misc/ternary-operators-in-global-initializers.html": 0.437,
    "conformance/glsl/misc/ternary-operators-in-initializers.html": 0.337,
    "conformance/glsl/misc/uninitialized-local-global-variables.html": 0.3189,
    "conformance/glsl/preprocessor/comments.html": 0.4147,
    "conformance/glsl/preprocessor/macro-expansion-tricky.html": 0.1677,
    "conformance/glsl/reserved/_webgl_field.vert.html": 0.2174,
    "conformance/glsl/reserved/_webgl_function.vert.html": 0.0813,
    "conformance/glsl/reserved/_webgl_struct.vert.html": 0.0701,
    "conformance/glsl/reserved/_webgl_variable.vert.html": 0.1097,
    "conformance/glsl/reserved/webgl_field.vert.html": 0.263,
    "conformance/glsl/reserved/webgl_function.vert.html": 0.118,
    "conformance/glsl/reserved/webgl_struct.vert.html": 0.0591,
    "conformance/glsl/reserved/webgl_variable.vert.html": 0.0503,
    "conformance/glsl/samplers/glsl-function-texture2d-bias.html": 0.0927,
    "conformance/glsl/samplers/glsl-function-texture2dlod.html": 0.0899,
    "conformance/glsl/samplers/glsl-function-texture2dproj.html": 0.349,
    "conformance/glsl/samplers/glsl-function-texture2dprojlod.html": 0.6773,
    "conformance/glsl/variables/gl-fragcoord-xy-values.html": 0.1741,
    "conformance/glsl/variables/gl-fragcoord.html": 0.0711,
    "conformance/glsl/variables/gl-fragdata-and-fragcolor.html": 0.2949,
    "conformance/glsl/variables/gl-frontfacing.html": 0.1406,
    "conformance/glsl/variables/gl-pointcoord.html": 0.2878,
    "conformance/glsl/variables/glsl-built-ins.html": 0.18,
    "conformance/limits/gl-line-width.html": 0.2205,
    "conformance/limits/gl-max-texture-dimensions.html": 0.2652,
    "conformance/limits/gl-min-attribs.html": 0.121,
    "conformance/limits/gl-min-textures.html": 0.0687,
    "conformance/limits/gl-min-uniforms.html": 0.187,
    "conformance/misc/bad-arguments-test.html": 0.0905,
    "conformance/misc/boolean-argument-conversion.html": 0.0764,
    "conformance/misc/delayed-drawing.html": 1.2559,
    "conformance/misc/error-reporting.html": 0.1336,
    "conformance/misc/expando-loss.html": 0.1202,
    "conformance/misc/functions-returning-strings.html": 0.065,
    "conformance/misc/hint.html": 0.1046,
    "conformance/misc/invalid-passed-params.html": 0.231,
    "conformance/misc/is-object.html": 0.0552,
    "conformance/misc/null-object-behaviour.html": 0.2139,
    "conformance/misc/object-deletion-behaviour.html": 0.4955,
    "conformance/misc/shader-precision-format.html": 0.3915,
    "conformance/misc/type-conversion-test.html": 0.2336,
    "conformance/misc/uninitialized-test.html": 0.312,
    "conformance/misc/webgl-specific-stencil-settings.html": 0.3709,
    "conformance/misc/webgl-specific.html": 0.1035,
    "conformance/more/conformance/constants.html": 0.1224,
    "conformance/more/conformance/getContext.html": 0.0707,
    "conformance/more/conformance/methods.html": 0.095,
    "conformance/more/conformance/quickCheckAPI-A.html": 0.2352,
    "conformance/more/conformance/quickCheckAPI-B1.html": 0.2961,
    "conformance/more/conformance/quickCheckAPI-B2.html": 0.239,
    "conformance/more/conformance/quickCheckAPI-B3.html": 0.2847,
    "conformance/more/conformance/quickCheckAPI-B4.html": 0.0756,
    "conformance/more/conformance/quickCheckAPI-C.html": 0.0857,
    "conformance/more/conformance/quickCheckAPI-D_G.html": 0.1086,
    "conformance/more/conformance/quickCheckAPI-G_I.html": 0.2343,
    "conformance/more/conformance/quickCheckAPI-L_S.html": 0.2478,
    "conformance/more/conformance/quickCheckAPI-S_V.html": 0.0897,
    "conformance/more/conformance/webGLArrays.html": 0.0875,
    "conformance/more/functions/bindBuffer.html": 0.0709,
    "conformance/more/functions/bindBufferBadArgs.html": 0.0746,
    "conformance/more/functions/bindFramebufferLeaveNonZero.html": 0.0618,
    "conformance/more/functions/bufferData.html": 0.2114,
    "conformance/more/functions/bufferDataBadArgs.html": 0.2378,
    "conformance/more/functions/bufferSubData.html": 0.069,
    "conformance/more/functions/bufferSubDataBadArgs.html": 0.249,
    "conformance/more/functions/copyTexImage2D.html": 0.2255,
    "conformance/more/functions/copyTexImage2DBadArgs.html": 0.1259,
    "conformance/more/functions/copyTexSubImage2D.html": 0.0964,
    "conformance/more/functions/copyTexSubImage2DBadArgs.html": 0.0783,
    "conformance/more/functions/deleteBufferBadArgs.html": 0.0607,
    "conformance/more/functions/drawArrays.html": 0.2613,
    "conformance/more/functions/drawElements.html": 0.1035,
    "conformance/more/functions/isTests.html": 0.2648,
    "conformance/more/functions/isTestsBadArgs.html": 0.078,
    "conformance/more/functions/readPixels.html": 0.0865,
    "conformance/more/functions/readPixelsBadArgs.html": 0.3196,
    "conformance/more/functions/texImage2D.html": 0.1704,
    "conformance/more/functions/texImage2DBadArgs.html": 0.2753,
    "conformance/more/functions/texImage2DHTML.html": 0.4124,
    "conformance/more/functions/texImage2DHTMLBadArgs.html": 0.0642,
    "conformance/more/functions/texSubImage2D.html": 0.1058,
    "conformance/more/functions/texSubImage2DBadArgs.html": 0.07,
    "conformance/more/functions/texSubImage2DHTML.html": 0.4237,
    "conformance/more/functions/texSubImage2DHTMLBadArgs.html": 0.2222,
    "conformance/more/functions/uniformMatrix.html": 0.2989,
    "conformance/more/functions/uniformMatrixBadArgs.html": 0.1991,
    "conformance/more/functions/uniformf.html": 0.2473,
    "conformance/more/functions/uniformfArrayLen1.html": 0.2354,
    "conformance/more/functions/uniformfBadArgs.html": 0.2427,
    "conformance/more/functions/uniformi.html": 0.2391,
    "conformance/more/functions/uniformiBadArgs.html": 0.2552,
    "conformance/more/functions/vertexAttrib.html": 0.0766,
    "conformance/more/functions/vertexAttribBadArgs.html": 0.0956,
    "conformance/more/functions/vertexAttribPointer.html": 0.288,
    "conformance/more/functions/vertexAttribPointerBadArgs.html": 0.2738,
    "conformance/more/glsl/arrayOutOfBounds.html": 0.2516,
    "conformance/more/glsl/uniformOutOfBounds.html": 0.0922,
    "conformance/offscreencanvas/context-attribute-preserve-drawing-buffer.html": 0.6305,
    "conformance/offscreencanvas/context-creation-worker.html": 0.0816,
    "conformance/offscreencanvas/context-creation.html": 0.0638,
    "conformance/offscreencanvas/context-lost-restored-worker.html": 0.1061,
    "conformance/offscreencanvas/context-lost-restored.html": 0.0971,
    "conformance/offscreencanvas/context-lost-worker.html": 0.2389,
    "conformance/offscreencanvas/context-lost.html": 0.1262,
    "conformance/offscreencanvas/methods-worker.html": 0.1291,
    "conformance/offscreencanvas/methods.html": 0.0559,
    "conformance/offscreencanvas/offscreencanvas-resize.html": 0.0803,
    "conformance/offscreencanvas/offscreencanvas-timer-query.html": 0.1906,
    "conformance/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.1854,
    "conformance/ogles/GL/abs/abs_001_to_006.html": 0.5811,
    "conformance/ogles/GL/acos/acos_001_to_006.html": 0.9108,
    "conformance/ogles/GL/all/all_001_to_004.html": 0.3999,
    "conformance/ogles/GL/any/any_001_to_004.html": 0.3795,
    "conformance/ogles/GL/array/array_001_to_006.html": 0.3324,
    "conformance/ogles/GL/asin/asin_001_to_006.html": 0.9026,
    "conformance/ogles/GL/atan/atan_001_to_008.html": 1.0168,
    "conformance/ogles/GL/atan/atan_009_to_012.html": 0.5961,
    "conformance/ogles/GL/biConstants/biConstants_001_to_008.html": 0.6542,
    "conformance/ogles/GL/biConstants/biConstants_009_to_016.html": 0.8715,
    "conformance/ogles/GL/biuDepthRange/biuDepthRange_001_to_002.html": 0.3222,
    "conformance/ogles/GL/build/build_001_to_008.html": 0.2189,
    "conformance/ogles/GL/build/build_009_to_016.html": 0.2032,
    "conformance/ogles/GL/build/build_017_to_024.html": 0.3607,
    "conformance/ogles/GL/build/build_025_to_032.html": 0.3673,
    "conformance/ogles/GL/build/build_033_to_040.html": 0.2193,
    "conformance/ogles/GL/build/build_041_to_048.html": 0.1381,
    "conformance/ogles/GL/build/build_049_to_056.html": 0.388,
    "conformance/ogles/GL/build/build_057_to_064.html": 0.3471,
    "conformance/ogles/GL/build/build_065_to_072.html": 0.2941,
    "conformance/ogles/GL/build/build_073_to_080.html": 0.1763,
    "conformance/ogles/GL/build/build_081_to_088.html": 0.3378,
    "conformance/ogles/GL/build/build_089_to_096.html": 0.1456,
    "conformance/ogles/GL/build/build_097_to_104.html": 0.2151,
    "conformance/ogles/GL/build/build_105_to_112.html": 0.325,
    "conformance/ogles/GL/build/build_113_to_120.html": 0.2992,
    "conformance/ogles/GL/build/build_121_to_128.html": 0.153,
    "conformance/ogles/GL/build/build_129_to_136.html": 0.1676,
    "conformance/ogles/GL/build/build_137_to_144.html": 0.3098,
    "conformance/ogles/GL/build/build_145_to_152.html": 0.3759,
    "conformance/ogles/GL/build/build_153_to_160.html": 0.3446,
    "conformance/ogles/GL/build/build_161_to_168.html": 0.1242,
    "conformance/ogles/GL/build/build_169_to_176.html": 0.3073,
    "conformance/ogles/GL/build/build_177_to_178.html": 0.2106,
    "conformance/ogles/GL/built_in_varying_array_out_of_bounds/built_in_varying_array_out_of_bounds_001_to_001.html": 0.2297,
    "conformance/ogles/GL/ceil/ceil_001_to_006.html": 0.5978,
    "conformance/ogles/GL/clamp/clamp_001_to_006.html": 0.638,
    "conformance/ogles/GL/control_flow/control_flow_001_to_008.html": 0.7296,
    "conformance/ogles/GL/control_flow/control_flow_009_to_010.html": 0.3214,
    "conformance/ogles/GL/cos/cos_001_to_006.html": 0.8848,
    "conformance/ogles/GL/cross/cross_001_to_002.html": 0.3133,
    "conformance/ogles/GL/default/default_001_to_001.html": 0.18,
    "conformance/ogles/GL/degrees/degrees_001_to_006.html": 0.5193,
    "conformance/ogles/GL/discard/discard_001_to_002.html": 0.2813,
    "conformance/ogles/GL/distance/distance_001_to_006.html": 0.5495,
    "conformance/ogles/GL/dot/dot_001_to_006.html": 0.5358,
    "conformance/ogles/GL/equal/equal_001_to_008.html": 0.8617,
    "conformance/ogles/GL/equal/equal_009_to_012.html": 0.5897,
    "conformance/ogles/GL/exp/exp_001_to_008.html": 0.893,
    "conformance/ogles/GL/exp/exp_009_to_012.html": 0.517,
    "conformance/ogles/GL/exp2/exp2_001_to_008.html": 0.8533,
    "conformance/ogles/GL/exp2/exp2_009_to_012.html": 0.6793,
    "conformance/ogles/GL/faceforward/faceforward_001_to_006.html": 0.6049,
    "conformance/ogles/GL/floor/floor_001_to_006.html": 0.906,
    "conformance/ogles/GL/fract/fract_001_to_006.html": 0.5942,
    "conformance/ogles/GL/functions/functions_001_to_008.html": 0.5884,
    "conformance/ogles/GL/functions/functions_009_to_016.html": 0.6906,
    "conformance/ogles/GL/functions/functions_017_to_024.html": 0.6476,
    "conformance/ogles/GL/functions/functions_025_to_032.html": 0.5554,
    "conformance/ogles/GL/functions/functions_033_to_040.html": 0.6006,
    "conformance/ogles/GL/functions/functions_041_to_048.html": 0.6636,
    "conformance/ogles/GL/functions/functions_049_to_056.html": 0.5871,
    "conformance/ogles/GL/functions/functions_057_to_064.html": 0.4458,
    "conformance/ogles/GL/functions/functions_065_to_072.html": 0.6234,
    "conformance/ogles/GL/functions/functions_073_to_080.html": 0.6454,
    "conformance/ogles/GL/functions/functions_081_to_088.html": 0.5601,
    "conformance/ogles/GL/functions/functions_089_to_096.html": 0.8311,
    "conformance/ogles/GL/functions/functions_097_to_104.html": 0.556,
    "conformance/ogles/GL/functions/functions_105_to_112.html": 0.5634,
    "conformance/ogles/GL/functions/functions_113_to_120.html": 0.5446,
    "conformance/ogles/GL/functions/functions_121_to_126.html": 0.3884,
    "conformance/ogles/GL/gl_FragCoord/gl_FragCoord_001_to_003.html": 0.3638,
    "conformance/ogles/GL/gl_FrontFacing/gl_FrontFacing_001_to_001.html": 0.3654,
    "conformance/ogles/GL/greaterThan/greaterThan_001_to_008.html": 0.8083,
    "conformance/ogles/GL/greaterThanEqual/greaterThanEqual_001_to_008.html": 0.9033,
    "conformance/ogles/GL/inversesqrt/inversesqrt_001_to_006.html": 0.7427,
    "conformance/ogles/GL/length/length_001_to_006.html": 0.7975,
    "conformance/ogles/GL/lessThan/lessThan_001_to_008.html": 0.7994,
    "conformance/ogles/GL/lessThanEqual/lessThanEqual_001_to_008.html": 0.8119,
    "conformance/ogles/GL/log/log_001_to_008.html": 0.8003,
    "conformance/ogles/GL/log/log_009_to_012.html": 0.7855,
    "conformance/ogles/GL/log2/log2_001_to_008.html": 0.7809,
    "conformance/ogles/GL/log2/log2_009_to_012.html": 0.6989,
    "conformance/ogles/GL/mat/mat_001_to_008.html": 0.6011,
    "conformance/ogles/GL/mat/mat_009_to_016.html": 0.4862,
    "conformance/ogles/GL/mat/mat_017_to_024.html": 0.6731,
    "conformance/ogles/GL/mat/mat_025_to_032.html": 0.7558,
    "conformance/ogles/GL/mat/mat_033_to_040.html": 0.6834,
    "conformance/ogles/GL/mat/mat_041_to_046.html": 0.5027,
    "conformance/ogles/GL/mat3/mat3_001_to_006.html": 0.5312,
    "conformance/ogles/GL/matrixCompMult/matrixCompMult_001_to_004.html": 0.7042,
    "conformance/ogles/GL/max/max_001_to_006.html": 0.8405,
    "conformance/ogles/GL/min/min_001_to_006.html": 0.7896,
    "conformance/ogles/GL/mix/mix_001_to_006.html": 0.6067,
    "conformance/ogles/GL/mod/mod_001_to_008.html": 0.9024,
    "conformance/ogles/GL/normalize/normalize_001_to_006.html": 0.7168,
    "conformance/ogles/GL/not/not_001_to_004.html": 0.4963,
    "conformance/ogles/GL/notEqual/notEqual_001_to_008.html": 0.7253,
    "conformance/ogles/GL/notEqual/notEqual_009_to_012.html": 0.4364,
    "conformance/ogles/GL/operators/operators_001_to_008.html": 0.6437,
    "conformance/ogles/GL/operators/operators_009_to_016.html": 0.6842,
    "conformance/ogles/GL/operators/operators_017_to_024.html": 0.5917,
    "conformance/ogles/GL/operators/operators_025_to_026.html": 0.3283,
    "conformance/ogles/GL/pow/pow_001_to_008.html": 0.8386,
    "conformance/ogles/GL/pow/pow_009_to_016.html": 0.9251,
    "conformance/ogles/GL/pow/pow_017_to_024.html": 1.0091,
    "conformance/ogles/GL/radians/radians_001_to_006.html": 0.7282,
    "conformance/ogles/GL/reflect/reflect_001_to_006.html": 0.538,
    "conformance/ogles/GL/refract/refract_001_to_006.html": 0.8846,
    "conformance/ogles/GL/sign/sign_001_to_006.html": 0.7349,
    "conformance/ogles/GL/sin/sin_001_to_006.html": 0.8592,
    "conformance/ogles/GL/smoothstep/smoothstep_001_to_006.html": 0.6819,
    "conformance/ogles/GL/sqrt/sqrt_001_to_006.html": 0.7329,
    "conformance/ogles/GL/step/step_001_to_006.html": 0.6683,
    "conformance/ogles/GL/struct/struct_001_to_008.html": 0.7425,
    "conformance/ogles/GL/struct/struct_009_to_016.html": 0.6921,
    "conformance/ogles/GL/struct/struct_017_to_024.html": 0.7633,
    "conformance/ogles/GL/struct/struct_025_to_032.html": 0.7784,
    "conformance/ogles/GL/struct/struct_033_to_040.html": 0.6994,
    "conformance/ogles/GL/struct/struct_041_to_048.html": 0.8535,
    "conformance/ogles/GL/struct/struct_049_to_056.html": 0.7105,
    "conformance/ogles/GL/swizzlers/swizzlers_001_to_008.html": 0.655,
    "conformance/ogles/GL/swizzlers/swizzlers_009_to_016.html": 0.8605,
    "conformance/ogles/GL/swizzlers/swizzlers_017_to_024.html": 0.7762,
    "conformance/ogles/GL/swizzlers/swizzlers_025_to_032.html": 0.7925,
    "conformance/ogles/GL/swizzlers/swizzlers_033_to_040.html": 0.8323,
    "conformance/ogles/GL/swizzlers/swizzlers_041_to_048.html": 0.7711,
    "conformance/ogles/GL/swizzlers/swizzlers_049_to_056.html": 0.7038,
    "conformance/ogles/GL/swizzlers/swizzlers_057_to_064.html": 0.8974,
    "conformance/ogles/GL/swizzlers/swizzlers_065_to_072.html": 0.7799,
    "conformance/ogles/GL/swizzlers/swizzlers_073_to_080.html": 0.8419,
    "conformance/ogles/GL/swizzlers/swizzlers_081_to_088.html": 0.7728,
    "conformance/ogles/GL/swizzlers/swizzlers_089_to_096.html": 0.8795,
    "conformance/ogles/GL/swizzlers/swizzlers_097_to_104.html": 0.8208,
    "conformance/ogles/GL/swizzlers/swizzlers_105_to_112.html": 0.8293,
    "conformance/ogles/GL/swizzlers/swizzlers_113_to_120.html": 0.8317,
    "conformance/ogles/GL/tan/tan_001_to_006.html": 0.6016,
    "conformance/ogles/GL/vec/vec_001_to_008.html": 0.6415,
    "conformance/ogles/GL/vec/vec_009_to_016.html": 0.6671,
    "conformance/ogles/GL/vec/vec_017_to_018.html": 0.2992,
    "conformance/ogles/GL/vec3/vec3_001_to_008.html": 0.5276,
    "conformance/programs/get-active-test.html": 0.3103,
    "conformance/programs/gl-bind-attrib-location-long-names-test.html": 0.2,
    "conformance/programs/gl-bind-attrib-location-test.html": 0.214,
    "conformance/programs/gl-get-active-attribute.html": 0.3128,
    "conformance/programs/gl-get-active-uniform.html": 0.3826,
    "conformance/programs/gl-getshadersource.html": 0.1478,
    "conformance/programs/gl-shader-test.html": 0.164,
    "conformance/programs/invalid-UTF-16.html": 0.0679,
    "conformance/programs/program-handling.html": 0.1739,
    "conformance/programs/program-infolog.html": 0.0688,
    "conformance/programs/program-test.html": 0.2868,
    "conformance/programs/use-program-crash-with-discard-in-fragment-shader.html": 0.2427,
    "conformance/reading/fbo-remains-unchanged-after-read-pixels.html": 0.2268,
    "conformance/reading/read-pixels-pack-alignment.html": 0.4656,
    "conformance/reading/read-pixels-test.html": 0.6573,
    "conformance/renderbuffers/depth-renderbuffer-initialization.html": 0.2555,
    "conformance/renderbuffers/feedback-loop.html": 0.292,
    "conformance/renderbuffers/framebuffer-state-restoration.html": 0.2971,
    "conformance/renderbuffers/renderbuffer-initialization.html": 0.2307,
    "conformance/renderbuffers/stencil-renderbuffer-initialization.html": 0.2654,
    "conformance/rendering/bind-framebuffer-flush-bug.html": 0.2265,
    "conformance/rendering/blending.html": 0.4151,
    "conformance/rendering/canvas-alpha-bug.html": 0.1974,
    "conformance/rendering/clear-after-copyTexImage2D.html": 0.2254,
    "conformance/rendering/clear-default-framebuffer-with-scissor-test.html": 0.1803,
    "conformance/rendering/color-mask-preserved-during-implicit-clears.html": 1.5677,
    "conformance/rendering/color-mask-should-not-affect-antialiased-framebuffer-resolution.html": 0.2206,
    "conformance/rendering/culling.html": 0.208,
    "conformance/rendering/default-texture-draw-bug.html": 0.2884,
    "conformance/rendering/draw-arrays-out-of-bounds.html": 0.164,
    "conformance/rendering/draw-elements-out-of-bounds.html": 0.2041,
    "conformance/rendering/draw-webgl-to-canvas-2d-repeatedly.html": 0.2268,
    "conformance/rendering/draw-with-changing-start-vertex-bug.html": 0.1918,
    "conformance/rendering/framebuffer-switch.html": 0.1469,
    "conformance/rendering/framebuffer-texture-clear.html": 0.2568,
    "conformance/rendering/framebuffer-texture-switch.html": 0.1789,
    "conformance/rendering/gl-clear.html": 0.2086,
    "conformance/rendering/gl-drawarrays.html": 0.1819,
    "conformance/rendering/gl-drawelements.html": 0.2716,
    "conformance/rendering/gl-scissor-canvas-dimensions.html": 0.1986,
    "conformance/rendering/gl-scissor-fbo-test.html": 0.2457,
    "conformance/rendering/gl-scissor-test.html": 0.5317,
    "conformance/rendering/gl-viewport-test.html": 0.5239,
    "conformance/rendering/line-loop-tri-fan.html": 0.1499,
    "conformance/rendering/line-rendering-quality.html": 0.4139,
    "conformance/rendering/many-draw-calls.html": 1.8493,
    "conformance/rendering/more-than-65536-indices.html": 0.223,
    "conformance/rendering/multisample-corruption.html": 3.0015,
    "conformance/rendering/negative-one-index.html": 0.126,
    "conformance/rendering/out-of-bounds-array-buffers.html": 0.2319,
    "conformance/rendering/out-of-bounds-index-buffers.html": 0.0703,
    "conformance/rendering/point-no-attributes.html": 0.1849,
    "conformance/rendering/point-size.html": 0.2276,
    "conformance/rendering/point-specific-shader-variables.html": 0.2859,
    "conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html": 0.2071,
    "conformance/rendering/polygon-offset.html": 0.1878,
    "conformance/rendering/preservedrawingbuffer-leak.html": 0.5604,
    "conformance/rendering/rendering-sampling-feedback-loop.html": 0.183,
    "conformance/rendering/rendering-stencil-large-viewport.html": 0.2148,
    "conformance/rendering/scissor-rect-repeated-rendering.html": 0.2448,
    "conformance/rendering/simple.html": 0.1718,
    "conformance/rendering/texture-switch-performance.html": 0,
    "conformance/rendering/triangle.html": 0.1267,
    "conformance/state/fb-attach-implicit-target-assignment.html": 0.2332,
    "conformance/state/gl-enable-enum-test.html": 0.3454,
    "conformance/state/gl-get-calls.html": 0.3389,
    "conformance/state/gl-geterror.html": 0.1638,
    "conformance/state/gl-initial-state.html": 0.2305,
    "conformance/state/state-uneffected-after-compositing.html": 0.3353,
    "conformance/textures/canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.9894,
    "conformance/textures/canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.9634,
    "conformance/textures/canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.3061,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_byte.html": 2.4952,
    "conformance/textures/canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.3637,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_byte.html": 1.4012,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.0461,
    "conformance/textures/canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.828,
    "conformance/textures/canvas_sub_rectangle/tex-2d-alpha-alpha-unsigned_byte.html": 1.1061,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance-luminance-unsigned_byte.html": 1.135,
    "conformance/textures/canvas_sub_rectangle/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.955,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_byte.html": 0.672,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.0344,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_byte.html": 0.9876,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.9629,
    "conformance/textures/canvas_sub_rectangle/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.9981,
    "conformance/textures/image/tex-2d-alpha-alpha-unsigned_byte.html": 0.3959,
    "conformance/textures/image/tex-2d-luminance-luminance-unsigned_byte.html": 0.2861,
    "conformance/textures/image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.3538,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_byte.html": 0.4059,
    "conformance/textures/image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3402,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_byte.html": 0.3987,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3355,
    "conformance/textures/image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.214,
    "conformance/textures/image_bitmap_from_blob/tex-2d-alpha-alpha-unsigned_byte.html": 0.2296,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance-luminance-unsigned_byte.html": 0.4257,
    "conformance/textures/image_bitmap_from_blob/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.6078,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_byte.html": 0.2367,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3794,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_byte.html": 0.4029,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.3091,
    "conformance/textures/image_bitmap_from_blob/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2033,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 0.5494,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 0.7067,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.6307,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 0.5226,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.4811,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 0.6393,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.6333,
    "conformance/textures/image_bitmap_from_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.6441,
    "conformance/textures/image_bitmap_from_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.3251,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.1558,
    "conformance/textures/image_bitmap_from_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2708,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.349,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2744,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.2333,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.1481,
    "conformance/textures/image_bitmap_from_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3236,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-alpha-alpha-unsigned_byte.html": 0.1944,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance-luminance-unsigned_byte.html": 0.396,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.2483,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_byte.html": 0.1445,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2258,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_byte.html": 0.2947,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2708,
    "conformance/textures/image_bitmap_from_image_bitmap/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.3781,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.4345,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.358,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.4153,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.2547,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2797,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.3038,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2521,
    "conformance/textures/image_bitmap_from_image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.362,
    "conformance/textures/image_bitmap_from_video/tex-2d-alpha-alpha-unsigned_byte.html": 0.8985,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance-luminance-unsigned_byte.html": 0.7623,
    "conformance/textures/image_bitmap_from_video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.7494,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_byte.html": 0.7208,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.7138,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_byte.html": 0.8278,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.7634,
    "conformance/textures/image_bitmap_from_video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.8468,
    "conformance/textures/image_data/tex-2d-alpha-alpha-unsigned_byte.html": 0.451,
    "conformance/textures/image_data/tex-2d-luminance-luminance-unsigned_byte.html": 0.3854,
    "conformance/textures/image_data/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.4006,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_byte.html": 0.3795,
    "conformance/textures/image_data/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.2172,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_byte.html": 0.26,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.27,
    "conformance/textures/image_data/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.2384,
    "conformance/textures/misc/canvas-teximage-after-multiple-drawimages.html": 0.3511,
    "conformance/textures/misc/copy-tex-image-2d-formats.html": 0.5092,
    "conformance/textures/misc/copy-tex-image-and-sub-image-2d.html": 0.6013,
    "conformance/textures/misc/copy-tex-image-crash.html": 0.2517,
    "conformance/textures/misc/copytexsubimage2d-large-partial-copy-corruption.html": 0.2767,
    "conformance/textures/misc/copytexsubimage2d-subrects.html": 0.1018,
    "conformance/textures/misc/cube-incomplete-fbo.html": 0.2644,
    "conformance/textures/misc/cube-map-uploads-out-of-order.html": 1.0733,
    "conformance/textures/misc/default-texture.html": 0.0936,
    "conformance/textures/misc/exif-orientation.html": 0.9823,
    "conformance/textures/misc/format-filterable-renderable.html": 0.1818,
    "conformance/textures/misc/gl-pixelstorei.html": 0.3146,
    "conformance/textures/misc/gl-teximage.html": 0.4373,
    "conformance/textures/misc/mipmap-fbo.html": 0.2201,
    "conformance/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.2504,
    "conformance/textures/misc/origin-clean-conformance.html": 0.2158,
    "conformance/textures/misc/png-image-types.html": 0.5464,
    "conformance/textures/misc/tex-image-and-sub-image-2d-with-array-buffer-view.html": 0.9752,
    "conformance/textures/misc/tex-image-and-uniform-binding-bugs.html": 0.2505,
    "conformance/textures/misc/tex-image-canvas-corruption.html": 0.3242,
    "conformance/textures/misc/tex-image-webgl.html": 0.194,
    "conformance/textures/misc/tex-image-with-format-and-type.html": 0.2253,
    "conformance/textures/misc/tex-image-with-invalid-data.html": 0.0935,
    "conformance/textures/misc/tex-sub-image-2d-bad-args.html": 0.294,
    "conformance/textures/misc/tex-sub-image-2d.html": 0.2261,
    "conformance/textures/misc/tex-video-using-tex-unit-non-zero.html": 0.534,
    "conformance/textures/misc/texparameter-test.html": 0.1625,
    "conformance/textures/misc/texture-active-bind-2.html": 0.2076,
    "conformance/textures/misc/texture-active-bind.html": 0.2675,
    "conformance/textures/misc/texture-attachment-formats.html": 0.09,
    "conformance/textures/misc/texture-clear.html": 0.2981,
    "conformance/textures/misc/texture-complete.html": 0.0906,
    "conformance/textures/misc/texture-copying-and-deletion.html": 1.1455,
    "conformance/textures/misc/texture-copying-feedback-loops.html": 0.3026,
    "conformance/textures/misc/texture-corner-case-videos.html": 0.2376,
    "conformance/textures/misc/texture-cube-as-fbo-attachment.html": 0.1759,
    "conformance/textures/misc/texture-draw-with-2d-and-cube.html": 0.3066,
    "conformance/textures/misc/texture-hd-dpi.html": 0.3601,
    "conformance/textures/misc/texture-mips.html": 0.1035,
    "conformance/textures/misc/texture-size-cube-maps.html": 0.4575,
    "conformance/textures/misc/texture-size-limit.html": 0.2139,
    "conformance/textures/misc/texture-size.html": 0.6506,
    "conformance/textures/misc/texture-srgb-upload.html": 0.5186,
    "conformance/textures/misc/texture-sub-image-cube-maps.html": 0.1788,
    "conformance/textures/misc/texture-transparent-pixels-initialized.html": 0.134,
    "conformance/textures/misc/texture-upload-cube-maps.html": 0.139,
    "conformance/textures/misc/texture-upload-size.html": 0.5533,
    "conformance/textures/misc/texture-video-transparent.html": 2.5431,
    "conformance/textures/misc/texture-with-flip-y-and-premultiply-alpha.html": 0.0671,
    "conformance/textures/misc/upload-from-srcset-with-empty-data.html": 0.0747,
    "conformance/textures/misc/video-rotation.html": 0.6564,
    "conformance/textures/svg_image/tex-2d-alpha-alpha-unsigned_byte.html": 0.1121,
    "conformance/textures/svg_image/tex-2d-luminance-luminance-unsigned_byte.html": 0.3331,
    "conformance/textures/svg_image/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 0.1141,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_byte.html": 0.2157,
    "conformance/textures/svg_image/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 0.3041,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_byte.html": 0.2257,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 0.2238,
    "conformance/textures/svg_image/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 0.294,
    "conformance/textures/video/tex-2d-alpha-alpha-unsigned_byte.html": 1.248,
    "conformance/textures/video/tex-2d-luminance-luminance-unsigned_byte.html": 1.5433,
    "conformance/textures/video/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.139,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_byte.html": 1.4782,
    "conformance/textures/video/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.4296,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_byte.html": 1.3866,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.2602,
    "conformance/textures/video/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.4762,
    "conformance/textures/webgl_canvas/tex-2d-alpha-alpha-unsigned_byte.html": 1.2989,
    "conformance/textures/webgl_canvas/tex-2d-luminance-luminance-unsigned_byte.html": 1.3503,
    "conformance/textures/webgl_canvas/tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html": 1.0069,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_byte.html": 2.9039,
    "conformance/textures/webgl_canvas/tex-2d-rgb-rgb-unsigned_short_5_6_5.html": 1.5638,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_byte.html": 4.2321,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html": 1.536,
    "conformance/textures/webgl_canvas/tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html": 1.4186,
    "conformance/typedarrays/array-buffer-crash.html": 0.056,
    "conformance/typedarrays/array-buffer-view-crash.html": 0.0661,
    "conformance/typedarrays/array-large-array-tests.html": 0.1677,
    "conformance/typedarrays/array-unit-tests.html": 0.0692,
    "conformance/typedarrays/data-view-crash.html": 0.0558,
    "conformance/typedarrays/data-view-test.html": 0.1114,
    "conformance/typedarrays/typed-arrays-in-workers.html": 0.0904,
    "conformance/uniforms/gl-get-uniform-non-current-program.html": 0.2462,
    "conformance/uniforms/gl-uniform-arrays.html": 0.468,
    "conformance/uniforms/gl-uniform-bool.html": 0.1901,
    "conformance/uniforms/gl-uniformmatrix4fv.html": 0.2398,
    "conformance/uniforms/gl-unknown-uniform.html": 0.1321,
    "conformance/uniforms/no-over-optimization-on-uniform-array-00.html": 0.6953,
    "conformance/uniforms/no-over-optimization-on-uniform-array-01.html": 0.7858,
    "conformance/uniforms/no-over-optimization-on-uniform-array-02.html": 0.7912,
    "conformance/uniforms/no-over-optimization-on-uniform-array-03.html": 0.8026,
    "conformance/uniforms/no-over-optimization-on-uniform-array-04.html": 0.6038,
    "conformance/uniforms/no-over-optimization-on-uniform-array-05.html": 0.6917,
    "conformance/uniforms/no-over-optimization-on-uniform-array-06.html": 0.6194,
    "conformance/uniforms/no-over-optimization-on-uniform-array-07.html": 0.7062,
    "conformance/uniforms/no-over-optimization-on-uniform-array-08.html": 0.643,
    "conformance/uniforms/no-over-optimization-on-uniform-array-09.html": 0.6546,
    "conformance/uniforms/no-over-optimization-on-uniform-array-10.html": 0.8023,
    "conformance/uniforms/no-over-optimization-on-uniform-array-11.html": 0.6304,
    "conformance/uniforms/no-over-optimization-on-uniform-array-12.html": 0.6073,
    "conformance/uniforms/no-over-optimization-on-uniform-array-13.html": 0.7407,
    "conformance/uniforms/no-over-optimization-on-uniform-array-14.html": 0.7827,
    "conformance/uniforms/no-over-optimization-on-uniform-array-15.html": 0.6549,
    "conformance/uniforms/no-over-optimization-on-uniform-array-16.html": 0.6618,
    "conformance/uniforms/no-over-optimization-on-uniform-array-17.html": 0.7571,
    "conformance/uniforms/null-uniform-location.html": 0.0692,
    "conformance/uniforms/out-of-bounds-uniform-array-access.html": 2.7377,
    "conformance/uniforms/uniform-default-values.html": 1.3231,
    "conformance/uniforms/uniform-location.html": 0.372,
    "conformance/uniforms/uniform-samplers-test.html": 12.8992,
    "conformance/uniforms/uniform-values-per-program.html": 0.7723,
    "conformance2/attribs/gl-bindAttribLocation-aliasing-inactive.html": 0.2289,
    "conformance2/attribs/gl-vertex-attrib-i-render.html": 0.2026,
    "conformance2/attribs/gl-vertex-attrib-normalized-int.html": 0.2581,
    "conformance2/attribs/gl-vertex-attrib.html": 0.3197,
    "conformance2/attribs/gl-vertexattribipointer-offsets.html": 0.3454,
    "conformance2/attribs/gl-vertexattribipointer.html": 0.6342,
    "conformance2/attribs/invalid-vertex-attribs.html": 0.1043,
    "conformance2/attribs/render-no-enabled-attrib-arrays.html": 0.1783,
    "conformance2/buffers/bound-buffer-size-change-test.html": 0.2702,
    "conformance2/buffers/buffer-copying-contents.html": 0.3815,
    "conformance2/buffers/buffer-copying-restrictions.html": 0.0948,
    "conformance2/buffers/buffer-data-and-buffer-sub-data-sub-source.html": 0.1313,
    "conformance2/buffers/buffer-overflow-test.html": 0.2793,
    "conformance2/buffers/buffer-type-restrictions.html": 0.14,
    "conformance2/buffers/delete-buffer.html": 0.0868,
    "conformance2/buffers/get-buffer-sub-data-validity.html": 0.1741,
    "conformance2/buffers/get-buffer-sub-data.html": 0.198,
    "conformance2/buffers/one-large-uniform-buffer.html": 0.1782,
    "conformance2/buffers/uniform-buffers-second-compile.html": 0.1008,
    "conformance2/buffers/uniform-buffers-state-restoration.html": 0.3447,
    "conformance2/buffers/uniform-buffers.html": 0.1478,
    "conformance2/canvas/to-data-url-with-pack-params.html": 0.127,
    "conformance2/context/constants-and-properties-2.html": 0.1052,
    "conformance2/context/context-attributes-depth-stencil-antialias-obeyed.html": 0.1467,
    "conformance2/context/context-mode.html": 0.0878,
    "conformance2/context/context-resize-changes-buffer-binding-bug.html": 0.1234,
    "conformance2/context/context-sharing-texture2darray-texture3d-data-bug.html": 0.5314,
    "conformance2/context/context-type-test-2.html": 0.0892,
    "conformance2/context/incorrect-context-object-behaviour.html": 0.4223,
    "conformance2/context/methods-2.html": 0.0692,
    "conformance2/context/no-experimental-webgl2.html": 0.0611,
    "conformance2/extensions/ext-color-buffer-float.html": 0.4958,
    "conformance2/extensions/ext-color-buffer-half-float.html": 0.4009,
    "conformance2/extensions/ext-disjoint-timer-query-webgl2.html": 5.1147,
    "conformance2/extensions/ext-texture-filter-anisotropic.html": 0.2429,
    "conformance2/extensions/ext-texture-norm16.html": 0.3757,
    "conformance2/extensions/oes-draw-buffers-indexed.html": 0.5059,
    "conformance2/extensions/ovr_multiview2.html": 1.0718,
    "conformance2/extensions/ovr_multiview2_depth.html": 0.1152,
    "conformance2/extensions/ovr_multiview2_draw_buffers.html": 0.249,
    "conformance2/extensions/ovr_multiview2_flat_varying.html": 0.2371,
    "conformance2/extensions/ovr_multiview2_instanced_draw.html": 0.2675,
    "conformance2/extensions/ovr_multiview2_non_multiview_shaders.html": 0.3047,
    "conformance2/extensions/ovr_multiview2_single_view_operations.html": 0.2224,
    "conformance2/extensions/ovr_multiview2_timer_query.html": 0.154,
    "conformance2/extensions/ovr_multiview2_transform_feedback.html": 0.1003,
    "conformance2/extensions/promoted-extensions-in-shaders.html": 0.239,
    "conformance2/extensions/promoted-extensions.html": 0.1197,
    "conformance2/extensions/required-extensions.html": 0.0913,
    "conformance2/extensions/webgl-clip-cull-distance.html": 0.1474,
    "conformance2/extensions/webgl-multi-draw-instanced-base-vertex-base-instance.html": 4.1203,
    "conformance2/extensions/webgl-provoking-vertex.html": 0.3334,
    "conformance2/extensions/webgl-shader-pixel-local-storage.html": 0.1977,
    "conformance2/glsl3/array-as-return-value.html": 0.1085,
    "conformance2/glsl3/array-assign-constructor.html": 0.1701,
    "conformance2/glsl3/array-assign.html": 0.3008,
    "conformance2/glsl3/array-complex-indexing.html": 0.1342,
    "conformance2/glsl3/array-element-increment.html": 0.1539,
    "conformance2/glsl3/array-equality.html": 0.2554,
    "conformance2/glsl3/array-in-complex-expression.html": 0.3309,
    "conformance2/glsl3/array-initialize-with-same-name-array.html": 0.0838,
    "conformance2/glsl3/array-length-side-effects.html": 0.2498,
    "conformance2/glsl3/attrib-location-length-limits.html": 0.1168,
    "conformance2/glsl3/bool-type-cast-bug-uint-ivec-uvec.html": 0.3334,
    "conformance2/glsl3/compare-structs-containing-arrays.html": 0.1425,
    "conformance2/glsl3/compound-assignment-type-combination.html": 1.4304,
    "conformance2/glsl3/const-array-init.html": 0.1248,
    "conformance2/glsl3/const-struct-from-array-as-function-parameter.html": 0.1417,
    "conformance2/glsl3/float-parsing.html": 0.1553,
    "conformance2/glsl3/forbidden-operators.html": 0.1563,
    "conformance2/glsl3/forward-declaration.html": 0.3183,
    "conformance2/glsl3/frag-depth.html": 0.2834,
    "conformance2/glsl3/fragment-shader-loop-crash.html": 0.0845,
    "conformance2/glsl3/gradient-in-discontinuous-loop.html": 0.0864,
    "conformance2/glsl3/input-with-interpotaion-as-lvalue.html": 0.3141,
    "conformance2/glsl3/invalid-default-precision.html": 0.2348,
    "conformance2/glsl3/invalid-invariant.html": 0.2481,
    "conformance2/glsl3/loops-with-side-effects.html": 0.1703,
    "conformance2/glsl3/matrix-row-major-dynamic-indexing.html": 0.2071,
    "conformance2/glsl3/matrix-row-major.html": 0.0842,
    "conformance2/glsl3/misplaced-version-directive.html": 0.0889,
    "conformance2/glsl3/no-attribute-vertex-shader.html": 0.2564,
    "conformance2/glsl3/precision-side-effects-bug.html": 0.0994,
    "conformance2/glsl3/reciprocal-sqrt-of-sum-of-squares-crash.html": 0,
    "conformance2/glsl3/sampler-array-indexing.html": 0.0909,
    "conformance2/glsl3/sampler-no-precision.html": 0.1795,
    "conformance2/glsl3/sequence-operator-returns-non-constant.html": 0.2715,
    "conformance2/glsl3/shader-linking.html": 0.4002,
    "conformance2/glsl3/shader-with-1024-character-define.html": 0.2773,
    "conformance2/glsl3/shader-with-1024-character-identifier.frag.html": 0.3345,
    "conformance2/glsl3/shader-with-1025-character-define.html": 0.3074,
    "conformance2/glsl3/shader-with-1025-character-identifier.frag.html": 0.2382,
    "conformance2/glsl3/shader-with-invalid-characters.html": 0.0805,
    "conformance2/glsl3/shader-with-mis-matching-uniform-block.html": 0.2069,
    "conformance2/glsl3/short-circuiting-in-loop-condition.html": 0.2973,
    "conformance2/glsl3/switch-case.html": 0.3384,
    "conformance2/glsl3/texture-bias.html": 0.1871,
    "conformance2/glsl3/texture-offset-non-constant-offset.html": 0.2538,
    "conformance2/glsl3/texture-offset-out-of-range.html": 0.0964,
    "conformance2/glsl3/texture-offset-uniform-texture-coordinate.html": 0.3218,
    "conformance2/glsl3/tricky-loop-conditions.html": 0.6585,
    "conformance2/glsl3/uint-int-shift-bug.html": 0.2082,
    "conformance2/glsl3/unary-minus-operator-in-dynamic-loop.html": 0.3517,
    "conformance2/glsl3/uniform-block-layout-match.html": 0.0875,
    "conformance2/glsl3/uniform-block-layouts.html": 0.2179,
    "conformance2/glsl3/uniform-location-length-limits.html": 0.2627,
    "conformance2/glsl3/uniform-struct-with-non-square-matrix.html": 0.1062,
    "conformance2/glsl3/uninitialized-local-global-variables.html": 0.3109,
    "conformance2/glsl3/valid-invariant.html": 0.2232,
    "conformance2/glsl3/varying-struct-inline-definition.html": 0.0859,
    "conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html": 0.2509,
    "conformance2/glsl3/vector-dynamic-indexing-swizzled-lvalue.html": 0.257,
    "conformance2/glsl3/vector-dynamic-indexing.html": 0.3914,
    "conformance2/misc/blend-integer.html": 0.1049,
    "conformance2/misc/expando-loss-2.html": 0.177,
    "conformance2/misc/getextension-while-pbo-bound-stability.html": 0.2195,
    "conformance2/misc/instanceof-test.html": 0.1328,
    "conformance2/misc/null-object-behaviour-2.html": 0.1996,
    "conformance2/misc/object-deletion-behaviour-2.html": 0.1848,
    "conformance2/misc/uninitialized-test-2.html": 9.3244,
    "conformance2/misc/views-with-offsets.html": 0.1221,
    "conformance2/offscreencanvas/context-creation-worker.html": 0.1055,
    "conformance2/offscreencanvas/context-creation.html": 0.0628,
    "conformance2/offscreencanvas/methods-2-worker.html": 0.0895,
    "conformance2/offscreencanvas/methods-2.html": 0.0792,
    "conformance2/offscreencanvas/offscreencanvas-query.html": 0.0892,
    "conformance2/offscreencanvas/offscreencanvas-sync.html": 0.1936,
    "conformance2/offscreencanvas/offscreencanvas-timer-query.html": 0.1654,
    "conformance2/offscreencanvas/offscreencanvas-transfer-image-bitmap.html": 0.2698,
    "conformance2/programs/active-built-in-attribs.html": 0.2222,
    "conformance2/programs/get-uniform-indices.html": 0.1826,
    "conformance2/programs/gl-get-frag-data-location.html": 0.2226,
    "conformance2/programs/sampler-uniforms.html": 0.1995,
    "conformance2/query/occlusion-query.html": 2.5206,
    "conformance2/query/query.html": 0.1824,
    "conformance2/reading/format-r11f-g11f-b10f.html": 0.1737,
    "conformance2/reading/read-pixels-from-fbo-test.html": 0.131,
    "conformance2/reading/read-pixels-from-rgb8-into-pbo-bug.html": 0.2193,
    "conformance2/reading/read-pixels-into-pixel-pack-buffer.html": 0.2037,
    "conformance2/reading/read-pixels-pack-parameters.html": 0.3832,
    "conformance2/renderbuffers/framebuffer-object-attachment.html": 0.1867,
    "conformance2/renderbuffers/framebuffer-test.html": 0.087,
    "conformance2/renderbuffers/framebuffer-texture-layer.html": 0.0915,
    "conformance2/renderbuffers/invalidate-framebuffer.html": 0.1098,
    "conformance2/renderbuffers/multisample-draws-between-blits.html": 0.1918,
    "conformance2/renderbuffers/multisample-with-full-sample-counts.html": 0.2044,
    "conformance2/renderbuffers/multisampled-depth-renderbuffer-initialization.html": 0.3311,
    "conformance2/renderbuffers/multisampled-renderbuffer-initialization.html": 0.3321,
    "conformance2/renderbuffers/multisampled-stencil-renderbuffer-initialization.html": 0.2436,
    "conformance2/renderbuffers/readbuffer.html": 0.2473,
    "conformance2/rendering/attrib-type-match.html": 0.2056,
    "conformance2/rendering/blitframebuffer-filter-outofbounds.html": 0.3597,
    "conformance2/rendering/blitframebuffer-filter-srgb.html": 0.2561,
    "conformance2/rendering/blitframebuffer-multisampled-readbuffer.html": 0.2896,
    "conformance2/rendering/blitframebuffer-outside-readbuffer.html": 0.1508,
    "conformance2/rendering/blitframebuffer-r11f-g11f-b10f.html": 0.1425,
    "conformance2/rendering/blitframebuffer-resolve-to-back-buffer.html": 0.2178,
    "conformance2/rendering/blitframebuffer-scissor-enabled.html": 0.267,
    "conformance2/rendering/blitframebuffer-size-overflow.html": 0.1251,
    "conformance2/rendering/blitframebuffer-srgb-and-linear-drawbuffers.html": 0.2779,
    "conformance2/rendering/blitframebuffer-stencil-only.html": 0.122,
    "conformance2/rendering/blitframebuffer-test.html": 0.0992,
    "conformance2/rendering/blitframebuffer-unaffected-by-colormask.html": 0.239,
    "conformance2/rendering/canvas-resizing-with-pbo-bound.html": 0.4718,
    "conformance2/rendering/clear-func-buffer-type-match.html": 0.1451,
    "conformance2/rendering/clear-srgb-color-buffer.html": 0.106,
    "conformance2/rendering/clearbuffer-sub-source.html": 0.1167,
    "conformance2/rendering/clearbufferfv-with-alpha-false.html": 0.1689,
    "conformance2/rendering/clipping-wide-points.html": 0.2547,
    "conformance2/rendering/depth-stencil-feedback-loop.html": 0.2716,
    "conformance2/rendering/draw-buffers-dirty-state-bug.html": 0.1127,
    "conformance2/rendering/draw-buffers-driver-hang.html": 0.2429,
    "conformance2/rendering/draw-buffers-sparse-output-locations.html": 0.1166,
    "conformance2/rendering/draw-buffers.html": 0.4624,
    "conformance2/rendering/draw-with-integer-texture-base-level.html": 0.2355,
    "conformance2/rendering/element-index-uint.html": 0.5311,
    "conformance2/rendering/framebuffer-completeness-draw-framebuffer.html": 0.094,
    "conformance2/rendering/framebuffer-completeness-unaffected.html": 0.0789,
    "conformance2/rendering/framebuffer-mismatched-attachment-targets.html": 0.2278,
    "conformance2/rendering/framebuffer-render-to-layer-angle-issue.html": 0.0908,
    "conformance2/rendering/framebuffer-render-to-layer.html": 0.6003,
    "conformance2/rendering/framebuffer-texture-changing-base-level.html": 0.0763,
    "conformance2/rendering/framebuffer-texture-level1.html": 0.186,
    "conformance2/rendering/framebuffer-to-texture.html": 0.156,
    "conformance2/rendering/framebuffer-unsupported.html": 0.1119,
    "conformance2/rendering/fs-color-type-mismatch-color-buffer-type.html": 0.1055,
    "conformance2/rendering/instanced-arrays.html": 0.346,
    "conformance2/rendering/instanced-rendering-bug.html": 0.2899,
    "conformance2/rendering/instanced-rendering-large-divisor.html": 0.126,
    "conformance2/rendering/line-rendering-quality.html": 0.0839,
    "conformance2/rendering/multisampling-depth-resolve.html": 0.2117,
    "conformance2/rendering/multisampling-fragment-evaluation.html": 0.232,
    "conformance2/rendering/out-of-bounds-index-buffers-after-copying.html": 0.2322,
    "conformance2/rendering/rasterizer-discard-and-implicit-clear.html": 0.6412,
    "conformance2/rendering/read-draw-when-missing-image.html": 0.0761,
    "conformance2/rendering/rgb-format-support.html": 0.0661,
    "conformance2/rendering/texture-switch-performance.html": 0,
    "conformance2/rendering/uniform-block-buffer-size.html": 0.2572,
    "conformance2/rendering/vertex-id-large-count.html": 0.5893,
    "conformance2/rendering/vertex-id.html": 0.1999,
    "conformance2/samplers/multi-context-sampler-test.html": 0.0855,
    "conformance2/samplers/sampler-drawing-test.html": 0.1232,
    "conformance2/samplers/samplers.html": 0.2591,
    "conformance2/state/gl-enum-tests.html": 0.1528,
    "conformance2/state/gl-get-calls.html": 0.0829,
    "conformance2/state/gl-getstring.html": 0.1685,
    "conformance2/state/gl-object-get-calls.html": 16.6624,
    "conformance2/sync/sync-webgl-specific.html": 6.0784,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 1.164,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.1959,
    "conformance2/textures/canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.1762,
    "conformance2/textures/canvas/tex-2d-r16f-red-float.html": 1.2511,
    "conformance2/textures/canvas/tex-2d-r16f-red-half_float.html": 0.9937,
    "conformance2/textures/canvas/tex-2d-r32f-red-float.html": 1.2137,
    "conformance2/textures/canvas/tex-2d-r8-red-unsigned_byte.html": 1.185,
    "conformance2/textures/canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.1621,
    "conformance2/textures/canvas/tex-2d-rg16f-rg-float.html": 0.9356,
    "conformance2/textures/canvas/tex-2d-rg16f-rg-half_float.html": 0.9989,
    "conformance2/textures/canvas/tex-2d-rg32f-rg-float.html": 1.0536,
    "conformance2/textures/canvas/tex-2d-rg8-rg-unsigned_byte.html": 1.0352,
    "conformance2/textures/canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 1.1289,
    "conformance2/textures/canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.0973,
    "conformance2/textures/canvas/tex-2d-rgb16f-rgb-float.html": 0.8309,
    "conformance2/textures/canvas/tex-2d-rgb16f-rgb-half_float.html": 1.2264,
    "conformance2/textures/canvas/tex-2d-rgb32f-rgb-float.html": 1.3401,
    "conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 1.0128,
    "conformance2/textures/canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 1.1438,
    "conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.9892,
    "conformance2/textures/canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.1024,
    "conformance2/textures/canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 1.0162,
    "conformance2/textures/canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.2329,
    "conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-float.html": 1.3428,
    "conformance2/textures/canvas/tex-2d-rgb9_e5-rgb-half_float.html": 1.233,
    "conformance2/textures/canvas/tex-2d-rgba16f-rgba-float.html": 1.0726,
    "conformance2/textures/canvas/tex-2d-rgba16f-rgba-half_float.html": 1.2462,
    "conformance2/textures/canvas/tex-2d-rgba32f-rgba-float.html": 0.9266,
    "conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 1.2469,
    "conformance2/textures/canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.2176,
    "conformance2/textures/canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 1.0919,
    "conformance2/textures/canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.279,
    "conformance2/textures/canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 1.0475,
    "conformance2/textures/canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.1579,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 5.2762,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 5.2916,
    "conformance2/textures/canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 5.2789,
    "conformance2/textures/canvas/tex-3d-r16f-red-float.html": 5.4864,
    "conformance2/textures/canvas/tex-3d-r16f-red-half_float.html": 5.3553,
    "conformance2/textures/canvas/tex-3d-r32f-red-float.html": 5.3925,
    "conformance2/textures/canvas/tex-3d-r8-red-unsigned_byte.html": 5.5033,
    "conformance2/textures/canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 5.3472,
    "conformance2/textures/canvas/tex-3d-rg16f-rg-float.html": 5.4168,
    "conformance2/textures/canvas/tex-3d-rg16f-rg-half_float.html": 5.3267,
    "conformance2/textures/canvas/tex-3d-rg32f-rg-float.html": 5.4428,
    "conformance2/textures/canvas/tex-3d-rg8-rg-unsigned_byte.html": 5.4098,
    "conformance2/textures/canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 5.299,
    "conformance2/textures/canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 5.5283,
    "conformance2/textures/canvas/tex-3d-rgb16f-rgb-float.html": 5.527,
    "conformance2/textures/canvas/tex-3d-rgb16f-rgb-half_float.html": 5.3651,
    "conformance2/textures/canvas/tex-3d-rgb32f-rgb-float.html": 5.4619,
    "conformance2/textures/canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 5.3409,
    "conformance2/textures/canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 5.3084,
    "conformance2/textures/canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 5.3644,
    "conformance2/textures/canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 5.4197,
    "conformance2/textures/canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 5.4184,
    "conformance2/textures/canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 5.4881,
    "conformance2/textures/canvas/tex-3d-rgb9_e5-rgb-float.html": 5.411,
    "conformance2/textures/canvas/tex-3d-rgb9_e5-rgb-half_float.html": 5.4557,
    "conformance2/textures/canvas/tex-3d-rgba16f-rgba-float.html": 5.3765,
    "conformance2/textures/canvas/tex-3d-rgba16f-rgba-half_float.html": 5.5119,
    "conformance2/textures/canvas/tex-3d-rgba32f-rgba-float.html": 5.5169,
    "conformance2/textures/canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 5.3248,
    "conformance2/textures/canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 5.606,
    "conformance2/textures/canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 5.2512,
    "conformance2/textures/canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 5.409,
    "conformance2/textures/canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 5.4092,
    "conformance2/textures/canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 5.333,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.8524,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.7461,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.9607,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-float.html": 1.1441,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r16f-red-half_float.html": 0.5717,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r32f-red-float.html": 0.7214,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r8-red-unsigned_byte.html": 1.1163,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.1061,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-float.html": 1.1894,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg16f-rg-half_float.html": 0.9116,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg32f-rg-float.html": 0.8867,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg8-rg-unsigned_byte.html": 0.7888,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.865,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.6724,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-float.html": 1.3431,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb16f-rgb-half_float.html": 0.8836,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb32f-rgb-float.html": 1.1605,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_byte.html": 0.73,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.9388,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.7609,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.0271,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8-rgb-unsigned_byte.html": 0.6609,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.9711,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-float.html": 1.1883,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgb9_e5-rgb-half_float.html": 0.9147,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-float.html": 0.8793,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba16f-rgba-half_float.html": 0.9793,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba32f-rgba-float.html": 0.7147,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_byte.html": 1.1688,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.1612,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8-rgba-unsigned_byte.html": 0.8963,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.0145,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8-rgb-unsigned_byte.html": 0.8888,
    "conformance2/textures/canvas_sub_rectangle/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.0308,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-float.html": 1.1735,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 1.1624,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.2436,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r16f-red-float.html": 1.0741,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r16f-red-half_float.html": 1.1359,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r32f-red-float.html": 1.28,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r8-red-unsigned_byte.html": 0.9844,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-r8ui-red_integer-unsigned_byte.html": 1.1018,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg16f-rg-float.html": 1.4099,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg16f-rg-half_float.html": 1.0755,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg32f-rg-float.html": 1.1788,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg8-rg-unsigned_byte.html": 1.0478,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.9654,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.2365,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb16f-rgb-float.html": 1.3094,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb16f-rgb-half_float.html": 1.2675,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb32f-rgb-float.html": 1.2887,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb565-rgb-unsigned_byte.html": 1.2282,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 1.0101,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.9128,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.0224,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb8-rgb-unsigned_byte.html": 1.3664,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 1.1938,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb9_e5-rgb-float.html": 1.0224,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgb9_e5-rgb-half_float.html": 1.0239,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba16f-rgba-float.html": 1.0796,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba16f-rgba-half_float.html": 1.0699,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba32f-rgba-float.html": 1.1432,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba4-rgba-unsigned_byte.html": 1.2347,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.0707,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba8-rgba-unsigned_byte.html": 1.1785,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 1.2235,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-srgb8-rgb-unsigned_byte.html": 1.3459,
    "conformance2/textures/canvas_sub_rectangle/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 1.143,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.3723,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.218,
    "conformance2/textures/image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4242,
    "conformance2/textures/image/tex-2d-r16f-red-float.html": 0.2484,
    "conformance2/textures/image/tex-2d-r16f-red-half_float.html": 0.3295,
    "conformance2/textures/image/tex-2d-r32f-red-float.html": 0.3681,
    "conformance2/textures/image/tex-2d-r8-red-unsigned_byte.html": 0.1901,
    "conformance2/textures/image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.3664,
    "conformance2/textures/image/tex-2d-rg16f-rg-float.html": 0.2766,
    "conformance2/textures/image/tex-2d-rg16f-rg-half_float.html": 0.2001,
    "conformance2/textures/image/tex-2d-rg32f-rg-float.html": 0.2294,
    "conformance2/textures/image/tex-2d-rg8-rg-unsigned_byte.html": 0.3341,
    "conformance2/textures/image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.2372,
    "conformance2/textures/image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3323,
    "conformance2/textures/image/tex-2d-rgb16f-rgb-float.html": 0.2102,
    "conformance2/textures/image/tex-2d-rgb16f-rgb-half_float.html": 0.3015,
    "conformance2/textures/image/tex-2d-rgb32f-rgb-float.html": 0.3244,
    "conformance2/textures/image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.316,
    "conformance2/textures/image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2154,
    "conformance2/textures/image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.1935,
    "conformance2/textures/image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2012,
    "conformance2/textures/image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.2095,
    "conformance2/textures/image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.4043,
    "conformance2/textures/image/tex-2d-rgb9_e5-rgb-float.html": 0.1848,
    "conformance2/textures/image/tex-2d-rgb9_e5-rgb-half_float.html": 0.339,
    "conformance2/textures/image/tex-2d-rgba16f-rgba-float.html": 0.3761,
    "conformance2/textures/image/tex-2d-rgba16f-rgba-half_float.html": 0.2311,
    "conformance2/textures/image/tex-2d-rgba32f-rgba-float.html": 0.2455,
    "conformance2/textures/image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.2658,
    "conformance2/textures/image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2141,
    "conformance2/textures/image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.2666,
    "conformance2/textures/image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2283,
    "conformance2/textures/image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.3525,
    "conformance2/textures/image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1994,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.2466,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.214,
    "conformance2/textures/image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.3573,
    "conformance2/textures/image/tex-3d-r16f-red-float.html": 0.1421,
    "conformance2/textures/image/tex-3d-r16f-red-half_float.html": 0.3035,
    "conformance2/textures/image/tex-3d-r32f-red-float.html": 0.1947,
    "conformance2/textures/image/tex-3d-r8-red-unsigned_byte.html": 0.4058,
    "conformance2/textures/image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1824,
    "conformance2/textures/image/tex-3d-rg16f-rg-float.html": 0.1733,
    "conformance2/textures/image/tex-3d-rg16f-rg-half_float.html": 0.1684,
    "conformance2/textures/image/tex-3d-rg32f-rg-float.html": 0.1757,
    "conformance2/textures/image/tex-3d-rg8-rg-unsigned_byte.html": 0.1706,
    "conformance2/textures/image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.201,
    "conformance2/textures/image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3985,
    "conformance2/textures/image/tex-3d-rgb16f-rgb-float.html": 0.3955,
    "conformance2/textures/image/tex-3d-rgb16f-rgb-half_float.html": 0.3349,
    "conformance2/textures/image/tex-3d-rgb32f-rgb-float.html": 0.1719,
    "conformance2/textures/image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.5253,
    "conformance2/textures/image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3203,
    "conformance2/textures/image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1728,
    "conformance2/textures/image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1578,
    "conformance2/textures/image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.2825,
    "conformance2/textures/image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2137,
    "conformance2/textures/image/tex-3d-rgb9_e5-rgb-float.html": 0.156,
    "conformance2/textures/image/tex-3d-rgb9_e5-rgb-half_float.html": 0.2454,
    "conformance2/textures/image/tex-3d-rgba16f-rgba-float.html": 0.1748,
    "conformance2/textures/image/tex-3d-rgba16f-rgba-half_float.html": 0.2286,
    "conformance2/textures/image/tex-3d-rgba32f-rgba-float.html": 0.257,
    "conformance2/textures/image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.3313,
    "conformance2/textures/image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1575,
    "conformance2/textures/image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1813,
    "conformance2/textures/image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1919,
    "conformance2/textures/image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1648,
    "conformance2/textures/image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1814,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.2811,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.4917,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.273,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r16f-red-float.html": 0.4248,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r16f-red-half_float.html": 0.3218,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r32f-red-float.html": 0.281,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r8-red-unsigned_byte.html": 0.5095,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.2104,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg16f-rg-float.html": 0.3142,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg16f-rg-half_float.html": 0.2885,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg32f-rg-float.html": 0.458,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg8-rg-unsigned_byte.html": 0.3914,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.4472,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2405,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb16f-rgb-float.html": 0.2573,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb16f-rgb-half_float.html": 0.4662,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb32f-rgb-float.html": 0.2782,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb565-rgb-unsigned_byte.html": 0.2131,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2114,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.3793,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.3725,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb8-rgb-unsigned_byte.html": 0.2555,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.4816,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb9_e5-rgb-float.html": 0.242,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgb9_e5-rgb-half_float.html": 0.2932,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba16f-rgba-float.html": 0.4252,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba16f-rgba-half_float.html": 0.3855,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba32f-rgba-float.html": 0.2937,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba4-rgba-unsigned_byte.html": 0.4612,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3337,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba8-rgba-unsigned_byte.html": 0.2667,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.251,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-srgb8-rgb-unsigned_byte.html": 0.3278,
    "conformance2/textures/image_bitmap_from_blob/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2795,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1661,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1264,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1249,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r16f-red-float.html": 0.1414,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r16f-red-half_float.html": 0.1059,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r32f-red-float.html": 0.1296,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r8-red-unsigned_byte.html": 0.1908,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.2723,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg16f-rg-float.html": 0.169,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg16f-rg-half_float.html": 0.1311,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg32f-rg-float.html": 0.1363,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg8-rg-unsigned_byte.html": 0.224,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1782,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1221,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb16f-rgb-float.html": 0.151,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb16f-rgb-half_float.html": 0.2493,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb32f-rgb-float.html": 0.1235,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb565-rgb-unsigned_byte.html": 0.114,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1128,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.2256,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.18,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1251,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1284,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb9_e5-rgb-float.html": 0.2791,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgb9_e5-rgb-half_float.html": 0.2406,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba16f-rgba-float.html": 0.1671,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba16f-rgba-half_float.html": 0.1315,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba32f-rgba-float.html": 0.1316,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba4-rgba-unsigned_byte.html": 0.2445,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1471,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1595,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1341,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-srgb8-rgb-unsigned_byte.html": 0.2411,
    "conformance2/textures/image_bitmap_from_blob/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1117,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5763,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5522,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.5164,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r16f-red-float.html": 0.5137,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r16f-red-half_float.html": 0.4013,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r32f-red-float.html": 0.322,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r8-red-unsigned_byte.html": 0.625,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.5946,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg16f-rg-float.html": 0.2676,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg16f-rg-half_float.html": 0.5422,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg32f-rg-float.html": 0.5264,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg8-rg-unsigned_byte.html": 0.3394,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.4724,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.533,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb16f-rgb-float.html": 0.6817,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb16f-rgb-half_float.html": 0.3069,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb32f-rgb-float.html": 0.5481,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 0.363,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5516,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.4924,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.6014,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 0.4786,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3548,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb9_e5-rgb-float.html": 0.5429,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgb9_e5-rgb-half_float.html": 0.6039,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba16f-rgba-float.html": 0.3425,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba16f-rgba-half_float.html": 0.5258,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba32f-rgba-float.html": 0.3566,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 0.2776,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.5186,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 0.5209,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.5763,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 0.5836,
    "conformance2/textures/image_bitmap_from_canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.5269,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.4894,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.3002,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.4315,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r16f-red-float.html": 0.3213,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r16f-red-half_float.html": 0.2877,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r32f-red-float.html": 0.4817,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r8-red-unsigned_byte.html": 0.5065,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.4592,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg16f-rg-float.html": 0.424,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg16f-rg-half_float.html": 0.4182,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg32f-rg-float.html": 0.2559,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg8-rg-unsigned_byte.html": 0.4271,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.3933,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.4791,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb16f-rgb-float.html": 0.2771,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb16f-rgb-half_float.html": 0.4046,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb32f-rgb-float.html": 0.5442,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 0.4326,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.4199,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.3243,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.2112,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 0.4339,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2191,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb9_e5-rgb-float.html": 0.2546,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgb9_e5-rgb-half_float.html": 0.2961,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba16f-rgba-float.html": 0.2378,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba16f-rgba-half_float.html": 0.4057,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba32f-rgba-float.html": 0.472,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 0.2997,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3986,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 0.4166,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3472,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 0.3076,
    "conformance2/textures/image_bitmap_from_canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.4509,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.1567,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.2641,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1618,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r16f-red-float.html": 0.2449,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r16f-red-half_float.html": 0.2901,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r32f-red-float.html": 0.1223,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r8-red-unsigned_byte.html": 0.1571,
    "conformance2/textures/image_bitmap_from_image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.1691,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg16f-rg-float.html": 0.1605,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg16f-rg-half_float.html": 0.1884,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg32f-rg-float.html": 0.1713,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg8-rg-unsigned_byte.html": 0.3366,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.182,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.146,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb16f-rgb-float.html": 0.3312,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb16f-rgb-half_float.html": 0.2974,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb32f-rgb-float.html": 0.3676,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.1655,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1602,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.1866,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.176,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.1559,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1538,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb9_e5-rgb-float.html": 0.1508,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgb9_e5-rgb-half_float.html": 0.1943,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba16f-rgba-float.html": 0.1611,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba16f-rgba-half_float.html": 0.2051,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba32f-rgba-float.html": 0.161,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.1463,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1471,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.2039,
    "conformance2/textures/image_bitmap_from_image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1888,
    "conformance2/textures/image_bitmap_from_image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.1703,
    "conformance2/textures/image_bitmap_from_image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.3794,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1421,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.211,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1412,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r16f-red-float.html": 0.2893,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r16f-red-half_float.html": 0.2187,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r32f-red-float.html": 0.2439,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r8-red-unsigned_byte.html": 0.2696,
    "conformance2/textures/image_bitmap_from_image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1317,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg16f-rg-float.html": 0.1291,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg16f-rg-half_float.html": 0.1372,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg32f-rg-float.html": 0.2748,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg8-rg-unsigned_byte.html": 0.3134,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.4096,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1356,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb16f-rgb-float.html": 0.1398,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb16f-rgb-half_float.html": 0.2059,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb32f-rgb-float.html": 0.1446,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1661,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1358,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1366,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.3527,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1169,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1328,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb9_e5-rgb-float.html": 0.448,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgb9_e5-rgb-half_float.html": 0.1562,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba16f-rgba-float.html": 0.1287,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba16f-rgba-half_float.html": 0.1337,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba32f-rgba-float.html": 0.1102,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1127,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2258,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1438,
    "conformance2/textures/image_bitmap_from_image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1129,
    "conformance2/textures/image_bitmap_from_image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.3435,
    "conformance2/textures/image_bitmap_from_image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1848,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.2903,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.1506,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1919,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r16f-red-float.html": 0.3796,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r16f-red-half_float.html": 0.1876,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r32f-red-float.html": 0.1655,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r8-red-unsigned_byte.html": 0.1546,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.1258,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg16f-rg-float.html": 0.1822,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg16f-rg-half_float.html": 0.1858,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg32f-rg-float.html": 0.1647,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg8-rg-unsigned_byte.html": 0.2022,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.2323,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2129,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb16f-rgb-float.html": 0.1841,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb16f-rgb-half_float.html": 0.179,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb32f-rgb-float.html": 0.182,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb565-rgb-unsigned_byte.html": 0.2263,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1345,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.1819,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1728,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb8-rgb-unsigned_byte.html": 0.1712,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1475,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb9_e5-rgb-float.html": 0.1264,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgb9_e5-rgb-half_float.html": 0.1446,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba16f-rgba-float.html": 0.1834,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba16f-rgba-half_float.html": 0.2899,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba32f-rgba-float.html": 0.2211,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba4-rgba-unsigned_byte.html": 0.1885,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3104,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba8-rgba-unsigned_byte.html": 0.1581,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3255,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-srgb8-rgb-unsigned_byte.html": 0.1442,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1706,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.1307,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1312,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1241,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r16f-red-float.html": 0.1276,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r16f-red-half_float.html": 0.121,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r32f-red-float.html": 0.1346,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r8-red-unsigned_byte.html": 0.0974,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1319,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg16f-rg-float.html": 0.1017,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg16f-rg-half_float.html": 0.1213,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg32f-rg-float.html": 0.1652,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg8-rg-unsigned_byte.html": 0.1296,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1072,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.4308,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb16f-rgb-float.html": 0.123,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb16f-rgb-half_float.html": 0.164,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb32f-rgb-float.html": 0.1196,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1471,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3115,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1362,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1024,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1277,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1366,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb9_e5-rgb-float.html": 0.1034,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgb9_e5-rgb-half_float.html": 0.1539,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba16f-rgba-float.html": 0.1323,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba16f-rgba-half_float.html": 0.1313,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba32f-rgba-float.html": 0.1169,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1008,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2409,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba8-rgba-unsigned_byte.html": 0.127,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.121,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1275,
    "conformance2/textures/image_bitmap_from_image_bitmap/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1593,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.1906,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.3475,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1661,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r16f-red-float.html": 0.1827,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r16f-red-half_float.html": 0.1659,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r32f-red-float.html": 0.1783,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r8-red-unsigned_byte.html": 0.1805,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.1666,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg16f-rg-float.html": 0.1484,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg16f-rg-half_float.html": 0.1919,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg32f-rg-float.html": 0.202,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg8-rg-unsigned_byte.html": 0.1658,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.1897,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1573,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb16f-rgb-float.html": 0.1919,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb16f-rgb-half_float.html": 0.164,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb32f-rgb-float.html": 0.19,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb565-rgb-unsigned_byte.html": 0.1447,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.3573,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.2379,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1198,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb8-rgb-unsigned_byte.html": 0.1593,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.398,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb9_e5-rgb-float.html": 0.1519,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgb9_e5-rgb-half_float.html": 0.1569,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba16f-rgba-float.html": 0.1747,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba16f-rgba-half_float.html": 0.1493,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba32f-rgba-float.html": 0.1492,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba4-rgba-unsigned_byte.html": 0.172,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.2131,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba8-rgba-unsigned_byte.html": 0.1499,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1928,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-srgb8-rgb-unsigned_byte.html": 0.1539,
    "conformance2/textures/image_bitmap_from_image_data/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1394,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.124,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1276,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1171,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r16f-red-float.html": 0.1336,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r16f-red-half_float.html": 0.1146,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r32f-red-float.html": 0.1342,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r8-red-unsigned_byte.html": 0.1341,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1256,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg16f-rg-float.html": 0.127,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg16f-rg-half_float.html": 0.1125,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg32f-rg-float.html": 0.1217,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg8-rg-unsigned_byte.html": 0.1392,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1528,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.116,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb16f-rgb-float.html": 0.1111,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb16f-rgb-half_float.html": 0.1036,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb32f-rgb-float.html": 0.1293,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb565-rgb-unsigned_byte.html": 0.1268,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1042,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.1147,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1057,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1288,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.2723,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb9_e5-rgb-float.html": 0.1221,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgb9_e5-rgb-half_float.html": 0.1055,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba16f-rgba-float.html": 0.1386,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba16f-rgba-half_float.html": 0.1033,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba32f-rgba-float.html": 0.1287,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1262,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1408,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1187,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.123,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-srgb8-rgb-unsigned_byte.html": 0.2249,
    "conformance2/textures/image_bitmap_from_image_data/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1406,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.7827,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.5798,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.714,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r16f-red-float.html": 0.6859,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r16f-red-half_float.html": 0.68,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r32f-red-float.html": 0.7656,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r8-red-unsigned_byte.html": 0.6919,
    "conformance2/textures/image_bitmap_from_video/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.5884,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg16f-rg-float.html": 0.6812,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg16f-rg-half_float.html": 0.9293,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg32f-rg-float.html": 0.5388,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg8-rg-unsigned_byte.html": 0.9239,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.7575,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.6295,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb16f-rgb-float.html": 0.6384,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb16f-rgb-half_float.html": 0.6946,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb32f-rgb-float.html": 0.7277,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb565-rgb-unsigned_byte.html": 0.737,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.6779,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.7181,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.899,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb8-rgb-unsigned_byte.html": 0.6277,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.7579,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb9_e5-rgb-float.html": 0.7828,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgb9_e5-rgb-half_float.html": 0.6365,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba16f-rgba-float.html": 0.6376,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba16f-rgba-half_float.html": 0.9461,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba32f-rgba-float.html": 0.6954,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba4-rgba-unsigned_byte.html": 0.6478,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.6536,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba8-rgba-unsigned_byte.html": 0.7043,
    "conformance2/textures/image_bitmap_from_video/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.7067,
    "conformance2/textures/image_bitmap_from_video/tex-2d-srgb8-rgb-unsigned_byte.html": 0.632,
    "conformance2/textures/image_bitmap_from_video/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.6698,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.723,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.6594,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.7599,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r16f-red-float.html": 0.7037,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r16f-red-half_float.html": 0.6624,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r32f-red-float.html": 0.8788,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r8-red-unsigned_byte.html": 0.7158,
    "conformance2/textures/image_bitmap_from_video/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.6532,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg16f-rg-float.html": 0.7852,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg16f-rg-half_float.html": 0.8379,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg32f-rg-float.html": 0.6831,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg8-rg-unsigned_byte.html": 0.6088,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.9288,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.8976,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb16f-rgb-float.html": 0.6963,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb16f-rgb-half_float.html": 0.6797,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb32f-rgb-float.html": 0.6953,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb565-rgb-unsigned_byte.html": 0.8788,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.5906,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.6687,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.6458,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb8-rgb-unsigned_byte.html": 0.6859,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.7317,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb9_e5-rgb-float.html": 0.679,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgb9_e5-rgb-half_float.html": 0.697,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba16f-rgba-float.html": 0.6984,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba16f-rgba-half_float.html": 0.7788,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba32f-rgba-float.html": 0.6791,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba4-rgba-unsigned_byte.html": 0.6679,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.6567,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba8-rgba-unsigned_byte.html": 0.7171,
    "conformance2/textures/image_bitmap_from_video/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.7827,
    "conformance2/textures/image_bitmap_from_video/tex-3d-srgb8-rgb-unsigned_byte.html": 0.7469,
    "conformance2/textures/image_bitmap_from_video/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.7643,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.5405,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.2573,
    "conformance2/textures/image_data/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2986,
    "conformance2/textures/image_data/tex-2d-r16f-red-float.html": 0.3692,
    "conformance2/textures/image_data/tex-2d-r16f-red-half_float.html": 0.5154,
    "conformance2/textures/image_data/tex-2d-r32f-red-float.html": 0.4405,
    "conformance2/textures/image_data/tex-2d-r8-red-unsigned_byte.html": 0.3133,
    "conformance2/textures/image_data/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.2789,
    "conformance2/textures/image_data/tex-2d-rg16f-rg-float.html": 0.4765,
    "conformance2/textures/image_data/tex-2d-rg16f-rg-half_float.html": 0.2904,
    "conformance2/textures/image_data/tex-2d-rg32f-rg-float.html": 0.2411,
    "conformance2/textures/image_data/tex-2d-rg8-rg-unsigned_byte.html": 0.2733,
    "conformance2/textures/image_data/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.4545,
    "conformance2/textures/image_data/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3031,
    "conformance2/textures/image_data/tex-2d-rgb16f-rgb-float.html": 0.2988,
    "conformance2/textures/image_data/tex-2d-rgb16f-rgb-half_float.html": 0.3476,
    "conformance2/textures/image_data/tex-2d-rgb32f-rgb-float.html": 0.3967,
    "conformance2/textures/image_data/tex-2d-rgb565-rgb-unsigned_byte.html": 0.535,
    "conformance2/textures/image_data/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.2775,
    "conformance2/textures/image_data/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.3687,
    "conformance2/textures/image_data/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.318,
    "conformance2/textures/image_data/tex-2d-rgb8-rgb-unsigned_byte.html": 0.5282,
    "conformance2/textures/image_data/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.3982,
    "conformance2/textures/image_data/tex-2d-rgb9_e5-rgb-float.html": 0.4458,
    "conformance2/textures/image_data/tex-2d-rgb9_e5-rgb-half_float.html": 0.2836,
    "conformance2/textures/image_data/tex-2d-rgba16f-rgba-float.html": 0.2769,
    "conformance2/textures/image_data/tex-2d-rgba16f-rgba-half_float.html": 0.3057,
    "conformance2/textures/image_data/tex-2d-rgba32f-rgba-float.html": 0.4719,
    "conformance2/textures/image_data/tex-2d-rgba4-rgba-unsigned_byte.html": 0.4041,
    "conformance2/textures/image_data/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3093,
    "conformance2/textures/image_data/tex-2d-rgba8-rgba-unsigned_byte.html": 0.4253,
    "conformance2/textures/image_data/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.3885,
    "conformance2/textures/image_data/tex-2d-srgb8-rgb-unsigned_byte.html": 0.4428,
    "conformance2/textures/image_data/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.458,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.2776,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.339,
    "conformance2/textures/image_data/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.2798,
    "conformance2/textures/image_data/tex-3d-r16f-red-float.html": 0.4022,
    "conformance2/textures/image_data/tex-3d-r16f-red-half_float.html": 0.5048,
    "conformance2/textures/image_data/tex-3d-r32f-red-float.html": 0.2637,
    "conformance2/textures/image_data/tex-3d-r8-red-unsigned_byte.html": 0.4084,
    "conformance2/textures/image_data/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.2724,
    "conformance2/textures/image_data/tex-3d-rg16f-rg-float.html": 0.2232,
    "conformance2/textures/image_data/tex-3d-rg16f-rg-half_float.html": 0.2692,
    "conformance2/textures/image_data/tex-3d-rg32f-rg-float.html": 0.3099,
    "conformance2/textures/image_data/tex-3d-rg8-rg-unsigned_byte.html": 0.343,
    "conformance2/textures/image_data/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.3092,
    "conformance2/textures/image_data/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.2455,
    "conformance2/textures/image_data/tex-3d-rgb16f-rgb-float.html": 0.4881,
    "conformance2/textures/image_data/tex-3d-rgb16f-rgb-half_float.html": 0.2886,
    "conformance2/textures/image_data/tex-3d-rgb32f-rgb-float.html": 0.3841,
    "conformance2/textures/image_data/tex-3d-rgb565-rgb-unsigned_byte.html": 0.2555,
    "conformance2/textures/image_data/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.262,
    "conformance2/textures/image_data/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.3456,
    "conformance2/textures/image_data/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.3811,
    "conformance2/textures/image_data/tex-3d-rgb8-rgb-unsigned_byte.html": 0.2212,
    "conformance2/textures/image_data/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.5595,
    "conformance2/textures/image_data/tex-3d-rgb9_e5-rgb-float.html": 0.291,
    "conformance2/textures/image_data/tex-3d-rgb9_e5-rgb-half_float.html": 0.3387,
    "conformance2/textures/image_data/tex-3d-rgba16f-rgba-float.html": 0.2478,
    "conformance2/textures/image_data/tex-3d-rgba16f-rgba-half_float.html": 0.2788,
    "conformance2/textures/image_data/tex-3d-rgba32f-rgba-float.html": 0.3944,
    "conformance2/textures/image_data/tex-3d-rgba4-rgba-unsigned_byte.html": 0.3138,
    "conformance2/textures/image_data/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.3388,
    "conformance2/textures/image_data/tex-3d-rgba8-rgba-unsigned_byte.html": 0.3353,
    "conformance2/textures/image_data/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.2279,
    "conformance2/textures/image_data/tex-3d-srgb8-rgb-unsigned_byte.html": 0.2499,
    "conformance2/textures/image_data/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2607,
    "conformance2/textures/misc/active-3d-texture-bug.html": 0.0917,
    "conformance2/textures/misc/angle-stuck-depth-textures.html": 0.2164,
    "conformance2/textures/misc/canvas-remains-unchanged-after-used-in-webgl-texture.html": 0.0901,
    "conformance2/textures/misc/compressed-tex-from-pbo-crash.html": 0.0809,
    "conformance2/textures/misc/compressed-tex-image.html": 0.1124,
    "conformance2/textures/misc/copy-texture-cube-map-AMD-bug.html": 0.1065,
    "conformance2/textures/misc/copy-texture-cube-map-bug.html": 0.0769,
    "conformance2/textures/misc/copy-texture-image-luma-format.html": 1.5888,
    "conformance2/textures/misc/copy-texture-image-same-texture.html": 0.2541,
    "conformance2/textures/misc/copy-texture-image-webgl-specific.html": 0.1583,
    "conformance2/textures/misc/copy-texture-image.html": 0.1602,
    "conformance2/textures/misc/generate-mipmap-with-large-base-level.html": 0.0883,
    "conformance2/textures/misc/gl-get-tex-parameter.html": 0.1328,
    "conformance2/textures/misc/immutable-tex-render-feedback.html": 1.4262,
    "conformance2/textures/misc/integer-cubemap-specification-order-bug.html": 0.1461,
    "conformance2/textures/misc/integer-cubemap-texture-sampling.html": 0.9387,
    "conformance2/textures/misc/mipmap-fbo.html": 0.0795,
    "conformance2/textures/misc/npot-video-sizing.html": 0.1419,
    "conformance2/textures/misc/origin-clean-conformance-offscreencanvas.html": 0.203,
    "conformance2/textures/misc/tex-3d-mipmap-levels-intel-bug.html": 0.1121,
    "conformance2/textures/misc/tex-3d-size-limit.html": 0.1186,
    "conformance2/textures/misc/tex-base-level-bug.html": 0.1012,
    "conformance2/textures/misc/tex-image-and-sub-image-with-array-buffer-view-sub-source.html": 0.1853,
    "conformance2/textures/misc/tex-image-with-bad-args-from-dom-elements.html": 0.3727,
    "conformance2/textures/misc/tex-image-with-bad-args.html": 0.1147,
    "conformance2/textures/misc/tex-image-with-different-data-source.html": 0.1276,
    "conformance2/textures/misc/tex-input-validation.html": 0.1458,
    "conformance2/textures/misc/tex-mipmap-levels.html": 0.1199,
    "conformance2/textures/misc/tex-new-formats.html": 0.3063,
    "conformance2/textures/misc/tex-srgb-mipmap.html": 0.137,
    "conformance2/textures/misc/tex-storage-2d.html": 0.1998,
    "conformance2/textures/misc/tex-storage-and-subimage-3d.html": 0.1203,
    "conformance2/textures/misc/tex-storage-compressed-formats.html": 0.1154,
    "conformance2/textures/misc/tex-subimage3d-canvas-bug.html": 0.1418,
    "conformance2/textures/misc/tex-subimage3d-pixel-buffer-bug.html": 0.0854,
    "conformance2/textures/misc/tex-unpack-params-imagedata.html": 0.079,
    "conformance2/textures/misc/tex-unpack-params-with-flip-y-and-premultiply-alpha.html": 0.2943,
    "conformance2/textures/misc/tex-unpack-params.html": 0.4393,
    "conformance2/textures/misc/texel-fetch-undefined.html": 0.1229,
    "conformance2/textures/misc/texture-npot.html": 0.3382,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-float.html": 0.1096,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 0.1367,
    "conformance2/textures/svg_image/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.3322,
    "conformance2/textures/svg_image/tex-2d-r16f-red-float.html": 0.1111,
    "conformance2/textures/svg_image/tex-2d-r16f-red-half_float.html": 0.1217,
    "conformance2/textures/svg_image/tex-2d-r32f-red-float.html": 0.1031,
    "conformance2/textures/svg_image/tex-2d-r8-red-unsigned_byte.html": 0.1861,
    "conformance2/textures/svg_image/tex-2d-r8ui-red_integer-unsigned_byte.html": 0.1236,
    "conformance2/textures/svg_image/tex-2d-rg16f-rg-float.html": 0.1329,
    "conformance2/textures/svg_image/tex-2d-rg16f-rg-half_float.html": 0.1111,
    "conformance2/textures/svg_image/tex-2d-rg32f-rg-float.html": 0.1659,
    "conformance2/textures/svg_image/tex-2d-rg8-rg-unsigned_byte.html": 0.1064,
    "conformance2/textures/svg_image/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 0.1335,
    "conformance2/textures/svg_image/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.1242,
    "conformance2/textures/svg_image/tex-2d-rgb16f-rgb-float.html": 0.1453,
    "conformance2/textures/svg_image/tex-2d-rgb16f-rgb-half_float.html": 0.3519,
    "conformance2/textures/svg_image/tex-2d-rgb32f-rgb-float.html": 0.1303,
    "conformance2/textures/svg_image/tex-2d-rgb565-rgb-unsigned_byte.html": 0.1138,
    "conformance2/textures/svg_image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1129,
    "conformance2/textures/svg_image/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 0.1272,
    "conformance2/textures/svg_image/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.128,
    "conformance2/textures/svg_image/tex-2d-rgb8-rgb-unsigned_byte.html": 0.1011,
    "conformance2/textures/svg_image/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1388,
    "conformance2/textures/svg_image/tex-2d-rgb9_e5-rgb-float.html": 0.1289,
    "conformance2/textures/svg_image/tex-2d-rgb9_e5-rgb-half_float.html": 0.125,
    "conformance2/textures/svg_image/tex-2d-rgba16f-rgba-float.html": 0.1365,
    "conformance2/textures/svg_image/tex-2d-rgba16f-rgba-half_float.html": 0.2618,
    "conformance2/textures/svg_image/tex-2d-rgba32f-rgba-float.html": 0.1515,
    "conformance2/textures/svg_image/tex-2d-rgba4-rgba-unsigned_byte.html": 0.2558,
    "conformance2/textures/svg_image/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.1063,
    "conformance2/textures/svg_image/tex-2d-rgba8-rgba-unsigned_byte.html": 0.1179,
    "conformance2/textures/svg_image/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1376,
    "conformance2/textures/svg_image/tex-2d-srgb8-rgb-unsigned_byte.html": 0.1649,
    "conformance2/textures/svg_image/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 0.1121,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-float.html": 0.3125,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 0.1459,
    "conformance2/textures/svg_image/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 0.1044,
    "conformance2/textures/svg_image/tex-3d-r16f-red-float.html": 0.1127,
    "conformance2/textures/svg_image/tex-3d-r16f-red-half_float.html": 0.2315,
    "conformance2/textures/svg_image/tex-3d-r32f-red-float.html": 0.136,
    "conformance2/textures/svg_image/tex-3d-r8-red-unsigned_byte.html": 0.109,
    "conformance2/textures/svg_image/tex-3d-r8ui-red_integer-unsigned_byte.html": 0.1648,
    "conformance2/textures/svg_image/tex-3d-rg16f-rg-float.html": 0.0973,
    "conformance2/textures/svg_image/tex-3d-rg16f-rg-half_float.html": 0.108,
    "conformance2/textures/svg_image/tex-3d-rg32f-rg-float.html": 0.1552,
    "conformance2/textures/svg_image/tex-3d-rg8-rg-unsigned_byte.html": 0.1109,
    "conformance2/textures/svg_image/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 0.1137,
    "conformance2/textures/svg_image/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 0.3057,
    "conformance2/textures/svg_image/tex-3d-rgb16f-rgb-float.html": 0.1227,
    "conformance2/textures/svg_image/tex-3d-rgb16f-rgb-half_float.html": 0.0954,
    "conformance2/textures/svg_image/tex-3d-rgb32f-rgb-float.html": 0.0882,
    "conformance2/textures/svg_image/tex-3d-rgb565-rgb-unsigned_byte.html": 0.0959,
    "conformance2/textures/svg_image/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 0.1032,
    "conformance2/textures/svg_image/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 0.0883,
    "conformance2/textures/svg_image/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 0.1848,
    "conformance2/textures/svg_image/tex-3d-rgb8-rgb-unsigned_byte.html": 0.1669,
    "conformance2/textures/svg_image/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 0.1892,
    "conformance2/textures/svg_image/tex-3d-rgb9_e5-rgb-float.html": 0.1987,
    "conformance2/textures/svg_image/tex-3d-rgb9_e5-rgb-half_float.html": 0.0926,
    "conformance2/textures/svg_image/tex-3d-rgba16f-rgba-float.html": 0.0917,
    "conformance2/textures/svg_image/tex-3d-rgba16f-rgba-half_float.html": 0.212,
    "conformance2/textures/svg_image/tex-3d-rgba32f-rgba-float.html": 0.0921,
    "conformance2/textures/svg_image/tex-3d-rgba4-rgba-unsigned_byte.html": 0.1219,
    "conformance2/textures/svg_image/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 0.0913,
    "conformance2/textures/svg_image/tex-3d-rgba8-rgba-unsigned_byte.html": 0.1113,
    "conformance2/textures/svg_image/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 0.1188,
    "conformance2/textures/svg_image/tex-3d-srgb8-rgb-unsigned_byte.html": 0.1171,
    "conformance2/textures/svg_image/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 0.2907,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-float.html": 1.2221,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.2572,
    "conformance2/textures/video/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.1418,
    "conformance2/textures/video/tex-2d-r16f-red-float.html": 1.2761,
    "conformance2/textures/video/tex-2d-r16f-red-half_float.html": 1.274,
    "conformance2/textures/video/tex-2d-r32f-red-float.html": 1.2922,
    "conformance2/textures/video/tex-2d-r8-red-unsigned_byte.html": 1.1856,
    "conformance2/textures/video/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.3297,
    "conformance2/textures/video/tex-2d-rg16f-rg-float.html": 1.2319,
    "conformance2/textures/video/tex-2d-rg16f-rg-half_float.html": 1.2783,
    "conformance2/textures/video/tex-2d-rg32f-rg-float.html": 1.2408,
    "conformance2/textures/video/tex-2d-rg8-rg-unsigned_byte.html": 1.5203,
    "conformance2/textures/video/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 1.2722,
    "conformance2/textures/video/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.1672,
    "conformance2/textures/video/tex-2d-rgb16f-rgb-float.html": 1.1674,
    "conformance2/textures/video/tex-2d-rgb16f-rgb-half_float.html": 1.1572,
    "conformance2/textures/video/tex-2d-rgb32f-rgb-float.html": 1.3583,
    "conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_byte.html": 1.2682,
    "conformance2/textures/video/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 1.2034,
    "conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.067,
    "conformance2/textures/video/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.471,
    "conformance2/textures/video/tex-2d-rgb8-rgb-unsigned_byte.html": 1.1889,
    "conformance2/textures/video/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.1731,
    "conformance2/textures/video/tex-2d-rgb9_e5-rgb-float.html": 1.3521,
    "conformance2/textures/video/tex-2d-rgb9_e5-rgb-half_float.html": 1.2422,
    "conformance2/textures/video/tex-2d-rgba16f-rgba-float.html": 1.1474,
    "conformance2/textures/video/tex-2d-rgba16f-rgba-half_float.html": 1.3101,
    "conformance2/textures/video/tex-2d-rgba32f-rgba-float.html": 1.4683,
    "conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_byte.html": 1.3384,
    "conformance2/textures/video/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.2942,
    "conformance2/textures/video/tex-2d-rgba8-rgba-unsigned_byte.html": 1.1752,
    "conformance2/textures/video/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.3275,
    "conformance2/textures/video/tex-2d-srgb8-rgb-unsigned_byte.html": 1.2453,
    "conformance2/textures/video/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.1393,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-float.html": 1.2414,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 1.1711,
    "conformance2/textures/video/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.3672,
    "conformance2/textures/video/tex-3d-r16f-red-float.html": 1.2869,
    "conformance2/textures/video/tex-3d-r16f-red-half_float.html": 1.1407,
    "conformance2/textures/video/tex-3d-r32f-red-float.html": 1.2755,
    "conformance2/textures/video/tex-3d-r8-red-unsigned_byte.html": 1.0999,
    "conformance2/textures/video/tex-3d-r8ui-red_integer-unsigned_byte.html": 1.1699,
    "conformance2/textures/video/tex-3d-rg16f-rg-float.html": 1.2002,
    "conformance2/textures/video/tex-3d-rg16f-rg-half_float.html": 1.1352,
    "conformance2/textures/video/tex-3d-rg32f-rg-float.html": 1.342,
    "conformance2/textures/video/tex-3d-rg8-rg-unsigned_byte.html": 1.1057,
    "conformance2/textures/video/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 1.2307,
    "conformance2/textures/video/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.4934,
    "conformance2/textures/video/tex-3d-rgb16f-rgb-float.html": 1.2154,
    "conformance2/textures/video/tex-3d-rgb16f-rgb-half_float.html": 1.1816,
    "conformance2/textures/video/tex-3d-rgb32f-rgb-float.html": 1.2196,
    "conformance2/textures/video/tex-3d-rgb565-rgb-unsigned_byte.html": 1.2025,
    "conformance2/textures/video/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 1.1873,
    "conformance2/textures/video/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 1.282,
    "conformance2/textures/video/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.4941,
    "conformance2/textures/video/tex-3d-rgb8-rgb-unsigned_byte.html": 1.193,
    "conformance2/textures/video/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 1.1912,
    "conformance2/textures/video/tex-3d-rgb9_e5-rgb-float.html": 1.6258,
    "conformance2/textures/video/tex-3d-rgb9_e5-rgb-half_float.html": 1.1802,
    "conformance2/textures/video/tex-3d-rgba16f-rgba-float.html": 1.2747,
    "conformance2/textures/video/tex-3d-rgba16f-rgba-half_float.html": 1.2423,
    "conformance2/textures/video/tex-3d-rgba32f-rgba-float.html": 1.1878,
    "conformance2/textures/video/tex-3d-rgba4-rgba-unsigned_byte.html": 1.1357,
    "conformance2/textures/video/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.2754,
    "conformance2/textures/video/tex-3d-rgba8-rgba-unsigned_byte.html": 1.1234,
    "conformance2/textures/video/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 1.2384,
    "conformance2/textures/video/tex-3d-srgb8-rgb-unsigned_byte.html": 1.2346,
    "conformance2/textures/video/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 1.0868,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-float.html": 1.4314,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-half_float.html": 1.2586,
    "conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 1.19,
    "conformance2/textures/webgl_canvas/tex-2d-r16f-red-float.html": 1.2204,
    "conformance2/textures/webgl_canvas/tex-2d-r16f-red-half_float.html": 1.1403,
    "conformance2/textures/webgl_canvas/tex-2d-r32f-red-float.html": 1.3762,
    "conformance2/textures/webgl_canvas/tex-2d-r8-red-unsigned_byte.html": 1.3878,
    "conformance2/textures/webgl_canvas/tex-2d-r8ui-red_integer-unsigned_byte.html": 1.6293,
    "conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-float.html": 1.6815,
    "conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-half_float.html": 1.153,
    "conformance2/textures/webgl_canvas/tex-2d-rg32f-rg-float.html": 1.3387,
    "conformance2/textures/webgl_canvas/tex-2d-rg8-rg-unsigned_byte.html": 1.3025,
    "conformance2/textures/webgl_canvas/tex-2d-rg8ui-rg_integer-unsigned_byte.html": 1.5798,
    "conformance2/textures/webgl_canvas/tex-2d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 1.2333,
    "conformance2/textures/webgl_canvas/tex-2d-rgb16f-rgb-float.html": 1.1319,
    "conformance2/textures/webgl_canvas/tex-2d-rgb16f-rgb-half_float.html": 1.2515,
    "conformance2/textures/webgl_canvas/tex-2d-rgb32f-rgb-float.html": 1.5297,
    "conformance2/textures/webgl_canvas/tex-2d-rgb565-rgb-unsigned_byte.html": 1.6022,
    "conformance2/textures/webgl_canvas/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html": 1.4392,
    "conformance2/textures/webgl_canvas/tex-2d-rgb5_a1-rgba-unsigned_byte.html": 1.2713,
    "conformance2/textures/webgl_canvas/tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 1.2076,
    "conformance2/textures/webgl_canvas/tex-2d-rgb8-rgb-unsigned_byte.html": 1.2018,
    "conformance2/textures/webgl_canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte.html": 1.6655,
    "conformance2/textures/webgl_canvas/tex-2d-rgb9_e5-rgb-float.html": 1.4045,
    "conformance2/textures/webgl_canvas/tex-2d-rgb9_e5-rgb-half_float.html": 1.6412,
    "conformance2/textures/webgl_canvas/tex-2d-rgba16f-rgba-float.html": 1.4257,
    "conformance2/textures/webgl_canvas/tex-2d-rgba16f-rgba-half_float.html": 1.2262,
    "conformance2/textures/webgl_canvas/tex-2d-rgba32f-rgba-float.html": 1.1039,
    "conformance2/textures/webgl_canvas/tex-2d-rgba4-rgba-unsigned_byte.html": 1.4461,
    "conformance2/textures/webgl_canvas/tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html": 1.4962,
    "conformance2/textures/webgl_canvas/tex-2d-rgba8-rgba-unsigned_byte.html": 1.1444,
    "conformance2/textures/webgl_canvas/tex-2d-rgba8ui-rgba_integer-unsigned_byte.html": 1.874,
    "conformance2/textures/webgl_canvas/tex-2d-srgb8-rgb-unsigned_byte.html": 1.3844,
    "conformance2/textures/webgl_canvas/tex-2d-srgb8_alpha8-rgba-unsigned_byte.html": 1.4298,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-float.html": 5.3818,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-half_float.html": 5.4694,
    "conformance2/textures/webgl_canvas/tex-3d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html": 5.5473,
    "conformance2/textures/webgl_canvas/tex-3d-r16f-red-float.html": 5.2973,
    "conformance2/textures/webgl_canvas/tex-3d-r16f-red-half_float.html": 5.4659,
    "conformance2/textures/webgl_canvas/tex-3d-r32f-red-float.html": 5.5376,
    "conformance2/textures/webgl_canvas/tex-3d-r8-red-unsigned_byte.html": 5.5903,
    "conformance2/textures/webgl_canvas/tex-3d-r8ui-red_integer-unsigned_byte.html": 5.5803,
    "conformance2/textures/webgl_canvas/tex-3d-rg16f-rg-float.html": 5.4956,
    "conformance2/textures/webgl_canvas/tex-3d-rg16f-rg-half_float.html": 5.5028,
    "conformance2/textures/webgl_canvas/tex-3d-rg32f-rg-float.html": 5.5206,
    "conformance2/textures/webgl_canvas/tex-3d-rg8-rg-unsigned_byte.html": 5.3706,
    "conformance2/textures/webgl_canvas/tex-3d-rg8ui-rg_integer-unsigned_byte.html": 5.5232,
    "conformance2/textures/webgl_canvas/tex-3d-rgb10_a2-rgba-unsigned_int_2_10_10_10_rev.html": 5.3876,
    "conformance2/textures/webgl_canvas/tex-3d-rgb16f-rgb-float.html": 5.2515,
    "conformance2/textures/webgl_canvas/tex-3d-rgb16f-rgb-half_float.html": 5.5502,
    "conformance2/textures/webgl_canvas/tex-3d-rgb32f-rgb-float.html": 5.442,
    "conformance2/textures/webgl_canvas/tex-3d-rgb565-rgb-unsigned_byte.html": 5.424,
    "conformance2/textures/webgl_canvas/tex-3d-rgb565-rgb-unsigned_short_5_6_5.html": 5.4357,
    "conformance2/textures/webgl_canvas/tex-3d-rgb5_a1-rgba-unsigned_byte.html": 5.5877,
    "conformance2/textures/webgl_canvas/tex-3d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html": 5.4424,
    "conformance2/textures/webgl_canvas/tex-3d-rgb8-rgb-unsigned_byte.html": 5.465,
    "conformance2/textures/webgl_canvas/tex-3d-rgb8ui-rgb_integer-unsigned_byte.html": 5.3835,
    "conformance2/textures/webgl_canvas/tex-3d-rgb9_e5-rgb-float.html": 5.4783,
    "conformance2/textures/webgl_canvas/tex-3d-rgb9_e5-rgb-half_float.html": 5.2505,
    "conformance2/textures/webgl_canvas/tex-3d-rgba16f-rgba-float.html": 5.4221,
    "conformance2/textures/webgl_canvas/tex-3d-rgba16f-rgba-half_float.html": 5.3503,
    "conformance2/textures/webgl_canvas/tex-3d-rgba32f-rgba-float.html": 5.5666,
    "conformance2/textures/webgl_canvas/tex-3d-rgba4-rgba-unsigned_byte.html": 5.4954,
    "conformance2/textures/webgl_canvas/tex-3d-rgba4-rgba-unsigned_short_4_4_4_4.html": 5.249,
    "conformance2/textures/webgl_canvas/tex-3d-rgba8-rgba-unsigned_byte.html": 5.3818,
    "conformance2/textures/webgl_canvas/tex-3d-rgba8ui-rgba_integer-unsigned_byte.html": 5.5827,
    "conformance2/textures/webgl_canvas/tex-3d-srgb8-rgb-unsigned_byte.html": 5.4069,
    "conformance2/textures/webgl_canvas/tex-3d-srgb8_alpha8-rgba-unsigned_byte.html": 5.6125,
    "conformance2/transform_feedback/default_transform_feedback.html": 0.1997,
    "conformance2/transform_feedback/non-existent-varying.html": 0.1615,
    "conformance2/transform_feedback/same-buffer-two-binding-points.html": 0.3253,
    "conformance2/transform_feedback/simultaneous_binding.html": 0.7527,
    "conformance2/transform_feedback/switching-objects.html": 0.3724,
    "conformance2/transform_feedback/too-small-buffers.html": 0.1259,
    "conformance2/transform_feedback/transform_feedback.html": 1.0728,
    "conformance2/transform_feedback/two-unreferenced-varyings.html": 0.0762,
    "conformance2/transform_feedback/unwritten-output-defaults-to-zero.html": 0.1137,
    "conformance2/uniforms/dependent-buffer-change.html": 0.3245,
    "conformance2/uniforms/draw-with-uniform-blocks.html": 0.2775,
    "conformance2/uniforms/gl-uniform-arrays-sub-source.html": 0.4111,
    "conformance2/uniforms/incompatible-texture-type-for-sampler.html": 2.513,
    "conformance2/uniforms/large-uniform-buffers.html": 0.1051,
    "conformance2/uniforms/query-uniform-blocks-after-shader-detach.html": 0.0947,
    "conformance2/uniforms/simple-buffer-change.html": 0.1188,
    "conformance2/uniforms/uniform-blocks-with-arrays.html": 0.1264,
    "conformance2/vertex_arrays/vertex-array-object-and-disabled-attributes.html": 0.1215,
    "conformance2/vertex_arrays/vertex-array-object.html": 0.2663,
    "deqp/data/gles3/shaders/arrays.html": 4.6888,
    "deqp/data/gles3/shaders/conditionals.html": 0.9974,
    "deqp/data/gles3/shaders/constant_expressions.html": 1.34,
    "deqp/data/gles3/shaders/constants.html": 3.3523,
    "deqp/data/gles3/shaders/conversions_matrix_combine.html": 9.4038,
    "deqp/data/gles3/shaders/conversions_matrix_to_matrix.html": 5.9953,
    "deqp/data/gles3/shaders/conversions_scalar_to_matrix.html": 3.6813,
    "deqp/data/gles3/shaders/conversions_scalar_to_scalar.html": 1.7284,
    "deqp/data/gles3/shaders/conversions_scalar_to_vector.html": 4.5316,
    "deqp/data/gles3/shaders/conversions_vector_combine.html": 15.7741,
    "deqp/data/gles3/shaders/conversions_vector_illegal.html": 0.8758,
    "deqp/data/gles3/shaders/conversions_vector_to_scalar.html": 3.6733,
    "deqp/data/gles3/shaders/conversions_vector_to_vector.html": 8.038,
    "deqp/data/gles3/shaders/declarations.html": 0.6435,
    "deqp/data/gles3/shaders/fragdata.html": 0.2464,
    "deqp/data/gles3/shaders/functions.html": 7.8363,
    "deqp/data/gles3/shaders/invalid_texture_functions.html": 1.6966,
    "deqp/data/gles3/shaders/keywords.html": 3.8456,
    "deqp/data/gles3/shaders/linkage.html": 3.8595,
    "deqp/data/gles3/shaders/negative.html": 0.3601,
    "deqp/data/gles3/shaders/preprocessor.html": 11.0478,
    "deqp/data/gles3/shaders/qualification_order.html": 1.0014,
    "deqp/data/gles3/shaders/scoping.html": 1.4885,
    "deqp/data/gles3/shaders/switch.html": 0.6613,
    "deqp/data/gles3/shaders/swizzles_bvec2.html": 2.1695,
    "deqp/data/gles3/shaders/swizzles_bvec3.html": 3.0553,
    "deqp/data/gles3/shaders/swizzles_bvec4.html": 4.7921,
    "deqp/data/gles3/shaders/swizzles_ivec2.html": 1.867,
    "deqp/data/gles3/shaders/swizzles_ivec3.html": 2.9628,
    "deqp/data/gles3/shaders/swizzles_ivec4.html": 4.369,
    "deqp/data/gles3/shaders/swizzles_vec2.html": 1.5961,
    "deqp/data/gles3/shaders/swizzles_vec3.html": 3.4387,
    "deqp/data/gles3/shaders/swizzles_vec4.html": 4.3589,
    "deqp/framework/opengl/simplereference/referencecontext.html": 0.9494,
    "deqp/functional/gles3/attriblocation.html": 4.2249,
    "deqp/functional/gles3/booleanstatequery.html": 0.1968,
    "deqp/functional/gles3/buffercopy.html": 3.5927,
    "deqp/functional/gles3/bufferobjectquery.html": 0.2769,
    "deqp/functional/gles3/clipping.html": 5.573,
    "deqp/functional/gles3/defaultvertexattribute.html": 9.9909,
    "deqp/functional/gles3/draw/draw_arrays.html": 12.1669,
    "deqp/functional/gles3/draw/draw_arrays_instanced.html": 15.8846,
    "deqp/functional/gles3/draw/draw_elements.html": 9.6663,
    "deqp/functional/gles3/draw/draw_elements_instanced.html": 12.9466,
    "deqp/functional/gles3/draw/draw_range_elements.html": 5.4694,
    "deqp/functional/gles3/draw/instancing.html": 0.6452,
    "deqp/functional/gles3/draw/random.html": 9.577,
    "deqp/functional/gles3/fbocolorbuffer/blend.html": 4.6209,
    "deqp/functional/gles3/fbocolorbuffer/clear.html": 1.5594,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_00.html": 5.9604,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_01.html": 5.3668,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_02.html": 5.2014,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_03.html": 5.2897,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_04.html": 5.506,
    "deqp/functional/gles3/fbocolorbuffer/tex2d_05.html": 4.7478,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_00.html": 6.0547,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_01.html": 6.4278,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_02.html": 6.6936,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_03.html": 6.1452,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_04.html": 6.6439,
    "deqp/functional/gles3/fbocolorbuffer/tex2darray_05.html": 5.779,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_00.html": 6.3379,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_01.html": 6.6282,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_02.html": 5.8272,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_03.html": 6.8427,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_04.html": 5.8574,
    "deqp/functional/gles3/fbocolorbuffer/tex3d_05.html": 5.4328,
    "deqp/functional/gles3/fbocolorbuffer/texcube_00.html": 7.4582,
    "deqp/functional/gles3/fbocolorbuffer/texcube_01.html": 7.2409,
    "deqp/functional/gles3/fbocolorbuffer/texcube_02.html": 6.4773,
    "deqp/functional/gles3/fbocolorbuffer/texcube_03.html": 5.7534,
    "deqp/functional/gles3/fbocolorbuffer/texcube_04.html": 7.3531,
    "deqp/functional/gles3/fbocolorbuffer/texcube_05.html": 5.4829,
    "deqp/functional/gles3/fbocompleteness.html": 3.5896,
    "deqp/functional/gles3/fbodepthbuffer.html": 4.1371,
    "deqp/functional/gles3/fboinvalidate/default.html": 10.2599,
    "deqp/functional/gles3/fboinvalidate/format_00.html": 4.5053,
    "deqp/functional/gles3/fboinvalidate/format_01.html": 4.677,
    "deqp/functional/gles3/fboinvalidate/format_02.html": 4.4506,
    "deqp/functional/gles3/fboinvalidate/sub.html": 6.4287,
    "deqp/functional/gles3/fboinvalidate/target.html": 10.9954,
    "deqp/functional/gles3/fboinvalidate/whole.html": 8.1869,
    "deqp/functional/gles3/fbomultisample.2_samples.html": 12.1427,
    "deqp/functional/gles3/fbomultisample.4_samples.html": 12.3057,
    "deqp/functional/gles3/fbomultisample.8_samples.html": 11.3014,
    "deqp/functional/gles3/fborender/recreate_color_00.html": 4.6445,
    "deqp/functional/gles3/fborender/recreate_color_01.html": 4.4229,
    "deqp/functional/gles3/fborender/recreate_color_02.html": 4.8495,
    "deqp/functional/gles3/fborender/recreate_color_03.html": 4.7503,
    "deqp/functional/gles3/fborender/recreate_color_04.html": 4.5978,
    "deqp/functional/gles3/fborender/recreate_color_05.html": 4.0125,
    "deqp/functional/gles3/fborender/recreate_color_06.html": 4.1919,
    "deqp/functional/gles3/fborender/recreate_depth_stencil.html": 5.2308,
    "deqp/functional/gles3/fborender/resize_00.html": 4.4506,
    "deqp/functional/gles3/fborender/resize_01.html": 4.7938,
    "deqp/functional/gles3/fborender/resize_02.html": 4.4422,
    "deqp/functional/gles3/fborender/resize_03.html": 7.8998,
    "deqp/functional/gles3/fborender/shared_colorbuffer_00.html": 6.3698,
    "deqp/functional/gles3/fborender/shared_colorbuffer_01.html": 6.0258,
    "deqp/functional/gles3/fborender/shared_colorbuffer_02.html": 7.8212,
    "deqp/functional/gles3/fborender/shared_colorbuffer_clear.html": 2.2244,
    "deqp/functional/gles3/fborender/shared_depth_stencil.html": 5.3936,
    "deqp/functional/gles3/fborender/stencil_clear.html": 2.1925,
    "deqp/functional/gles3/fbostatequery.html": 0.3206,
    "deqp/functional/gles3/fbostencilbuffer.html": 4.2392,
    "deqp/functional/gles3/floatstatequery.html": 0.2823,
    "deqp/functional/gles3/fragdepth.html": 2.146,
    "deqp/functional/gles3/fragmentoutput/array.fixed.html": 3.0793,
    "deqp/functional/gles3/fragmentoutput/array.float.html": 6.164,
    "deqp/functional/gles3/fragmentoutput/array.int.html": 5.4682,
    "deqp/functional/gles3/fragmentoutput/array.uint.html": 5.7335,
    "deqp/functional/gles3/fragmentoutput/basic.fixed.html": 2.2118,
    "deqp/functional/gles3/fragmentoutput/basic.float.html": 3.0618,
    "deqp/functional/gles3/fragmentoutput/basic.int.html": 2.8336,
    "deqp/functional/gles3/fragmentoutput/basic.uint.html": 3.0025,
    "deqp/functional/gles3/fragmentoutput/random_00.html": 3.1823,
    "deqp/functional/gles3/fragmentoutput/random_01.html": 3.1462,
    "deqp/functional/gles3/fragmentoutput/random_02.html": 3.3519,
    "deqp/functional/gles3/framebufferblit/conversion_00.html": 2.3368,
    "deqp/functional/gles3/framebufferblit/conversion_01.html": 2.8868,
    "deqp/functional/gles3/framebufferblit/conversion_02.html": 2.8631,
    "deqp/functional/gles3/framebufferblit/conversion_03.html": 2.8599,
    "deqp/functional/gles3/framebufferblit/conversion_04.html": 3.5553,
    "deqp/functional/gles3/framebufferblit/conversion_05.html": 2.9419,
    "deqp/functional/gles3/framebufferblit/conversion_06.html": 2.9103,
    "deqp/functional/gles3/framebufferblit/conversion_07.html": 3.6491,
    "deqp/functional/gles3/framebufferblit/conversion_08.html": 3.9316,
    "deqp/functional/gles3/framebufferblit/conversion_09.html": 2.5311,
    "deqp/functional/gles3/framebufferblit/conversion_10.html": 3.8375,
    "deqp/functional/gles3/framebufferblit/conversion_11.html": 3.6525,
    "deqp/functional/gles3/framebufferblit/conversion_12.html": 3.6759,
    "deqp/functional/gles3/framebufferblit/conversion_13.html": 3.7237,
    "deqp/functional/gles3/framebufferblit/conversion_14.html": 2.3228,
    "deqp/functional/gles3/framebufferblit/conversion_15.html": 3.1645,
    "deqp/functional/gles3/framebufferblit/conversion_16.html": 2.6891,
    "deqp/functional/gles3/framebufferblit/conversion_17.html": 2.7847,
    "deqp/functional/gles3/framebufferblit/conversion_18.html": 3.7796,
    "deqp/functional/gles3/framebufferblit/conversion_19.html": 2.4089,
    "deqp/functional/gles3/framebufferblit/conversion_20.html": 2.7402,
    "deqp/functional/gles3/framebufferblit/conversion_21.html": 2.6215,
    "deqp/functional/gles3/framebufferblit/conversion_22.html": 2.6497,
    "deqp/functional/gles3/framebufferblit/conversion_23.html": 2.4795,
    "deqp/functional/gles3/framebufferblit/conversion_24.html": 2.7173,
    "deqp/functional/gles3/framebufferblit/conversion_25.html": 4.4955,
    "deqp/functional/gles3/framebufferblit/conversion_26.html": 2.7441,
    "deqp/functional/gles3/framebufferblit/conversion_27.html": 2.6146,
    "deqp/functional/gles3/framebufferblit/conversion_28.html": 4.3706,
    "deqp/functional/gles3/framebufferblit/conversion_29.html": 3.878,
    "deqp/functional/gles3/framebufferblit/conversion_30.html": 3.6437,
    "deqp/functional/gles3/framebufferblit/conversion_31.html": 4.1181,
    "deqp/functional/gles3/framebufferblit/conversion_32.html": 4.1314,
    "deqp/functional/gles3/framebufferblit/conversion_33.html": 3.8739,
    "deqp/functional/gles3/framebufferblit/conversion_34.html": 4.1321,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_00.html": 4.4875,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_01.html": 5.0481,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_02.html": 3.3537,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_03.html": 4.6247,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_04.html": 10.85,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_05.html": 4.1635,
    "deqp/functional/gles3/framebufferblit/default_framebuffer_06.html": 4.4762,
    "deqp/functional/gles3/framebufferblit/depth_stencil.html": 6.9884,
    "deqp/functional/gles3/framebufferblit/rect_00.html": 3.571,
    "deqp/functional/gles3/framebufferblit/rect_01.html": 3.5225,
    "deqp/functional/gles3/framebufferblit/rect_02.html": 2.2005,
    "deqp/functional/gles3/framebufferblit/rect_03.html": 1.1205,
    "deqp/functional/gles3/framebufferblit/rect_04.html": 1.2706,
    "deqp/functional/gles3/framebufferblit/rect_05.html": 0.2046,
    "deqp/functional/gles3/framebufferblit/rect_06.html": 0.1866,
    "deqp/functional/gles3/indexedstatequery.html": 0.3843,
    "deqp/functional/gles3/instancedrendering.html": 6.0739,
    "deqp/functional/gles3/integerstatequery.html": 1.0853,
    "deqp/functional/gles3/internalformatquery.html": 0.4771,
    "deqp/functional/gles3/lifetime.html": 0.6929,
    "deqp/functional/gles3/multisample/default_fbo.html": 0.4584,
    "deqp/functional/gles3/multisample/fbo_4_samples.html": 5.8149,
    "deqp/functional/gles3/multisample/fbo_8_samples.html": 9.253,
    "deqp/functional/gles3/multisample/fbo_max_samples.html": 9.4154,
    "deqp/functional/gles3/negativebufferapi.html": 0.4276,
    "deqp/functional/gles3/negativefragmentapi.html": 0.3925,
    "deqp/functional/gles3/negativeshaderapi.html": 0.669,
    "deqp/functional/gles3/negativestateapi.html": 0.348,
    "deqp/functional/gles3/negativetextureapi.html": 0.7458,
    "deqp/functional/gles3/negativevertexarrayapi.html": 0.4669,
    "deqp/functional/gles3/occlusionquery_conservative.html": 13.2548,
    "deqp/functional/gles3/occlusionquery_strict.html": 12.9317,
    "deqp/functional/gles3/pixelbufferobject.html": 2.2945,
    "deqp/functional/gles3/primitiverestart/00.html": 2.7916,
    "deqp/functional/gles3/primitiverestart/01.html": 2.691,
    "deqp/functional/gles3/primitiverestart/02.html": 2.7842,
    "deqp/functional/gles3/primitiverestart/03.html": 2.8249,
    "deqp/functional/gles3/primitiverestart/04.html": 2.6652,
    "deqp/functional/gles3/primitiverestart/05.html": 2.6034,
    "deqp/functional/gles3/primitiverestart/06.html": 2.9037,
    "deqp/functional/gles3/primitiverestart/07.html": 2.8609,
    "deqp/functional/gles3/rasterizerdiscard.html": 2.87,
    "deqp/functional/gles3/rbostatequery.html": 0.3572,
    "deqp/functional/gles3/readpixel.html": 1.1414,
    "deqp/functional/gles3/samplerobject.html": 2.5151,
    "deqp/functional/gles3/samplerstatequery.html": 0.3772,
    "deqp/functional/gles3/shaderapi.html": 0.456,
    "deqp/functional/gles3/shaderbuiltinvar.html": 1.9904,
    "deqp/functional/gles3/shadercommonfunction.html": 9.9833,
    "deqp/functional/gles3/shaderderivate_dfdx.html": 6.4413,
    "deqp/functional/gles3/shaderderivate_dfdy.html": 5.9226,
    "deqp/functional/gles3/shaderderivate_fwidth.html": 6.1646,
    "deqp/functional/gles3/shaderindexing/mat_00.html": 9.4267,
    "deqp/functional/gles3/shaderindexing/mat_01.html": 8.8639,
    "deqp/functional/gles3/shaderindexing/mat_02.html": 9.988,
    "deqp/functional/gles3/shaderindexing/tmp.html": 11.6827,
    "deqp/functional/gles3/shaderindexing/uniform.html": 3.4345,
    "deqp/functional/gles3/shaderindexing/varying.html": 6.4628,
    "deqp/functional/gles3/shaderindexing/vec2.html": 6.5329,
    "deqp/functional/gles3/shaderindexing/vec3.html": 6.1604,
    "deqp/functional/gles3/shaderindexing/vec4.html": 6.3787,
    "deqp/functional/gles3/shaderloop_do_while.html": 15.6148,
    "deqp/functional/gles3/shaderloop_for.html": 16.407,
    "deqp/functional/gles3/shaderloop_while.html": 16.6357,
    "deqp/functional/gles3/shadermatrix/add_assign.html": 8.1851,
    "deqp/functional/gles3/shadermatrix/add_const.html": 14.7601,
    "deqp/functional/gles3/shadermatrix/add_dynamic.html": 15.0139,
    "deqp/functional/gles3/shadermatrix/add_uniform.html": 14.2592,
    "deqp/functional/gles3/shadermatrix/determinant.html": 2.8414,
    "deqp/functional/gles3/shadermatrix/div_assign.html": 8.0521,
    "deqp/functional/gles3/shadermatrix/div_const.html": 14.02,
    "deqp/functional/gles3/shadermatrix/div_dynamic.html": 21.4692,
    "deqp/functional/gles3/shadermatrix/div_uniform.html": 14.9769,
    "deqp/functional/gles3/shadermatrix/inverse.html": 6.4496,
    "deqp/functional/gles3/shadermatrix/matrixcompmult.html": 7.972,
    "deqp/functional/gles3/shadermatrix/mul_assign.html": 3.1476,
    "deqp/functional/gles3/shadermatrix/mul_const_highp.html": 10.0846,
    "deqp/functional/gles3/shadermatrix/mul_const_lowp.html": 9.7077,
    "deqp/functional/gles3/shadermatrix/mul_const_mediump.html": 13.6784,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_highp.html": 14.5552,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_lowp.html": 14.8964,
    "deqp/functional/gles3/shadermatrix/mul_dynamic_mediump.html": 14.4618,
    "deqp/functional/gles3/shadermatrix/mul_uniform_highp.html": 13.7335,
    "deqp/functional/gles3/shadermatrix/mul_uniform_lowp.html": 14.5342,
    "deqp/functional/gles3/shadermatrix/mul_uniform_mediump.html": 14.0048,
    "deqp/functional/gles3/shadermatrix/negation.html": 7.5525,
    "deqp/functional/gles3/shadermatrix/outerproduct.html": 7.2575,
    "deqp/functional/gles3/shadermatrix/post_decrement.html": 7.7078,
    "deqp/functional/gles3/shadermatrix/post_increment.html": 7.1302,
    "deqp/functional/gles3/shadermatrix/pre_decrement.html": 8.9825,
    "deqp/functional/gles3/shadermatrix/pre_increment.html": 8.7257,
    "deqp/functional/gles3/shadermatrix/sub_assign.html": 8.4849,
    "deqp/functional/gles3/shadermatrix/sub_const.html": 9.9306,
    "deqp/functional/gles3/shadermatrix/sub_dynamic.html": 15.4697,
    "deqp/functional/gles3/shadermatrix/sub_uniform.html": 14.4168,
    "deqp/functional/gles3/shadermatrix/transpose.html": 7.5973,
    "deqp/functional/gles3/shadermatrix/unary_addition.html": 5.9823,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_00.html": 8.0882,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_01.html": 5.5273,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_02.html": 5.7128,
    "deqp/functional/gles3/shaderoperator/angle_and_trigonometry_03.html": 3.9694,
    "deqp/functional/gles3/shaderoperator/binary_operator_00.html": 22.9923,
    "deqp/functional/gles3/shaderoperator/binary_operator_01.html": 22.9113,
    "deqp/functional/gles3/shaderoperator/binary_operator_02.html": 13.2192,
    "deqp/functional/gles3/shaderoperator/binary_operator_03.html": 13.4758,
    "deqp/functional/gles3/shaderoperator/binary_operator_04.html": 18.3974,
    "deqp/functional/gles3/shaderoperator/binary_operator_05.html": 16.0424,
    "deqp/functional/gles3/shaderoperator/binary_operator_06.html": 16.1543,
    "deqp/functional/gles3/shaderoperator/binary_operator_07.html": 9.617,
    "deqp/functional/gles3/shaderoperator/binary_operator_08.html": 9.8622,
    "deqp/functional/gles3/shaderoperator/binary_operator_09.html": 18.8273,
    "deqp/functional/gles3/shaderoperator/binary_operator_10.html": 16.4344,
    "deqp/functional/gles3/shaderoperator/binary_operator_11.html": 16.2793,
    "deqp/functional/gles3/shaderoperator/binary_operator_12.html": 9.535,
    "deqp/functional/gles3/shaderoperator/binary_operator_13.html": 9.5655,
    "deqp/functional/gles3/shaderoperator/binary_operator_14.html": 18.5831,
    "deqp/functional/gles3/shaderoperator/binary_operator_15.html": 33.7374,
    "deqp/functional/gles3/shaderoperator/bool_compare.html": 3.1349,
    "deqp/functional/gles3/shaderoperator/common_functions_00.html": 10.0294,
    "deqp/functional/gles3/shaderoperator/common_functions_01.html": 13.925,
    "deqp/functional/gles3/shaderoperator/common_functions_02.html": 9.7708,
    "deqp/functional/gles3/shaderoperator/common_functions_03.html": 15.4994,
    "deqp/functional/gles3/shaderoperator/common_functions_04.html": 9.1619,
    "deqp/functional/gles3/shaderoperator/common_functions_05.html": 9.6924,
    "deqp/functional/gles3/shaderoperator/common_functions_06.html": 7.2314,
    "deqp/functional/gles3/shaderoperator/exponential.html": 8.8509,
    "deqp/functional/gles3/shaderoperator/float_compare.html": 21.4511,
    "deqp/functional/gles3/shaderoperator/geometric.html": 9.0272,
    "deqp/functional/gles3/shaderoperator/int_compare.html": 11.1275,
    "deqp/functional/gles3/shaderoperator/selection.html": 7.392,
    "deqp/functional/gles3/shaderoperator/sequence.html": 6.3033,
    "deqp/functional/gles3/shaderoperator/unary_operator_00.html": 12.6352,
    "deqp/functional/gles3/shaderoperator/unary_operator_01.html": 23.0652,
    "deqp/functional/gles3/shaderoperator/unary_operator_02.html": 21.1879,
    "deqp/functional/gles3/shaderpackingfunction.html": 0.7374,
    "deqp/functional/gles3/shaderprecision_float.html": 10.1198,
    "deqp/functional/gles3/shaderprecision_int.html": 8.5366,
    "deqp/functional/gles3/shaderprecision_uint.html": 9.0203,
    "deqp/functional/gles3/shaderstatequery.html": 0.6489,
    "deqp/functional/gles3/shaderstruct.html": 8.606,
    "deqp/functional/gles3/shaderswitch.html": 9.7505,
    "deqp/functional/gles3/shadertexturefunction/texelfetch.html": 3.2835,
    "deqp/functional/gles3/shadertexturefunction/texelfetchoffset.html": 4.7039,
    "deqp/functional/gles3/shadertexturefunction/texture.html": 9.7812,
    "deqp/functional/gles3/shadertexturefunction/texturegrad.html": 6.5845,
    "deqp/functional/gles3/shadertexturefunction/texturegradoffset.html": 3.6434,
    "deqp/functional/gles3/shadertexturefunction/texturelod.html": 4.9715,
    "deqp/functional/gles3/shadertexturefunction/texturelodoffset.html": 3.7525,
    "deqp/functional/gles3/shadertexturefunction/textureoffset.html": 5.699,
    "deqp/functional/gles3/shadertexturefunction/textureproj.html": 6.924,
    "deqp/functional/gles3/shadertexturefunction/textureprojgrad.html": 3.636,
    "deqp/functional/gles3/shadertexturefunction/textureprojgradoffset.html": 3.437,
    "deqp/functional/gles3/shadertexturefunction/textureprojlod.html": 3.187,
    "deqp/functional/gles3/shadertexturefunction/textureprojlodoffset.html": 3.9458,
    "deqp/functional/gles3/shadertexturefunction/textureprojoffset.html": 4.6106,
    "deqp/functional/gles3/shadertexturefunction/texturesize.html": 16.3792,
    "deqp/functional/gles3/stringquery.html": 0.3384,
    "deqp/functional/gles3/sync.html": 3.8944,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_00.html": 3.6429,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_01.html": 3.4499,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_02.html": 3.3385,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_03.html": 3.6558,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_04.html": 4.0749,
    "deqp/functional/gles3/texturefiltering/2d_array_combinations_05.html": 3.95,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_00.html": 1.8666,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_01.html": 1.6198,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_02.html": 1.5275,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_03.html": 1.4605,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_04.html": 1.4736,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_05.html": 1.1243,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_06.html": 1.4129,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_07.html": 1.3695,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_08.html": 1.2209,
    "deqp/functional/gles3/texturefiltering/2d_array_formats_09.html": 1.3639,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_00.html": 1.1823,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_01.html": 1.1452,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_02.html": 1.6667,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_03.html": 1.3308,
    "deqp/functional/gles3/texturefiltering/2d_array_sizes_04.html": 4.1824,
    "deqp/functional/gles3/texturefiltering/2d_combinations_00.html": 2.6304,
    "deqp/functional/gles3/texturefiltering/2d_combinations_01.html": 2.6009,
    "deqp/functional/gles3/texturefiltering/2d_combinations_02.html": 2.286,
    "deqp/functional/gles3/texturefiltering/2d_combinations_03.html": 2.3661,
    "deqp/functional/gles3/texturefiltering/2d_combinations_04.html": 2.1634,
    "deqp/functional/gles3/texturefiltering/2d_combinations_05.html": 2.4366,
    "deqp/functional/gles3/texturefiltering/2d_formats_00.html": 1.5176,
    "deqp/functional/gles3/texturefiltering/2d_formats_01.html": 1.205,
    "deqp/functional/gles3/texturefiltering/2d_formats_02.html": 1.1579,
    "deqp/functional/gles3/texturefiltering/2d_formats_03.html": 1.0411,
    "deqp/functional/gles3/texturefiltering/2d_formats_04.html": 1.1993,
    "deqp/functional/gles3/texturefiltering/2d_formats_05.html": 1.1291,
    "deqp/functional/gles3/texturefiltering/2d_formats_06.html": 0.9116,
    "deqp/functional/gles3/texturefiltering/2d_formats_07.html": 1.1672,
    "deqp/functional/gles3/texturefiltering/2d_formats_08.html": 0.9692,
    "deqp/functional/gles3/texturefiltering/2d_formats_09.html": 1.0963,
    "deqp/functional/gles3/texturefiltering/2d_sizes_00.html": 1.1783,
    "deqp/functional/gles3/texturefiltering/2d_sizes_01.html": 1.2172,
    "deqp/functional/gles3/texturefiltering/2d_sizes_02.html": 1.1487,
    "deqp/functional/gles3/texturefiltering/2d_sizes_03.html": 1.1692,
    "deqp/functional/gles3/texturefiltering/2d_sizes_04.html": 0.919,
    "deqp/functional/gles3/texturefiltering/2d_sizes_05.html": 1.0989,
    "deqp/functional/gles3/texturefiltering/3d_combinations_00.html": 1.9993,
    "deqp/functional/gles3/texturefiltering/3d_combinations_01.html": 1.8918,
    "deqp/functional/gles3/texturefiltering/3d_combinations_02.html": 2.1209,
    "deqp/functional/gles3/texturefiltering/3d_combinations_03.html": 2.104,
    "deqp/functional/gles3/texturefiltering/3d_combinations_04.html": 1.9178,
    "deqp/functional/gles3/texturefiltering/3d_combinations_05.html": 2.0579,
    "deqp/functional/gles3/texturefiltering/3d_combinations_06.html": 2.1538,
    "deqp/functional/gles3/texturefiltering/3d_combinations_07.html": 2.2302,
    "deqp/functional/gles3/texturefiltering/3d_combinations_08.html": 2.0427,
    "deqp/functional/gles3/texturefiltering/3d_combinations_09.html": 2.0637,
    "deqp/functional/gles3/texturefiltering/3d_combinations_10.html": 2.1359,
    "deqp/functional/gles3/texturefiltering/3d_combinations_11.html": 2.2048,
    "deqp/functional/gles3/texturefiltering/3d_combinations_12.html": 1.8706,
    "deqp/functional/gles3/texturefiltering/3d_combinations_13.html": 2.0526,
    "deqp/functional/gles3/texturefiltering/3d_combinations_14.html": 2.25,
    "deqp/functional/gles3/texturefiltering/3d_combinations_15.html": 1.6767,
    "deqp/functional/gles3/texturefiltering/3d_combinations_16.html": 1.811,
    "deqp/functional/gles3/texturefiltering/3d_combinations_17.html": 1.9744,
    "deqp/functional/gles3/texturefiltering/3d_combinations_18.html": 2.1189,
    "deqp/functional/gles3/texturefiltering/3d_combinations_19.html": 1.9219,
    "deqp/functional/gles3/texturefiltering/3d_combinations_20.html": 1.9375,
    "deqp/functional/gles3/texturefiltering/3d_combinations_21.html": 1.8746,
    "deqp/functional/gles3/texturefiltering/3d_combinations_22.html": 2.0149,
    "deqp/functional/gles3/texturefiltering/3d_combinations_23.html": 1.99,
    "deqp/functional/gles3/texturefiltering/3d_combinations_24.html": 8.1548,
    "deqp/functional/gles3/texturefiltering/3d_combinations_25.html": 9.5925,
    "deqp/functional/gles3/texturefiltering/3d_combinations_26.html": 7.9056,
    "deqp/functional/gles3/texturefiltering/3d_combinations_27.html": 9.9993,
    "deqp/functional/gles3/texturefiltering/3d_combinations_28.html": 7.5424,
    "deqp/functional/gles3/texturefiltering/3d_combinations_29.html": 8.5809,
    "deqp/functional/gles3/texturefiltering/3d_combinations_30.html": 9.9645,
    "deqp/functional/gles3/texturefiltering/3d_combinations_31.html": 8.0889,
    "deqp/functional/gles3/texturefiltering/3d_combinations_32.html": 9.7714,
    "deqp/functional/gles3/texturefiltering/3d_combinations_33.html": 10.3178,
    "deqp/functional/gles3/texturefiltering/3d_combinations_34.html": 7.6547,
    "deqp/functional/gles3/texturefiltering/3d_combinations_35.html": 9.4411,
    "deqp/functional/gles3/texturefiltering/3d_formats_00.html": 4.1227,
    "deqp/functional/gles3/texturefiltering/3d_formats_01.html": 3.5849,
    "deqp/functional/gles3/texturefiltering/3d_formats_02.html": 3.2095,
    "deqp/functional/gles3/texturefiltering/3d_formats_03.html": 3.0322,
    "deqp/functional/gles3/texturefiltering/3d_formats_04.html": 3.2234,
    "deqp/functional/gles3/texturefiltering/3d_formats_05.html": 2.9244,
    "deqp/functional/gles3/texturefiltering/3d_formats_06.html": 3.0061,
    "deqp/functional/gles3/texturefiltering/3d_formats_07.html": 2.8465,
    "deqp/functional/gles3/texturefiltering/3d_formats_08.html": 3.0798,
    "deqp/functional/gles3/texturefiltering/3d_formats_09.html": 2.8637,
    "deqp/functional/gles3/texturefiltering/3d_sizes_00.html": 3.6995,
    "deqp/functional/gles3/texturefiltering/3d_sizes_01.html": 2.8868,
    "deqp/functional/gles3/texturefiltering/3d_sizes_02.html": 3.1027,
    "deqp/functional/gles3/texturefiltering/3d_sizes_03.html": 2.833,
    "deqp/functional/gles3/texturefiltering/3d_sizes_04.html": 3.1456,
    "deqp/functional/gles3/texturefiltering/cube_combinations_00.html": 6.1939,
    "deqp/functional/gles3/texturefiltering/cube_combinations_01.html": 6.8844,
    "deqp/functional/gles3/texturefiltering/cube_combinations_02.html": 11.3522,
    "deqp/functional/gles3/texturefiltering/cube_combinations_03.html": 9.7003,
    "deqp/functional/gles3/texturefiltering/cube_combinations_04.html": 10.4382,
    "deqp/functional/gles3/texturefiltering/cube_combinations_05.html": 14.4421,
    "deqp/functional/gles3/texturefiltering/cube_formats_00.html": 5.0824,
    "deqp/functional/gles3/texturefiltering/cube_formats_01.html": 4.4996,
    "deqp/functional/gles3/texturefiltering/cube_formats_02.html": 4.4504,
    "deqp/functional/gles3/texturefiltering/cube_formats_03.html": 3.9395,
    "deqp/functional/gles3/texturefiltering/cube_formats_04.html": 3.9601,
    "deqp/functional/gles3/texturefiltering/cube_formats_05.html": 3.9324,
    "deqp/functional/gles3/texturefiltering/cube_formats_06.html": 3.7632,
    "deqp/functional/gles3/texturefiltering/cube_formats_07.html": 3.7536,
    "deqp/functional/gles3/texturefiltering/cube_formats_08.html": 4.0305,
    "deqp/functional/gles3/texturefiltering/cube_formats_09.html": 4.049,
    "deqp/functional/gles3/texturefiltering/cube_no_edges_visible.html": 1.7191,
    "deqp/functional/gles3/texturefiltering/cube_sizes_00.html": 2.7124,
    "deqp/functional/gles3/texturefiltering/cube_sizes_01.html": 3.9347,
    "deqp/functional/gles3/texturefiltering/cube_sizes_02.html": 4.6351,
    "deqp/functional/gles3/texturefiltering/cube_sizes_03.html": 2.6131,
    "deqp/functional/gles3/texturefiltering/cube_sizes_04.html": 4.1456,
    "deqp/functional/gles3/textureformat/compressed_2d.html": 0.1457,
    "deqp/functional/gles3/textureformat/compressed_cube.html": 0.1465,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_00.html": 3.0451,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_01.html": 3.0687,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_02.html": 2.7944,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_npot_03.html": 2.4317,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_00.html": 3.5609,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_01.html": 3.1049,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_02.html": 3.2228,
    "deqp/functional/gles3/textureformat/sized_color_2d_array_pot_03.html": 3.5962,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_00.html": 0.7886,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_01.html": 0.8047,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_02.html": 0.6992,
    "deqp/functional/gles3/textureformat/sized_color_2d_npot_03.html": 0.772,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_00.html": 0.9238,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_01.html": 0.8093,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_02.html": 0.9116,
    "deqp/functional/gles3/textureformat/sized_color_2d_pot_03.html": 0.9095,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_00.html": 2.3955,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_01.html": 2.351,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_02.html": 2.3591,
    "deqp/functional/gles3/textureformat/sized_color_3d_npot_03.html": 2.5863,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_00.html": 5.5276,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_01.html": 5.6834,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_02.html": 5.4643,
    "deqp/functional/gles3/textureformat/sized_color_3d_pot_03.html": 4.9476,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_00.html": 2.8061,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_01.html": 2.6121,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_02.html": 2.2322,
    "deqp/functional/gles3/textureformat/sized_color_cube_npot_03.html": 2.7677,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_00.html": 2.6882,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_01.html": 2.4336,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_02.html": 2.6467,
    "deqp/functional/gles3/textureformat/sized_color_cube_pot_03.html": 2.7887,
    "deqp/functional/gles3/textureformat/sized_depth_stencil.html": 3.9744,
    "deqp/functional/gles3/textureformat/unsized_2d.html": 3.478,
    "deqp/functional/gles3/textureformat/unsized_2d_array.html": 4.2111,
    "deqp/functional/gles3/textureformat/unsized_3d.html": 5.0785,
    "deqp/functional/gles3/textureshadow/2d_array_linear_always.html": 1.1399,
    "deqp/functional/gles3/textureshadow/2d_array_linear_equal.html": 1.6677,
    "deqp/functional/gles3/textureshadow/2d_array_linear_greater.html": 1.4362,
    "deqp/functional/gles3/textureshadow/2d_array_linear_greater_or_equal.html": 1.5425,
    "deqp/functional/gles3/textureshadow/2d_array_linear_less.html": 1.6442,
    "deqp/functional/gles3/textureshadow/2d_array_linear_less_or_equal.html": 1.4828,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_always.html": 1.1078,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_equal.html": 1.9855,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_greater.html": 2.226,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_greater_or_equal.html": 2.3322,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_less.html": 2.306,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_less_or_equal.html": 2.1752,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_never.html": 1.0175,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_linear_not_equal.html": 1.7609,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_always.html": 0.7104,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_equal.html": 1.4136,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_greater.html": 1.7474,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_greater_or_equal.html": 1.4171,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_less.html": 1.4019,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_less_or_equal.html": 1.7557,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_never.html": 0.7452,
    "deqp/functional/gles3/textureshadow/2d_array_linear_mipmap_nearest_not_equal.html": 1.5256,
    "deqp/functional/gles3/textureshadow/2d_array_linear_never.html": 0.7632,
    "deqp/functional/gles3/textureshadow/2d_array_linear_not_equal.html": 1.5372,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_always.html": 0.8629,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_equal.html": 0.9884,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_greater.html": 1.0409,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_greater_or_equal.html": 0.8508,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_less.html": 0.8258,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_less_or_equal.html": 0.7959,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_always.html": 0.783,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_equal.html": 1.0669,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_greater.html": 1.0293,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_greater_or_equal.html": 1.2141,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_less.html": 0.9624,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_less_or_equal.html": 1.0252,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_never.html": 0.9749,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_linear_not_equal.html": 1.4489,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_always.html": 0.7264,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_equal.html": 1.0314,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater.html": 1.0041,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_greater_or_equal.html": 1.1476,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less.html": 0.9332,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_less_or_equal.html": 1.1639,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_never.html": 0.9469,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_mipmap_nearest_not_equal.html": 1.0493,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_never.html": 0.9935,
    "deqp/functional/gles3/textureshadow/2d_array_nearest_not_equal.html": 0.7629,
    "deqp/functional/gles3/textureshadow/2d_linear_always.html": 0.7305,
    "deqp/functional/gles3/textureshadow/2d_linear_equal.html": 1.2348,
    "deqp/functional/gles3/textureshadow/2d_linear_greater.html": 1.1299,
    "deqp/functional/gles3/textureshadow/2d_linear_greater_or_equal.html": 1.1313,
    "deqp/functional/gles3/textureshadow/2d_linear_less.html": 1.3782,
    "deqp/functional/gles3/textureshadow/2d_linear_less_or_equal.html": 1.1638,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_always.html": 0.7325,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_equal.html": 1.9969,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_greater.html": 1.9076,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_greater_or_equal.html": 2.4059,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_less.html": 2.1887,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_less_or_equal.html": 1.7659,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_never.html": 0.754,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_linear_not_equal.html": 2.2006,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_always.html": 0.7169,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_equal.html": 1.1804,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater.html": 1.4928,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_greater_or_equal.html": 1.4262,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less.html": 1.4287,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_less_or_equal.html": 1.5316,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_never.html": 0.72,
    "deqp/functional/gles3/textureshadow/2d_linear_mipmap_nearest_not_equal.html": 1.1644,
    "deqp/functional/gles3/textureshadow/2d_linear_never.html": 0.7193,
    "deqp/functional/gles3/textureshadow/2d_linear_not_equal.html": 1.2651,
    "deqp/functional/gles3/textureshadow/2d_nearest_always.html": 0.8627,
    "deqp/functional/gles3/textureshadow/2d_nearest_equal.html": 0.8648,
    "deqp/functional/gles3/textureshadow/2d_nearest_greater.html": 0.8669,
    "deqp/functional/gles3/textureshadow/2d_nearest_greater_or_equal.html": 0.7292,
    "deqp/functional/gles3/textureshadow/2d_nearest_less.html": 0.9487,
    "deqp/functional/gles3/textureshadow/2d_nearest_less_or_equal.html": 0.9949,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_always.html": 0.7619,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_equal.html": 1.4802,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_greater.html": 1.0107,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_greater_or_equal.html": 1.3707,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_less.html": 1.6131,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_less_or_equal.html": 0.9777,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_never.html": 0.799,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_linear_not_equal.html": 1.732,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_always.html": 0.7141,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_equal.html": 1.1128,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater.html": 1.0285,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_greater_or_equal.html": 0.949,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less.html": 1.1988,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_less_or_equal.html": 1.0222,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_never.html": 0.7152,
    "deqp/functional/gles3/textureshadow/2d_nearest_mipmap_nearest_not_equal.html": 0.9801,
    "deqp/functional/gles3/textureshadow/2d_nearest_never.html": 0.6994,
    "deqp/functional/gles3/textureshadow/2d_nearest_not_equal.html": 0.6629,
    "deqp/functional/gles3/textureshadow/cube_linear_always.html": 1.9884,
    "deqp/functional/gles3/textureshadow/cube_linear_equal.html": 2.971,
    "deqp/functional/gles3/textureshadow/cube_linear_greater.html": 3.1768,
    "deqp/functional/gles3/textureshadow/cube_linear_greater_or_equal.html": 3.0369,
    "deqp/functional/gles3/textureshadow/cube_linear_less.html": 3.1844,
    "deqp/functional/gles3/textureshadow/cube_linear_less_or_equal.html": 2.8967,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_always.html": 2.0725,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_equal.html": 4.3503,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_greater.html": 4.2604,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_greater_or_equal.html": 4.2185,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_less.html": 4.7528,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_less_or_equal.html": 4.4393,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_never.html": 2.1846,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_linear_not_equal.html": 4.3314,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_always.html": 2.0543,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_equal.html": 3.2371,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_greater.html": 3.1912,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_greater_or_equal.html": 3.2249,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_less.html": 3.2628,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_less_or_equal.html": 3.0286,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_never.html": 2.4137,
    "deqp/functional/gles3/textureshadow/cube_linear_mipmap_nearest_not_equal.html": 3.3047,
    "deqp/functional/gles3/textureshadow/cube_linear_never.html": 2.2497,
    "deqp/functional/gles3/textureshadow/cube_linear_not_equal.html": 3.0713,
    "deqp/functional/gles3/textureshadow/cube_nearest_always.html": 2.1978,
    "deqp/functional/gles3/textureshadow/cube_nearest_equal.html": 1.9918,
    "deqp/functional/gles3/textureshadow/cube_nearest_greater.html": 2.2276,
    "deqp/functional/gles3/textureshadow/cube_nearest_greater_or_equal.html": 2.1706,
    "deqp/functional/gles3/textureshadow/cube_nearest_less.html": 2.1326,
    "deqp/functional/gles3/textureshadow/cube_nearest_less_or_equal.html": 2.1613,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_always.html": 2.0682,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_equal.html": 4.0491,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_greater.html": 3.5493,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_greater_or_equal.html": 3.9815,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_less.html": 3.9985,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_less_or_equal.html": 3.6308,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_never.html": 2.1314,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_linear_not_equal.html": 3.7534,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_always.html": 2.0733,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_equal.html": 2.7525,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_greater.html": 2.6664,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_greater_or_equal.html": 2.7359,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_less.html": 3.0665,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_less_or_equal.html": 2.6443,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_never.html": 2.0185,
    "deqp/functional/gles3/textureshadow/cube_nearest_mipmap_nearest_not_equal.html": 2.9161,
    "deqp/functional/gles3/textureshadow/cube_nearest_never.html": 2.0044,
    "deqp/functional/gles3/textureshadow/cube_nearest_not_equal.html": 1.9589,
    "deqp/functional/gles3/texturespecification/basic_copyteximage2d.html": 7.3999,
    "deqp/functional/gles3/texturespecification/basic_copytexsubimage2d.html": 7.3767,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_2d_00.html": 3.3052,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_2d_01.html": 3.3858,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_00.html": 3.9729,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_01.html": 3.7897,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_02.html": 3.7735,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_03.html": 3.7239,
    "deqp/functional/gles3/texturespecification/basic_teximage2d_cube_04.html": 3.7166,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_00.html": 3.7771,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_01.html": 3.4388,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_2d_array_02.html": 3.1542,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_00.html": 2.7216,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_01.html": 2.332,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_02.html": 2.6676,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_03.html": 2.548,
    "deqp/functional/gles3/texturespecification/basic_teximage3d_3d_04.html": 2.4017,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_00.html": 3.0128,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_01.html": 2.3338,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_2d_02.html": 2.6086,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_00.html": 3.8663,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_01.html": 3.8834,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_02.html": 3.9864,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_03.html": 3.6374,
    "deqp/functional/gles3/texturespecification/basic_texsubimage2d_cube_04.html": 3.0938,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_00.html": 2.248,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_01.html": 2.3413,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_02.html": 2.077,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_03.html": 2.3464,
    "deqp/functional/gles3/texturespecification/basic_texsubimage3d_04.html": 2.199,
    "deqp/functional/gles3/texturespecification/random_teximage2d_2d.html": 2.6748,
    "deqp/functional/gles3/texturespecification/random_teximage2d_cube.html": 6.2719,
    "deqp/functional/gles3/texturespecification/teximage2d_align.html": 5.2778,
    "deqp/functional/gles3/texturespecification/teximage2d_depth.html": 1.0588,
    "deqp/functional/gles3/texturespecification/teximage2d_depth_pbo.html": 0.9067,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_2d_00.html": 1.7242,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_2d_01.html": 1.7253,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_00.html": 3.0734,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_01.html": 2.9475,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_02.html": 2.9939,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_03.html": 3.022,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_cube_04.html": 2.3139,
    "deqp/functional/gles3/texturespecification/teximage2d_pbo_params.html": 1.0732,
    "deqp/functional/gles3/texturespecification/teximage2d_unpack_params.html": 0.9992,
    "deqp/functional/gles3/texturespecification/teximage3d_depth.html": 1.4527,
    "deqp/functional/gles3/texturespecification/teximage3d_depth_pbo.html": 1.1426,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_00.html": 1.9122,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_2d_array_01.html": 1.9262,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_00.html": 1.6867,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_3d_01.html": 1.7025,
    "deqp/functional/gles3/texturespecification/teximage3d_pbo_params.html": 1.3455,
    "deqp/functional/gles3/texturespecification/teximage3d_unpack_params.html": 1.3329,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_00.html": 3.1654,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_01.html": 2.9874,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_2d_02.html": 2.8367,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_00.html": 2.991,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_01.html": 3.3499,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_02.html": 3.0859,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_03.html": 2.8724,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_cube_04.html": 3.3983,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_depth_stencil.html": 2.2961,
    "deqp/functional/gles3/texturespecification/texstorage2d_format_size.html": 2.3982,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_00.html": 2.3273,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_01.html": 2.0619,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_2d_array_02.html": 2.1993,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_00.html": 3.2245,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_01.html": 2.8503,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_02.html": 3.3265,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_3d_03.html": 3.2092,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_depth_stencil.html": 0.7357,
    "deqp/functional/gles3/texturespecification/texstorage3d_format_size.html": 3.1474,
    "deqp/functional/gles3/texturespecification/texsubimage2d_align.html": 6.5653,
    "deqp/functional/gles3/texturespecification/texsubimage2d_depth.html": 0.7334,
    "deqp/functional/gles3/texturespecification/texsubimage2d_empty_tex.html": 1.9611,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_2d_00.html": 1.909,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_2d_01.html": 1.6431,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_00.html": 3.0256,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_01.html": 3.0111,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_02.html": 2.9972,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_03.html": 2.7926,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_cube_04.html": 2.6129,
    "deqp/functional/gles3/texturespecification/texsubimage2d_pbo_params.html": 1.7163,
    "deqp/functional/gles3/texturespecification/texsubimage2d_unpack_params.html": 1.2484,
    "deqp/functional/gles3/texturespecification/texsubimage3d_depth.html": 1.3777,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_2d_array_00.html": 2.396,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_2d_array_01.html": 2.5237,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_00.html": 2.7016,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_3d_01.html": 2.8261,
    "deqp/functional/gles3/texturespecification/texsubimage3d_pbo_params.html": 1.3614,
    "deqp/functional/gles3/texturespecification/texsubimage3d_unpack_params.html": 1.5639,
    "deqp/functional/gles3/texturestatequery.html": 0.9553,
    "deqp/functional/gles3/texturewrap/eac_r11_npot.html": 0.1696,
    "deqp/functional/gles3/texturewrap/eac_r11_pot.html": 0.1101,
    "deqp/functional/gles3/texturewrap/eac_rg11_npot.html": 0.1413,
    "deqp/functional/gles3/texturewrap/eac_rg11_pot.html": 0.1478,
    "deqp/functional/gles3/texturewrap/eac_signed_r11_npot.html": 0.1372,
    "deqp/functional/gles3/texturewrap/eac_signed_r11_pot.html": 0.1435,
    "deqp/functional/gles3/texturewrap/eac_signed_rg11_npot.html": 0.1309,
    "deqp/functional/gles3/texturewrap/eac_signed_rg11_pot.html": 0.1418,
    "deqp/functional/gles3/texturewrap/etc2_eac_rgba8_npot.html": 0.1458,
    "deqp/functional/gles3/texturewrap/etc2_eac_rgba8_pot.html": 0.1567,
    "deqp/functional/gles3/texturewrap/etc2_eac_srgb8_alpha8_npot.html": 0.1492,
    "deqp/functional/gles3/texturewrap/etc2_eac_srgb8_alpha8_pot.html": 0.1568,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_npot.html": 0.1737,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_pot.html": 0.1478,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_punchthrough_alpha1_npot.html": 0.1388,
    "deqp/functional/gles3/texturewrap/etc2_rgb8_punchthrough_alpha1_pot.html": 0.1226,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_npot.html": 0.1787,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_pot.html": 0.1259,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_punchthrough_alpha1_npot.html": 0.1262,
    "deqp/functional/gles3/texturewrap/etc2_srgb8_punchthrough_alpha1_pot.html": 0.1138,
    "deqp/functional/gles3/texturewrap/rgba8_npot.html": 2.1456,
    "deqp/functional/gles3/texturewrap/rgba8_pot.html": 2.4241,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_lines.html": 1.4986,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_points.html": 1.487,
    "deqp/functional/gles3/transformfeedback/array_element_interleaved_triangles.html": 2.1212,
    "deqp/functional/gles3/transformfeedback/array_element_separate_lines.html": 1.2637,
    "deqp/functional/gles3/transformfeedback/array_element_separate_points.html": 1.6658,
    "deqp/functional/gles3/transformfeedback/array_element_separate_triangles.html": 1.3103,
    "deqp/functional/gles3/transformfeedback/array_interleaved_lines.html": 1.4635,
    "deqp/functional/gles3/transformfeedback/array_interleaved_points.html": 1.6931,
    "deqp/functional/gles3/transformfeedback/array_interleaved_triangles.html": 1.2163,
    "deqp/functional/gles3/transformfeedback/array_separate_lines.html": 1.3473,
    "deqp/functional/gles3/transformfeedback/array_separate_points.html": 1.4653,
    "deqp/functional/gles3/transformfeedback/array_separate_triangles.html": 1.359,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_lines.html": 18.0607,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_points.html": 21.7438,
    "deqp/functional/gles3/transformfeedback/basic_types_interleaved_triangles.html": 19.5305,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_lines.html": 11.8691,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_points.html": 13.8352,
    "deqp/functional/gles3/transformfeedback/basic_types_separate_triangles.html": 13.2098,
    "deqp/functional/gles3/transformfeedback/interpolation_centroid.html": 5.7759,
    "deqp/functional/gles3/transformfeedback/interpolation_flat.html": 6.3585,
    "deqp/functional/gles3/transformfeedback/interpolation_smooth.html": 5.5281,
    "deqp/functional/gles3/transformfeedback/point_size.html": 1.6516,
    "deqp/functional/gles3/transformfeedback/position.html": 2.0417,
    "deqp/functional/gles3/transformfeedback/random_interleaved_lines.html": 3.4737,
    "deqp/functional/gles3/transformfeedback/random_interleaved_points.html": 3.4734,
    "deqp/functional/gles3/transformfeedback/random_interleaved_triangles.html": 3.2286,
    "deqp/functional/gles3/transformfeedback/random_separate_lines.html": 3.6685,
    "deqp/functional/gles3/transformfeedback/random_separate_points.html": 3.7802,
    "deqp/functional/gles3/transformfeedback/random_separate_triangles.html": 2.6376,
    "deqp/functional/gles3/uniformapi/info_query.html": 9.1255,
    "deqp/functional/gles3/uniformapi/random.html": 4.1196,
    "deqp/functional/gles3/uniformapi/value_assigned.html": 28.6312,
    "deqp/functional/gles3/uniformapi/value_initial.html": 10.6029,
    "deqp/functional/gles3/uniformbuffers/instance_array_basic_type.html": 5.0894,
    "deqp/functional/gles3/uniformbuffers/multi_basic_types.html": 0.8791,
    "deqp/functional/gles3/uniformbuffers/multi_nested_struct.html": 1.3199,
    "deqp/functional/gles3/uniformbuffers/random.html": 15.0207,
    "deqp/functional/gles3/uniformbuffers/single_basic_array.html": 5.008,
    "deqp/functional/gles3/uniformbuffers/single_basic_type.html": 9.7803,
    "deqp/functional/gles3/uniformbuffers/single_nested_struct.html": 1.371,
    "deqp/functional/gles3/uniformbuffers/single_nested_struct_array.html": 1.2478,
    "deqp/functional/gles3/uniformbuffers/single_struct.html": 0.9608,
    "deqp/functional/gles3/uniformbuffers/single_struct_array.html": 2.0267,
    "deqp/functional/gles3/vertexarrayobject.html": 0.965,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.count.html": 11.0694,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.output.html": 28.6603,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.storage.html": 1.9203,
    "deqp/functional/gles3/vertexarrays/multiple_attributes.stride.html": 29.2844,
    "deqp/functional/gles3/vertexarrays/single_attribute.first.html": 25.0582,
    "deqp/functional/gles3/vertexarrays/single_attribute.normalize.html": 12.1628,
    "deqp/functional/gles3/vertexarrays/single_attribute.offset.html": 23.6624,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.byte.html": 10.1611,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.float.html": 9.1838,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.half.html": 8.7339,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.int.html": 8.6882,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.int_2_10_10_10.html": 5.187,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.short.html": 10.4119,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_byte.html": 9.9159,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int.html": 8.8341,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int_2_10_10_10.html": 2.3356,
    "deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_short.html": 9.7488,
    "deqp/functional/gles3/vertexarrays/single_attribute.stride.html": 12.2425,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_copy.html": 8.0881,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_draw.html": 9.4006,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_read.html": 9.7004,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_copy.html": 8.9715,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_draw.html": 10.5222,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.static_read.html": 10.0795,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_copy.html": 8.2391,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_draw.html": 9.2018,
    "deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_read.html": 8.7756
  }
}