How to use int8Array method in fast-check-monorepo

Best JavaScript code snippet using fast-check-monorepo

test-bi-typedarray-proto-subarray.js

Source:test-bi-typedarray-proto-subarray.js Github

copy

Full Screen

...15===*/16function subarrayBasicTest() {17 var i;18 var b = new ArrayBuffer(8);19 var v0 = new Uint8Array(b);20 for (i = 0; i < 8; i++) {21 v0[i] = 0x10 + i;22 }23 printBuffer(b);24 var v1 = new Uint8Array(b);25 printBuffer(v1);26 print(typeof v1.buffer, v1.buffer === b);27 var v2 = v1.subarray(3, 5);28 printBuffer(v2);29 print(typeof v2.buffer, v2.buffer === b);30 v2[0] = 0xde; // ok, map to b[3]31 v2[1] = 0xad; // ok, map to b[4]32 v2[2] = 0xbe; // out of subarray, becomes a concrete property on v233 v2[3] = 0xef; // out of subarray, becomes a concrete property on v234 printBuffer(b);35 printBuffer(v1);36 printBuffer(v2);37}38try {39 print('basic test');40 subarrayBasicTest();41} catch (e) {42 print(e.stack || e);43}44/*===45bruteforce test460 0 0 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f470 0 1 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f480 0 2 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f490 0 3 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f500 0 4 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f510 0 5 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f520 0 6 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f530 0 7 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f540 1 0 [object Int8Array] 5d5e5f550 1 1 [object Int8Array] 560 1 2 [object Int8Array] 5d5e570 1 3 [object Int8Array] 580 1 4 [object Int8Array] 590 1 5 [object Int8Array] 600 1 6 [object Int8Array] 610 1 7 [object Int8Array] 620 2 0 [object Int8Array] 5f630 2 1 [object Int8Array] 640 2 2 [object Int8Array] 650 2 3 [object Int8Array] 660 2 4 [object Int8Array] 670 2 5 [object Int8Array] 680 2 6 [object Int8Array] 690 2 7 [object Int8Array] 700 3 0 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f710 3 1 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c720 3 2 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e730 3 3 [object Int8Array] 740 3 4 [object Int8Array] 40750 3 5 [object Int8Array] 4041760 3 6 [object Int8Array] 404142770 3 7 [object Int8Array] 40414243444546474849780 4 0 [object Int8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f790 4 1 [object Int8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c800 4 2 [object Int8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e810 4 3 [object Int8Array] 820 4 4 [object Int8Array] 830 4 5 [object Int8Array] 41840 4 6 [object Int8Array] 4142850 4 7 [object Int8Array] 414243444546474849860 5 0 [object Int8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f870 5 1 [object Int8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c880 5 2 [object Int8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e890 5 3 [object Int8Array] 900 5 4 [object Int8Array] 910 5 5 [object Int8Array] 920 5 6 [object Int8Array] 42930 5 7 [object Int8Array] 4243444546474849940 6 0 [object Int8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f950 6 1 [object Int8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c960 6 2 [object Int8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e970 6 3 [object Int8Array] 980 6 4 [object Int8Array] 990 6 5 [object Int8Array] 1000 6 6 [object Int8Array] 1010 6 7 [object Int8Array] 434445464748491020 7 0 [object Int8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1030 7 1 [object Int8Array] 4a4b4c4d4e4f505152535455565758595a5b5c1040 7 2 [object Int8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e1050 7 3 [object Int8Array] 1060 7 4 [object Int8Array] 1070 7 5 [object Int8Array] 1080 7 6 [object Int8Array] 1090 7 7 [object Int8Array] 1101 0 0 [object Int8Array] 45464748494a4b4c4d4e4f50511111 0 1 [object Int8Array] 45464748494a4b4c4d4e4f50511121 0 2 [object Int8Array] 45464748494a4b4c4d4e4f50511131 0 3 [object Int8Array] 45464748494a4b4c4d4e4f50511141 0 4 [object Int8Array] 45464748494a4b4c4d4e4f50511151 0 5 [object Int8Array] 45464748494a4b4c4d4e4f50511161 0 6 [object Int8Array] 45464748494a4b4c4d4e4f50511171 0 7 [object Int8Array] 45464748494a4b4c4d4e4f50511181 1 0 [object Int8Array] 4f50511191 1 1 [object Int8Array] 1201 1 2 [object Int8Array] 4f501211 1 3 [object Int8Array] 1221 1 4 [object Int8Array] 1231 1 5 [object Int8Array] 1241 1 6 [object Int8Array] 1251 1 7 [object Int8Array] 1261 2 0 [object Int8Array] 511271 2 1 [object Int8Array] 1281 2 2 [object Int8Array] 1291 2 3 [object Int8Array] 1301 2 4 [object Int8Array] 1311 2 5 [object Int8Array] 1321 2 6 [object Int8Array] 1331 2 7 [object Int8Array] 1341 3 0 [object Int8Array] 45464748494a4b4c4d4e4f50511351 3 1 [object Int8Array] 45464748494a4b4c4d4e1361 3 2 [object Int8Array] 45464748494a4b4c4d4e4f501371 3 3 [object Int8Array] 1381 3 4 [object Int8Array] 451391 3 5 [object Int8Array] 45461401 3 6 [object Int8Array] 4546471411 3 7 [object Int8Array] 45464748494a4b4c4d4e1421 4 0 [object Int8Array] 464748494a4b4c4d4e4f50511431 4 1 [object Int8Array] 464748494a4b4c4d4e1441 4 2 [object Int8Array] 464748494a4b4c4d4e4f501451 4 3 [object Int8Array] 1461 4 4 [object Int8Array] 1471 4 5 [object Int8Array] 461481 4 6 [object Int8Array] 46471491 4 7 [object Int8Array] 464748494a4b4c4d4e1501 5 0 [object Int8Array] 4748494a4b4c4d4e4f50511511 5 1 [object Int8Array] 4748494a4b4c4d4e1521 5 2 [object Int8Array] 4748494a4b4c4d4e4f501531 5 3 [object Int8Array] 1541 5 4 [object Int8Array] 1551 5 5 [object Int8Array] 1561 5 6 [object Int8Array] 471571 5 7 [object Int8Array] 4748494a4b4c4d4e1581 6 0 [object Int8Array] 48494a4b4c4d4e4f50511591 6 1 [object Int8Array] 48494a4b4c4d4e1601 6 2 [object Int8Array] 48494a4b4c4d4e4f501611 6 3 [object Int8Array] 1621 6 4 [object Int8Array] 1631 6 5 [object Int8Array] 1641 6 6 [object Int8Array] 1651 6 7 [object Int8Array] 48494a4b4c4d4e1661 7 0 [object Int8Array] 4f50511671 7 1 [object Int8Array] 1681 7 2 [object Int8Array] 4f501691 7 3 [object Int8Array] 1701 7 4 [object Int8Array] 1711 7 5 [object Int8Array] 1721 7 6 [object Int8Array] 1731 7 7 [object Int8Array] 1742 0 0 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1752 0 1 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1762 0 2 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1772 0 3 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1782 0 4 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1792 0 5 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1802 0 6 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1812 0 7 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1822 1 0 [object Uint8Array] 5d5e5f1832 1 1 [object Uint8Array] 1842 1 2 [object Uint8Array] 5d5e1852 1 3 [object Uint8Array] 1862 1 4 [object Uint8Array] 1872 1 5 [object Uint8Array] 1882 1 6 [object Uint8Array] 1892 1 7 [object Uint8Array] 1902 2 0 [object Uint8Array] 5f1912 2 1 [object Uint8Array] 1922 2 2 [object Uint8Array] 1932 2 3 [object Uint8Array] 1942 2 4 [object Uint8Array] 1952 2 5 [object Uint8Array] 1962 2 6 [object Uint8Array] 1972 2 7 [object Uint8Array] 1982 3 0 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1992 3 1 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c2002 3 2 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2012 3 3 [object Uint8Array] 2022 3 4 [object Uint8Array] 402032 3 5 [object Uint8Array] 40412042 3 6 [object Uint8Array] 4041422052 3 7 [object Uint8Array] 404142434445464748492062 4 0 [object Uint8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2072 4 1 [object Uint8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c2082 4 2 [object Uint8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2092 4 3 [object Uint8Array] 2102 4 4 [object Uint8Array] 2112 4 5 [object Uint8Array] 412122 4 6 [object Uint8Array] 41422132 4 7 [object Uint8Array] 4142434445464748492142 5 0 [object Uint8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2152 5 1 [object Uint8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c2162 5 2 [object Uint8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2172 5 3 [object Uint8Array] 2182 5 4 [object Uint8Array] 2192 5 5 [object Uint8Array] 2202 5 6 [object Uint8Array] 422212 5 7 [object Uint8Array] 42434445464748492222 6 0 [object Uint8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2232 6 1 [object Uint8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c2242 6 2 [object Uint8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2252 6 3 [object Uint8Array] 2262 6 4 [object Uint8Array] 2272 6 5 [object Uint8Array] 2282 6 6 [object Uint8Array] 2292 6 7 [object Uint8Array] 434445464748492302 7 0 [object Uint8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2312 7 1 [object Uint8Array] 4a4b4c4d4e4f505152535455565758595a5b5c2322 7 2 [object Uint8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e2332 7 3 [object Uint8Array] 2342 7 4 [object Uint8Array] 2352 7 5 [object Uint8Array] 2362 7 6 [object Uint8Array] 2372 7 7 [object Uint8Array] 2383 0 0 [object Uint8Array] 45464748494a4b4c4d4e4f50512393 0 1 [object Uint8Array] 45464748494a4b4c4d4e4f50512403 0 2 [object Uint8Array] 45464748494a4b4c4d4e4f50512413 0 3 [object Uint8Array] 45464748494a4b4c4d4e4f50512423 0 4 [object Uint8Array] 45464748494a4b4c4d4e4f50512433 0 5 [object Uint8Array] 45464748494a4b4c4d4e4f50512443 0 6 [object Uint8Array] 45464748494a4b4c4d4e4f50512453 0 7 [object Uint8Array] 45464748494a4b4c4d4e4f50512463 1 0 [object Uint8Array] 4f50512473 1 1 [object Uint8Array] 2483 1 2 [object Uint8Array] 4f502493 1 3 [object Uint8Array] 2503 1 4 [object Uint8Array] 2513 1 5 [object Uint8Array] 2523 1 6 [object Uint8Array] 2533 1 7 [object Uint8Array] 2543 2 0 [object Uint8Array] 512553 2 1 [object Uint8Array] 2563 2 2 [object Uint8Array] 2573 2 3 [object Uint8Array] 2583 2 4 [object Uint8Array] 2593 2 5 [object Uint8Array] 2603 2 6 [object Uint8Array] 2613 2 7 [object Uint8Array] 2623 3 0 [object Uint8Array] 45464748494a4b4c4d4e4f50512633 3 1 [object Uint8Array] 45464748494a4b4c4d4e2643 3 2 [object Uint8Array] 45464748494a4b4c4d4e4f502653 3 3 [object Uint8Array] 2663 3 4 [object Uint8Array] 452673 3 5 [object Uint8Array] 45462683 3 6 [object Uint8Array] 4546472693 3 7 [object Uint8Array] 45464748494a4b4c4d4e2703 4 0 [object Uint8Array] 464748494a4b4c4d4e4f50512713 4 1 [object Uint8Array] 464748494a4b4c4d4e2723 4 2 [object Uint8Array] 464748494a4b4c4d4e4f502733 4 3 [object Uint8Array] 2743 4 4 [object Uint8Array] 2753 4 5 [object Uint8Array] 462763 4 6 [object Uint8Array] 46472773 4 7 [object Uint8Array] 464748494a4b4c4d4e2783 5 0 [object Uint8Array] 4748494a4b4c4d4e4f50512793 5 1 [object Uint8Array] 4748494a4b4c4d4e2803 5 2 [object Uint8Array] 4748494a4b4c4d4e4f502813 5 3 [object Uint8Array] 2823 5 4 [object Uint8Array] 2833 5 5 [object Uint8Array] 2843 5 6 [object Uint8Array] 472853 5 7 [object Uint8Array] 4748494a4b4c4d4e2863 6 0 [object Uint8Array] 48494a4b4c4d4e4f50512873 6 1 [object Uint8Array] 48494a4b4c4d4e2883 6 2 [object Uint8Array] 48494a4b4c4d4e4f502893 6 3 [object Uint8Array] 2903 6 4 [object Uint8Array] 2913 6 5 [object Uint8Array] 2923 6 6 [object Uint8Array] 2933 6 7 [object Uint8Array] 48494a4b4c4d4e2943 7 0 [object Uint8Array] 4f50512953 7 1 [object Uint8Array] 2963 7 2 [object Uint8Array] 4f502973 7 3 [object Uint8Array] 2983 7 4 [object Uint8Array] 2993 7 5 [object Uint8Array] 3003 7 6 [object Uint8Array] 3013 7 7 [object Uint8Array] 3024 0 0 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3034 0 1 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3044 0 2 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3054 0 3 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3064 0 4 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3074 0 5 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3084 0 6 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3094 0 7 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3104 1 0 [object Uint8ClampedArray] 5d5e5f3114 1 1 [object Uint8ClampedArray] 3124 1 2 [object Uint8ClampedArray] 5d5e3134 1 3 [object Uint8ClampedArray] 3144 1 4 [object Uint8ClampedArray] 3154 1 5 [object Uint8ClampedArray] 3164 1 6 [object Uint8ClampedArray] 3174 1 7 [object Uint8ClampedArray] 3184 2 0 [object Uint8ClampedArray] 5f3194 2 1 [object Uint8ClampedArray] 3204 2 2 [object Uint8ClampedArray] 3214 2 3 [object Uint8ClampedArray] 3224 2 4 [object Uint8ClampedArray] 3234 2 5 [object Uint8ClampedArray] 3244 2 6 [object Uint8ClampedArray] 3254 2 7 [object Uint8ClampedArray] 3264 3 0 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3274 3 1 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c3284 3 2 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3294 3 3 [object Uint8ClampedArray] 3304 3 4 [object Uint8ClampedArray] 403314 3 5 [object Uint8ClampedArray] 40413324 3 6 [object Uint8ClampedArray] 4041423334 3 7 [object Uint8ClampedArray] 404142434445464748493344 4 0 [object Uint8ClampedArray] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3354 4 1 [object Uint8ClampedArray] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c3364 4 2 [object Uint8ClampedArray] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3374 4 3 [object Uint8ClampedArray] 3384 4 4 [object Uint8ClampedArray] 3394 4 5 [object Uint8ClampedArray] 413404 4 6 [object Uint8ClampedArray] 41423414 4 7 [object Uint8ClampedArray] 4142434445464748493424 5 0 [object Uint8ClampedArray] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3434 5 1 [object Uint8ClampedArray] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c3444 5 2 [object Uint8ClampedArray] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3454 5 3 [object Uint8ClampedArray] 3464 5 4 [object Uint8ClampedArray] 3474 5 5 [object Uint8ClampedArray] 3484 5 6 [object Uint8ClampedArray] 423494 5 7 [object Uint8ClampedArray] 42434445464748493504 6 0 [object Uint8ClampedArray] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3514 6 1 [object Uint8ClampedArray] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c3524 6 2 [object Uint8ClampedArray] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3534 6 3 [object Uint8ClampedArray] 3544 6 4 [object Uint8ClampedArray] 3554 6 5 [object Uint8ClampedArray] 3564 6 6 [object Uint8ClampedArray] 3574 6 7 [object Uint8ClampedArray] 434445464748493584 7 0 [object Uint8ClampedArray] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3594 7 1 [object Uint8ClampedArray] 4a4b4c4d4e4f505152535455565758595a5b5c3604 7 2 [object Uint8ClampedArray] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e3614 7 3 [object Uint8ClampedArray] 3624 7 4 [object Uint8ClampedArray] 3634 7 5 [object Uint8ClampedArray] 3644 7 6 [object Uint8ClampedArray] 3654 7 7 [object Uint8ClampedArray] 3665 0 0 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513675 0 1 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513685 0 2 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513695 0 3 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513705 0 4 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513715 0 5 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513725 0 6 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513735 0 7 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513745 1 0 [object Uint8ClampedArray] 4f50513755 1 1 [object Uint8ClampedArray] 3765 1 2 [object Uint8ClampedArray] 4f503775 1 3 [object Uint8ClampedArray] 3785 1 4 [object Uint8ClampedArray] 3795 1 5 [object Uint8ClampedArray] 3805 1 6 [object Uint8ClampedArray] 3815 1 7 [object Uint8ClampedArray] 3825 2 0 [object Uint8ClampedArray] 513835 2 1 [object Uint8ClampedArray] 3845 2 2 [object Uint8ClampedArray] 3855 2 3 [object Uint8ClampedArray] 3865 2 4 [object Uint8ClampedArray] 3875 2 5 [object Uint8ClampedArray] 3885 2 6 [object Uint8ClampedArray] 3895 2 7 [object Uint8ClampedArray] 3905 3 0 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513915 3 1 [object Uint8ClampedArray] 45464748494a4b4c4d4e3925 3 2 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f503935 3 3 [object Uint8ClampedArray] 3945 3 4 [object Uint8ClampedArray] 453955 3 5 [object Uint8ClampedArray] 45463965 3 6 [object Uint8ClampedArray] 4546473975 3 7 [object Uint8ClampedArray] 45464748494a4b4c4d4e3985 4 0 [object Uint8ClampedArray] 464748494a4b4c4d4e4f50513995 4 1 [object Uint8ClampedArray] 464748494a4b4c4d4e4005 4 2 [object Uint8ClampedArray] 464748494a4b4c4d4e4f504015 4 3 [object Uint8ClampedArray] 4025 4 4 [object Uint8ClampedArray] 4035 4 5 [object Uint8ClampedArray] 464045 4 6 [object Uint8ClampedArray] 46474055 4 7 [object Uint8ClampedArray] 464748494a4b4c4d4e4065 5 0 [object Uint8ClampedArray] 4748494a4b4c4d4e4f50514075 5 1 [object Uint8ClampedArray] 4748494a4b4c4d4e4085 5 2 [object Uint8ClampedArray] 4748494a4b4c4d4e4f504095 5 3 [object Uint8ClampedArray] 4105 5 4 [object Uint8ClampedArray] 4115 5 5 [object Uint8ClampedArray] 4125 5 6 [object Uint8ClampedArray] 474135 5 7 [object Uint8ClampedArray] 4748494a4b4c4d4e4145 6 0 [object Uint8ClampedArray] 48494a4b4c4d4e4f50514155 6 1 [object Uint8ClampedArray] 48494a4b4c4d4e4165 6 2 [object Uint8ClampedArray] 48494a4b4c4d4e4f504175 6 3 [object Uint8ClampedArray] 4185 6 4 [object Uint8ClampedArray] 4195 6 5 [object Uint8ClampedArray] 4205 6 6 [object Uint8ClampedArray] 4215 6 7 [object Uint8ClampedArray] 48494a4b4c4d4e4225 7 0 [object Uint8ClampedArray] 4f50514235 7 1 [object Uint8ClampedArray] 4245 7 2 [object Uint8ClampedArray] 4f504255 7 3 [object Uint8ClampedArray] 4265 7 4 [object Uint8ClampedArray] 4275 7 5 [object Uint8ClampedArray] 4285 7 6 [object Uint8ClampedArray] 4295 7 7 [object Uint8ClampedArray] 4306 0 0 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4316 0 1 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4326 0 2 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4336 0 3 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4346 0 4 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4356 0 5 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4366 0 6 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4376 0 7 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4386 1 0 [object Int16Array] 5a5b5c5d5e5f4396 1 1 [object Int16Array] 4406 1 2 [object Int16Array] 5a5b5c5d4416 1 3 [object Int16Array] 4426 1 4 [object Int16Array] 4436 1 5 [object Int16Array] 4446 1 6 [object Int16Array] 4456 1 7 [object Int16Array] 4466 2 0 [object Int16Array] 5e5f4476 2 1 [object Int16Array] 4486 2 2 [object Int16Array] 4496 2 3 [object Int16Array] 4506 2 4 [object Int16Array] 4516 2 5 [object Int16Array] 4526 2 6 [object Int16Array] 4536 2 7 [object Int16Array] 4546 3 0 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4556 3 1 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758594566 3 2 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d4576 3 3 [object Int16Array] 4586 3 4 [object Int16Array] 40414596 3 5 [object Int16Array] 404142434606 3 6 [object Int16Array] 4041424344454616 3 7 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152534626 4 0 [object Int16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4636 4 1 [object Int16Array] 42434445464748494a4b4c4d4e4f505152535455565758594646 4 2 [object Int16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d4656 4 3 [object Int16Array] 4666 4 4 [object Int16Array] 4676 4 5 [object Int16Array] 42434686 4 6 [object Int16Array] 424344454696 4 7 [object Int16Array] 42434445464748494a4b4c4d4e4f505152534706 5 0 [object Int16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4716 5 1 [object Int16Array] 4445464748494a4b4c4d4e4f505152535455565758594726 5 2 [object Int16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d4736 5 3 [object Int16Array] 4746 5 4 [object Int16Array] 4756 5 5 [object Int16Array] 4766 5 6 [object Int16Array] 44454776 5 7 [object Int16Array] 4445464748494a4b4c4d4e4f505152534786 6 0 [object Int16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4796 6 1 [object Int16Array] 464748494a4b4c4d4e4f505152535455565758594806 6 2 [object Int16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d4816 6 3 [object Int16Array] 4826 6 4 [object Int16Array] 4836 6 5 [object Int16Array] 4846 6 6 [object Int16Array] 4856 6 7 [object Int16Array] 464748494a4b4c4d4e4f505152534866 7 0 [object Int16Array] 5455565758595a5b5c5d5e5f4876 7 1 [object Int16Array] 5455565758594886 7 2 [object Int16Array] 5455565758595a5b5c5d4896 7 3 [object Int16Array] 4906 7 4 [object Int16Array] 4916 7 5 [object Int16Array] 4926 7 6 [object Int16Array] 4936 7 7 [object Int16Array] 4947 0 0 [object Int16Array] 4445464748494a4b4c4d4e4f505152534957 0 1 [object Int16Array] 4445464748494a4b4c4d4e4f505152534967 0 2 [object Int16Array] 4445464748494a4b4c4d4e4f505152534977 0 3 [object Int16Array] 4445464748494a4b4c4d4e4f505152534987 0 4 [object Int16Array] 4445464748494a4b4c4d4e4f505152534997 0 5 [object Int16Array] 4445464748494a4b4c4d4e4f505152535007 0 6 [object Int16Array] 4445464748494a4b4c4d4e4f505152535017 0 7 [object Int16Array] 4445464748494a4b4c4d4e4f505152535027 1 0 [object Int16Array] 4e4f505152535037 1 1 [object Int16Array] 5047 1 2 [object Int16Array] 4e4f50515057 1 3 [object Int16Array] 5067 1 4 [object Int16Array] 5077 1 5 [object Int16Array] 5087 1 6 [object Int16Array] 5097 1 7 [object Int16Array] 4e4f505152535107 2 0 [object Int16Array] 52535117 2 1 [object Int16Array] 5127 2 2 [object Int16Array] 5137 2 3 [object Int16Array] 5147 2 4 [object Int16Array] 5157 2 5 [object Int16Array] 5167 2 6 [object Int16Array] 5177 2 7 [object Int16Array] 52535187 3 0 [object Int16Array] 4445464748494a4b4c4d4e4f505152535197 3 1 [object Int16Array] 4445464748494a4b4c4d5207 3 2 [object Int16Array] 4445464748494a4b4c4d4e4f50515217 3 3 [object Int16Array] 5227 3 4 [object Int16Array] 44455237 3 5 [object Int16Array] 444546475247 3 6 [object Int16Array] 4445464748495257 3 7 [object Int16Array] 4445464748494a4b4c4d4e4f505152535267 4 0 [object Int16Array] 464748494a4b4c4d4e4f505152535277 4 1 [object Int16Array] 464748494a4b4c4d5287 4 2 [object Int16Array] 464748494a4b4c4d4e4f50515297 4 3 [object Int16Array] 5307 4 4 [object Int16Array] 5317 4 5 [object Int16Array] 46475327 4 6 [object Int16Array] 464748495337 4 7 [object Int16Array] 464748494a4b4c4d4e4f505152535347 5 0 [object Int16Array] 48494a4b4c4d4e4f505152535357 5 1 [object Int16Array] 48494a4b4c4d5367 5 2 [object Int16Array] 48494a4b4c4d4e4f50515377 5 3 [object Int16Array] 5387 5 4 [object Int16Array] 5397 5 5 [object Int16Array] 5407 5 6 [object Int16Array] 48495417 5 7 [object Int16Array] 48494a4b4c4d4e4f505152535427 6 0 [object Int16Array] 4a4b4c4d4e4f505152535437 6 1 [object Int16Array] 4a4b4c4d5447 6 2 [object Int16Array] 4a4b4c4d4e4f50515457 6 3 [object Int16Array] 5467 6 4 [object Int16Array] 5477 6 5 [object Int16Array] 5487 6 6 [object Int16Array] 5497 6 7 [object Int16Array] 4a4b4c4d4e4f505152535507 7 0 [object Int16Array] 5517 7 1 [object Int16Array] 5527 7 2 [object Int16Array] 5537 7 3 [object Int16Array] 5547 7 4 [object Int16Array] 5557 7 5 [object Int16Array] 5567 7 6 [object Int16Array] 5577 7 7 [object Int16Array] 5588 0 0 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5598 0 1 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5608 0 2 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5618 0 3 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5628 0 4 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5638 0 5 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5648 0 6 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5658 0 7 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5668 1 0 [object Uint16Array] 5a5b5c5d5e5f5678 1 1 [object Uint16Array] 5688 1 2 [object Uint16Array] 5a5b5c5d5698 1 3 [object Uint16Array] 5708 1 4 [object Uint16Array] 5718 1 5 [object Uint16Array] 5728 1 6 [object Uint16Array] 5738 1 7 [object Uint16Array] 5748 2 0 [object Uint16Array] 5e5f5758 2 1 [object Uint16Array] 5768 2 2 [object Uint16Array] 5778 2 3 [object Uint16Array] 5788 2 4 [object Uint16Array] 5798 2 5 [object Uint16Array] 5808 2 6 [object Uint16Array] 5818 2 7 [object Uint16Array] 5828 3 0 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5838 3 1 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595848 3 2 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5858 3 3 [object Uint16Array] 5868 3 4 [object Uint16Array] 40415878 3 5 [object Uint16Array] 404142435888 3 6 [object Uint16Array] 4041424344455898 3 7 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535908 4 0 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5918 4 1 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535455565758595928 4 2 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5938 4 3 [object Uint16Array] 5948 4 4 [object Uint16Array] 5958 4 5 [object Uint16Array] 42435968 4 6 [object Uint16Array] 424344455978 4 7 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535988 5 0 [object Uint16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5998 5 1 [object Uint16Array] 4445464748494a4b4c4d4e4f505152535455565758596008 5 2 [object Uint16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d6018 5 3 [object Uint16Array] 6028 5 4 [object Uint16Array] 6038 5 5 [object Uint16Array] 6048 5 6 [object Uint16Array] 44456058 5 7 [object Uint16Array] 4445464748494a4b4c4d4e4f505152536068 6 0 [object Uint16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f6078 6 1 [object Uint16Array] 464748494a4b4c4d4e4f505152535455565758596088 6 2 [object Uint16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d6098 6 3 [object Uint16Array] 6108 6 4 [object Uint16Array] 6118 6 5 [object Uint16Array] 6128 6 6 [object Uint16Array] 6138 6 7 [object Uint16Array] 464748494a4b4c4d4e4f505152536148 7 0 [object Uint16Array] 5455565758595a5b5c5d5e5f6158 7 1 [object Uint16Array] 5455565758596168 7 2 [object Uint16Array] 5455565758595a5b5c5d6178 7 3 [object Uint16Array] 6188 7 4 [object Uint16Array] 6198 7 5 [object Uint16Array] 6208 7 6 [object Uint16Array] 6218 7 7 [object Uint16Array] 6229 0 0 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6239 0 1 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6249 0 2 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6259 0 3 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6269 0 4 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6279 0 5 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6289 0 6 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6299 0 7 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6309 1 0 [object Uint16Array] 565758595a5b6319 1 1 [object Uint16Array] 6329 1 2 [object Uint16Array] 565758596339 1 3 [object Uint16Array] 6349 1 4 [object Uint16Array] 6359 1 5 [object Uint16Array] 6369 1 6 [object Uint16Array] 6379 1 7 [object Uint16Array] 565758595a5b6389 2 0 [object Uint16Array] 5a5b6399 2 1 [object Uint16Array] 6409 2 2 [object Uint16Array] 6419 2 3 [object Uint16Array] 6429 2 4 [object Uint16Array] 6439 2 5 [object Uint16Array] 6449 2 6 [object Uint16Array] 6459 2 7 [object Uint16Array] 5a5b6469 3 0 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6479 3 1 [object Uint16Array] 4c4d4e4f5051525354556489 3 2 [object Uint16Array] 4c4d4e4f505152535455565758596499 3 3 [object Uint16Array] 6509 3 4 [object Uint16Array] 4c4d6519 3 5 [object Uint16Array] 4c4d4e4f6529 3 6 [object Uint16Array] 4c4d4e4f50516539 3 7 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6549 4 0 [object Uint16Array] 4e4f505152535455565758595a5b6559 4 1 [object Uint16Array] 4e4f5051525354556569 4 2 [object Uint16Array] 4e4f505152535455565758596579 4 3 [object Uint16Array] 6589 4 4 [object Uint16Array] 6599 4 5 [object Uint16Array] 4e4f6609 4 6 [object Uint16Array] 4e4f50516619 4 7 [object Uint16Array] 4e4f505152535455565758595a5b6629 5 0 [object Uint16Array] 505152535455565758595a5b6639 5 1 [object Uint16Array] 5051525354556649 5 2 [object Uint16Array] 505152535455565758596659 5 3 [object Uint16Array] 6669 5 4 [object Uint16Array] 6679 5 5 [object Uint16Array] 6689 5 6 [object Uint16Array] 50516699 5 7 [object Uint16Array] 505152535455565758595a5b6709 6 0 [object Uint16Array] 52535455565758595a5b6719 6 1 [object Uint16Array] 525354556729 6 2 [object Uint16Array] 52535455565758596739 6 3 [object Uint16Array] 6749 6 4 [object Uint16Array] 6759 6 5 [object Uint16Array] 6769 6 6 [object Uint16Array] 6779 6 7 [object Uint16Array] 52535455565758595a5b6789 7 0 [object Uint16Array] 6799 7 1 [object Uint16Array] 6809 7 2 [object Uint16Array] 6819 7 3 [object Uint16Array] 6829 7 4 [object Uint16Array] 6839 7 5 [object Uint16Array] 6849 7 6 [object Uint16Array] 6859 7 7 [object Uint16Array] 68610 0 0 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f68710 0 1 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f68810 0 2 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f68910 0 3 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69010 0 4 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69110 0 5 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69210 0 6 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69310 0 7 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69410 1 0 [object Int32Array] 5455565758595a5b5c5d5e5f69510 1 1 [object Int32Array] 69610 1 2 [object Int32Array] 5455565758595a5b69710 1 3 [object Int32Array] 69810 1 4 [object Int32Array] 69910 1 5 [object Int32Array] 70010 1 6 [object Int32Array] 70110 1 7 [object Int32Array] 5455565758595a5b5c5d5e5f70210 2 0 [object Int32Array] 5c5d5e5f70310 2 1 [object Int32Array] 70410 2 2 [object Int32Array] 70510 2 3 [object Int32Array] 70610 2 4 [object Int32Array] 70710 2 5 [object Int32Array] 70810 2 6 [object Int32Array] 70910 2 7 [object Int32Array] 5c5d5e5f71010 3 0 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f71110 3 1 [object Int32Array] 404142434445464748494a4b4c4d4e4f5051525371210 3 2 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b71310 3 3 [object Int32Array] 71410 3 4 [object Int32Array] 4041424371510 3 5 [object Int32Array] 404142434445464771610 3 6 [object Int32Array] 404142434445464748494a4b71710 3 7 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f71810 4 0 [object Int32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f71910 4 1 [object Int32Array] 4445464748494a4b4c4d4e4f5051525372010 4 2 [object Int32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b72110 4 3 [object Int32Array] 72210 4 4 [object Int32Array] 72310 4 5 [object Int32Array] 4445464772410 4 6 [object Int32Array] 4445464748494a4b72510 4 7 [object Int32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f72610 5 0 [object Int32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f72710 5 1 [object Int32Array] 48494a4b4c4d4e4f5051525372810 5 2 [object Int32Array] 48494a4b4c4d4e4f505152535455565758595a5b72910 5 3 [object Int32Array] 73010 5 4 [object Int32Array] 73110 5 5 [object Int32Array] 73210 5 6 [object Int32Array] 48494a4b73310 5 7 [object Int32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f73410 6 0 [object Int32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f73510 6 1 [object Int32Array] 4c4d4e4f5051525373610 6 2 [object Int32Array] 4c4d4e4f505152535455565758595a5b73710 6 3 [object Int32Array] 73810 6 4 [object Int32Array] 73910 6 5 [object Int32Array] 74010 6 6 [object Int32Array] 74110 6 7 [object Int32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f74210 7 0 [object Int32Array] 74310 7 1 [object Int32Array] 74410 7 2 [object Int32Array] 74510 7 3 [object Int32Array] 74610 7 4 [object Int32Array] 74710 7 5 [object Int32Array] 74810 7 6 [object Int32Array] 74910 7 7 [object Int32Array] 75011 0 0 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375111 0 1 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375211 0 2 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375311 0 3 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375411 0 4 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375511 0 5 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375611 0 6 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375711 0 7 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375811 1 0 [object Int32Array] 48494a4b4c4d4e4f5051525375911 1 1 [object Int32Array] 76011 1 2 [object Int32Array] 48494a4b4c4d4e4f76111 1 3 [object Int32Array] 76211 1 4 [object Int32Array] 76311 1 5 [object Int32Array] 48494a4b76411 1 6 [object Int32Array] 48494a4b4c4d4e4f76511 1 7 [object Int32Array] 48494a4b4c4d4e4f5051525376611 2 0 [object Int32Array] 5051525376711 2 1 [object Int32Array] 76811 2 2 [object Int32Array] 76911 2 3 [object Int32Array] 77011 2 4 [object Int32Array] 77111 2 5 [object Int32Array] 77211 2 6 [object Int32Array] 77311 2 7 [object Int32Array] 5051525377411 3 0 [object Int32Array] 4445464748494a4b4c4d4e4f5051525377511 3 1 [object Int32Array] 4445464777611 3 2 [object Int32Array] 4445464748494a4b4c4d4e4f77711 3 3 [object Int32Array] 77811 3 4 [object Int32Array] 4445464777911 3 5 [object Int32Array] 4445464748494a4b78011 3 6 [object Int32Array] 4445464748494a4b4c4d4e4f78111 3 7 [object Int32Array] 4445464748494a4b4c4d4e4f5051525378211 4 0 [object Int32Array] 48494a4b4c4d4e4f5051525378311 4 1 [object Int32Array] 78411 4 2 [object Int32Array] 48494a4b4c4d4e4f78511 4 3 [object Int32Array] 78611 4 4 [object Int32Array] 78711 4 5 [object Int32Array] 48494a4b78811 4 6 [object Int32Array] 48494a4b4c4d4e4f78911 4 7 [object Int32Array] 48494a4b4c4d4e4f5051525379011 5 0 [object Int32Array] 4c4d4e4f5051525379111 5 1 [object Int32Array] 79211 5 2 [object Int32Array] 4c4d4e4f79311 5 3 [object Int32Array] 79411 5 4 [object Int32Array] 79511 5 5 [object Int32Array] 79611 5 6 [object Int32Array] 4c4d4e4f79711 5 7 [object Int32Array] 4c4d4e4f5051525379811 6 0 [object Int32Array] 5051525379911 6 1 [object Int32Array] 80011 6 2 [object Int32Array] 80111 6 3 [object Int32Array] 80211 6 4 [object Int32Array] 80311 6 5 [object Int32Array] 80411 6 6 [object Int32Array] 80511 6 7 [object Int32Array] 5051525380611 7 0 [object Int32Array] 80711 7 1 [object Int32Array] 80811 7 2 [object Int32Array] 80911 7 3 [object Int32Array] 81011 7 4 [object Int32Array] 81111 7 5 [object Int32Array] 81211 7 6 [object Int32Array] 81311 7 7 [object Int32Array] 81412 0 0 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81512 0 1 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81612 0 2 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81712 0 3 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81812 0 4 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81912 0 5 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f82012 0 6 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f82112 0 7 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f82212 1 0 [object Uint32Array] 5455565758595a5b5c5d5e5f82312 1 1 [object Uint32Array] 82412 1 2 [object Uint32Array] 5455565758595a5b82512 1 3 [object Uint32Array] 82612 1 4 [object Uint32Array] 82712 1 5 [object Uint32Array] 82812 1 6 [object Uint32Array] 82912 1 7 [object Uint32Array] 5455565758595a5b5c5d5e5f83012 2 0 [object Uint32Array] 5c5d5e5f83112 2 1 [object Uint32Array] 83212 2 2 [object Uint32Array] 83312 2 3 [object Uint32Array] 83412 2 4 [object Uint32Array] 83512 2 5 [object Uint32Array] 83612 2 6 [object Uint32Array] 83712 2 7 [object Uint32Array] 5c5d5e5f83812 3 0 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f83912 3 1 [object Uint32Array] 404142434445464748494a4b4c4d4e4f5051525384012 3 2 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b84112 3 3 [object Uint32Array] 84212 3 4 [object Uint32Array] 4041424384312 3 5 [object Uint32Array] 404142434445464784412 3 6 [object Uint32Array] 404142434445464748494a4b84512 3 7 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f84612 4 0 [object Uint32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f84712 4 1 [object Uint32Array] 4445464748494a4b4c4d4e4f5051525384812 4 2 [object Uint32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b84912 4 3 [object Uint32Array] 85012 4 4 [object Uint32Array] 85112 4 5 [object Uint32Array] 4445464785212 4 6 [object Uint32Array] 4445464748494a4b85312 4 7 [object Uint32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f85412 5 0 [object Uint32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f85512 5 1 [object Uint32Array] 48494a4b4c4d4e4f5051525385612 5 2 [object Uint32Array] 48494a4b4c4d4e4f505152535455565758595a5b85712 5 3 [object Uint32Array] 85812 5 4 [object Uint32Array] 85912 5 5 [object Uint32Array] 86012 5 6 [object Uint32Array] 48494a4b86112 5 7 [object Uint32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f86212 6 0 [object Uint32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f86312 6 1 [object Uint32Array] 4c4d4e4f5051525386412 6 2 [object Uint32Array] 4c4d4e4f505152535455565758595a5b86512 6 3 [object Uint32Array] 86612 6 4 [object Uint32Array] 86712 6 5 [object Uint32Array] 86812 6 6 [object Uint32Array] 86912 6 7 [object Uint32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f87012 7 0 [object Uint32Array] 87112 7 1 [object Uint32Array] 87212 7 2 [object Uint32Array] 87312 7 3 [object Uint32Array] 87412 7 4 [object Uint32Array] 87512 7 5 [object Uint32Array] 87612 7 6 [object Uint32Array] 87712 7 7 [object Uint32Array] 87813 0 0 [object Uint32Array] 4c4d4e4f505152535455565758595a5b87913 0 1 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88013 0 2 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88113 0 3 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88213 0 4 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88313 0 5 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88413 0 6 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88513 0 7 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88613 1 0 [object Uint32Array] 505152535455565758595a5b88713 1 1 [object Uint32Array] 88813 1 2 [object Uint32Array] 505152535455565788913 1 3 [object Uint32Array] 89013 1 4 [object Uint32Array] 89113 1 5 [object Uint32Array] 5051525389213 1 6 [object Uint32Array] 505152535455565789313 1 7 [object Uint32Array] 505152535455565758595a5b89413 2 0 [object Uint32Array] 58595a5b89513 2 1 [object Uint32Array] 89613 2 2 [object Uint32Array] 89713 2 3 [object Uint32Array] 89813 2 4 [object Uint32Array] 89913 2 5 [object Uint32Array] 90013 2 6 [object Uint32Array] 90113 2 7 [object Uint32Array] 58595a5b90213 3 0 [object Uint32Array] 4c4d4e4f505152535455565758595a5b90313 3 1 [object Uint32Array] 4c4d4e4f90413 3 2 [object Uint32Array] 4c4d4e4f505152535455565790513 3 3 [object Uint32Array] 90613 3 4 [object Uint32Array] 4c4d4e4f90713 3 5 [object Uint32Array] 4c4d4e4f5051525390813 3 6 [object Uint32Array] 4c4d4e4f505152535455565790913 3 7 [object Uint32Array] 4c4d4e4f505152535455565758595a5b91013 4 0 [object Uint32Array] 505152535455565758595a5b91113 4 1 [object Uint32Array] 91213 4 2 [object Uint32Array] 505152535455565791313 4 3 [object Uint32Array] 91413 4 4 [object Uint32Array] 91513 4 5 [object Uint32Array] 5051525391613 4 6 [object Uint32Array] 505152535455565791713 4 7 [object Uint32Array] 505152535455565758595a5b91813 5 0 [object Uint32Array] 5455565758595a5b91913 5 1 [object Uint32Array] 92013 5 2 [object Uint32Array] 5455565792113 5 3 [object Uint32Array] 92213 5 4 [object Uint32Array] 92313 5 5 [object Uint32Array] 92413 5 6 [object Uint32Array] 5455565792513 5 7 [object Uint32Array] 5455565758595a5b92613 6 0 [object Uint32Array] 58595a5b92713 6 1 [object Uint32Array] 92813 6 2 [object Uint32Array] 92913 6 3 [object Uint32Array] 93013 6 4 [object Uint32Array] 93113 6 5 [object Uint32Array] 93213 6 6 [object Uint32Array] 93313 6 7 [object Uint32Array] 58595a5b93413 7 0 [object Uint32Array] 93513 7 1 [object Uint32Array] 93613 7 2 [object Uint32Array] 93713 7 3 [object Uint32Array] 93813 7 4 [object Uint32Array] 93913 7 5 [object Uint32Array] 94013 7 6 [object Uint32Array] 94113 7 7 [object Uint32Array] 94214 0 0 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94314 0 1 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94414 0 2 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94514 0 3 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94614 0 4 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94714 0 5 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94814 0 6 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94914 0 7 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f95014 1 0 [object Float32Array] 5455565758595a5b5c5d5e5f95114 1 1 [object Float32Array] 95214 1 2 [object Float32Array] 5455565758595a5b95314 1 3 [object Float32Array] 95414 1 4 [object Float32Array] 95514 1 5 [object Float32Array] 95614 1 6 [object Float32Array] 95714 1 7 [object Float32Array] 5455565758595a5b5c5d5e5f95814 2 0 [object Float32Array] 5c5d5e5f95914 2 1 [object Float32Array] 96014 2 2 [object Float32Array] 96114 2 3 [object Float32Array] 96214 2 4 [object Float32Array] 96314 2 5 [object Float32Array] 96414 2 6 [object Float32Array] 96514 2 7 [object Float32Array] 5c5d5e5f96614 3 0 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f96714 3 1 [object Float32Array] 404142434445464748494a4b4c4d4e4f5051525396814 3 2 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b96914 3 3 [object Float32Array] 97014 3 4 [object Float32Array] 4041424397114 3 5 [object Float32Array] 404142434445464797214 3 6 [object Float32Array] 404142434445464748494a4b97314 3 7 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f97414 4 0 [object Float32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f97514 4 1 [object Float32Array] 4445464748494a4b4c4d4e4f5051525397614 4 2 [object Float32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b97714 4 3 [object Float32Array] 97814 4 4 [object Float32Array] 97914 4 5 [object Float32Array] 4445464798014 4 6 [object Float32Array] 4445464748494a4b98114 4 7 [object Float32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f98214 5 0 [object Float32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f98314 5 1 [object Float32Array] 48494a4b4c4d4e4f5051525398414 5 2 [object Float32Array] 48494a4b4c4d4e4f505152535455565758595a5b98514 5 3 [object Float32Array] 98614 5 4 [object Float32Array] 98714 5 5 [object Float32Array] 98814 5 6 [object Float32Array] 48494a4b98914 5 7 [object Float32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f99014 6 0 [object Float32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f99114 6 1 [object Float32Array] 4c4d4e4f5051525399214 6 2 [object Float32Array] 4c4d4e4f505152535455565758595a5b99314 6 3 [object Float32Array] 99414 6 4 [object Float32Array] 99514 6 5 [object Float32Array] 99614 6 6 [object Float32Array] 99714 6 7 [object Float32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f99814 7 0 [object Float32Array] 99914 7 1 [object Float32Array] 100014 7 2 [object Float32Array] 100114 7 3 [object Float32Array] 100214 7 4 [object Float32Array] 100314 7 5 [object Float32Array] 100414 7 6 [object Float32Array] 100514 7 7 [object Float32Array] 100615 0 0 [object Float32Array] 4445464748494a4b4c4d4e4f50515253100715 0 1 [object Float32Array] 4445464748494a4b4c4d4e4f50515253100815 0 2 [object Float32Array] 4445464748494a4b4c4d4e4f50515253100915 0 3 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101015 0 4 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101115 0 5 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101215 0 6 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101315 0 7 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101415 1 0 [object Float32Array] 48494a4b4c4d4e4f50515253101515 1 1 [object Float32Array] 101615 1 2 [object Float32Array] 48494a4b4c4d4e4f101715 1 3 [object Float32Array] 101815 1 4 [object Float32Array] 101915 1 5 [object Float32Array] 48494a4b102015 1 6 [object Float32Array] 48494a4b4c4d4e4f102115 1 7 [object Float32Array] 48494a4b4c4d4e4f50515253102215 2 0 [object Float32Array] 50515253102315 2 1 [object Float32Array] 102415 2 2 [object Float32Array] 102515 2 3 [object Float32Array] 102615 2 4 [object Float32Array] 102715 2 5 [object Float32Array] 102815 2 6 [object Float32Array] 102915 2 7 [object Float32Array] 50515253103015 3 0 [object Float32Array] 4445464748494a4b4c4d4e4f50515253103115 3 1 [object Float32Array] 44454647103215 3 2 [object Float32Array] 4445464748494a4b4c4d4e4f103315 3 3 [object Float32Array] 103415 3 4 [object Float32Array] 44454647103515 3 5 [object Float32Array] 4445464748494a4b103615 3 6 [object Float32Array] 4445464748494a4b4c4d4e4f103715 3 7 [object Float32Array] 4445464748494a4b4c4d4e4f50515253103815 4 0 [object Float32Array] 48494a4b4c4d4e4f50515253103915 4 1 [object Float32Array] 104015 4 2 [object Float32Array] 48494a4b4c4d4e4f104115 4 3 [object Float32Array] 104215 4 4 [object Float32Array] 104315 4 5 [object Float32Array] 48494a4b104415 4 6 [object Float32Array] 48494a4b4c4d4e4f104515 4 7 [object Float32Array] 48494a4b4c4d4e4f50515253104615 5 0 [object Float32Array] 4c4d4e4f50515253104715 5 1 [object Float32Array] 104815 5 2 [object Float32Array] 4c4d4e4f104915 5 3 [object Float32Array] 105015 5 4 [object Float32Array] 105115 5 5 [object Float32Array] 105215 5 6 [object Float32Array] 4c4d4e4f105315 5 7 [object Float32Array] 4c4d4e4f50515253105415 6 0 [object Float32Array] 50515253105515 6 1 [object Float32Array] 105615 6 2 [object Float32Array] 105715 6 3 [object Float32Array] 105815 6 4 [object Float32Array] 105915 6 5 [object Float32Array] 106015 6 6 [object Float32Array] 106115 6 7 [object Float32Array] 50515253106215 7 0 [object Float32Array] 106315 7 1 [object Float32Array] 106415 7 2 [object Float32Array] 106515 7 3 [object Float32Array] 106615 7 4 [object Float32Array] 106715 7 5 [object Float32Array] 106815 7 6 [object Float32Array] 106915 7 7 [object Float32Array] 107016 0 0 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107116 0 1 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107216 0 2 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107316 0 3 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107416 0 4 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107516 0 5 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107616 0 6 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107716 0 7 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107816 1 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107916 1 1 [object Float64Array] 108016 1 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657108116 1 3 [object Float64Array] 108216 1 4 [object Float64Array] 108316 1 5 [object Float64Array] 48494a4b4c4d4e4f108416 1 6 [object Float64Array] 48494a4b4c4d4e4f5051525354555657108516 1 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f108616 2 0 [object Float64Array] 58595a5b5c5d5e5f108716 2 1 [object Float64Array] 108816 2 2 [object Float64Array] 108916 2 3 [object Float64Array] 109016 2 4 [object Float64Array] 109116 2 5 [object Float64Array] 109216 2 6 [object Float64Array] 109316 2 7 [object Float64Array] 58595a5b5c5d5e5f109416 3 0 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f109516 3 1 [object Float64Array] 4041424344454647109616 3 2 [object Float64Array] 404142434445464748494a4b4c4d4e4f5051525354555657109716 3 3 [object Float64Array] 109816 3 4 [object Float64Array] 4041424344454647109916 3 5 [object Float64Array] 404142434445464748494a4b4c4d4e4f110016 3 6 [object Float64Array] 404142434445464748494a4b4c4d4e4f5051525354555657110116 3 7 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f110216 4 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f110316 4 1 [object Float64Array] 110416 4 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657110516 4 3 [object Float64Array] 110616 4 4 [object Float64Array] 110716 4 5 [object Float64Array] 48494a4b4c4d4e4f110816 4 6 [object Float64Array] 48494a4b4c4d4e4f5051525354555657110916 4 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f111016 5 0 [object Float64Array] 505152535455565758595a5b5c5d5e5f111116 5 1 [object Float64Array] 111216 5 2 [object Float64Array] 5051525354555657111316 5 3 [object Float64Array] 111416 5 4 [object Float64Array] 111516 5 5 [object Float64Array] 111616 5 6 [object Float64Array] 5051525354555657111716 5 7 [object Float64Array] 505152535455565758595a5b5c5d5e5f111816 6 0 [object Float64Array] 58595a5b5c5d5e5f111916 6 1 [object Float64Array] 112016 6 2 [object Float64Array] 112116 6 3 [object Float64Array] 112216 6 4 [object Float64Array] 112316 6 5 [object Float64Array] 112416 6 6 [object Float64Array] 112516 6 7 [object Float64Array] 58595a5b5c5d5e5f112616 7 0 [object Float64Array] 112716 7 1 [object Float64Array] 112816 7 2 [object Float64Array] 112916 7 3 [object Float64Array] 113016 7 4 [object Float64Array] 113116 7 5 [object Float64Array] 113216 7 6 [object Float64Array] 113316 7 7 [object Float64Array] 113417 0 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113517 0 1 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113617 0 2 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113717 0 3 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113817 0 4 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113917 0 5 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114017 0 6 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114117 0 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114217 1 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114317 1 1 [object Float64Array] 114417 1 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657114517 1 3 [object Float64Array] 114617 1 4 [object Float64Array] 48494a4b4c4d4e4f114717 1 5 [object Float64Array] 48494a4b4c4d4e4f5051525354555657114817 1 6 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114917 1 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f115017 2 0 [object Float64Array] 58595a5b5c5d5e5f115117 2 1 [object Float64Array] 115217 2 2 [object Float64Array] 115317 2 3 [object Float64Array] 115417 2 4 [object Float64Array] 115517 2 5 [object Float64Array] 115617 2 6 [object Float64Array] 58595a5b5c5d5e5f115717 2 7 [object Float64Array] 58595a5b5c5d5e5f115817 3 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f115917 3 1 [object Float64Array] 116017 3 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657116117 3 3 [object Float64Array] 116217 3 4 [object Float64Array] 48494a4b4c4d4e4f116317 3 5 [object Float64Array] 48494a4b4c4d4e4f5051525354555657116417 3 6 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f116517 3 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f116617 4 0 [object Float64Array] 505152535455565758595a5b5c5d5e5f116717 4 1 [object Float64Array] 116817 4 2 [object Float64Array] 5051525354555657116917 4 3 [object Float64Array] 117017 4 4 [object Float64Array] 117117 4 5 [object Float64Array] 5051525354555657117217 4 6 [object Float64Array] 505152535455565758595a5b5c5d5e5f117317 4 7 [object Float64Array] 505152535455565758595a5b5c5d5e5f117417 5 0 [object Float64Array] 58595a5b5c5d5e5f117517 5 1 [object Float64Array] 117617 5 2 [object Float64Array] 117717 5 3 [object Float64Array] 117817 5 4 [object Float64Array] 117917 5 5 [object Float64Array] 118017 5 6 [object Float64Array] 58595a5b5c5d5e5f118117 5 7 [object Float64Array] 58595a5b5c5d5e5f118217 6 0 [object Float64Array] 118317 6 1 [object Float64Array] 118417 6 2 [object Float64Array] 118517 6 3 [object Float64Array] 118617 6 4 [object Float64Array] 118717 6 5 [object Float64Array] 118817 6 6 [object Float64Array] 118917 6 7 [object Float64Array] 119017 7 0 [object Float64Array] 119117 7 1 [object Float64Array] 119217 7 2 [object Float64Array] 119317 7 3 [object Float64Array] 119417 7 4 [object Float64Array] 119517 7 5 [object Float64Array] 119617 7 6 [object Float64Array] 119717 7 7 [object Float64Array] 1198===*/1199function subarrayBruteforceTest() {1200 var buf = new ArrayBuffer(32);1201 var tmp;1202 var i;1203 tmp = new Uint8Array(buf);1204 for (i = 0; i < tmp.length; i++) {1205 tmp[i] = 0x40 + i;1206 }1207 // Include both 1:1 mapped views and offsetted views, we want to test1208 // both with subarray().1209 var views = [1210 new Int8Array(buf),1211 new Int8Array(buf, 5, 13),1212 new Uint8Array(buf),1213 new Uint8Array(buf, 5, 13),1214 new Uint8ClampedArray(buf),1215 new Uint8ClampedArray(buf, 5, 13),1216 new Int16Array(buf),1217 new Int16Array(buf, 4, 8),1218 new Uint16Array(buf),1219 new Uint16Array(buf, 12, 8),1220 new Int32Array(buf),1221 new Int32Array(buf, 4, 4),1222 new Uint32Array(buf),1223 new Uint32Array(buf, 12, 4),1224 new Float32Array(buf),1225 new Float32Array(buf, 4, 4),1226 new Float64Array(buf),1227 new Float64Array(buf, 8, 3),...

Full Screen

Full Screen

int8array.js

Source:int8array.js Github

copy

Full Screen

1//-------------------------------------------------------------------------------------------------------2// Copyright (C) Microsoft. All rights reserved.3// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.4//-------------------------------------------------------------------------------------------------------56WScript.LoadScriptFile("util.js");78function oneTest(a)9{1011 a[5] = 10;12 a[1] = 1.5;13 a[2]= 0x80;14 a[-1] = 2;15 a["-3"] = 4;16 WScript.Echo(a[5]);17 if (Object.getOwnPropertyDescriptor(a, 100000) != undefined) {18 WScript.Echo('FAIL');19 }2021 try {22 var pro = Int8Array.prototype;23 WScript.Echo(pro.toString());2425 WScript.Echo("prototype is");26 printObj(pro);27 } catch(e) {28 WScript.Echo("constructor is");29 printObj(Int8Array);30 }3132 WScript.Echo("object is");33 printObj(a);3435 a[20] =20;36 a.foo ='bar';37 WScript.Echo("object after expando is");38 printObj(a);39 WScript.Echo("");40}4142WScript.Echo("test1");43var test1 = new Int8Array(9);44oneTest(test1);45WScript.Echo("test2");46var test2 = new Int8Array(0);47oneTest(test2);4849WScript.Echo("test3");50var arrayBuffer = new ArrayBuffer(30);51var test3 = new Int8Array(arrayBuffer);52oneTest(test3);5354WScript.Echo("test4");55var test4 = new Int8Array(arrayBuffer, 3);56oneTest(test4);5758WScript.Echo("test5");59var test5 = new Int8Array(arrayBuffer, 3, 6);60oneTest(test5);6162WScript.Echo("test6");63var mybuffer = test1.buffer;64WScript.Echo(mybuffer);65var test6 = new Int8Array(mybuffer);66oneTest(test6);6768WScript.Echo("test7");69var test7 = new Int8Array(test1.buffer, 3);70oneTest(test7);7172WScript.Echo("test8");73var test8 = new Int8Array(test1.buffer, 2, 6);74oneTest(test8);7576var arr = [1,2,3,4,5,6,7,8,9,10,11,12];7778WScript.Echo("test9");79var test9 = new Int8Array(arr);80oneTest(test9);8182WScript.Echo("test9.1");83printObj(test1);84test9.set(test1);85oneTest(test9);8687WScript.Echo("test9.2");88test9.set(test5);89oneTest(test9);9091WScript.Echo("test10");92var test10 = new Int8Array({});93oneTest(test10);9495WScript.Echo("test11");96var test11 = new Int8Array('abcdefg');97oneTest(test11);9899WScript.Echo("test11.1");100var test111 = new Int8Array(new String('abcdefg'));101oneTest(test111);102103WScript.Echo("test12");104var test12 = new Int8Array(0);105oneTest(test12);106107WScript.Echo("test13");108var test13 = new Int8Array(arrayBuffer, 0);109oneTest(test13);110111WScript.Echo("test14");112try113{114 var test14 = new Int8Array(arrayBuffer, 0, 0);115 oneTest(test14);116}117catch(e)118{119 WScript.Echo("succeed with catching" + e);120}121122WScript.Echo("test15");123try124{125 var test15 = new Int8Array(arrayBuffer, 0, 40);126 oneTest(test15);127}128catch(e)129{130 WScript.Echo("succeed with catching" + e);131}132133WScript.Echo("test16");134try135{136 var test16 = new Int8Array(arrayBuffer, 40, 4);137 oneTest(test16);138}139catch(e)140{141 WScript.Echo("succeed with catching" + e);142}143144printObj(test5);145146WScript.Echo("test17");147var test17 = test5.subarray(0);148printObj(test17);149150WScript.Echo("test18");151var test18 = test5.subarray(4);152printObj(test18);153154WScript.Echo("test19");155var test19 = test5.subarray(0, 3);156printObj(test19);157158WScript.Echo("test20");159var test20 = test5.subarray(-3, -1);160printObj(test20);161162WScript.Echo("test21");163var test21 = test5.subarray(0, -2);164printObj(test21);165166WScript.Echo("test22");167var test22 = test5.subarray(-100, -100);168printObj(test22);169170WScript.Echo("test23");171var test23 = test5.subarray(1);172printObj(test23);173174WScript.Echo("test24");175var test24 = test5.subarray(1, 3);176printObj(test24);177178var arr;179print("test23: constructor");180var validSizeValues = ["abc",181 "123",182 undefined,183 new Object(),184 new Number(NaN),185];186for (var i = 0; i < validSizeValues.length; i++) {187 var size = validSizeValues[i];188 print("size is" + size);189 verifyNoThrow(function(){arr = new Int8Array(size);});190 printObj(arr);191}192193var invalidSizeValues = [194 -1,195 Infinity,196 -Infinity,197];198199for (var i = 0; i < invalidSizeValues.length; i++) {200 var size = invalidSizeValues[i];201 verifyThrow(function(){arr = new Int8Array(size);});202}203204WScript.Echo("test24");205WScript.Echo(Int8Array.prototype[10]);206WScript.Echo(Int8Array.prototype[-1]);207WScript.Echo(Int8Array.prototype[2]);208Int8Array.prototype[2] = 10;209WScript.Echo(Int8Array.prototype[2]);210211WScript.Echo("test25");212testSetWithInt(-1, 2, new Int8Array(3), new Int8Array(3), new Int8Array(3));213testSetWithFloat(-1, 2, new Int8Array(3), new Int8Array(3), new Int8Array(3));214testSetWithObj(-1, 2, new Int8Array(3), new Int8Array(3), new Int8Array(3));215216WScript.Echo("test25 JIT");217testSetWithInt(-1, 2, new Int8Array(3), new Int8Array(3), new Int8Array(3));218testSetWithFloat(-1, 2, new Int8Array(3), new Int8Array(3), new Int8Array(3));219testSetWithObj(-1, 2, new Int8Array(3), new Int8Array(3), new Int8Array(3));220221WScript.Echo("test26");222testIndexValueForSet(new Int8Array(5));223WScript.Echo("test26 JIT"); ...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1const {fc} = require('fast-check');2const {int8Array} = require('fast-check/lib/arbitrary/int8Array');3const {int32Array} = require('fast-check/lib/arbitrary/int32Array');4const {int64Array} = require('fast-check/lib/arbitrary/int64Array');5const {uint8Array} = require('fast-check/lib/arbitrary/uint8Array');6const {uint32Array} = require('fast-check/lib/arbitrary/uint32Array');7const {uint64Array} = require('fast-check/lib/arbitrary/uint64Array');8const {float32Array} = require('fast-check/lib/arbitrary/float32Array');9const {float64Array} = require('fast-check/lib/arbitrary/float64Array');10const {uint8ClampedArray} = require('fast-check/lib/arbitrary/uint8ClampedArray');11const {array} = require('fast-check/lib/arbitrary/array');12const {tuple} = require('fast-check/lib/arbitrary/tuple');13const {record} = require('fast-check/lib/arbitrary/record');14const {string} = require('fast-check/lib/arbitrary/string');15const {integer} = require('fast-check/lib/arbitrary/integer');16const {oneof} = require('fast-check/lib/arbitrary/oneof');17const {dictionary} = require('fast-check/lib/arbitrary/dictionary');18const {option} = require('fast-check/lib/arbitrary/option');19const {set} = require('fast-check/lib/arbitrary/set');20const {map} = require('fast-check/lib/arbitrary/map');21const {date} = require('fast-check/lib/arbitrary/date');22const {json} = require('fast-check/lib/arbitrary/json');23const {anyJson} = require('fast-check/lib/arbitrary/anyJson');24const {unicodeJson} = require('fast-check/lib/arbitrary/unicodeJson');25const {unicodeJsonObject} = require('fast-check/lib/arbitrary/unicodeJsonObject');26const {unicodeJsonArray} = require('fast-check/lib/arbitrary/unicodeJsonArray');27const {unicodeJsonString} = require('fast-check/lib/arbitrary/unicodeJsonString');28const {unicodeJsonNumber} = require('fast-check/lib/arbitrary/unicodeJsonNumber');29const {unicodeJsonBoolean} = require('fast-check/lib/arbitrary/unicodeJsonBoolean');30const {unicodeJsonNull} = require('fast-check/lib/ar

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const int8Array = fc.int8Array();3const shrinkable = int8Array.generate(fc.random());4console.log(shrinkable.value);5console.log(shrinkable.shrink().value);6console.log(shrinkable.shrink().shrink().value);7console.log(shrinkable.shrink().shrink().shrink().value);8console.log(shrinkable.shrink().shrink().shrink().shrink().value);9const fc = require('fast-check');10const int8Array = fc.int8Array();11const shrinkable = int8Array.generate(fc.random());12console.log(shrinkable.value);13console.log(shrinkable.shrink().value);14console.log(shrinkable.shrink().shrink().value);15console.log(shrinkable.shrink().shrink().shrink().value);16console.log(shrinkable.shrink().shrink().shrink().shrink().value);17const fc = require('fast-check');18const int8Array = fc.int8Array();19const shrinkable = int8Array.generate(fc.random());20console.log(shrinkable.value);21console.log(shrinkable.shrink().value);22console.log(shrinkable.shrink().shrink().value);23console.log(shrinkable.shrink().shrink().shrink().value);24console.log(shrinkable.shrink().shrink().shrink().shrink().value);25const fc = require('fast-check');26const int8Array = fc.int8Array();27const shrinkable = int8Array.generate(fc.random());28console.log(shrinkable.value);29console.log(shrinkable.shrink().value);30console.log(shrinkable.shrink().shrink().value);31console.log(shrinkable.shrink().shrink().shrink().value);32console.log(shrinkable.shrink().shrink().shrink().shrink().value);33const fc = require('fast-check');34const int8Array = fc.int8Array();35const shrinkable = int8Array.generate(fc.random());36console.log(shrinkable

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const int8Array = require('fast-check/lib/arbitrary/int8Array.js');3fc.assert(fc.property(int8Array(), (arr) => {4 return arr.length > 0;5}));6const fc = require('fast-check');7const int8Array = require('fast-check/lib/arbitrary/int8Array.js');8fc.assert(fc.property(int8Array(), (arr) => {9 return arr.length > 0;10}));11const fc = require('fast-check');12const int8Array = require('fast-check/lib/arbitrary/int8Array.js');13fc.assert(fc.property(int8Array(), (arr) => {14 return arr.length > 0;15}));16const fc = require('fast-check');17const int8Array = require('fast-check/lib/arbitrary/int8Array.js');18fc.assert(fc.property(int8Array(), (arr) => {19 return arr.length > 0;20}));21const fc = require('fast-check');22const int8Array = require('fast-check/lib/arbitrary/int8Array.js');23fc.assert(fc.property(int8Array(), (arr) => {24 return arr.length > 0;25}));26const fc = require('fast-check');27const int8Array = require('fast-check/lib/arbitrary/int8Array.js');28fc.assert(fc.property(int8Array(), (arr) => {29 return arr.length > 0;30}));31const fc = require('fast-check');32const int8Array = require('fast-check/lib/arbitrary/int8Array.js');33fc.assert(fc.property(int8Array(), (arr) => {34 return arr.length > 0;35}));36const fc = require('fast-check');37const int8Array = require('

Full Screen

Using AI Code Generation

copy

Full Screen

1const {check} = require('fast-check');2check(3 [check.arrayOf(check.int8Array()), check.arrayOf(check.int8Array())],4 (a, b) => {5 return a.length === b.length;6 }7);8const {check} = require('fast-check');9check(10 [check.arrayOf(check.int8Array()), check.arrayOf(check.int8Array())],11 (a, b) => {12 return a.length === b.length;13 }14);15const {check} = require('fast-check');16check(17 [check.arrayOf(check.int8Array()), check.arrayOf(check.int8Array())],18 (a, b) => {19 return a.length === b.length;20 }21);22const {check} = require('fast-check');23check(24 [check.arrayOf(check.int8Array()), check.arrayOf(check.int8Array())],25 (a, b) => {26 return a.length === b.length;27 }28);29const {check} = require('fast-check');30check(31 [check.arrayOf(check.int8Array()), check.arrayOf(check.int8Array())],32 (a, b) => {33 return a.length === b.length;34 }35);36const {check} = require('fast-check');37check(38 [check.arrayOf(check.int8Array()), check.arrayOf(check.int8Array())],39 (a, b) => {40 return a.length === b.length;41 }42);43const {check} = require('fast-check');44check(45 [check.arrayOf(check.int8Array()), check.arrayOf(check.int8Array())],46 (a, b) => {47 return a.length === b.length;48 }49);50const {check} = require('fast-check');51check(

Full Screen

Using AI Code Generation

copy

Full Screen

1import { int8Array } from 'fast-check';2const int8ArrayArb = int8Array();3int8ArrayArb.generate(mrng => mrng.nextInt()).then(console.log);4import { int16Array } from 'fast-check';5const int16ArrayArb = int16Array();6int16ArrayArb.generate(mrng => mrng.nextInt()).then(console.log);7import { int32Array } from 'fast-check';8const int32ArrayArb = int32Array();9int32ArrayArb.generate(mrng => mrng.nextInt()).then(console.log);10import { uint8Array } from 'fast-check';11const uint8ArrayArb = uint8Array();12uint8ArrayArb.generate(mrng => mrng.nextInt()).then(console.log);13import { uint16Array } from 'fast-check';14const uint16ArrayArb = uint16Array();15uint16ArrayArb.generate(mrng => mrng.nextInt()).then(console.log);16import { uint32Array } from 'fast-check';17const uint32ArrayArb = uint32Array();18uint32ArrayArb.generate(mrng => mrng.nextInt()).then(console.log);19import { float32Array } from 'fast-check';20const float32ArrayArb = float32Array();21float32ArrayArb.generate(mrng => mrng.nextInt()).then(console.log);

Full Screen

Using AI Code Generation

copy

Full Screen

1const int8Array = require('fast-check-int8array');2const fc = require('fast-check');3const int8ArrayArb = int8Array({ minLength: 1, maxLength: 5 });4fc.assert(fc.property(int8ArrayArb, (v) => v.length >= 1 && v.length <= 5));5const int8Array = require('fast-check-int8array');6const int8ArrayArb = int8Array.default({ minLength: 1, maxLength: 5 });7const int8Array = require('fast-check-int8array');8const int8ArrayArb = int8Array.default({ minLength: 1, maxLength: 5 });9SyntaxError: Cannot use import statement outside a module10const int8Array = require('fast-check-int8array');11const int8ArrayArb = int8Array.default({ minLength: 1, maxLength: 5 });12const int8Array = require('fast-check-int8array');13const int8ArrayArb = int8Array.default({ minLength: 1, maxLength: 5 });14SyntaxError: Cannot use import statement outside a module15const int8Array = require('fast-check-int8array');16const int8ArrayArb = int8Array.default({ minLength: 1, maxLength: 5 });17const int8Array = require('fast-check-int8array');18const int8ArrayArb = int8Array.default({

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const { int8Array } = require('fast-check');3const int8ArrayArb = int8Array({maxLength: 20});4fc.assert(fc.property(int8ArrayArb, (a) => {5 console.log(a);6 return true;7}));8const fc = require('fast-check');9const { int8Array } = require('fast-check');10const int8ArrayArb = int8Array({maxLength: 20});11fc.assert(fc.property(int8ArrayArb, (a) => {12 console.log(a);13 return true;14}));15const fc = require('fast-check');16const { int8Array } = require('fast-check');17const int8ArrayArb = fc.int8Array({maxLength: 20});18fc.assert(fc.property(int8ArrayArb, (a) => {19 console.log(a);20 return true;21}));22const fc = require('fast-check');23const { int8Array } = require('fast-check');24const int8ArrayArb = fc.int8Array({maxLength: 20});25fc.assert(fc.property(int8ArrayArb, (a) => {26 console.log(a);27 return true;28}));

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const assert = require('assert');3const int8Array = fc.array(fc.integer(0, 255), 20, 20);4const sum = (arr) => arr.reduce((a, b) => a + b, 0);5fc.assert(6 fc.property(int8Array, (arr) => {7 assert(sum(arr) >= 0);8 })9);

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run fast-check-monorepo automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful