File size: 123,474 Bytes
e918224 fc99c39 e918224 f277c18 e918224 f277c18 e918224 | 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 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 | ---
dataset_info:
features:
- name: image
dtype: image
- name: SSSIDECX3
dtype: float64
- name: SSSIDECX2
dtype: float64
- name: SSSIDECX1
dtype: float64
- name: SSSIDECY2
dtype: float64
- name: SSSIDECY1
dtype: float64
- name: STEMBENDS
dtype: float64
- name: FRONTROTORBOLTS
dtype: float64
- name: Shoe up angle
dtype: float64
- name: Down tube front diameter
dtype: float64
- name: LRTHICK
dtype: float64
- name: REARDiscAdaptOnPost
dtype: float64
- name: Shoe sideways
dtype: float64
- name: Front fender width
dtype: float64
- name: CHAINGUARDC
dtype: float64
- name: CHAINGUARDB
dtype: float64
- name: CHAINGUARDA
dtype: float64
- name: Seatpost AERO
dtype: float64
- name: LRShiftY
dtype: float64
- name: LRShiftX
dtype: float64
- name: Dropout joint 11
dtype: float64
- name: Dropout joint 10
dtype: float64
- name: Dropout joint 15
dtype: float64
- name: Dropout joint 14
dtype: float64
- name: Dropout joint 13
dtype: float64
- name: Dropout joint 12
dtype: float64
- name: Dropout joint 19
dtype: float64
- name: Dropout joint 18
dtype: float64
- name: Dropout joint 17
dtype: float64
- name: Dropout joint 16
dtype: float64
- name: CSSIDE2SnSlength
dtype: float64
- name: Dropout joint 22
dtype: float64
- name: Dropout joint 21
dtype: float64
- name: Dropout joint 20
dtype: float64
- name: Paint scale
dtype: float64
- name: Dropout joint 26
dtype: float64
- name: Dropout joint 25
dtype: float64
- name: Dropout joint 24
dtype: float64
- name: Dropout joint 23
dtype: float64
- name: nChain stay position on BB
dtype: float64
- name: REARCNTIshiftDX
dtype: float64
- name: LRPANNIERRAD
dtype: float64
- name: HBARRISE
dtype: float64
- name: Down tube rear dia2
dtype: float64
- name: STEM1SnSlength
dtype: float64
- name: Rack s3by
dtype: float64
- name: CORNERSEATSTAYS1
dtype: float64
- name: DOWNTUBE1SnSCheck
dtype: float64
- name: Front fender eyelet angle
dtype: float64
- name: CHAINSTAYSL10
dtype: float64
- name: CHAINSTAYSL11
dtype: float64
- name: USEgearbox
dtype: float64
- name: CHAINSTAYSL21
dtype: float64
- name: CHAINSTAYSL20
dtype: float64
- name: nSSAUXC_ang1
dtype: float64
- name: nSSAUXC_ang2
dtype: float64
- name: nSSAUXC_ang3
dtype: float64
- name: Top tube diameter
dtype: float64
- name: FRONTRack height
dtype: float64
- name: FRONTRack s1tx
dtype: float64
- name: Lower stack height
dtype: float64
- name: TOPTUBEPBrad
dtype: float64
- name: DOWNTUBEPBrad
dtype: float64
- name: nSSAUXCXr1
dtype: float64
- name: nSSAUXCXr2
dtype: float64
- name: Dropout ADJSL
dtype: float64
- name: REARROTOR_INCLUDE
dtype: float64
- name: STEM2SnSshift
dtype: float64
- name: Down tube front dia2
dtype: float64
- name: REARROTORTHICK
dtype: float64
- name: FDDISTC
dtype: float64
- name: nCSAUXCY1
dtype: float64
- name: nCSAUXCY3
dtype: float64
- name: nCSAUXCY2
dtype: float64
- name: CSAUXCY1
dtype: float64
- name: FRONTCARGOHEIGHT
dtype: float64
- name: CSAUXCY2
dtype: float64
- name: nCSAUXCX3
dtype: float64
- name: SEATTUBECrad3
dtype: float64
- name: SEATTUBECrad1
dtype: float64
- name: SEATTUBECrad2
dtype: float64
- name: SEATTUBE1SnSdia1
dtype: float64
- name: SEATTUBE1SnSdia2
dtype: float64
- name: nCSAUXCX2
dtype: float64
- name: nCSAUXCX1
dtype: float64
- name: Rack s2tx
dtype: float64
- name: FDDISTD
dtype: float64
- name: CSAUXCX2
dtype: float64
- name: CSAUXCX1
dtype: float64
- name: CSAUXCX3
dtype: float64
- name: CSSIDE1SnSlength
dtype: float64
- name: SPIDER_ARM_WIDTH
dtype: float64
- name: FDDIST
dtype: float64
- name: Down tube rear diameter
dtype: float64
- name: FRONTRack s1by
dtype: float64
- name: Dim E TextField
dtype: float64
- name: nSeat stay Curv Check
dtype: float64
- name: Front Fender clearance
dtype: float64
- name: Rack s3bby
dtype: float64
- name: Rack HOOK3
dtype: float64
- name: Rack HOOK1
dtype: float64
- name: LRPANNIERShiftY
dtype: float64
- name: LRPANNIERShiftX
dtype: float64
- name: FRONTROTORANGLE_ONE
dtype: float64
- name: CSSIDEISBENT
dtype: float64
- name: DOWNTUBEPBheight
dtype: float64
- name: ELBOWTHICKNESS
dtype: float64
- name: CORNERFRONTWHEEL1
dtype: float64
- name: CORNERFRONTWHEEL2
dtype: float64
- name: CORNERREARWHEEL1
dtype: float64
- name: Crank width at BB
dtype: float64
- name: BB textfield
dtype: float64
- name: CORNERREARWHEEL2
dtype: float64
- name: Seatpost LEN2
dtype: float64
- name: Top tube angle textfield
dtype: float64
- name: LINKpump2SCHEME
dtype: float64
- name: MtnBar angle
dtype: float64
- name: SEATSTAYholeCheck
dtype: float64
- name: LOOPED_STAYS
dtype: float64
- name: Seat tube front dia2
dtype: float64
- name: CHNG_THICK
dtype: float64
- name: STEPSL1
dtype: float64
- name: STEPSL2
dtype: float64
- name: SPC_Y
dtype: float64
- name: FRONTCARGORAD
dtype: float64
- name: nChain stay back diameter
dtype: float64
- name: Rack s1tx
dtype: float64
- name: Rack angle
dtype: float64
- name: SHOES_aux
dtype: float64
- name: CSSIDE1SnSlen1
dtype: float64
- name: CSSIDE1SnSlen2
dtype: float64
- name: nCSSIDECX2
dtype: float64
- name: nCSSIDECX3
dtype: float64
- name: nCSSIDECX1
dtype: float64
- name: FRONTCALPRV
dtype: float64
- name: FRONTCALPRW
dtype: float64
- name: FRONTCALPRX
dtype: float64
- name: FRONTCALPRY
dtype: float64
- name: HBARALPHA
dtype: float64
- name: Waterbottle boss spacing
dtype: float64
- name: CHEVRONHEADTUBE2B
dtype: float64
- name: nCSSIDECY3
dtype: float64
- name: nCSSIDECY1
dtype: float64
- name: nCSSIDECY2
dtype: float64
- name: CHEVRONHEADTUBE2D
dtype: float64
- name: CHEVRONHEADTUBE2C
dtype: float64
- name: STEM2SnSlen2
dtype: float64
- name: DOWNTUBE2SnSdia1
dtype: float64
- name: DOWNTUBE2SnSdia2
dtype: float64
- name: STEM2SnSlen1
dtype: float64
- name: DOWNTUBE1SnSlen2
dtype: float64
- name: DOWNTUBE1SnSlen1
dtype: float64
- name: Front fender end angle
dtype: float64
- name: Wheel width rear
dtype: float64
- name: CRANK_SPIDER
dtype: float64
- name: SSSIDECXr2
dtype: float64
- name: SSSIDECXr1
dtype: float64
- name: FLANGEDIST_DS front
dtype: float64
- name: SPC_FRONT
dtype: float64
- name: INCLUDE_STRUT3
dtype: float64
- name: INCLUDE_STRUT1
dtype: float64
- name: CHEVRONHEADTUBE2SL
dtype: float64
- name: FOREHEADtoBACKofHEAD
dtype: float64
- name: nSSSIDEC_s2
dtype: float64
- name: nSSSIDEC_s3
dtype: float64
- name: FRONTROTORA
dtype: float64
- name: FRONTROTORB
dtype: float64
- name: FRONTROTORG
dtype: float64
- name: FRONTROTORE
dtype: float64
- name: FRONTROTORF
dtype: float64
- name: FRONTROTORK
dtype: float64
- name: FRONTROTORL
dtype: float64
- name: FRONTROTORJ
dtype: float64
- name: nSSSIDEC_s1
dtype: float64
- name: MTNGRIPDIA
dtype: float64
- name: SPOKE_HOLE_DIA rear
dtype: float64
- name: ANKLETHICKNESS
dtype: float64
- name: Free spaceRIGHT
dtype: float64
- name: Crank length
dtype: float64
- name: Mountain bar sweep
dtype: float64
- name: FRONTRack include
dtype: float64
- name: Rack include
dtype: float64
- name: FRONTPANNIERLENTOP
dtype: float64
- name: Saddle P
dtype: float64
- name: Saddle M
dtype: float64
- name: Seat stay junction4
dtype: float64
- name: Saddle N
dtype: float64
- name: Seat stay junction2
dtype: float64
- name: Saddle K
dtype: float64
- name: Seat stay junction3
dtype: float64
- name: Saddle I
dtype: float64
- name: Seat stay junction0
dtype: float64
- name: Saddle J
dtype: float64
- name: Seat stay junction1
dtype: float64
- name: FRONTRack s3tx
dtype: float64
- name: Saddle R
dtype: float64
- name: Saddle G
dtype: float64
- name: Saddle H
dtype: float64
- name: Saddle E
dtype: float64
- name: Saddle F
dtype: float64
- name: Saddle C
dtype: float64
- name: Saddle D
dtype: float64
- name: Saddle B
dtype: float64
- name: CSSIDECXr2
dtype: float64
- name: CSSIDECXr1
dtype: float64
- name: nSSSIDECrad3
dtype: float64
- name: nSSSIDECrad1
dtype: float64
- name: nSSSIDECrad2
dtype: float64
- name: CHEVRONHEADTUBE2ON
dtype: float64
- name: SPOKE_CIRC_DIA front
dtype: float64
- name: CORNERSEATPOST1
dtype: float64
- name: PANNIERLENTOP
dtype: float64
- name: FRONTRack HOOK3
dtype: float64
- name: SSAUXISBENT
dtype: float64
- name: UPPERARMLENGTH
dtype: float64
- name: LOWERARMLENGTH
dtype: float64
- name: FRONTCARGOShiftY
dtype: float64
- name: FRONTCARGOShiftX
dtype: float64
- name: CORNERFORK1
dtype: float64
- name: CORNERFORK2
dtype: float64
- name: SADDLETIPtoMIDDLE
dtype: float64
- name: SEATSTAYdimpleCheck
dtype: float64
- name: CHAINSTAYholeCheck
dtype: float64
- name: SHIFTonAERO
dtype: float64
- name: CHEVRONHEADTUBE1A
dtype: float64
- name: CHEVRONHEADTUBE1D
dtype: float64
- name: CHEVRONHEADTUBE1C
dtype: float64
- name: STEMVARI
dtype: float64
- name: CHEVRONHEADTUBE1B
dtype: float64
- name: Saddle length
dtype: float64
- name: MTNDROP
dtype: float64
- name: nSSSIDEC_ang2
dtype: float64
- name: nSSSIDEC_ang1
dtype: float64
- name: nSSSIDEC_ang3
dtype: float64
- name: FLANGEDIST_DS rear
dtype: float64
- name: Seat tube length
dtype: float64
- name: TOPTUBECXr3
dtype: float64
- name: TOPTUBECXr2
dtype: float64
- name: DOWNTUBEBENDS
dtype: float64
- name: TOPTUBECXr1
dtype: float64
- name: FRONTRack s3by
dtype: float64
- name: Shoe size
dtype: float64
- name: DOWNTUBE1SnSshift
dtype: float64
- name: CSSIDE2SnSlen2
dtype: float64
- name: CSSIDE2SnSlen1
dtype: float64
- name: STEM2SnSlength
dtype: float64
- name: REARROTOREP
dtype: float64
- name: shifterA2
dtype: float64
- name: SEATSTAYbrdgdia2
dtype: float64
- name: SEATSTAYbrdgdia1
dtype: float64
- name: BELT_PITCH
dtype: float64
- name: Dropout spacing
dtype: float64
- name: TOPTUBE2SnSlen2
dtype: float64
- name: TOPTUBE2SnSlen1
dtype: float64
- name: HBARTHETA
dtype: float64
- name: Crosshair locked
dtype: float64
- name: CHAIN_WIDTH
dtype: float64
- name: CHEVRONSEATTUBE1ON
dtype: float64
- name: FRONTRack s3bby
dtype: float64
- name: AEROPAD_LIP
dtype: float64
- name: Wall thickness Seat stay
dtype: float64
- name: Paint outline percent
dtype: float64
- name: Crosshair Y
dtype: float64
- name: Crosshair X
dtype: float64
- name: CHEVRONSEATTUBE1SL
dtype: float64
- name: FRONTPANNIERLENBOT
dtype: float64
- name: shifterA1
dtype: float64
- name: CHEVRONSEATTUBE2D
dtype: float64
- name: CHEVRONSEATTUBE2B
dtype: float64
- name: CHEVRONSEATTUBE2C
dtype: float64
- name: CHEVRONSEATTUBE2A
dtype: float64
- name: USEdtShiftBoss
dtype: float64
- name: CHEVRONSEATTUBE1C
dtype: float64
- name: CHEVRONSEATTUBE1D
dtype: float64
- name: CHEVRONSEATTUBE1A
dtype: float64
- name: CHEVRONSEATTUBE1B
dtype: float64
- name: Saddle ANGLE_SYMB
dtype: float64
- name: Seat tube leading edge textfield
dtype: float64
- name: SSSIDECrad3
dtype: float64
- name: SSSIDECrad1
dtype: float64
- name: SSSIDECrad2
dtype: float64
- name: Down tube diameter
dtype: float64
- name: BB length
dtype: float64
- name: nSSAUXISBENT
dtype: float64
- name: CHAINSTAYbrdgholeshift
dtype: float64
- name: Hub flange dia front
dtype: float64
- name: FRONTRack s2tx
dtype: float64
- name: SSSIDE2SnSdia1
dtype: float64
- name: SSSIDE2SnSdia2
dtype: float64
- name: REARCNTIW
dtype: float64
- name: PANNIERLENBOT
dtype: float64
- name: Seatpost setback
dtype: float64
- name: CHEVRONHEADTUBE1ON
dtype: float64
- name: CORNERCHAINSTAYS1
dtype: float64
- name: Seat tube chord length textfield
dtype: float64
- name: CORNERCHAINSTAYS2
dtype: float64
- name: SSSIDE1SnSlen2
dtype: float64
- name: SSSIDE1SnSlen1
dtype: float64
- name: Paint shearX
dtype: float64
- name: BEND_POSITION
dtype: float64
- name: FRONTBROT_SHOW
dtype: float64
- name: REARCALPRY
dtype: float64
- name: REARCALPRX
dtype: float64
- name: REARCALPRW
dtype: float64
- name: REARCALPRV
dtype: float64
- name: REARROTORKP
dtype: float64
- name: nCSAUXBENDS
dtype: float64
- name: FRONTRack seat stay mount
dtype: float64
- name: REARROTORLP
dtype: float64
- name: Seat tube rear dia2
dtype: float64
- name: FDx
dtype: float64
- name: Display SEATPOST_CLAMP
dtype: float64
- name: REARROTORJP
dtype: float64
- name: FRONTRack angle
dtype: float64
- name: REARROTORGP
dtype: float64
- name: SPOKE_PHASE_SHIFT rear
dtype: float64
- name: REARROTORFP
dtype: float64
- name: Rack s3tx
dtype: float64
- name: Seat stay Curv Check
dtype: float64
- name: FRONTBRAKEPX
dtype: float64
- name: FRONTBRAKEPY
dtype: float64
- name: FRONTBRAKEPH
dtype: float64
- name: TOPTUBE2SnSlength
dtype: float64
- name: FRONTBRAKEPL
dtype: float64
- name: Headset spacers
dtype: float64
- name: Head tube upper extension
dtype: float64
- name: nSSSIDEISBENT
dtype: float64
- name: FRONTCNTIFS
dtype: float64
- name: Pad horizontal
dtype: float64
- name: SPC_RAD1
dtype: float64
- name: SPC_RAD3
dtype: float64
- name: SPC_RAD2
dtype: float64
- name: Crank down angle
dtype: float64
- name: FRONTRack lip
dtype: float64
- name: Rack offset from seat stay
dtype: float64
- name: Paint translate Y
dtype: float64
- name: Paint translate X
dtype: float64
- name: AEROF
dtype: float64
- name: AEROG
dtype: float64
- name: SADDLE_REF_POINTY
dtype: float64
- name: SADDLE_REF_POINTX
dtype: float64
- name: Rack height
dtype: float64
- name: LRPANNIERYT
dtype: float64
- name: Paint angle
dtype: float64
- name: CHAINSTAYbrdgCheck
dtype: float64
- name: SPOKES composite front
dtype: float64
- name: SEATSTAYbrdgholeshift
dtype: float64
- name: nSSAUXBENDS
dtype: float64
- name: ROTOR_aux
dtype: float64
- name: SPIDER_DIAMETER
dtype: float64
- name: SSSIDE1SnSshift
dtype: float64
- name: ST_IS_MITERED_TO_DT
dtype: float64
- name: SEATSTAY_VF
dtype: float64
- name: STEM2SnSCheck
dtype: float64
- name: SLIDING
dtype: float64
- name: CARGOHEIGHT
dtype: float64
- name: SBLADEW front
dtype: float64
- name: CORNERSEATTUBE2
dtype: float64
- name: CORNERSEATTUBE1
dtype: float64
- name: Top tube rear diameter
dtype: float64
- name: CSSIDE2SnSCheck
dtype: float64
- name: FDTHETA
dtype: float64
- name: MTNDIA
dtype: float64
- name: DOWNTUBE2SnSshift
dtype: float64
- name: SBLADER front
dtype: float64
- name: FRONTPANNIERHEIGHT
dtype: float64
- name: Rack support
dtype: float64
- name: Rack tubing
dtype: float64
- name: SQUIGGLEX
dtype: float64
- name: SPOKES front
dtype: float64
- name: THICKNESSofPELVIS
dtype: float64
- name: TOPTUBE1SnSCheck
dtype: float64
- name: DISCONTINUOUS
dtype: float64
- name: Seatpost CONSTANT
dtype: float64
- name: CHAINSTAYAUXrearDIAMETER
dtype: float64
- name: REARROTORG
dtype: float64
- name: REARROTORF
dtype: float64
- name: REARROTORK
dtype: float64
- name: REARROTORJ
dtype: float64
- name: REARROTORL
dtype: float64
- name: Stem angle
dtype: float64
- name: Cadence
dtype: float64
- name: SPOKE_OFFSET front
dtype: float64
- name: REARROTORA
dtype: float64
- name: REARROTORB
dtype: float64
- name: REARROTORE
dtype: float64
- name: REARROTORZ
dtype: float64
- name: CSSIDECX1
dtype: float64
- name: CSSIDECX2
dtype: float64
- name: SPC_OFFSET
dtype: float64
- name: CSSIDECX3
dtype: float64
- name: Dim B CheckBox
dtype: float64
- name: LRPANNIERHEIGHT
dtype: float64
- name: CSSIDECY1
dtype: float64
- name: CSSIDECY2
dtype: float64
- name: RIM_SIDEWALL rear
dtype: float64
- name: Number of cogs
dtype: float64
- name: FEND_aux
dtype: float64
- name: FRONTDiscTabIsPost
dtype: float64
- name: Wall thickness Seat tube
dtype: float64
- name: BULLALPHA
dtype: float64
- name: shifterX
dtype: float64
- name: Fender side coverage
dtype: float64
- name: CHEVRONDOWNTUBE1A
dtype: float64
- name: CHEVRONDOWNTUBE1C
dtype: float64
- name: REARCNTIFS
dtype: float64
- name: CHEVRONDOWNTUBE1B
dtype: float64
- name: CHEVRONDOWNTUBE1D
dtype: float64
- name: LRHEIGHT
dtype: float64
- name: STEM1SnSlen1
dtype: float64
- name: STEM1SnSlen2
dtype: float64
- name: CHNG_SPACING
dtype: float64
- name: CHEVRONDOWNTUBE2B
dtype: float64
- name: CHEVRONDOWNTUBE2A
dtype: float64
- name: CHEVRONDOWNTUBE2D
dtype: float64
- name: CHEVRONDOWNTUBE2C
dtype: float64
- name: SEATTUBE1SnSlength
dtype: float64
- name: LUG_DIM_E
dtype: float64
- name: LUG_DIM_F
dtype: float64
- name: LUG_DIM_G
dtype: float64
- name: LUG_DIM_H
dtype: float64
- name: SELECTEDCOG
dtype: float64
- name: REARCNTIBH
dtype: float64
- name: CLAMPB
dtype: float64
- name: CLAMPC
dtype: float64
- name: REARCNTIBV
dtype: float64
- name: Mountain bar rise
dtype: float64
- name: DOWNTUBE2SnSlen1
dtype: float64
- name: DOWNTUBE2SnSlen2
dtype: float64
- name: Free spaceLEFT
dtype: float64
- name: FRONTCNTIlen2
dtype: float64
- name: FRONTCNTIlen1
dtype: float64
- name: Handlebar angle
dtype: float64
- name: Front fender thick
dtype: float64
- name: FRONTBRAKEBX
dtype: float64
- name: FRONTBRAKEAX
dtype: float64
- name: Seatpost CAPPED
dtype: float64
- name: Front Fender include
dtype: float64
- name: Stembodyfdiameter
dtype: float64
- name: CSSIDE2SnSdia1
dtype: float64
- name: CSSIDE2SnSdia2
dtype: float64
- name: Stack
dtype: float64
- name: Rear Fender include
dtype: float64
- name: Wall thickness Chain stay
dtype: float64
- name: SSSIDEBENDS
dtype: float64
- name: FRONTPANNIERoffsetTop
dtype: float64
- name: TOPTUBEFILLET0
dtype: float64
- name: TOPTUBEFILLET1
dtype: float64
- name: TOPTUBEFILLET2
dtype: float64
- name: TOPTUBEFILLET3
dtype: float64
- name: Seatpost LENGTH
dtype: float64
- name: REARROTORANGLE_TWOP
dtype: float64
- name: PAD2PADW
dtype: float64
- name: STEM1SnSCheck
dtype: float64
- name: SPC_LIP
dtype: float64
- name: PANNIERoffset
dtype: float64
- name: CORNERTOPTUBE1
dtype: float64
- name: Head tube upper extension2
dtype: float64
- name: CORNERTOPTUBE2
dtype: float64
- name: Seat tube rear diameter
dtype: float64
- name: nCSSIDEC_s1
dtype: float64
- name: Stem body diameter
dtype: float64
- name: REARROTORBOLTS
dtype: float64
- name: nCSSIDEC_s3
dtype: float64
- name: nCSSIDEC_s2
dtype: float64
- name: CHNG_CRNK_CLEAR
dtype: float64
- name: Wheel diameter front
dtype: float64
- name: Crank Q factor
dtype: float64
- name: Hand horizontal
dtype: float64
- name: Down tube leading edge
dtype: float64
- name: Rear fender end angle
dtype: float64
- name: Fork straight blade
dtype: float64
- name: ANKLEtoHEEL
dtype: float64
- name: Pannier include
dtype: float64
- name: CHAINSTAY_Z
dtype: float64
- name: Bullhorn reach
dtype: float64
- name: CHAINSTAY_X
dtype: float64
- name: FRONTCALPRANG
dtype: float64
- name: CHAINSTAY_K
dtype: float64
- name: CHAINSTAY_J
dtype: float64
- name: CHAINSTAY_H
dtype: float64
- name: CHAINSTAY_G
dtype: float64
- name: SSSIDE2SnSlen1
dtype: float64
- name: Fork sag
dtype: float64
- name: SSSIDE2SnSlen2
dtype: float64
- name: SSSIDE2SnSCheck
dtype: float64
- name: SpearP1X
dtype: float64
- name: SpearP1Y
dtype: float64
- name: TOPTUBE2SnSCheck
dtype: float64
- name: INCLUDE_SEATSTAY
dtype: float64
- name: CHAINSTAYbrdgdia1
dtype: float64
- name: CHAINSTAYbrdgdia2
dtype: float64
- name: SPOKE_OFFSET2 front
dtype: float64
- name: CORNERHEADTUBE2
dtype: float64
- name: CORNERHEADTUBE1
dtype: float64
- name: FDslot
dtype: float64
- name: SpearP3X
dtype: float64
- name: SpearP3Y
dtype: float64
- name: SpearP2X
dtype: float64
- name: SpearP2Y
dtype: float64
- name: Crouch
dtype: float64
- name: TOPTUBE2SnSdia1
dtype: float64
- name: TOPTUBE2SnSdia2
dtype: float64
- name: FORK2R
dtype: float64
- name: FORK2W
dtype: float64
- name: FORK2T
dtype: float64
- name: FORK2B
dtype: float64
- name: FORK2C
dtype: float64
- name: FORK2A
dtype: float64
- name: FORK2F
dtype: float64
- name: FORK2G
dtype: float64
- name: FORK2D
dtype: float64
- name: FORK2E
dtype: float64
- name: FORK2J
dtype: float64
- name: FORK2K
dtype: float64
- name: FORK2H
dtype: float64
- name: FORK2L
dtype: float64
- name: FORK1R
dtype: float64
- name: FORK1T
dtype: float64
- name: Front fender eyelet radius
dtype: float64
- name: FORK1W
dtype: float64
- name: FORK1A
dtype: float64
- name: FORK1B
dtype: float64
- name: FORK1E
dtype: float64
- name: FORK1F
dtype: float64
- name: FORK1C
dtype: float64
- name: FORK1D
dtype: float64
- name: FORK1J
dtype: float64
- name: FORK1G
dtype: float64
- name: FORK1H
dtype: float64
- name: FORK1K
dtype: float64
- name: FORK1L
dtype: float64
- name: FORK0T
dtype: float64
- name: FORK0R
dtype: float64
- name: FORK0W
dtype: float64
- name: FORK0A
dtype: float64
- name: FORK0D
dtype: float64
- name: FORK0E
dtype: float64
- name: FORK0B
dtype: float64
- name: FORK0C
dtype: float64
- name: FORK0H
dtype: float64
- name: FORK0F
dtype: float64
- name: Rack lip
dtype: float64
- name: FORK0G
dtype: float64
- name: FORK0L
dtype: float64
- name: FORK0J
dtype: float64
- name: Seat stay bottom diameter
dtype: float64
- name: FORK0K
dtype: float64
- name: Chain stay horizontal diameter
dtype: float64
- name: PRODUCTION
dtype: float64
- name: SPOKE_CIRC_DIA rear
dtype: float64
- name: TOPTUBE1SnSlen1
dtype: float64
- name: TOPTUBE1SnSlen2
dtype: float64
- name: CSAUXSLIDER
dtype: float64
- name: Strut thickness
dtype: float64
- name: LRPANNIERoffsetTop
dtype: float64
- name: FRONTBRAKE_SHOW
dtype: float64
- name: REARBRAKE_INCLUDE
dtype: float64
- name: CLAMPDIA
dtype: float64
- name: PEDAL_LENGTH
dtype: float64
- name: Dropout joint 7
dtype: float64
- name: Dropout joint 8
dtype: float64
- name: Dropout joint 9
dtype: float64
- name: Dropout joint 0
dtype: float64
- name: Dropout joint 1
dtype: float64
- name: Dropout joint 2
dtype: float64
- name: Dropout joint 3
dtype: float64
- name: Dropout joint 4
dtype: float64
- name: Dropout joint 5
dtype: float64
- name: Dropout joint 6
dtype: float64
- name: FDshift
dtype: float64
- name: FRONTbrakeAW
dtype: float64
- name: SEATSTAYbrdgvari
dtype: float64
- name: CSSIDEBENDS
dtype: float64
- name: BULLTHETA
dtype: float64
- name: PANNIERLENGTH
dtype: float64
- name: CSSIDE1SnSshift
dtype: float64
- name: Rim depth rear
dtype: float64
- name: AEROBAR_EX
dtype: float64
- name: FRONTbrakeBW
dtype: float64
- name: SEATRAILSHIFT
dtype: float64
- name: Pedal thickness
dtype: float64
- name: SSAUXSLIDER
dtype: float64
- name: LowRider include
dtype: float64
- name: REARCNTIlen2
dtype: float64
- name: REARCNTIlen1
dtype: float64
- name: nSSSIDECX1
dtype: float64
- name: FRONTFLIP
dtype: float64
- name: nSSSIDECX3
dtype: float64
- name: nSSSIDECX2
dtype: float64
- name: TOPTUBEL23
dtype: float64
- name: TOPTUBEL22
dtype: float64
- name: TOPTUBEL21
dtype: float64
- name: TOPTUBEL20
dtype: float64
- name: nSSSIDECY2
dtype: float64
- name: nSSSIDECY1
dtype: float64
- name: nSSSIDECY3
dtype: float64
- name: FRONTINCLUDE_STRUT1
dtype: float64
- name: FRONTINCLUDE_STRUT3
dtype: float64
- name: TOPTUBEL13
dtype: float64
- name: TOPTUBEL12
dtype: float64
- name: TOPTUBEL11
dtype: float64
- name: TOPTUBEL10
dtype: float64
- name: Seat angle
dtype: float64
- name: SSSIDE2SnSshift
dtype: float64
- name: Road bar reach
dtype: float64
- name: CLAMPOFFSET
dtype: float64
- name: TT is displayed
dtype: float64
- name: HBARDIA
dtype: float64
- name: HIPJOINTOFFSET
dtype: float64
- name: Head tube diameter
dtype: float64
- name: SSAUXBENDS
dtype: float64
- name: AxlDia
dtype: float64
- name: CARGOLENGTH
dtype: float64
- name: TOPTUBEPBheight
dtype: float64
- name: TOPTUBE2SnSshift
dtype: float64
- name: SEATSTAYSFILLET1
dtype: float64
- name: SEATSTAYSFILLET0
dtype: float64
- name: CHAINSTAYdimplex
dtype: float64
- name: CHAINSTAYdimpley
dtype: float64
- name: Seatpost CHORD
dtype: float64
- name: TOPTUBE1SnSshift
dtype: float64
- name: CSAUXCrad2
dtype: float64
- name: CSAUXCrad1
dtype: float64
- name: FRONTCNTIW
dtype: float64
- name: DOWNTUBEL20
dtype: float64
- name: DOWNTUBEL21
dtype: float64
- name: DOWNTUBEL22
dtype: float64
- name: DOWNTUBEL23
dtype: float64
- name: SEATTUBE1SnSlen2
dtype: float64
- name: Landscape
dtype: float64
- name: SEATTUBE1SnSlen1
dtype: float64
- name: DOWNTUBEL10
dtype: float64
- name: DOWNTUBEL11
dtype: float64
- name: DOWNTUBEL12
dtype: float64
- name: DOWNTUBEL13
dtype: float64
- name: Dim A Foot TextField
dtype: float64
- name: SEATTUBE2SnSdia2
dtype: float64
- name: SEATTUBE2SnSdia1
dtype: float64
- name: Saddle Q2
dtype: float64
- name: CSSIDE1SnSCheck
dtype: float64
- name: Dim F TextField
dtype: float64
- name: nCSAUXC_s3
dtype: float64
- name: SELECTEDRING
dtype: float64
- name: nCSAUXC_s1
dtype: float64
- name: nCSAUXC_s2
dtype: float64
- name: CSSIDE2SnSshift
dtype: float64
- name: REARROTORANGLE_ONE
dtype: float64
- name: TOTAL_AVAILABLE_SPACERS
dtype: float64
- name: STEMCY3
dtype: float64
- name: STEMCY1
dtype: float64
- name: STEMCY2
dtype: float64
- name: DT is displayed
dtype: float64
- name: STEMCX2
dtype: float64
- name: STEMCX3
dtype: float64
- name: STEMCX1
dtype: float64
- name: SSSIDE1SnSlength
dtype: float64
- name: SPOKE_DIA front
dtype: float64
- name: Seat tube front diameter
dtype: float64
- name: Hub flange dia rear
dtype: float64
- name: nSeat stay bottom diameter
dtype: float64
- name: Chain stay position on BB
dtype: float64
- name: LINKstem2SCHEME
dtype: float64
- name: DERAILLEURX
dtype: float64
- name: DERAILLEURL
dtype: float64
- name: SSAUXCY2
dtype: float64
- name: Shoe down angle
dtype: float64
- name: SSAUXCY1
dtype: float64
- name: Dropout R
dtype: float64
- name: Dropout S
dtype: float64
- name: SSAUXCX1
dtype: float64
- name: SSAUXCX2
dtype: float64
- name: SSAUXCX3
dtype: float64
- name: RIMMSW front
dtype: float64
- name: Dropout F
dtype: float64
- name: Dropout E
dtype: float64
- name: Dropout G
dtype: float64
- name: nCSAUXC_ang1
dtype: float64
- name: nCSAUXC_ang3
dtype: float64
- name: nCSAUXC_ang2
dtype: float64
- name: TORSOLENGTH
dtype: float64
- name: TOPTUBEPBlength
dtype: float64
- name: SAME_SIZED_FRONT_AND_REAR
dtype: float64
- name: DOWNTUBEPBlength
dtype: float64
- name: Crank thickness
dtype: float64
- name: SEATSTAYbrdgoffset
dtype: float64
- name: SSSIDEISBENT
dtype: float64
- name: LRPANNIERLENTOP
dtype: float64
- name: FRONTRack RADS3
dtype: float64
- name: FRONTRack RADS1
dtype: float64
- name: DROPPERSHIFT
dtype: float64
- name: Rack tabF
dtype: float64
- name: SPC_REAR
dtype: float64
- name: Rack tabR
dtype: float64
- name: HEADTUBEFILLET0
dtype: float64
- name: FRONTRack RADH3
dtype: float64
- name: PANNIERRAD
dtype: float64
- name: FDwid
dtype: float64
- name: CHEVRONDOWNTUBE2SL
dtype: float64
- name: STCUTB
dtype: float64
- name: STCUTA
dtype: float64
- name: STCUTC
dtype: float64
- name: SEATTUBECX2
dtype: float64
- name: SEATTUBECX3
dtype: float64
- name: SEATTUBECX1
dtype: float64
- name: SEATTUBECY1
dtype: float64
- name: SEATTUBECY2
dtype: float64
- name: BULLRADIUS2
dtype: float64
- name: Teeth on cog 2
dtype: float64
- name: BULLRADIUS1
dtype: float64
- name: Teeth on cog 3
dtype: float64
- name: Teeth on cog 4
dtype: float64
- name: Teeth on cog 5
dtype: float64
- name: Teeth on cog 0
dtype: float64
- name: Teeth on cog 1
dtype: float64
- name: Teeth on cog 6
dtype: float64
- name: Teeth on cog 7
dtype: float64
- name: Teeth on cog 8
dtype: float64
- name: Teeth on cog 9
dtype: float64
- name: REARCALPRANG
dtype: float64
- name: SEATSTAYbrdgCheck
dtype: float64
- name: FRONTROTORANGLE_ONEP
dtype: float64
- name: BOSS_D
dtype: float64
- name: TOPTUBECrad1
dtype: float64
- name: TOPTUBECrad2
dtype: float64
- name: DOWNTUBE Wheel cut
dtype: float64
- name: Seatpost RADIUS
dtype: float64
- name: LINKspcr2SCHEME
dtype: float64
- name: SSSIDE1SnSCheck
dtype: float64
- name: CLAMPID
dtype: float64
- name: Toe overlap bar angle
dtype: float64
- name: CHEVRONDOWNTUBE2ON
dtype: float64
- name: FRONTCARGOLENGTH
dtype: float64
- name: TOPTUBEISBENT
dtype: float64
- name: REARFLIP
dtype: float64
- name: Fender strut 4
dtype: float64
- name: Fender strut 2
dtype: float64
- name: Fender strut 3
dtype: float64
- name: Fender strut 1
dtype: float64
- name: nSSSIDECXr2
dtype: float64
- name: nSSSIDECXr1
dtype: float64
- name: FRONTRack length
dtype: float64
- name: STEM1SnSdia1
dtype: float64
- name: STEM1SnSdia2
dtype: float64
- name: GEARBOXangle
dtype: float64
- name: FLANGEDIST_ND rear
dtype: float64
- name: Wheel cut
dtype: float64
- name: nCHAINSTAYAUXrearDIAMETER
dtype: float64
- name: LRPANNIERLENBOT
dtype: float64
- name: Road bar drop
dtype: float64
- name: CHAIN_aux
dtype: float64
- name: Rack seat stay mount
dtype: float64
- name: DOWNTUBEFILLET0
dtype: float64
- name: DOWNTUBEFILLET1
dtype: float64
- name: DOWNTUBEFILLET2
dtype: float64
- name: DOWNTUBEFILLET3
dtype: float64
- name: DOWNTUBECrad1
dtype: float64
- name: DOWNTUBECrad2
dtype: float64
- name: nCSAUXISBENT
dtype: float64
- name: nSSAUXC_s2
dtype: float64
- name: nSSAUXC_s1
dtype: float64
- name: Sitting positionY
dtype: float64
- name: nSSAUXC_s3
dtype: float64
- name: Sitting positionX
dtype: float64
- name: SHOW_OR_HIDE_UNITS
dtype: float64
- name: CHAINGUARDDR
dtype: float64
- name: CHAINGUARDDF
dtype: float64
- name: Wishbone diameter
dtype: float64
- name: nSSTopZOFFSET
dtype: float64
- name: CS textfield
dtype: float64
- name: SUSPENSION
dtype: float64
- name: CSAUXISBENT
dtype: float64
- name: CHAINGUARDHF
dtype: float64
- name: CHAINGUARDHR
dtype: float64
- name: SPOKE_CIRC_DIA2 front
dtype: float64
- name: SPOKE_OFFSET rear
dtype: float64
- name: SPC_HIG
dtype: float64
- name: StemX
dtype: float64
- name: StemV
dtype: float64
- name: StemU
dtype: float64
- name: Display FENDERS
dtype: float64
- name: StemY
dtype: float64
- name: FRONTINCLUDE_HOOK1
dtype: float64
- name: FRONTINCLUDE_HOOK3
dtype: float64
- name: Pedal width
dtype: float64
- name: KNEETHICKNESS
dtype: float64
- name: LRLENBOT
dtype: float64
- name: DOWNTUBE2SnSCheck
dtype: float64
- name: AEROBARDIA
dtype: float64
- name: StemG
dtype: float64
- name: STEM2SnSdia2
dtype: float64
- name: STEM2SnSdia1
dtype: float64
- name: nCSAUXCrad3
dtype: float64
- name: nCSAUXCrad2
dtype: float64
- name: nCSAUXCrad1
dtype: float64
- name: Fender clearance
dtype: float64
- name: INCLUDE_HOOK1
dtype: float64
- name: REARBRAKE_SHOW
dtype: float64
- name: INCLUDE_HOOK3
dtype: float64
- name: nCHAINSTAY_X
dtype: float64
- name: nCHAINSTAY_Z
dtype: float64
- name: CHAINGUARDXC
dtype: float64
- name: nCHAINSTAY_G
dtype: float64
- name: nCHAINSTAY_H
dtype: float64
- name: nCHAINSTAY_J
dtype: float64
- name: nCHAINSTAY_K
dtype: float64
- name: FRONTBRAKED
dtype: float64
- name: FRONTBRAKEL
dtype: float64
- name: ST_TOP_LENGTH
dtype: float64
- name: nSEATSTAY_K
dtype: float64
- name: nSEATSTAY_J
dtype: float64
- name: nSEATSTAY_H
dtype: float64
- name: nSEATSTAY_G
dtype: float64
- name: CHAINSTAYSFILLET0
dtype: float64
- name: CHAINSTAYSFILLET1
dtype: float64
- name: nSEATSTAYTAPERLENGTH
dtype: float64
- name: SSAUXCXr1
dtype: float64
- name: SSAUXCXr2
dtype: float64
- name: nChain stay vertical diameter
dtype: float64
- name: PumpAng
dtype: float64
- name: REARBRAKED
dtype: float64
- name: SPOKE_OFFSET2 rear
dtype: float64
- name: Rack RADH1
dtype: float64
- name: Rack RADH3
dtype: float64
- name: REARBRAKEL
dtype: float64
- name: STEM1SnSshift
dtype: float64
- name: SEATSTAYbrdgshift
dtype: float64
- name: DOWNTUBE2SnSlength
dtype: float64
- name: nWishbone diameter
dtype: float64
- name: CARGOShiftX
dtype: float64
- name: CARGOShiftY
dtype: float64
- name: Down tube aero diameter
dtype: float64
- name: HEADTUBEL20
dtype: float64
- name: HEADTUBEL10
dtype: float64
- name: HAND2HANDW
dtype: float64
- name: SPOKE_DIA rear
dtype: float64
- name: Top tube rear dia2
dtype: float64
- name: Free spaceBOTTOM
dtype: float64
- name: nChain stay horizontal diameter
dtype: float64
- name: Display CHAINGUARD
dtype: float64
- name: SEATTUBE2SnSlen1
dtype: float64
- name: SEATTUBE2SnSlen2
dtype: float64
- name: PANNIERoffsetTop
dtype: float64
- name: FRONTBRAKE_INCLUDE
dtype: float64
- name: DOTS_INSTEAD_OF_ARROWS
dtype: float64
- name: PumpX
dtype: float64
- name: PumpY
dtype: float64
- name: Dim E CheckBox
dtype: float64
- name: CHAINSTAYbrdgvari
dtype: float64
- name: Wheel diameter rear
dtype: float64
- name: Top tube front dia2
dtype: float64
- name: REARROTORANGLE_TWO
dtype: float64
- name: FRONTRack support
dtype: float64
- name: Dim A Inch TextField
dtype: float64
- name: SPOKE_CIRC_DIA2 rear
dtype: float64
- name: INVERTED
dtype: float64
- name: DOTSonEXTlines
dtype: float64
- name: CHAINSTAYOFFSET
dtype: float64
- name: FRONTCargo include
dtype: float64
- name: FRONTPANNIERShiftY
dtype: float64
- name: FRONTPANNIERShiftX
dtype: float64
- name: Rear fender start angle
dtype: float64
- name: PANNIERShiftY
dtype: float64
- name: PANNIERShiftX
dtype: float64
- name: Rack RADS1
dtype: float64
- name: Rack RADS3
dtype: float64
- name: Collar height
dtype: float64
- name: Brake lever position
dtype: float64
- name: Cargo include
dtype: float64
- name: Seat tube extension
dtype: float64
- name: SEATSTAY_HF
dtype: float64
- name: SSTopZOFFSET
dtype: float64
- name: CHAINSTAYbrdgshift
dtype: float64
- name: SPOKES rear
dtype: float64
- name: SEATPOSTA
dtype: float64
- name: nSEATSTAY_HF
dtype: float64
- name: nSEATSTAY_HR
dtype: float64
- name: TOPTUBE1SnSlength
dtype: float64
- name: FRONTPANNIERYT
dtype: float64
- name: nCSSIDECrad1
dtype: float64
- name: nCSSIDECrad2
dtype: float64
- name: nCSSIDECrad3
dtype: float64
- name: Cleat Y
dtype: float64
- name: BB diameter
dtype: float64
- name: Cleat X
dtype: float64
- name: FRONTRack tabR
dtype: float64
- name: FRONTRack tabF
dtype: float64
- name: nSeat stay junction0
dtype: float64
- name: nSeat stay junction1
dtype: float64
- name: nSeat stay junction2
dtype: float64
- name: nSeat stay junction3
dtype: float64
- name: nSeat stay junction4
dtype: float64
- name: nCSSIDEISBENT
dtype: float64
- name: pumpLength
dtype: float64
- name: BOSS_T
dtype: float64
- name: SPIDER_ARM_PHASE_SHIFT
dtype: float64
- name: Rack length
dtype: float64
- name: RIMMSW rear
dtype: float64
- name: LEFTY
dtype: float64
- name: DOWNTUBEISBENT
dtype: float64
- name: Hub flange dia2 rear
dtype: float64
- name: SEATSTAY_HR
dtype: float64
- name: FCD textfield
dtype: float64
- name: Rim depth front
dtype: float64
- name: FRONTRack tubing
dtype: float64
- name: DROPPER
dtype: float64
- name: FRONTROTORTHICK
dtype: float64
- name: USEFRNTDER
dtype: float64
- name: LRPannier include
dtype: float64
- name: Handlebar width
dtype: float64
- name: Saddle angle
dtype: float64
- name: ClmpYfromBB
dtype: float64
- name: THRU_AXLE
dtype: float64
- name: Teeth on cog 11
dtype: float64
- name: Teeth on cog 10
dtype: float64
- name: nSEATSTAY_VF
dtype: float64
- name: Seat tube extension2
dtype: float64
- name: Front Strut thickness
dtype: float64
- name: PANNIERYT
dtype: float64
- name: Dim D TextField
dtype: float64
- name: FLANGEDIST_ND front
dtype: float64
- name: FRONTCNTIBV
dtype: float64
- name: Dim D CheckBox
dtype: float64
- name: FRONTCNTIBH
dtype: float64
- name: FRONTROTOR_INCLUDE
dtype: float64
- name: LWequalsOL
dtype: float64
- name: Rear fender width
dtype: float64
- name: nCHAINSTAYOFFSET
dtype: float64
- name: DIMENSION_NAMES
dtype: float64
- name: SEATSTAYTAPERLENGTH
dtype: float64
- name: FRONTROTORKP
dtype: float64
- name: SEATSTAYdimpley
dtype: float64
- name: SEATSTAYdimplex
dtype: float64
- name: FRONTROTORLP
dtype: float64
- name: LINKfork2SCHEME
dtype: float64
- name: Rear fender thick
dtype: float64
- name: FadeP1X
dtype: float64
- name: FadeP1Y
dtype: float64
- name: FRONTRack offset from seat stay
dtype: float64
- name: CORNERSTEM1
dtype: float64
- name: CORNERSTEM2
dtype: float64
- name: FRONTROTORGP
dtype: float64
- name: Dim C CheckBox
dtype: float64
- name: FadeP2X
dtype: float64
- name: FadeP2Y
dtype: float64
- name: LRPANNIERLENGTH
dtype: float64
- name: FRONTROTORJP
dtype: float64
- name: CHEVRONTOPTUBE2D
dtype: float64
- name: STEMISBENT
dtype: float64
- name: CHEVRONTOPTUBE2A
dtype: float64
- name: CHEVRONTOPTUBE2B
dtype: float64
- name: Display RACK
dtype: float64
- name: CHEVRONTOPTUBE2C
dtype: float64
- name: nCSSIDECXr2
dtype: float64
- name: nCSSIDECXr1
dtype: float64
- name: ST_BOTTOM_LENGTH
dtype: float64
- name: CHEVRONSEATTUBE2SL
dtype: float64
- name: Dropout ADJ
dtype: float64
- name: CSAUXBENDS
dtype: float64
- name: Upper stack height
dtype: float64
- name: CSSIDE1SnSdia2
dtype: float64
- name: CSSIDE1SnSdia1
dtype: float64
- name: SaddleYfromBB
dtype: float64
- name: Pad vertical
dtype: float64
- name: ANGLE_OF_THE_HEAD
dtype: float64
- name: Chain stay taper
dtype: float64
- name: FRONTROTORANGLE_TWO
dtype: float64
- name: SEATTUBE1SnSCheck
dtype: float64
- name: CHEVRONTOPTUBE1C
dtype: float64
- name: CHEVRONTOPTUBE1D
dtype: float64
- name: CHEVRONTOPTUBE1A
dtype: float64
- name: CHEVRONTOPTUBE1B
dtype: float64
- name: LINE_WEIGHT
dtype: float64
- name: SHOULDERtoJAW
dtype: float64
- name: REARCNTIdia1
dtype: float64
- name: REARCNTIdia2
dtype: float64
- name: Head tube chord
dtype: float64
- name: Front Fender side coverage
dtype: float64
- name: TOPTUBE1SnSdia1
dtype: float64
- name: TOPTUBE1SnSdia2
dtype: float64
- name: Collar diameter
dtype: float64
- name: CHEVRONSEATTUBE2ON
dtype: float64
- name: RIM_SIDEWALL front
dtype: float64
- name: INCLUDE_CHAINSTAY
dtype: float64
- name: CHAINSTAYdimpleCheck
dtype: float64
- name: CHEVRONTOPTUBE2SL
dtype: float64
- name: Number of chainrings
dtype: float64
- name: CSAUXCXr3
dtype: float64
- name: CSAUXCXr2
dtype: float64
- name: CSAUXCXr1
dtype: float64
- name: Rack RAD
dtype: float64
- name: SSAUXCrad3
dtype: float64
- name: SSAUXCrad2
dtype: float64
- name: SSAUXCrad1
dtype: float64
- name: AEROPAD_LENGTH
dtype: float64
- name: Crank up angle
dtype: float64
- name: DOWNTUBECY1
dtype: float64
- name: DOWNTUBECY2
dtype: float64
- name: FRONTROTOREP
dtype: float64
- name: TIREM front
dtype: float64
- name: FRONTROTORFP
dtype: float64
- name: REARBRAKEPH
dtype: float64
- name: Bullhorn drop
dtype: float64
- name: CHEVRONTOPTUBE2ON
dtype: float64
- name: REARBRAKEPX
dtype: float64
- name: REARBRAKEPL
dtype: float64
- name: Chain stay back diameter
dtype: float64
- name: REARBRAKEPY
dtype: float64
- name: CSSIDECrad3
dtype: float64
- name: CSSIDECrad2
dtype: float64
- name: CSSIDECrad1
dtype: float64
- name: DOWNTUBE1SnSdia2
dtype: float64
- name: SEATSTAYSL11
dtype: float64
- name: DOWNTUBE1SnSdia1
dtype: float64
- name: SEATSTAYSL10
dtype: float64
- name: DOWNTUBECX1
dtype: float64
- name: TIREM rear
dtype: float64
- name: DOWNTUBECX2
dtype: float64
- name: PANNIERHEIGHT
dtype: float64
- name: DOWNTUBECX3
dtype: float64
- name: Stem length
dtype: float64
- name: nSSSIDEBENDS
dtype: float64
- name: SEATSTAYSL21
dtype: float64
- name: SEATSTAYSL20
dtype: float64
- name: REARROTORDIA
dtype: float64
- name: SPC_THICK
dtype: float64
- name: Head tube lower extension2
dtype: float64
- name: Seat stay wishbone
dtype: float64
- name: Display AEROBARS
dtype: float64
- name: SEATTUBE2SnSCheck
dtype: float64
- name: FRONTPANNIERRAD
dtype: float64
- name: SPC_DIA
dtype: float64
- name: SSSIDE1SnSdia1
dtype: float64
- name: SSSIDE1SnSdia2
dtype: float64
- name: nCSSIDEBENDS
dtype: float64
- name: REARBRAKEAX
dtype: float64
- name: LRLENGTH
dtype: float64
- name: REARBRAKEBX
dtype: float64
- name: DERAILLEUR_HANGER
dtype: float64
- name: FRONTDiscAdaptOnPost
dtype: float64
- name: Teeth on chainring 2
dtype: float64
- name: Teeth on chainring 0
dtype: float64
- name: Teeth on chainring 1
dtype: float64
- name: DOWNTUBECXr1
dtype: float64
- name: DOWNTUBECXr2
dtype: float64
- name: DOWNTUBECXr3
dtype: float64
- name: FRONTRack RAD
dtype: float64
- name: FRONTPANNIERoffset
dtype: float64
- name: nChain stay taper
dtype: float64
- name: Dim C TextField
dtype: float64
- name: Bullhorn rise
dtype: float64
- name: Dim A TextField
dtype: float64
- name: Seat tube diameter
dtype: float64
- name: Chain stay vertical diameter
dtype: float64
- name: nSSAUXCX1
dtype: float64
- name: nSSAUXCX2
dtype: float64
- name: nSSAUXCX3
dtype: float64
- name: nSSAUXCY1
dtype: float64
- name: nSSAUXCY2
dtype: float64
- name: nSSAUXCY3
dtype: float64
- name: Hole Angle
dtype: float64
- name: CORNERDOWNTUBE1
dtype: float64
- name: CORNERDOWNTUBE2
dtype: float64
- name: DERAILLEUR_PULLEY2_TEETH
dtype: float64
- name: Bullhorn angle
dtype: float64
- name: CHAINSTAYbrdgoffset
dtype: float64
- name: nSSAUXCrad2
dtype: float64
- name: nSSAUXCrad3
dtype: float64
- name: Wheel width front
dtype: float64
- name: nSSAUXCrad1
dtype: float64
- name: CARGORAD
dtype: float64
- name: SPOKE_PHASE_SHIFT front
dtype: float64
- name: CHAINSTAYASYMMETRIC
dtype: float64
- name: Head angle
dtype: float64
- name: Hub flange dia2 front
dtype: float64
- name: SHOULDERroll
dtype: float64
- name: LOWERLEGLENGTH
dtype: float64
- name: FRONTPannier include
dtype: float64
- name: Dim F CheckBox
dtype: float64
- name: LRRAD
dtype: float64
- name: OFFSET_AT_BB st
dtype: float64
- name: SEATTUBEISBENT
dtype: float64
- name: STEMCrad3
dtype: float64
- name: STEMCrad2
dtype: float64
- name: STEMCrad1
dtype: float64
- name: Fork travel
dtype: float64
- name: nCSAUXCXr1
dtype: float64
- name: nCSAUXCXr2
dtype: float64
- name: TOPTUBECY2
dtype: float64
- name: TOPTUBECY1
dtype: float64
- name: nCSAUXCXr3
dtype: float64
- name: TOPTUBECX3
dtype: float64
- name: TOPTUBECX2
dtype: float64
- name: TOPTUBECX1
dtype: float64
- name: Top tube front diameter
dtype: float64
- name: Seatpost NUT
dtype: float64
- name: Rack s1by
dtype: float64
- name: SPOKES composite rear
dtype: float64
- name: LRPANNIERoffset
dtype: float64
- name: UPPERLEGLENGTH
dtype: float64
- name: STEPSW2
dtype: float64
- name: STEPSW1
dtype: float64
- name: Crank angle
dtype: float64
- name: TIRE_aux
dtype: float64
- name: SPOKE_HOLE_DIA front
dtype: float64
- name: Seatpost diameter
dtype: float64
- name: FRONTROTORANGLE_TWOP
dtype: float64
- name: LRoffset
dtype: float64
- name: Female
dtype: float64
- name: DERAILLEUR_PULLEY_TEETH
dtype: float64
- name: FRONTROTORDIA
dtype: float64
- name: SEATTUBECXr2
dtype: float64
- name: SEATTUBECXr1
dtype: float64
- name: SSSIDE2SnSlength
dtype: float64
- name: FRONTPANNIERLENGTH
dtype: float64
- name: BULLDIA
dtype: float64
- name: nCSAUXSLIDER
dtype: float64
- name: Seatpost DIA2
dtype: float64
- name: Seatpost DIA3
dtype: float64
- name: Head tube C
dtype: float64
- name: Head tube B
dtype: float64
- name: Head tube A
dtype: float64
- name: Head tube E
dtype: float64
- name: Head tube D
dtype: float64
- name: SEATTUBE1SnSshift
dtype: float64
- name: Seatpost TRAVEL
dtype: float64
- name: FDlen
dtype: float64
- name: Head tube d
dtype: float64
- name: HBAREXTEND
dtype: float64
- name: Saddle height
dtype: float64
- name: Hand vertical
dtype: float64
- name: FRONTCNTIdia2
dtype: float64
- name: DOWNTUBE1SnSlength
dtype: float64
- name: BELT_WIDTH
dtype: float64
- name: Rack forkx
dtype: float64
- name: Rack forky
dtype: float64
- name: AEROPAD_THICK
dtype: float64
- name: Seat tube bottom diameter textfield
dtype: float64
- name: Dropout OFF
dtype: float64
- name: Rack s1bby
dtype: float64
- name: FRONTCNTIshiftDX
dtype: float64
- name: Head tube length textfield
dtype: float64
- name: nSSAUXSLIDER
dtype: float64
- name: Seatpost MAST
dtype: float64
- name: STEMCXr1
dtype: float64
- name: STEMCXr2
dtype: float64
- name: STEMCXr3
dtype: float64
- name: SBLADER rear
dtype: float64
- name: STEPSbatDTy
dtype: float64
- name: STEPSbatDTx
dtype: float64
- name: Saddle thickness
dtype: float64
- name: Handlebar Y textfield
dtype: float64
- name: Front fender start angle
dtype: float64
- name: TwoColP2Y
dtype: float64
- name: TwoColP2X
dtype: float64
- name: SEATTUBE2SnSlength
dtype: float64
- name: HBARRAD1
dtype: float64
- name: HBARRAD2
dtype: float64
- name: Crank width at pedals
dtype: float64
- name: CHEVRONDOWNTUBE1SL
dtype: float64
- name: REARbrakeBW
dtype: float64
- name: SEATSTAY_K
dtype: float64
- name: SEATSTAY_J
dtype: float64
- name: SPC_WID
dtype: float64
- name: SEATSTAY_G
dtype: float64
- name: SEATSTAY_H
dtype: float64
- name: CASS_aux
dtype: float64
- name: SBLADEW rear
dtype: float64
- name: ThreeColP1X
dtype: float64
- name: ThreeColP1Y
dtype: float64
- name: REARbrakeAW
dtype: float64
- name: nCSSIDEC_ang3
dtype: float64
- name: nCSSIDEC_ang2
dtype: float64
- name: nCSSIDEC_ang1
dtype: float64
- name: ThreeColP3X
dtype: float64
- name: ThreeColP3Y
dtype: float64
- name: TwoColP1Y
dtype: float64
- name: TwoColP1X
dtype: float64
- name: ThreeColP2Y
dtype: float64
- name: ThreeColP2X
dtype: float64
- name: Dim B TextField
dtype: float64
- name: CHEVRONTOPTUBE1SL
dtype: float64
- name: CassZ
dtype: float64
- name: CassT
dtype: float64
- name: CassA
dtype: float64
- name: Head tube lower extension
dtype: float64
- name: SEATTUBE2SnSshift
dtype: float64
- name: DUAL_CROWN
dtype: float64
- name: REARDiscTabIsPost
dtype: float64
- name: CHEVRONDOWNTUBE1ON
dtype: float64
- name: CHEVRONTOPTUBE1ON
dtype: float64
- name: OFFSET_AT_BB dt
dtype: float64
- name: Dim A CheckBox
dtype: float64
- name: REARROTORANGLE_ONEP
dtype: float64
- name: bottle SEATTUBE0 WBL
dtype: float64
- name: bottle SEATTUBE0 WBD
dtype: float64
- name: bottle SEATTUBE0 WBX
dtype: float64
- name: bottle SEATTUBE0 WBY
dtype: float64
- name: bottle SEATTUBE0 SIZE
dtype: float64
- name: bottle DOWNTUBE0 SIZE
dtype: float64
- name: bottle SEATTUBE0 X
dtype: float64
- name: bottle DOWNTUBE0 WBY
dtype: float64
- name: bottle DOWNTUBE0 WBX
dtype: float64
- name: bottle DOWNTUBE0 WBL
dtype: float64
- name: bottle DOWNTUBE0 WBD
dtype: float64
- name: bottle SEATTUBE0 CAGE
dtype: float64
- name: bottle DOWNTUBE0 flip
dtype: float64
- name: bottle DOWNTUBE0 X
dtype: float64
- name: bottle DOWNTUBE0 CAGE
dtype: float64
- name: rockerPosition
dtype: float64
- name: RDERD
dtype: float64
- name: FDERD
dtype: float64
- name: RDBSD
dtype: float64
- name: FDBSD
dtype: float64
- name: 'HBAR type OHCLASS: Bonrager on Domane'
dtype: float64
- name: 'HBAR type OHCLASS: Deda RHM02 COMPACT'
dtype: float64
- name: 'HBAR type OHCLASS: Deda RHM2'
dtype: float64
- name: 'HBAR type OHCLASS: Ergotec S_XXL'
dtype: float64
- name: 'HBAR type OHCLASS: Generic BMX'
dtype: float64
- name: 'HBAR type OHCLASS: Generic bullhorn'
dtype: float64
- name: 'HBAR type OHCLASS: Generic ergo drop'
dtype: float64
- name: 'HBAR type OHCLASS: Generic track'
dtype: float64
- name: 'HBAR type OHCLASS: Mountain DH Bar'
dtype: float64
- name: 'Rollout units OHCLASS: 0'
dtype: float64
- name: 'Rollout units OHCLASS: 1'
dtype: float64
- name: 'Rollout units OHCLASS: 2'
dtype: float64
- name: 'Rollout units OHCLASS: 3'
dtype: float64
- name: 'REARbrake kind OHCLASS: 0'
dtype: float64
- name: 'REARbrake kind OHCLASS: 1'
dtype: float64
- name: 'Headset type OHCLASS: Cane Creek (External Cup)'
dtype: float64
- name: 'Headset type OHCLASS: Cane Creek (Integrated)'
dtype: float64
- name: 'Headset type OHCLASS: Cane Creek (ZeroStack Short)'
dtype: float64
- name: 'Headset type OHCLASS: Cane Creek (ZeroStack Tall)'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 1'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 1"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 1"BMX'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 1-1/4"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 1-1/8 | 1.5" Tapered'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 1-1/8"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 1.5"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 1.5" Devolution'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 2nut 1"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 2nut 1-1/4"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King 2nut 1-1/8"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King Devolution'
dtype: float64
- name: 'Headset type OHCLASS: Chris King InSet1'
dtype: float64
- name: 'Headset type OHCLASS: Chris King InSet2'
dtype: float64
- name: 'Headset type OHCLASS: Chris King InSet3'
dtype: float64
- name: 'Headset type OHCLASS: Chris King InSet4'
dtype: float64
- name: 'Headset type OHCLASS: Chris King InSet5'
dtype: float64
- name: 'Headset type OHCLASS: Chris King InSet7'
dtype: float64
- name: 'Headset type OHCLASS: Chris King InSet8'
dtype: float64
- name: 'Headset type OHCLASS: Chris King NoThreadSet 1"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King NoThreadSet 1" BMX'
dtype: float64
- name: 'Headset type OHCLASS: Chris King NoThreadSet 1-1/4"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King NoThreadSet 1-1/8"'
dtype: float64
- name: 'Headset type OHCLASS: Chris King SteelSet'
dtype: float64
- name: 'Headset type OHCLASS: Columbus ZV7STEERKITH'
dtype: float64
- name: 'Headset type OHCLASS: DH Mountain Headset'
dtype: float64
- name: 'Headset type OHCLASS: Tecora - Standard'
dtype: float64
- name: 'SEATSTAYSYMMETRY OHCLASS: 0'
dtype: float64
- name: 'SEATSTAYSYMMETRY OHCLASS: 1'
dtype: float64
- name: 'SEATSTAYSYMMETRY OHCLASS: 2'
dtype: float64
- name: 'Rack type OHCLASS: Racktime'
dtype: float64
- name: 'Rack type OHCLASS: Sample 2 support'
dtype: float64
- name: 'Rack type OHCLASS: Sample rear rack'
dtype: float64
- name: 'ForkLengthMeasurement0 OHCLASS: 0'
dtype: float64
- name: 'ForkLengthMeasurement0 OHCLASS: 1'
dtype: float64
- name: 'ForkLengthMeasurement1 OHCLASS: 0'
dtype: float64
- name: 'ForkLengthMeasurement1 OHCLASS: 1'
dtype: float64
- name: 'Seat stay mount location OHCLASS: 0'
dtype: float64
- name: 'Seat stay mount location OHCLASS: 1'
dtype: float64
- name: 'Seat stay mount location OHCLASS: 2'
dtype: float64
- name: 'Seat stay mount location OHCLASS: 3'
dtype: float64
- name: 'Seat stay mount location OHCLASS: 4'
dtype: float64
- name: 'DIRECTMOUNTFDTYPE OHCLASS: FDM771D'
dtype: float64
- name: 'DIRECTMOUNTFDTYPE OHCLASS: FDM9000D'
dtype: float64
- name: 'DIRECTMOUNTFDTYPE OHCLASS: FDM9025D'
dtype: float64
- name: 'Dropout model OHCLASS: DH Dropout'
dtype: float64
- name: 'Dropout model OHCLASS: Generic hooded dropout'
dtype: float64
- name: 'Dropout model OHCLASS: Generic socket style'
dtype: float64
- name: 'Dropout model OHCLASS: Generic tab style'
dtype: float64
- name: 'Dropout model OHCLASS: Generic track dropout'
dtype: float64
- name: 'Dropout model OHCLASS: Paragon 58 degree relieved ISO mount'
dtype: float64
- name: 'Dropout model OHCLASS: Paragon Wright 1 1/2" x 1.04" hooded dropout (6-4
Ti) with Long Cage insert'
dtype: float64
- name: 'Dropout model OHCLASS: Paragon Wright 1 1/2" x 1.04" hooded dropout (6-4
Ti) with Shimano Direct insert'
dtype: float64
- name: 'Dropout model OHCLASS: Paragon Wright 1 1/2" x 1.04" hooded dropout (6-4
Ti) with Short Cage insert'
dtype: float64
- name: 'Dropout model OHCLASS: Rohloff Ausfaller -15'
dtype: float64
- name: 'Dropout model OHCLASS: Standard -2a'
dtype: float64
- name: 'Dropout model OHCLASS: sliders Hooded'
dtype: float64
- name: 'STEM3_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'STEM3_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: 36mm'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Columbus Spirit CYRA18240'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Columbus integrated tapered'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Domane HT'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: KFS 1'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Paragon 105mm tapered'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Paragon 115mm tapered'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Paragon 130mm tapered'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Paragon 150mm tapered'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Paragon 170mm tapered'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Paragon 190mm tapered'
dtype: float64
- name: 'HEADTUBEtype OHCLASS: Paragon for 44mm cups'
dtype: float64
- name: 'SSAUX1_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'SSAUX1_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'CHAIN_GUARDSTYLE OHCLASS: 0'
dtype: float64
- name: 'CHAIN_GUARDSTYLE OHCLASS: 1'
dtype: float64
- name: 'CHAIN_GUARDSTYLE OHCLASS: 2'
dtype: float64
- name: 'BATTERYmount OHCLASS: DOWNTUBE'
dtype: float64
- name: 'BATTERYmount OHCLASS: NONE'
dtype: float64
- name: 'BATTERYmount OHCLASS: RACK'
dtype: float64
- name: 'BATTERYmount OHCLASS: SEATTUBE'
dtype: float64
- name: 'CRANK_POS OHCLASS: 0'
dtype: float64
- name: 'CRANK_POS OHCLASS: 1'
dtype: float64
- name: 'CRANK_POS OHCLASS: 2'
dtype: float64
- name: 'BELTorCHAIN OHCLASS: 0'
dtype: float64
- name: 'BELTorCHAIN OHCLASS: 1'
dtype: float64
- name: 'TOPTUBEBENDS OHCLASS: 0'
dtype: float64
- name: 'TOPTUBEBENDS OHCLASS: 1'
dtype: float64
- name: 'Head tube type OHCLASS: 0'
dtype: float64
- name: 'Head tube type OHCLASS: 1'
dtype: float64
- name: 'Head tube type OHCLASS: 2'
dtype: float64
- name: 'Head tube type OHCLASS: 3'
dtype: float64
- name: 'Dimension units OHCLASS: 0'
dtype: float64
- name: 'Dimension units OHCLASS: 1'
dtype: float64
- name: 'Seatpost type OHCLASS: 27.2 X 300mm generic post'
dtype: float64
- name: 'Seatpost type OHCLASS: DH Seatpost'
dtype: float64
- name: 'Seatpost type OHCLASS: Domane RideTuned Cap'
dtype: float64
- name: 'Seatpost type OHCLASS: Kalloy - 1 Bolt 27.2'
dtype: float64
- name: 'Seatpost type OHCLASS: Rockshox Reverb Stealth 30.9mm 390mm X 125mm Travel'
dtype: float64
- name: 'Seatpost type OHCLASS: Rockshox Reverb Stealth 30.9mm 440mm X 150mm Travel'
dtype: float64
- name: 'Seatpost type OHCLASS: Rockshox Reverb Stealth 30.9mm 480mm X 170mm Travel'
dtype: float64
- name: 'Seatpost type OHCLASS: Rockshox Reverb Stealth 31.6mm 390mm X 125mm Travel'
dtype: float64
- name: 'Seatpost type OHCLASS: Rockshox Reverb Stealth 31.6mm 480mm X 170mm Travel'
dtype: float64
- name: 'Seat stay Curv or Rake OHCLASS: 0'
dtype: float64
- name: 'Seat stay Curv or Rake OHCLASS: 1'
dtype: float64
- name: 'FRONTbrake type OHCLASS: Canti cross'
dtype: float64
- name: 'FRONTbrake type OHCLASS: Generic V-Brake'
dtype: float64
- name: 'FRONTbrake type OHCLASS: Generic caliper'
dtype: float64
- name: 'FRONTbrake type OHCLASS: Shimano V-Brake - VR'
dtype: float64
- name: 'CSAUX2_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'CSAUX2_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'Stem type OHCLASS: 100mm -5 degree'
dtype: float64
- name: 'Stem type OHCLASS: 100mm 5 degree'
dtype: float64
- name: 'Stem type OHCLASS: Bike Friday Style'
dtype: float64
- name: 'Stem type OHCLASS: Brut 100/+6/25,4'
dtype: float64
- name: 'Stem type OHCLASS: Mountain DH Stem'
dtype: float64
- name: 'FRONTCARGO style OHCLASS: 0'
dtype: float64
- name: 'FRONTCARGO style OHCLASS: 1'
dtype: float64
- name: 'STEM1_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'STEM1_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'Pump size OHCLASS: IMPEROLARGE'
dtype: float64
- name: 'Pump size OHCLASS: IMPEROMEDIUM'
dtype: float64
- name: 'Pump size OHCLASS: IMPEROSMALL'
dtype: float64
- name: 'Pump size OHCLASS: IMPEROXLARGE'
dtype: float64
- name: 'Pump size OHCLASS: IMPEROXXLARGE'
dtype: float64
- name: 'Pump size OHCLASS: IMPEROXXXLARGE'
dtype: float64
- name: 'PhBlock styleTOPTUBE OHCLASS: 0'
dtype: float64
- name: 'PhBlock styleTOPTUBE OHCLASS: 1'
dtype: float64
- name: 'MATERIAL OHCLASS: ALUMINIUM'
dtype: float64
- name: 'MATERIAL OHCLASS: BAMBOO'
dtype: float64
- name: 'MATERIAL OHCLASS: CARBON'
dtype: float64
- name: 'MATERIAL OHCLASS: OTHER'
dtype: float64
- name: 'MATERIAL OHCLASS: STEEL'
dtype: float64
- name: 'MATERIAL OHCLASS: TITANIUM'
dtype: float64
- name: 'PumpLocate OHCLASS: 0'
dtype: float64
- name: 'PumpLocate OHCLASS: 1'
dtype: float64
- name: 'PumpLocate OHCLASS: 2'
dtype: float64
- name: 'FRONTdiscB type OHCLASS: Generic 160mm I.S.'
dtype: float64
- name: 'FRONTdiscB type OHCLASS: Generic 160mm Post'
dtype: float64
- name: 'FRONTdiscB type OHCLASS: Generic Front Flat Mount'
dtype: float64
- name: 'CLAMPSTYLE OHCLASS: 0'
dtype: float64
- name: 'CLAMPSTYLE OHCLASS: 1'
dtype: float64
- name: 'CLAMPSTYLE OHCLASS: 2'
dtype: float64
- name: 'SIZE OHCLASS: '
dtype: float64
- name: 'SIZE OHCLASS: 14,5 '
dtype: float64
- name: 'SIZE OHCLASS: 56/57'
dtype: float64
- name: 'SIZE OHCLASS: John560'
dtype: float64
- name: 'SIZE OHCLASS: MEDIUM'
dtype: float64
- name: 'SIZE OHCLASS: SMALL'
dtype: float64
- name: 'SIZE OHCLASS: XL'
dtype: float64
- name: 'SIZE OHCLASS: -'
dtype: float64
- name: 'SIZE OHCLASS: --'
dtype: float64
- name: 'SIZE OHCLASS: ---------'
dtype: float64
- name: 'SIZE OHCLASS: .'
dtype: float64
- name: 'SIZE OHCLASS: 0.505'
dtype: float64
- name: 'SIZE OHCLASS: 00'
dtype: float64
- name: 'SIZE OHCLASS: 01'
dtype: float64
- name: 'SIZE OHCLASS: 1'
dtype: float64
- name: 'SIZE OHCLASS: 1 size'
dtype: float64
- name: 'SIZE OHCLASS: 1.26'
dtype: float64
- name: 'SIZE OHCLASS: 10'
dtype: float64
- name: 'SIZE OHCLASS: 10.5'
dtype: float64
- name: 'SIZE OHCLASS: 100'
dtype: float64
- name: 'SIZE OHCLASS: 11'
dtype: float64
- name: 'SIZE OHCLASS: 11"'
dtype: float64
- name: 'SIZE OHCLASS: 11,5"'
dtype: float64
- name: 'SIZE OHCLASS: 11.5"'
dtype: float64
- name: 'SIZE OHCLASS: 11.8"'
dtype: float64
- name: 'SIZE OHCLASS: 12'
dtype: float64
- name: 'SIZE OHCLASS: 12"'
dtype: float64
- name: 'SIZE OHCLASS: 12.2'
dtype: float64
- name: 'SIZE OHCLASS: 12.5 inch'
dtype: float64
- name: 'SIZE OHCLASS: 12.5"'
dtype: float64
- name: 'SIZE OHCLASS: 12/24'
dtype: float64
- name: 'SIZE OHCLASS: 12/26'
dtype: float64
- name: 'SIZE OHCLASS: 13'
dtype: float64
- name: 'SIZE OHCLASS: 13"'
dtype: float64
- name: 'SIZE OHCLASS: 13,5'
dtype: float64
- name: 'SIZE OHCLASS: 13,5/26'
dtype: float64
- name: 'SIZE OHCLASS: 14'
dtype: float64
- name: 'SIZE OHCLASS: 14 '
dtype: float64
- name: 'SIZE OHCLASS: 14"'
dtype: float64
- name: 'SIZE OHCLASS: 14,5'
dtype: float64
- name: 'SIZE OHCLASS: 15'
dtype: float64
- name: 'SIZE OHCLASS: 15"'
dtype: float64
- name: 'SIZE OHCLASS: 15,5'
dtype: float64
- name: 'SIZE OHCLASS: 15,5"'
dtype: float64
- name: 'SIZE OHCLASS: 15-1/2"'
dtype: float64
- name: 'SIZE OHCLASS: 15.5'
dtype: float64
- name: 'SIZE OHCLASS: 16'
dtype: float64
- name: 'SIZE OHCLASS: 16 inch '
dtype: float64
- name: 'SIZE OHCLASS: 16"'
dtype: float64
- name: 'SIZE OHCLASS: 16'''
dtype: float64
- name: 'SIZE OHCLASS: 16'''''
dtype: float64
- name: 'SIZE OHCLASS: 16.1'
dtype: float64
- name: 'SIZE OHCLASS: 16.5'
dtype: float64
- name: 'SIZE OHCLASS: 16.5 Long'
dtype: float64
- name: 'SIZE OHCLASS: 163 cm'
dtype: float64
- name: 'SIZE OHCLASS: 16in - seat tube 40.6cm'
dtype: float64
- name: 'SIZE OHCLASS: 16inch'
dtype: float64
- name: 'SIZE OHCLASS: 17'
dtype: float64
- name: 'SIZE OHCLASS: 17"'
dtype: float64
- name: 'SIZE OHCLASS: 17,5'
dtype: float64
- name: 'SIZE OHCLASS: 17,5"'
dtype: float64
- name: 'SIZE OHCLASS: 17.5'
dtype: float64
- name: 'SIZE OHCLASS: 176'
dtype: float64
- name: 'SIZE OHCLASS: 18'
dtype: float64
- name: 'SIZE OHCLASS: 18 '
dtype: float64
- name: 'SIZE OHCLASS: 18"'
dtype: float64
- name: 'SIZE OHCLASS: 18.5'
dtype: float64
- name: 'SIZE OHCLASS: 18.5"'
dtype: float64
- name: 'SIZE OHCLASS: 19'
dtype: float64
- name: 'SIZE OHCLASS: 19 inch'
dtype: float64
- name: 'SIZE OHCLASS: 19 inches'
dtype: float64
- name: 'SIZE OHCLASS: 19"'
dtype: float64
- name: 'SIZE OHCLASS: 19'''''
dtype: float64
- name: 'SIZE OHCLASS: 19,5'
dtype: float64
- name: 'SIZE OHCLASS: 19.5'
dtype: float64
- name: 'SIZE OHCLASS: 19.5"'
dtype: float64
- name: 'SIZE OHCLASS: 19in - seat tube 48.3cm'
dtype: float64
- name: 'SIZE OHCLASS: 1SFA'
dtype: float64
- name: 'SIZE OHCLASS: 20'
dtype: float64
- name: 'SIZE OHCLASS: 20 inch'
dtype: float64
- name: 'SIZE OHCLASS: 20"'
dtype: float64
- name: 'SIZE OHCLASS: 20'''''
dtype: float64
- name: 'SIZE OHCLASS: 20'''' 20.875"'
dtype: float64
- name: 'SIZE OHCLASS: 20,5'
dtype: float64
- name: 'SIZE OHCLASS: 20,5"'
dtype: float64
- name: 'SIZE OHCLASS: 20,7'
dtype: float64
- name: 'SIZE OHCLASS: 20.5'
dtype: float64
- name: 'SIZE OHCLASS: 20.5" XL'
dtype: float64
- name: 'SIZE OHCLASS: 20.5"TT'
dtype: float64
- name: 'SIZE OHCLASS: 20.5''''TT'
dtype: float64
- name: 'SIZE OHCLASS: 20.5TT'
dtype: float64
- name: 'SIZE OHCLASS: 20.75"'
dtype: float64
- name: 'SIZE OHCLASS: 21'
dtype: float64
- name: 'SIZE OHCLASS: 21"'
dtype: float64
- name: 'SIZE OHCLASS: 21" TT'
dtype: float64
- name: 'SIZE OHCLASS: 21'''''
dtype: float64
- name: 'SIZE OHCLASS: 21.25'
dtype: float64
- name: 'SIZE OHCLASS: 21.325" Top tube'
dtype: float64
- name: 'SIZE OHCLASS: 21.5"'
dtype: float64
- name: 'SIZE OHCLASS: 22'
dtype: float64
- name: 'SIZE OHCLASS: 22"'
dtype: float64
- name: 'SIZE OHCLASS: 22" TT'
dtype: float64
- name: 'SIZE OHCLASS: 22.5'
dtype: float64
- name: 'SIZE OHCLASS: 22.5"'
dtype: float64
- name: 'SIZE OHCLASS: 23'
dtype: float64
- name: 'SIZE OHCLASS: 23"'
dtype: float64
- name: 'SIZE OHCLASS: 24'
dtype: float64
- name: 'SIZE OHCLASS: 24"'
dtype: float64
- name: 'SIZE OHCLASS: 24'''''
dtype: float64
- name: 'SIZE OHCLASS: 24.5'
dtype: float64
- name: 'SIZE OHCLASS: 24/27'
dtype: float64
- name: 'SIZE OHCLASS: 24in'
dtype: float64
- name: 'SIZE OHCLASS: 24inch'
dtype: float64
- name: 'SIZE OHCLASS: 25"'
dtype: float64
- name: 'SIZE OHCLASS: 257mm'
dtype: float64
- name: 'SIZE OHCLASS: 259'
dtype: float64
- name: 'SIZE OHCLASS: 26'
dtype: float64
- name: 'SIZE OHCLASS: 26 inch'
dtype: float64
- name: 'SIZE OHCLASS: 26"'
dtype: float64
- name: 'SIZE OHCLASS: 26'''''
dtype: float64
- name: 'SIZE OHCLASS: 26-20'
dtype: float64
- name: 'SIZE OHCLASS: 260mm'
dtype: float64
- name: 'SIZE OHCLASS: 26i'
dtype: float64
- name: 'SIZE OHCLASS: 26x3.7'
dtype: float64
- name: 'SIZE OHCLASS: 26´´'
dtype: float64
- name: 'SIZE OHCLASS: 26´'
dtype: float64
- name: 'SIZE OHCLASS: 27'
dtype: float64
- name: 'SIZE OHCLASS: 27"'
dtype: float64
- name: 'SIZE OHCLASS: 27..'
dtype: float64
- name: 'SIZE OHCLASS: 27/24'
dtype: float64
- name: 'SIZE OHCLASS: 28"'
dtype: float64
- name: 'SIZE OHCLASS: 29'
dtype: float64
- name: 'SIZE OHCLASS: 29" Msize'
dtype: float64
- name: 'SIZE OHCLASS: 290mm'
dtype: float64
- name: 'SIZE OHCLASS: 29er'
dtype: float64
- name: 'SIZE OHCLASS: 2XS'
dtype: float64
- name: 'SIZE OHCLASS: 33cm'
dtype: float64
- name: 'SIZE OHCLASS: 34'
dtype: float64
- name: 'SIZE OHCLASS: 36 inches'
dtype: float64
- name: 'SIZE OHCLASS: 36"'
dtype: float64
- name: 'SIZE OHCLASS: 375'
dtype: float64
- name: 'SIZE OHCLASS: 38'
dtype: float64
- name: 'SIZE OHCLASS: 390mm'
dtype: float64
- name: 'SIZE OHCLASS: 4'''
dtype: float64
- name: 'SIZE OHCLASS: 40'
dtype: float64
- name: 'SIZE OHCLASS: 400'
dtype: float64
- name: 'SIZE OHCLASS: 41'
dtype: float64
- name: 'SIZE OHCLASS: 410'
dtype: float64
- name: 'SIZE OHCLASS: 42'
dtype: float64
- name: 'SIZE OHCLASS: 420mm'
dtype: float64
- name: 'SIZE OHCLASS: 42cm'
dtype: float64
- name: 'SIZE OHCLASS: 43'
dtype: float64
- name: 'SIZE OHCLASS: 433Reach'
dtype: float64
- name: 'SIZE OHCLASS: 435Reach'
dtype: float64
- name: 'SIZE OHCLASS: 43cm'
dtype: float64
- name: 'SIZE OHCLASS: 44'
dtype: float64
- name: 'SIZE OHCLASS: 44 - 26"'
dtype: float64
- name: 'SIZE OHCLASS: 440'
dtype: float64
- name: 'SIZE OHCLASS: 45'
dtype: float64
- name: 'SIZE OHCLASS: 450'
dtype: float64
- name: 'SIZE OHCLASS: 45s'
dtype: float64
- name: 'SIZE OHCLASS: 46'
dtype: float64
- name: 'SIZE OHCLASS: 46,5cm'
dtype: float64
- name: 'SIZE OHCLASS: 460'
dtype: float64
- name: 'SIZE OHCLASS: 466'
dtype: float64
- name: 'SIZE OHCLASS: 47'
dtype: float64
- name: 'SIZE OHCLASS: 47,5'
dtype: float64
- name: 'SIZE OHCLASS: 470'
dtype: float64
- name: 'SIZE OHCLASS: 48'
dtype: float64
- name: 'SIZE OHCLASS: 48(50)'
dtype: float64
- name: 'SIZE OHCLASS: 48.5'
dtype: float64
- name: 'SIZE OHCLASS: 48/494 XS UCI-conf.'
dtype: float64
- name: 'SIZE OHCLASS: 480'
dtype: float64
- name: 'SIZE OHCLASS: 48cm'
dtype: float64
- name: 'SIZE OHCLASS: 49'
dtype: float64
- name: 'SIZE OHCLASS: 49.5'
dtype: float64
- name: 'SIZE OHCLASS: 49.5cm'
dtype: float64
- name: 'SIZE OHCLASS: 490'
dtype: float64
- name: 'SIZE OHCLASS: 49cm'
dtype: float64
- name: 'SIZE OHCLASS: 5'
dtype: float64
- name: 'SIZE OHCLASS: 5%/56'
dtype: float64
- name: 'SIZE OHCLASS: 5'''
dtype: float64
- name: 'SIZE OHCLASS: 5''8"'
dtype: float64
- name: 'SIZE OHCLASS: 5-6'
dtype: float64
- name: 'SIZE OHCLASS: 50'
dtype: float64
- name: 'SIZE OHCLASS: 50 cm'
dtype: float64
- name: 'SIZE OHCLASS: 50.5'
dtype: float64
- name: 'SIZE OHCLASS: 500'
dtype: float64
- name: 'SIZE OHCLASS: 500mm / 29.5" standover'
dtype: float64
- name: 'SIZE OHCLASS: 50cm'
dtype: float64
- name: 'SIZE OHCLASS: 50s'
dtype: float64
- name: 'SIZE OHCLASS: 50x52'
dtype: float64
- name: 'SIZE OHCLASS: 51'
dtype: float64
- name: 'SIZE OHCLASS: 51 (compact)'
dtype: float64
- name: 'SIZE OHCLASS: 51 cm'
dtype: float64
- name: 'SIZE OHCLASS: 51-57'
dtype: float64
- name: 'SIZE OHCLASS: 51-59'
dtype: float64
- name: 'SIZE OHCLASS: 51.5'
dtype: float64
- name: 'SIZE OHCLASS: 510'
dtype: float64
- name: 'SIZE OHCLASS: 510 ETT'
dtype: float64
- name: 'SIZE OHCLASS: 513'
dtype: float64
- name: 'SIZE OHCLASS: 515'
dtype: float64
- name: 'SIZE OHCLASS: 515 ETT'
dtype: float64
- name: 'SIZE OHCLASS: 51cm'
dtype: float64
- name: 'SIZE OHCLASS: 51cm / S'
dtype: float64
- name: 'SIZE OHCLASS: 51cm.'
dtype: float64
- name: 'SIZE OHCLASS: 51ish'
dtype: float64
- name: 'SIZE OHCLASS: 52'
dtype: float64
- name: 'SIZE OHCLASS: 52,5'
dtype: float64
- name: 'SIZE OHCLASS: 52-55'
dtype: float64
- name: 'SIZE OHCLASS: 52-55.5'
dtype: float64
- name: 'SIZE OHCLASS: 52.4'
dtype: float64
- name: 'SIZE OHCLASS: 52.5'
dtype: float64
- name: 'SIZE OHCLASS: 52.5x 52'
dtype: float64
- name: 'SIZE OHCLASS: 52/56'
dtype: float64
- name: 'SIZE OHCLASS: 520'
dtype: float64
- name: 'SIZE OHCLASS: 520 ETT'
dtype: float64
- name: 'SIZE OHCLASS: 525'
dtype: float64
- name: 'SIZE OHCLASS: 527'
dtype: float64
- name: 'SIZE OHCLASS: 528'
dtype: float64
- name: 'SIZE OHCLASS: 52X54'
dtype: float64
- name: 'SIZE OHCLASS: 52cm'
dtype: float64
- name: 'SIZE OHCLASS: 52ish'
dtype: float64
- name: 'SIZE OHCLASS: 52t'
dtype: float64
- name: 'SIZE OHCLASS: 52x54'
dtype: float64
- name: 'SIZE OHCLASS: 53'
dtype: float64
- name: 'SIZE OHCLASS: 53.2'
dtype: float64
- name: 'SIZE OHCLASS: 53.5'
dtype: float64
- name: 'SIZE OHCLASS: 53/54'
dtype: float64
- name: 'SIZE OHCLASS: 530'
dtype: float64
- name: 'SIZE OHCLASS: 530 ETT'
dtype: float64
- name: 'SIZE OHCLASS: 535'
dtype: float64
- name: 'SIZE OHCLASS: 535-PB'
dtype: float64
- name: 'SIZE OHCLASS: 53CM'
dtype: float64
- name: 'SIZE OHCLASS: 53cm'
dtype: float64
- name: 'SIZE OHCLASS: 53t'
dtype: float64
- name: 'SIZE OHCLASS: 53x53'
dtype: float64
- name: 'SIZE OHCLASS: 54'
dtype: float64
- name: 'SIZE OHCLASS: 54 cm'
dtype: float64
- name: 'SIZE OHCLASS: 54 x 56'
dtype: float64
- name: 'SIZE OHCLASS: 54,5'
dtype: float64
- name: 'SIZE OHCLASS: 54-57'
dtype: float64
- name: 'SIZE OHCLASS: 54.5'
dtype: float64
- name: 'SIZE OHCLASS: 54.5cm'
dtype: float64
- name: 'SIZE OHCLASS: 54/M'
dtype: float64
- name: 'SIZE OHCLASS: 540'
dtype: float64
- name: 'SIZE OHCLASS: 540-JF'
dtype: float64
- name: 'SIZE OHCLASS: 545'
dtype: float64
- name: 'SIZE OHCLASS: 545x555'
dtype: float64
- name: 'SIZE OHCLASS: 54cm'
dtype: float64
- name: 'SIZE OHCLASS: 54cm.'
dtype: float64
- name: 'SIZE OHCLASS: 54h'
dtype: float64
- name: 'SIZE OHCLASS: 54x50'
dtype: float64
- name: 'SIZE OHCLASS: 55'
dtype: float64
- name: 'SIZE OHCLASS: 55 custom '
dtype: float64
- name: 'SIZE OHCLASS: 55,5'
dtype: float64
- name: 'SIZE OHCLASS: 55-55'
dtype: float64
- name: 'SIZE OHCLASS: 55-56'
dtype: float64
- name: 'SIZE OHCLASS: 55.5'
dtype: float64
- name: 'SIZE OHCLASS: 55.9cm'
dtype: float64
- name: 'SIZE OHCLASS: 550'
dtype: float64
- name: 'SIZE OHCLASS: 555'
dtype: float64
- name: 'SIZE OHCLASS: 555x560'
dtype: float64
- name: 'SIZE OHCLASS: 556'
dtype: float64
- name: 'SIZE OHCLASS: 55cm'
dtype: float64
- name: 'SIZE OHCLASS: 55cm Compact'
dtype: float64
- name: 'SIZE OHCLASS: 55mm'
dtype: float64
- name: 'SIZE OHCLASS: 55x54'
dtype: float64
- name: 'SIZE OHCLASS: 56'
dtype: float64
- name: 'SIZE OHCLASS: 56 / 700'
dtype: float64
- name: 'SIZE OHCLASS: 56 c-c 56'
dtype: float64
- name: 'SIZE OHCLASS: 56 c-c 57'
dtype: float64
- name: 'SIZE OHCLASS: 56 cc-cc 58'
dtype: float64
- name: 'SIZE OHCLASS: 56 cm'
dtype: float64
- name: 'SIZE OHCLASS: 56"'
dtype: float64
- name: 'SIZE OHCLASS: 56-56'
dtype: float64
- name: 'SIZE OHCLASS: 56.1'
dtype: float64
- name: 'SIZE OHCLASS: 56.5'
dtype: float64
- name: 'SIZE OHCLASS: 560'
dtype: float64
- name: 'SIZE OHCLASS: 560tt'
dtype: float64
- name: 'SIZE OHCLASS: 565'
dtype: float64
- name: 'SIZE OHCLASS: 565x560'
dtype: float64
- name: 'SIZE OHCLASS: 566'
dtype: float64
- name: 'SIZE OHCLASS: 56?'
dtype: float64
- name: 'SIZE OHCLASS: 56cm'
dtype: float64
- name: 'SIZE OHCLASS: 56cm TT'
dtype: float64
- name: 'SIZE OHCLASS: 56cm.'
dtype: float64
- name: 'SIZE OHCLASS: 56cm. '
dtype: float64
- name: 'SIZE OHCLASS: 56ish'
dtype: float64
- name: 'SIZE OHCLASS: 56mm'
dtype: float64
- name: 'SIZE OHCLASS: 56x52'
dtype: float64
- name: 'SIZE OHCLASS: 56x57'
dtype: float64
- name: 'SIZE OHCLASS: 57'
dtype: float64
- name: 'SIZE OHCLASS: 57 cm'
dtype: float64
- name: 'SIZE OHCLASS: 57-56'
dtype: float64
- name: 'SIZE OHCLASS: 57.5'
dtype: float64
- name: 'SIZE OHCLASS: 57/58'
dtype: float64
- name: 'SIZE OHCLASS: 570'
dtype: float64
- name: 'SIZE OHCLASS: 570 c-c 565'
dtype: float64
- name: 'SIZE OHCLASS: 570ETT'
dtype: float64
- name: 'SIZE OHCLASS: 575'
dtype: float64
- name: 'SIZE OHCLASS: 575/399'
dtype: float64
- name: 'SIZE OHCLASS: 57cm'
dtype: float64
- name: 'SIZE OHCLASS: 57mm'
dtype: float64
- name: 'SIZE OHCLASS: 57x55.5'
dtype: float64
- name: 'SIZE OHCLASS: 57x56'
dtype: float64
- name: 'SIZE OHCLASS: 58'
dtype: float64
- name: 'SIZE OHCLASS: 58 75ºHT'
dtype: float64
- name: 'SIZE OHCLASS: 58 cm'
dtype: float64
- name: 'SIZE OHCLASS: 58-56'
dtype: float64
- name: 'SIZE OHCLASS: 58-57'
dtype: float64
- name: 'SIZE OHCLASS: 58.5'
dtype: float64
- name: 'SIZE OHCLASS: 580'
dtype: float64
- name: 'SIZE OHCLASS: 585'
dtype: float64
- name: 'SIZE OHCLASS: 58cm'
dtype: float64
- name: 'SIZE OHCLASS: 58cm.'
dtype: float64
- name: 'SIZE OHCLASS: 58cm/ct'
dtype: float64
- name: 'SIZE OHCLASS: 58cms'
dtype: float64
- name: 'SIZE OHCLASS: 58ish'
dtype: float64
- name: 'SIZE OHCLASS: 58st-59tt'
dtype: float64
- name: 'SIZE OHCLASS: 59'
dtype: float64
- name: 'SIZE OHCLASS: 59*60'
dtype: float64
- name: 'SIZE OHCLASS: 59-56'
dtype: float64
- name: 'SIZE OHCLASS: 59-57'
dtype: float64
- name: 'SIZE OHCLASS: 59.5'
dtype: float64
- name: 'SIZE OHCLASS: 59/58'
dtype: float64
- name: 'SIZE OHCLASS: 590'
dtype: float64
- name: 'SIZE OHCLASS: 59cc'
dtype: float64
- name: 'SIZE OHCLASS: 59cm'
dtype: float64
- name: 'SIZE OHCLASS: 59cm.'
dtype: float64
- name: 'SIZE OHCLASS: 60'
dtype: float64
- name: 'SIZE OHCLASS: 60 cm'
dtype: float64
- name: 'SIZE OHCLASS: 60-55.75'
dtype: float64
- name: 'SIZE OHCLASS: 60-56'
dtype: float64
- name: 'SIZE OHCLASS: 60-57'
dtype: float64
- name: 'SIZE OHCLASS: 60-58'
dtype: float64
- name: 'SIZE OHCLASS: 600'
dtype: float64
- name: 'SIZE OHCLASS: 600,5'
dtype: float64
- name: 'SIZE OHCLASS: 605'
dtype: float64
- name: 'SIZE OHCLASS: 60cm'
dtype: float64
- name: 'SIZE OHCLASS: 60cm TT'
dtype: float64
- name: 'SIZE OHCLASS: 61'
dtype: float64
- name: 'SIZE OHCLASS: 61 cm'
dtype: float64
- name: 'SIZE OHCLASS: 61*58'
dtype: float64
- name: 'SIZE OHCLASS: 61-57'
dtype: float64
- name: 'SIZE OHCLASS: 610'
dtype: float64
- name: 'SIZE OHCLASS: 610S'
dtype: float64
- name: 'SIZE OHCLASS: 616'
dtype: float64
- name: 'SIZE OHCLASS: 61cm'
dtype: float64
- name: 'SIZE OHCLASS: 61x60cm'
dtype: float64
- name: 'SIZE OHCLASS: 62'
dtype: float64
- name: 'SIZE OHCLASS: 62-57'
dtype: float64
- name: 'SIZE OHCLASS: 62-59'
dtype: float64
- name: 'SIZE OHCLASS: 62.5'
dtype: float64
- name: 'SIZE OHCLASS: 623ETT'
dtype: float64
- name: 'SIZE OHCLASS: 628mm'
dtype: float64
- name: 'SIZE OHCLASS: 62cm'
dtype: float64
- name: 'SIZE OHCLASS: 63'
dtype: float64
- name: 'SIZE OHCLASS: 63 cm'
dtype: float64
- name: 'SIZE OHCLASS: 63 cm (CC)'
dtype: float64
- name: 'SIZE OHCLASS: 63-57'
dtype: float64
- name: 'SIZE OHCLASS: 63-58'
dtype: float64
- name: 'SIZE OHCLASS: 63.5'
dtype: float64
- name: 'SIZE OHCLASS: 63.5cm'
dtype: float64
- name: 'SIZE OHCLASS: 635'
dtype: float64
- name: 'SIZE OHCLASS: 64'
dtype: float64
- name: 'SIZE OHCLASS: 64 c-c 57'
dtype: float64
- name: 'SIZE OHCLASS: 64-57'
dtype: float64
- name: 'SIZE OHCLASS: 64cm'
dtype: float64
- name: 'SIZE OHCLASS: 65'
dtype: float64
- name: 'SIZE OHCLASS: 65 cm'
dtype: float64
- name: 'SIZE OHCLASS: 650Bx40'
dtype: float64
- name: 'SIZE OHCLASS: 650c'
dtype: float64
- name: 'SIZE OHCLASS: 66'
dtype: float64
- name: 'SIZE OHCLASS: 66cm'
dtype: float64
- name: 'SIZE OHCLASS: 67'
dtype: float64
- name: 'SIZE OHCLASS: 68'
dtype: float64
- name: 'SIZE OHCLASS: 68.5cm'
dtype: float64
- name: 'SIZE OHCLASS: 6ft Rider'
dtype: float64
- name: 'SIZE OHCLASS: 7-8'
dtype: float64
- name: 'SIZE OHCLASS: 700*40'
dtype: float64
- name: 'SIZE OHCLASS: 700C'
dtype: float64
- name: 'SIZE OHCLASS: 700c'
dtype: float64
- name: 'SIZE OHCLASS: 75 71'
dtype: float64
- name: 'SIZE OHCLASS: 80'
dtype: float64
- name: 'SIZE OHCLASS: :Large'
dtype: float64
- name: 'SIZE OHCLASS: ?'
dtype: float64
- name: 'SIZE OHCLASS: ??'
dtype: float64
- name: 'SIZE OHCLASS: ???'
dtype: float64
- name: 'SIZE OHCLASS: ADIVARI'
dtype: float64
- name: 'SIZE OHCLASS: BIG GRRL'
dtype: float64
- name: 'SIZE OHCLASS: Big'
dtype: float64
- name: 'SIZE OHCLASS: Bigg'
dtype: float64
- name: 'SIZE OHCLASS: Custom'
dtype: float64
- name: 'SIZE OHCLASS: Custom '
dtype: float64
- name: 'SIZE OHCLASS: Custom Womens'
dtype: float64
- name: 'SIZE OHCLASS: EPIC'
dtype: float64
- name: 'SIZE OHCLASS: FUCKIN LARGE'
dtype: float64
- name: 'SIZE OHCLASS: Huge'
dtype: float64
- name: 'SIZE OHCLASS: JB'
dtype: float64
- name: 'SIZE OHCLASS: Kruiser'
dtype: float64
- name: 'SIZE OHCLASS: L'
dtype: float64
- name: 'SIZE OHCLASS: L '
dtype: float64
- name: 'SIZE OHCLASS: L (Short TT)'
dtype: float64
- name: 'SIZE OHCLASS: L(18.5")'
dtype: float64
- name: 'SIZE OHCLASS: L(54cm)'
dtype: float64
- name: 'SIZE OHCLASS: L-22.5"'
dtype: float64
- name: 'SIZE OHCLASS: L/56'
dtype: float64
- name: 'SIZE OHCLASS: LARGE'
dtype: float64
- name: 'SIZE OHCLASS: LG'
dtype: float64
- name: 'SIZE OHCLASS: LINDSAY'
dtype: float64
- name: 'SIZE OHCLASS: LOOSE'
dtype: float64
- name: 'SIZE OHCLASS: Large'
dtype: float64
- name: 'SIZE OHCLASS: M'
dtype: float64
- name: 'SIZE OHCLASS: M '
dtype: float64
- name: 'SIZE OHCLASS: M (54)'
dtype: float64
- name: 'SIZE OHCLASS: M (I think)'
dtype: float64
- name: 'SIZE OHCLASS: M - seat post 48cm'
dtype: float64
- name: 'SIZE OHCLASS: M - seat tube 44.4cm'
dtype: float64
- name: 'SIZE OHCLASS: M - seat tube 48cm'
dtype: float64
- name: 'SIZE OHCLASS: M - seat tube 50cm'
dtype: float64
- name: 'SIZE OHCLASS: M - seat tube 51cm'
dtype: float64
- name: 'SIZE OHCLASS: M - seat tube 53cm'
dtype: float64
- name: 'SIZE OHCLASS: M / 553'
dtype: float64
- name: 'SIZE OHCLASS: M / L'
dtype: float64
- name: 'SIZE OHCLASS: M // 54'
dtype: float64
- name: 'SIZE OHCLASS: M(18.0")'
dtype: float64
- name: 'SIZE OHCLASS: M-L'
dtype: float64
- name: 'SIZE OHCLASS: M/54'
dtype: float64
- name: 'SIZE OHCLASS: M/56'
dtype: float64
- name: 'SIZE OHCLASS: M/L'
dtype: float64
- name: 'SIZE OHCLASS: M/L (custom)'
dtype: float64
- name: 'SIZE OHCLASS: MCP'
dtype: float64
- name: 'SIZE OHCLASS: MD-Long'
dtype: float64
- name: 'SIZE OHCLASS: MED'
dtype: float64
- name: 'SIZE OHCLASS: MEDIUM'
dtype: float64
- name: 'SIZE OHCLASS: ML'
dtype: float64
- name: 'SIZE OHCLASS: Med'
dtype: float64
- name: 'SIZE OHCLASS: Med 27.5+'
dtype: float64
- name: 'SIZE OHCLASS: Medium'
dtype: float64
- name: 'SIZE OHCLASS: Medium '
dtype: float64
- name: 'SIZE OHCLASS: Men''s'
dtype: float64
- name: 'SIZE OHCLASS: My Size'
dtype: float64
- name: 'SIZE OHCLASS: NONE'
dtype: float64
- name: 'SIZE OHCLASS: NSBIKES'
dtype: float64
- name: 'SIZE OHCLASS: Niner Air 9 Carbon L'
dtype: float64
- name: 'SIZE OHCLASS: One Size Fits All'
dtype: float64
- name: 'SIZE OHCLASS: One size fits most'
dtype: float64
- name: 'SIZE OHCLASS: P'
dtype: float64
- name: 'SIZE OHCLASS: PERFECT FIT'
dtype: float64
- name: 'SIZE OHCLASS: Q'
dtype: float64
- name: 'SIZE OHCLASS: R:24-F:20'
dtype: float64
- name: 'SIZE OHCLASS: Red'
dtype: float64
- name: 'SIZE OHCLASS: S'
dtype: float64
- name: 'SIZE OHCLASS: S (50)'
dtype: float64
- name: 'SIZE OHCLASS: S / 48cm'
dtype: float64
- name: 'SIZE OHCLASS: S mullet'
dtype: float64
- name: 'SIZE OHCLASS: S/52'
dtype: float64
- name: 'SIZE OHCLASS: S/M'
dtype: float64
- name: 'SIZE OHCLASS: SM'
dtype: float64
- name: 'SIZE OHCLASS: SMALL'
dtype: float64
- name: 'SIZE OHCLASS: Short'
dtype: float64
- name: 'SIZE OHCLASS: Side swiper'
dtype: float64
- name: 'SIZE OHCLASS: Small'
dtype: float64
- name: 'SIZE OHCLASS: Special'
dtype: float64
- name: 'SIZE OHCLASS: Tiny'
dtype: float64
- name: 'SIZE OHCLASS: Troy'
dtype: float64
- name: 'SIZE OHCLASS: UNKLAR'
dtype: float64
- name: 'SIZE OHCLASS: Unknown'
dtype: float64
- name: 'SIZE OHCLASS: Very BIG'
dtype: float64
- name: 'SIZE OHCLASS: X SMALL'
dtype: float64
- name: 'SIZE OHCLASS: X-Large'
dtype: float64
- name: 'SIZE OHCLASS: XL'
dtype: float64
- name: 'SIZE OHCLASS: XS'
dtype: float64
- name: 'SIZE OHCLASS: XS430mm'
dtype: float64
- name: 'SIZE OHCLASS: XX'
dtype: float64
- name: 'SIZE OHCLASS: XXL'
dtype: float64
- name: 'SIZE OHCLASS: XXS'
dtype: float64
- name: 'SIZE OHCLASS: XXXL'
dtype: float64
- name: 'SIZE OHCLASS: YOUR CHOICE'
dtype: float64
- name: 'SIZE OHCLASS: a'
dtype: float64
- name: 'SIZE OHCLASS: aerobike'
dtype: float64
- name: 'SIZE OHCLASS: asd'
dtype: float64
- name: 'SIZE OHCLASS: asdasd'
dtype: float64
- name: 'SIZE OHCLASS: bespoke'
dtype: float64
- name: 'SIZE OHCLASS: big'
dtype: float64
- name: 'SIZE OHCLASS: big frame'
dtype: float64
- name: 'SIZE OHCLASS: bike 4'
dtype: float64
- name: 'SIZE OHCLASS: c-c 56x56'
dtype: float64
- name: 'SIZE OHCLASS: custom'
dtype: float64
- name: 'SIZE OHCLASS: custon'
dtype: float64
- name: 'SIZE OHCLASS: dfj'
dtype: float64
- name: 'SIZE OHCLASS: dfsag'
dtype: float64
- name: 'SIZE OHCLASS: dfssFASFF'
dtype: float64
- name: 'SIZE OHCLASS: dsff'
dtype: float64
- name: 'SIZE OHCLASS: dsffs'
dtype: float64
- name: 'SIZE OHCLASS: eu'
dtype: float64
- name: 'SIZE OHCLASS: fdgksnbkjdnbksdhfffu'
dtype: float64
- name: 'SIZE OHCLASS: fdvasb'
dtype: float64
- name: 'SIZE OHCLASS: fernandin'
dtype: float64
- name: 'SIZE OHCLASS: fhfh'
dtype: float64
- name: 'SIZE OHCLASS: full'
dtype: float64
- name: 'SIZE OHCLASS: gf'
dtype: float64
- name: 'SIZE OHCLASS: hua'
dtype: float64
- name: 'SIZE OHCLASS: l'
dtype: float64
- name: 'SIZE OHCLASS: large'
dtype: float64
- name: 'SIZE OHCLASS: large '
dtype: float64
- name: 'SIZE OHCLASS: lk'
dtype: float64
- name: 'SIZE OHCLASS: long'
dtype: float64
- name: 'SIZE OHCLASS: lrg'
dtype: float64
- name: 'SIZE OHCLASS: luiz fernando'
dtype: float64
- name: 'SIZE OHCLASS: m'
dtype: float64
- name: 'SIZE OHCLASS: m,l'
dtype: float64
- name: 'SIZE OHCLASS: make by size'
dtype: float64
- name: 'SIZE OHCLASS: me'
dtype: float64
- name: 'SIZE OHCLASS: med'
dtype: float64
- name: 'SIZE OHCLASS: med.'
dtype: float64
- name: 'SIZE OHCLASS: medium'
dtype: float64
- name: 'SIZE OHCLASS: medius'
dtype: float64
- name: 'SIZE OHCLASS: mine'
dtype: float64
- name: 'SIZE OHCLASS: mini'
dtype: float64
- name: 'SIZE OHCLASS: my'
dtype: float64
- name: 'SIZE OHCLASS: nkjos'
dtype: float64
- name: 'SIZE OHCLASS: none'
dtype: float64
- name: 'SIZE OHCLASS: normal'
dtype: float64
- name: 'SIZE OHCLASS: one'
dtype: float64
- name: 'SIZE OHCLASS: one size'
dtype: float64
- name: 'SIZE OHCLASS: park'
dtype: float64
- name: 'SIZE OHCLASS: pequeña'
dtype: float64
- name: 'SIZE OHCLASS: perfect'
dtype: float64
- name: 'SIZE OHCLASS: proxxxl'
dtype: float64
- name: 'SIZE OHCLASS: s'
dtype: float64
- name: 'SIZE OHCLASS: s/15.5'
dtype: float64
- name: 'SIZE OHCLASS: sabvadvb'
dtype: float64
- name: 'SIZE OHCLASS: scv.jslv'
dtype: float64
- name: 'SIZE OHCLASS: sff'
dtype: float64
- name: 'SIZE OHCLASS: slack 72'
dtype: float64
- name: 'SIZE OHCLASS: small'
dtype: float64
- name: 'SIZE OHCLASS: test'
dtype: float64
- name: 'SIZE OHCLASS: uni'
dtype: float64
- name: 'SIZE OHCLASS: wheels 26'
dtype: float64
- name: 'SIZE OHCLASS: xl'
dtype: float64
- name: 'SIZE OHCLASS: xm'
dtype: float64
- name: 'SIZE OHCLASS: xs'
dtype: float64
- name: 'SIZE OHCLASS: xsmall'
dtype: float64
- name: 'SIZE OHCLASS: xt'
dtype: float64
- name: 'SIZE OHCLASS: xx'
dtype: float64
- name: 'SIZE OHCLASS: xxl'
dtype: float64
- name: 'SIZE OHCLASS: xxl-6deg'
dtype: float64
- name: 'SIZE OHCLASS: xxs'
dtype: float64
- name: 'SIZE OHCLASS: xxxxs'
dtype: float64
- name: 'SIZE OHCLASS: zfzf'
dtype: float64
- name: 'SIZE OHCLASS: zv'
dtype: float64
- name: 'SIZE OHCLASS: ~14'
dtype: float64
- name: 'SIZE OHCLASS: ~M'
dtype: float64
- name: 'StaticDropout OHCLASS: ADG_400'
dtype: float64
- name: 'StaticDropout OHCLASS: BINGHAM_12CON'
dtype: float64
- name: 'StaticDropout OHCLASS: BREADWINNER_LOW_MOUNT'
dtype: float64
- name: 'StaticDropout OHCLASS: BREADWINNER_ROAD_V2'
dtype: float64
- name: 'StaticDropout OHCLASS: BREADWINNER_SS'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0001'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0004'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0008'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0009'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0012'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0019'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0022'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0026'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0030'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0034'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0040'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0065'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0090'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0092'
dtype: float64
- name: 'StaticDropout OHCLASS: DR0097'
dtype: float64
- name: 'StaticDropout OHCLASS: DR2038'
dtype: float64
- name: 'StaticDropout OHCLASS: DR2085'
dtype: float64
- name: 'StaticDropout OHCLASS: DR2090'
dtype: float64
- name: 'StaticDropout OHCLASS: DS0001'
dtype: float64
- name: 'StaticDropout OHCLASS: DS0004'
dtype: float64
- name: 'StaticDropout OHCLASS: DS0030'
dtype: float64
- name: 'StaticDropout OHCLASS: DS0035'
dtype: float64
- name: 'StaticDropout OHCLASS: DS0090'
dtype: float64
- name: 'StaticDropout OHCLASS: DS0091'
dtype: float64
- name: 'StaticDropout OHCLASS: Fat Chance Yo Eddy'
dtype: float64
- name: 'StaticDropout OHCLASS: FatChanceYoEddy2018'
dtype: float64
- name: 'StaticDropout OHCLASS: Festka_Road'
dtype: float64
- name: 'StaticDropout OHCLASS: Festka_Track'
dtype: float64
- name: 'StaticDropout OHCLASS: Field_NMOTS_02'
dtype: float64
- name: 'StaticDropout OHCLASS: LOCOR56Hrz'
dtype: float64
- name: 'StaticDropout OHCLASS: LOCOR56X12'
dtype: float64
- name: 'StaticDropout OHCLASS: LOCOR56X12Kompakt'
dtype: float64
- name: 'StaticDropout OHCLASS: LOCOX12'
dtype: float64
- name: 'StaticDropout OHCLASS: LOCO_13_Hooded_Hrz'
dtype: float64
- name: 'StaticDropout OHCLASS: LOCO_15_Hooded_Hrz'
dtype: float64
- name: 'StaticDropout OHCLASS: LOCO_15_Hooded_Vrt'
dtype: float64
- name: 'StaticDropout OHCLASS: NOVA14212'
dtype: float64
- name: 'StaticDropout OHCLASS: PD000'
dtype: float64
- name: 'StaticDropout OHCLASS: RS64'
dtype: float64
- name: 'StaticDropout OHCLASS: RS72'
dtype: float64
- name: 'nCSAUX2_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'nCSAUX2_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'Dropout spacing style OHCLASS: 0'
dtype: float64
- name: 'Dropout spacing style OHCLASS: 1'
dtype: float64
- name: 'Dropout spacing style OHCLASS: 2'
dtype: float64
- name: 'Dropout spacing style OHCLASS: 3'
dtype: float64
- name: 'RIM_STYLE front OHCLASS: DISC'
dtype: float64
- name: 'RIM_STYLE front OHCLASS: SPOKED'
dtype: float64
- name: 'RIM_STYLE front OHCLASS: TRISPOKE'
dtype: float64
- name: 'SSAUX2_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'SSAUX2_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 1-speed 16T'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 1-speed 17T'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 1-speed 18T'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 1-speed 20T'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 11-23'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 11-25'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 11-28'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 11-30'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 11-32'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 11-34'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 12-23'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 12-25'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 12-28'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 12-30'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 12-32'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 13-25'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 10-speed 14-28'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 11-29'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 11-speed 11-30'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 11-speed 11-40'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 11-speed 12-30'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 7-speed 11-28'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 7-speed 11-32'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 8-speed 12-23'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 8-speed 12-25'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 8-speed 12-28'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 8-speed 12-32'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 9-speed 11-25'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 9-speed 11-28'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 9-speed 11-30'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 9-speed 11-32'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 9-speed 12-23'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 9-speed 12-25'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 9-speed 12-28'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 9-speed 12-30'
dtype: float64
- name: 'SPROCKETS type OHCLASS: 9-speed 12-32'
dtype: float64
- name: 'SPROCKETS type OHCLASS: Sram XX1 XG1199'
dtype: float64
- name: 'SPROCKETS type OHCLASS: XX1 Like'
dtype: float64
- name: 'PhBlock typeDOWNTUBE OHCLASS: 32mm Sputnik'
dtype: float64
- name: 'PhBlock typeDOWNTUBE OHCLASS: 48mm Sputnik'
dtype: float64
- name: 'SEATTUBEBENDS OHCLASS: 0'
dtype: float64
- name: 'SEATTUBEBENDS OHCLASS: 1'
dtype: float64
- name: 'DropoutParamOrStatic OHCLASS: 0'
dtype: float64
- name: 'DropoutParamOrStatic OHCLASS: 1'
dtype: float64
- name: 'nSeat stay mount location OHCLASS: 0'
dtype: float64
- name: 'nSeat stay mount location OHCLASS: 1'
dtype: float64
- name: 'nSeat stay mount location OHCLASS: 2'
dtype: float64
- name: 'nSeat stay mount location OHCLASS: 3'
dtype: float64
- name: 'nSeat stay mount location OHCLASS: 4'
dtype: float64
- name: 'ShoeTipOrCleatX OHCLASS: 0'
dtype: float64
- name: 'ShoeTipOrCleatX OHCLASS: 1'
dtype: float64
- name: 'nSSAUX2_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'nSSAUX2_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'GEARBOXtype OHCLASS: BOSCH_STEEL_NODE_V23A'
dtype: float64
- name: 'GEARBOXtype OHCLASS: BafangM800'
dtype: float64
- name: 'GEARBOXtype OHCLASS: BafangMMG330250'
dtype: float64
- name: 'GEARBOXtype OHCLASS: PINIONP118'
dtype: float64
- name: 'GEARBOXtype OHCLASS: PINIONP118withSTEEL_BRIDGE'
dtype: float64
- name: 'GEARBOXtype OHCLASS: SHIMANO_STEPS_6000'
dtype: float64
- name: 'GEARBOXtype OHCLASS: SHIMANO_STEPS_6000_WITH_MOTOR_CABINET'
dtype: float64
- name: 'GEARBOXtype OHCLASS: SHIMANO_STEPS_8000_WITH_MOTOR_CABINET'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR2063'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4001'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4002'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4005_DR4009'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4005_DR4013'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4005_DR4025'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4011_DR4009'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4014_DR4016'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4015_DR4016'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4030_DR4029'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4031_DR4029'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4032_DR4027'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4034'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4037_DR4027'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4039_DR4027'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4042_DR4029'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4042_DR4048'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4043_DR4029'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4044_DR4027'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4045_DR4009'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4045_DR4025'
dtype: float64
- name: 'dropoutInsert OHCLASS: DR4090'
dtype: float64
- name: 'dropoutInsert OHCLASS: NONE'
dtype: float64
- name: 'dropoutInsert OHCLASS: PA401_PA402'
dtype: float64
- name: 'dropoutInsert OHCLASS: PA417_PA410'
dtype: float64
- name: 'dropoutInsert OHCLASS: PA427_PA410'
dtype: float64
- name: 'dropoutInsert OHCLASS: PA441_PA430'
dtype: float64
- name: 'dropoutInsert OHCLASS: Paragon DR4033'
dtype: float64
- name: 'dropoutInsert OHCLASS: Paragon DR4035'
dtype: float64
- name: 'dropoutInsert OHCLASS: Paragon DR4038'
dtype: float64
- name: 'dropoutInsert OHCLASS: Paragon DR4040'
dtype: float64
- name: 'dropoutInsert OHCLASS: SY4013'
dtype: float64
- name: 'dropoutInsert OHCLASS: WELD_ON_DISC_TAB'
dtype: float64
- name: 'HORIZONTAL_TOP OHCLASS: 0'
dtype: float64
- name: 'HORIZONTAL_TOP OHCLASS: 1'
dtype: float64
- name: 'HORIZONTAL_TOP OHCLASS: 2'
dtype: float64
- name: 'CARGO style OHCLASS: 0'
dtype: float64
- name: 'CARGO style OHCLASS: 1'
dtype: float64
- name: 'PANNIER style OHCLASS: 0'
dtype: float64
- name: 'PANNIER style OHCLASS: 1'
dtype: float64
- name: 'REARdiscB type OHCLASS: Generic 160mm I.S.'
dtype: float64
- name: 'REARdiscB type OHCLASS: Generic 180mm I.S.'
dtype: float64
- name: 'REARdiscB type OHCLASS: Generic Rear Flat Mount'
dtype: float64
- name: 'spc type OHCLASS: 0'
dtype: float64
- name: 'spc type OHCLASS: 1'
dtype: float64
- name: 'spc type OHCLASS: 2'
dtype: float64
- name: 'spc type OHCLASS: 3'
dtype: float64
- name: 'FRONTRack style OHCLASS: 0'
dtype: float64
- name: 'FRONTRack style OHCLASS: 1'
dtype: float64
- name: 'Cranks type OHCLASS: 170 Campy Record'
dtype: float64
- name: 'Cranks type OHCLASS: 170 SRAM RED'
dtype: float64
- name: 'Cranks type OHCLASS: 170 SRAM XX'
dtype: float64
- name: 'Cranks type OHCLASS: 170 Shimano Road'
dtype: float64
- name: 'Cranks type OHCLASS: 172.5 44/32/22'
dtype: float64
- name: 'Cranks type OHCLASS: 172.5 50/36'
dtype: float64
- name: 'Cranks type OHCLASS: 172.5 52/42'
dtype: float64
- name: 'Cranks type OHCLASS: 172.5 53/39'
dtype: float64
- name: 'Cranks type OHCLASS: 175 Campy Record'
dtype: float64
- name: 'Cranks type OHCLASS: 175 SRAM RED'
dtype: float64
- name: 'Cranks type OHCLASS: 175 SRAM XX'
dtype: float64
- name: 'Cranks type OHCLASS: 175 Shimano Road'
dtype: float64
- name: 'Cranks type OHCLASS: 2 Speed DH Crank and Chain'
dtype: float64
- name: 'Cranks type OHCLASS: Campy Record'
dtype: float64
- name: 'Cranks type OHCLASS: DH Mountain Crank'
dtype: float64
- name: 'Cranks type OHCLASS: Miche Sugino 44/170'
dtype: float64
- name: 'Cranks type OHCLASS: Miranda 38/170'
dtype: float64
- name: 'Cranks type OHCLASS: Mr Whirly 100mm WMWOB'
dtype: float64
- name: 'Cranks type OHCLASS: Shimano XT'
dtype: float64
- name: 'Pedals style OHCLASS: 0'
dtype: float64
- name: 'Pedals style OHCLASS: 1'
dtype: float64
- name: 'Aerobar style OHCLASS: 0'
dtype: float64
- name: 'Aerobar style OHCLASS: 1'
dtype: float64
- name: 'SHIFTERtype OHCLASS: 0'
dtype: float64
- name: 'SHIFTERtype OHCLASS: 1'
dtype: float64
- name: 'SHIFTERtype OHCLASS: 2'
dtype: float64
- name: 'BarEndShiftType OHCLASS: 0'
dtype: float64
- name: 'BarEndShiftType OHCLASS: 1'
dtype: float64
- name: 'MOUNT_TYPE OHCLASS: BRAZEON'
dtype: float64
- name: 'MOUNT_TYPE OHCLASS: CLAMP'
dtype: float64
- name: 'MOUNT_TYPE OHCLASS: DIRECT_MOUNT'
dtype: float64
- name: 'Stem kind OHCLASS: 0'
dtype: float64
- name: 'Stem kind OHCLASS: 1'
dtype: float64
- name: 'Stem kind OHCLASS: 2'
dtype: float64
- name: 'BRAKEMOUNT_TO OHCLASS: 0'
dtype: float64
- name: 'BRAKEMOUNT_TO OHCLASS: 1'
dtype: float64
- name: 'nSSAUX1_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'nSSAUX1_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'Yoke type OHCLASS: KONGA'
dtype: float64
- name: 'Yoke type OHCLASS: PP0011'
dtype: float64
- name: 'Fork type OHCLASS: 0'
dtype: float64
- name: 'Fork type OHCLASS: 1'
dtype: float64
- name: 'Fork type OHCLASS: 2'
dtype: float64
- name: 'nCSAUX1_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'nCSAUX1_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'RIM_STYLE rear OHCLASS: DISC'
dtype: float64
- name: 'RIM_STYLE rear OHCLASS: SPOKED'
dtype: float64
- name: 'RIM_STYLE rear OHCLASS: TRISPOKE'
dtype: float64
- name: 'Rack style OHCLASS: 0'
dtype: float64
- name: 'Rack style OHCLASS: 1'
dtype: float64
- name: 'EYELETS OHCLASS: 0'
dtype: float64
- name: 'EYELETS OHCLASS: 1'
dtype: float64
- name: 'EYELETS OHCLASS: 2'
dtype: float64
- name: 'nSeat stay Curv or Rake OHCLASS: 0'
dtype: float64
- name: 'nSeat stay Curv or Rake OHCLASS: 1'
dtype: float64
- name: 'Brake lever brand OHCLASS: CAMPAGNOLO'
dtype: float64
- name: 'Brake lever brand OHCLASS: CAMPAGNOLO_BAR_END'
dtype: float64
- name: 'Brake lever brand OHCLASS: SHIMANO'
dtype: float64
- name: 'Brake lever brand OHCLASS: SHIMANO_2012'
dtype: float64
- name: 'Brake lever brand OHCLASS: SRAM'
dtype: float64
- name: 'Brake lever brand OHCLASS: TEKTRO'
dtype: float64
- name: 'PhBlock styleDOWNTUBE OHCLASS: 0'
dtype: float64
- name: 'PhBlock styleDOWNTUBE OHCLASS: 1'
dtype: float64
- name: 'Pedals type OHCLASS: Egg Beaters'
dtype: float64
- name: 'Pedals type OHCLASS: Generic Road Clipless'
dtype: float64
- name: 'Pedals type OHCLASS: Generic platform'
dtype: float64
- name: 'Pedals type OHCLASS: Keywin CRM +6'
dtype: float64
- name: 'Pedals type OHCLASS: Look Keo Blade'
dtype: float64
- name: 'Pedals type OHCLASS: SPDlike'
dtype: float64
- name: 'Pedals type OHCLASS: Shimano Ultegra'
dtype: float64
- name: 'Pedals type OHCLASS: Speedplay'
dtype: float64
- name: 'Pedals type OHCLASS: Tecora - Anti Rutsch'
dtype: float64
- name: 'Pedals type OHCLASS: XTR SPD'
dtype: float64
- name: 'Hand position OHCLASS: 0'
dtype: float64
- name: 'Hand position OHCLASS: 1'
dtype: float64
- name: 'Hand position OHCLASS: 2'
dtype: float64
- name: 'Hand position OHCLASS: 3'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 20 X 1.75"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 20 X 1.75" Mag'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 24" (ETRTO 47-507)'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 24" (ETRTO 54-507)'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 26 X 1 3/8"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 26 X 1"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 26 X 1.25"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 26 X 1.5"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 26 X 1.9/1.95"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 26 X 2.125/2.2"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 26" Aerospoke'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 26" tubular'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 27 X 1 1/4"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 27 X 1"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 27 X 7/8"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 28/Sputnik-36L/Alfine8-11/42-622'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 29" X 2.2"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 36" X 2 1/4"'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 650 X 28B'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 650 X 32B'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 650 X 42B'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 650B Mtn'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700 X 20c'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700 X 21c'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700 X 23c'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700 X 23c Trispoke'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700 X 25c'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700 X 28c'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700 X 32c'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700 X 35c'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700c tubular'
dtype: float64
- name: 'Wheel choice rear OHCLASS: 700x25-kilometro-rear'
dtype: float64
- name: 'Wheel choice rear OHCLASS: DA900 C24 TL'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Fulcrum 1 F'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Fulcrum 1 R'
dtype: float64
- name: 'Wheel choice rear OHCLASS: HED Jet F'
dtype: float64
- name: 'Wheel choice rear OHCLASS: HED Jet R'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Mavic Ksyrium F'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Mavic Ksyrium R'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Mountain Bike Wheel 26Tyre'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Phil Snow 170 Clown Shue BLF'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Reynolds Strike F'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Reynolds Strike R'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Shimano Alfine SG-S705'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Shimano c24 F'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Shimano c24 R'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Zipp 404 F'
dtype: float64
- name: 'Wheel choice rear OHCLASS: Zipp 404 R'
dtype: float64
- name: 'REARbrake type OHCLASS: Canti cross'
dtype: float64
- name: 'REARbrake type OHCLASS: Generic V-Brake'
dtype: float64
- name: 'REARbrake type OHCLASS: Generic caliper'
dtype: float64
- name: 'REARbrake type OHCLASS: Shimano V-Brake - HR'
dtype: float64
- name: 'PumpTube OHCLASS: 0'
dtype: float64
- name: 'PumpTube OHCLASS: 1'
dtype: float64
- name: 'PumpTube OHCLASS: 2'
dtype: float64
- name: 'PumpTube OHCLASS: 3'
dtype: float64
- name: 'PumpTube OHCLASS: 4'
dtype: float64
- name: 'CLAMPFDTYPE OHCLASS: FD9000B'
dtype: float64
- name: 'CLAMPFDTYPE OHCLASS: FDM9000L'
dtype: float64
- name: 'Chain stay trad wish yoke OHCLASS: 0'
dtype: float64
- name: 'Chain stay trad wish yoke OHCLASS: 1'
dtype: float64
- name: 'Chain stay trad wish yoke OHCLASS: 2'
dtype: float64
- name: 'CSAUX1_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'CSAUX1_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'Pedal style OHCLASS: 0'
dtype: float64
- name: 'Pedal style OHCLASS: 1'
dtype: float64
- name: 'Pedal style OHCLASS: 2'
dtype: float64
- name: 'Wheel choice front OHCLASS: 20 X 1.75"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 20 X 1.75" Mag'
dtype: float64
- name: 'Wheel choice front OHCLASS: 24" (ETRTO 47-507)'
dtype: float64
- name: 'Wheel choice front OHCLASS: 24" (ETRTO 54-507)'
dtype: float64
- name: 'Wheel choice front OHCLASS: 26 X 1 3/8"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 26 X 1"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 26 X 1.25"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 26 X 1.5"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 26 X 1.9/1.95"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 26 X 2.125/2.2"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 26" Aerospoke'
dtype: float64
- name: 'Wheel choice front OHCLASS: 26" tubular'
dtype: float64
- name: 'Wheel choice front OHCLASS: 27 X 1 1/4"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 27 X 1"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 27 X 7/8"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 28/Sputnik-32L/SON28/60-622'
dtype: float64
- name: 'Wheel choice front OHCLASS: 28/Sputnik-36L/Alfine8-11/42-622'
dtype: float64
- name: 'Wheel choice front OHCLASS: 29" X 2.2"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 36" X 2 1/4"'
dtype: float64
- name: 'Wheel choice front OHCLASS: 650 X 28B'
dtype: float64
- name: 'Wheel choice front OHCLASS: 650 X 32B'
dtype: float64
- name: 'Wheel choice front OHCLASS: 650 X 42B'
dtype: float64
- name: 'Wheel choice front OHCLASS: 650B Mtn'
dtype: float64
- name: 'Wheel choice front OHCLASS: 700 X 20c'
dtype: float64
- name: 'Wheel choice front OHCLASS: 700 X 21c'
dtype: float64
- name: 'Wheel choice front OHCLASS: 700 X 23c'
dtype: float64
- name: 'Wheel choice front OHCLASS: 700 X 23c Trispoke'
dtype: float64
- name: 'Wheel choice front OHCLASS: 700 X 25c'
dtype: float64
- name: 'Wheel choice front OHCLASS: 700 X 28c'
dtype: float64
- name: 'Wheel choice front OHCLASS: 700 X 32c'
dtype: float64
- name: 'Wheel choice front OHCLASS: 700 X 35c'
dtype: float64
- name: 'Wheel choice front OHCLASS: 700c tubular'
dtype: float64
- name: 'Wheel choice front OHCLASS: Fulcrum 1 F'
dtype: float64
- name: 'Wheel choice front OHCLASS: Fulcrum 1 R'
dtype: float64
- name: 'Wheel choice front OHCLASS: HED Jet F'
dtype: float64
- name: 'Wheel choice front OHCLASS: HED Jet R'
dtype: float64
- name: 'Wheel choice front OHCLASS: Mavic Ksyrium F'
dtype: float64
- name: 'Wheel choice front OHCLASS: Mavic Ksyrium R'
dtype: float64
- name: 'Wheel choice front OHCLASS: Mountain Bike Wheel 26Tyre'
dtype: float64
- name: 'Wheel choice front OHCLASS: Phil Snow 170 Clown Shue BLF'
dtype: float64
- name: 'Wheel choice front OHCLASS: Reynolds Strike F'
dtype: float64
- name: 'Wheel choice front OHCLASS: Reynolds Strike R'
dtype: float64
- name: 'Wheel choice front OHCLASS: Shimano c24 F'
dtype: float64
- name: 'Wheel choice front OHCLASS: Shimano c24 R'
dtype: float64
- name: 'Wheel choice front OHCLASS: Zipp 404 F'
dtype: float64
- name: 'Wheel choice front OHCLASS: Zipp 404 R'
dtype: float64
- name: 'HEADSETprofile OHCLASS: 0'
dtype: float64
- name: 'HEADSETprofile OHCLASS: 1'
dtype: float64
- name: 'HEADSETprofile OHCLASS: 2'
dtype: float64
- name: 'HEADSETprofile OHCLASS: 3'
dtype: float64
- name: 'HEADSETprofile OHCLASS: 4'
dtype: float64
- name: 'CORNERstyle OHCLASS: 0'
dtype: float64
- name: 'CORNERstyle OHCLASS: 1'
dtype: float64
- name: 'CORNERstyle OHCLASS: 2'
dtype: float64
- name: 'Seat tube type OHCLASS: 0'
dtype: float64
- name: 'Seat tube type OHCLASS: 1'
dtype: float64
- name: 'Seat tube type OHCLASS: 2'
dtype: float64
- name: 'FRONTbrake kind OHCLASS: 0'
dtype: float64
- name: 'FRONTbrake kind OHCLASS: 1'
dtype: float64
- name: 'PhBlock typeTOPTUBE OHCLASS: 32mm Sputnik'
dtype: float64
- name: 'PhBlock typeTOPTUBE OHCLASS: 48mm Sputnik'
dtype: float64
- name: 'DROPOUT STYLE OHCLASS: HOODED_DROPOUT'
dtype: float64
- name: 'DROPOUT STYLE OHCLASS: PLATE_STYLE_DROPOUT'
dtype: float64
- name: 'DROPOUT STYLE OHCLASS: SOCKET_STYLE_DROPOUT'
dtype: float64
- name: 'Pumporient OHCLASS: 0'
dtype: float64
- name: 'Pumporient OHCLASS: 2'
dtype: float64
- name: 'Pumporient OHCLASS: 3'
dtype: float64
- name: 'nCSAUX3_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'nCSAUX3_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'LRPANNIER style OHCLASS: 0'
dtype: float64
- name: 'LRPANNIER style OHCLASS: 1'
dtype: float64
- name: 'LR style OHCLASS: 0'
dtype: float64
- name: 'LR style OHCLASS: 1'
dtype: float64
- name: 'Fit scheme OHCLASS: Cyclocross'
dtype: float64
- name: 'Fit scheme OHCLASS: MTB'
dtype: float64
- name: 'Fit scheme OHCLASS: Road'
dtype: float64
- name: 'Fit scheme OHCLASS: Time trial'
dtype: float64
- name: 'Fork choice OHCLASS: 150 mm Travel MTB Forks'
dtype: float64
- name: 'Fork choice OHCLASS: BlackMagic'
dtype: float64
- name: 'Fork choice OHCLASS: Dual Crown Rigid Fork'
dtype: float64
- name: 'Fork choice OHCLASS: Enve 2.0 tapered 45 rake'
dtype: float64
- name: 'Fork choice OHCLASS: Foxlike 26" 100mm Travel'
dtype: float64
- name: 'Fork choice OHCLASS: Foxlike F29 100mm Travel'
dtype: float64
- name: 'Fork choice OHCLASS: Generic Curved Blade 45mm'
dtype: float64
- name: 'Fork choice OHCLASS: Generic Curved Blade 50mm'
dtype: float64
- name: 'Fork choice OHCLASS: Generic Cyclocross'
dtype: float64
- name: 'Fork choice OHCLASS: Generic Straight Blade 45mm'
dtype: float64
- name: 'Fork choice OHCLASS: Generic Straight Blade 50mm'
dtype: float64
- name: 'Fork choice OHCLASS: KFS Unicrown 40-622/V60mm'
dtype: float64
- name: 'Fork choice OHCLASS: Moonlander'
dtype: float64
- name: 'Fork choice OHCLASS: Poison Disc 60-622/430-47'
dtype: float64
- name: 'Fork choice OHCLASS: RockShox Revelation (150 mm travel)'
dtype: float64
- name: 'Fork choice OHCLASS: Suspension Fork 100mm Travel'
dtype: float64
- name: 'Fork choice OHCLASS: Suspension Fork 150mm Travel'
dtype: float64
- name: 'Fork choice OHCLASS: Suspension Fork 80mm Travel'
dtype: float64
- name: 'Fork choice OHCLASS: TT Fork'
dtype: float64
- name: 'Fork choice OHCLASS: Totem RC2 DH (180 mm Travel)'
dtype: float64
- name: 'Fork choice OHCLASS: Whisky No9 RD+'
dtype: float64
- name: 'Gearing analysis OHCLASS: 0'
dtype: float64
- name: 'Gearing analysis OHCLASS: 1'
dtype: float64
- name: 'Gearing analysis OHCLASS: 2'
dtype: float64
- name: 'Gearing analysis OHCLASS: 3'
dtype: float64
- name: 'Down tube type OHCLASS: 0'
dtype: float64
- name: 'Down tube type OHCLASS: 1'
dtype: float64
- name: 'Down tube type OHCLASS: 2'
dtype: float64
- name: 'Handlebar style OHCLASS: 0'
dtype: float64
- name: 'Handlebar style OHCLASS: 1'
dtype: float64
- name: 'Handlebar style OHCLASS: 2'
dtype: float64
- name: 'Saddle type OHCLASS: 02_255 x 67'
dtype: float64
- name: 'Saddle type OHCLASS: 11_Terry Fisio Deluxe / He'
dtype: float64
- name: 'Saddle type OHCLASS: BMX'
dtype: float64
- name: 'Saddle type OHCLASS: Bontrager RL 145'
dtype: float64
- name: 'Saddle type OHCLASS: Default'
dtype: float64
- name: 'Saddle type OHCLASS: DownHill Saddle'
dtype: float64
- name: 'Saddle type OHCLASS: DynamicPhotov1'
dtype: float64
- name: 'Saddle type OHCLASS: End Zone'
dtype: float64
- name: 'Saddle type OHCLASS: Fiz:k Aliante'
dtype: float64
- name: 'Saddle type OHCLASS: ISM Breakaway'
dtype: float64
- name: 'Saddle type OHCLASS: ISM Prologue'
dtype: float64
- name: 'Saddle type OHCLASS: ISM Racing'
dtype: float64
- name: 'Saddle type OHCLASS: ISM TT'
dtype: float64
- name: 'Saddle type OHCLASS: ProLogo'
dtype: float64
- name: 'Saddle type OHCLASS: Selle Italia Diva'
dtype: float64
- name: 'Saddle type OHCLASS: Selle Italia Flight TT'
dtype: float64
- name: 'Saddle type OHCLASS: Selle Italia Flite Max'
dtype: float64
- name: 'Saddle type OHCLASS: Selle Italia GelFloMax'
dtype: float64
- name: 'Saddle type OHCLASS: Selle Italia SL'
dtype: float64
- name: 'Saddle type OHCLASS: Selle Italia SLK'
dtype: float64
- name: 'Saddle type OHCLASS: Selle Italia SLR'
dtype: float64
- name: 'Saddle type OHCLASS: Selle SMP Dynamic'
dtype: float64
- name: 'Saddle type OHCLASS: Selle SMP Evolution'
dtype: float64
- name: 'Saddle type OHCLASS: Selle SMP Pro'
dtype: float64
- name: 'Saddle type OHCLASS: Sleek road'
dtype: float64
- name: 'Saddle type OHCLASS: Specialized Alias'
dtype: float64
- name: 'Saddle type OHCLASS: Specialized Avatar 130'
dtype: float64
- name: 'Saddle type OHCLASS: Specialized Henge'
dtype: float64
- name: 'Saddle type OHCLASS: Specialized Jet 143'
dtype: float64
- name: 'Saddle type OHCLASS: Specialized Phenom'
dtype: float64
- name: 'Saddle type OHCLASS: Specialized Romin'
dtype: float64
- name: 'Saddle type OHCLASS: Specialized Toupe'
dtype: float64
- name: 'Saddle type OHCLASS: WILIER Selle Italia'
dtype: float64
- name: 'Saddle type OHCLASS: WTB Rocket Vee'
dtype: float64
- name: 'Saddle type OHCLASS: fi''zi:k Aliante'
dtype: float64
- name: 'Saddle type OHCLASS: fi''zi:k Antares'
dtype: float64
- name: 'Saddle type OHCLASS: fi''zi:k Arione'
dtype: float64
- name: 'Saddle type OHCLASS: fi''zi:k Arione TRI'
dtype: float64
- name: 'Saddle type OHCLASS: fi''zi:k Gobi'
dtype: float64
- name: 'Saddle type OHCLASS: fi''zi:k Tundra'
dtype: float64
- name: 'TRACK_ERGO OHCLASS: 0'
dtype: float64
- name: 'TRACK_ERGO OHCLASS: 1'
dtype: float64
- name: 'FRONTPANNIER style OHCLASS: 0'
dtype: float64
- name: 'FRONTPANNIER style OHCLASS: 1'
dtype: float64
- name: 'Top tube type OHCLASS: 0'
dtype: float64
- name: 'Top tube type OHCLASS: 1'
dtype: float64
- name: 'BRAZEonFDTYPE OHCLASS: FD9000F'
dtype: float64
- name: 'BRAZEonFDTYPE OHCLASS: FD9070F'
dtype: float64
- name: 'CSAUX3_MM_RATIO OHCLASS: 0'
dtype: float64
- name: 'CSAUX3_MM_RATIO OHCLASS: 1'
dtype: float64
- name: 'bottle SEATTUBE0 show OHCLASS: False'
dtype: float64
- name: 'bottle SEATTUBE0 show OHCLASS: True'
dtype: float64
- name: 'bottle DOWNTUBE0 show OHCLASS: False'
dtype: float64
- name: 'bottle DOWNTUBE0 show OHCLASS: True'
dtype: float64
- name: BIKESTYLE
dtype: string
- name: Class ID
dtype: int32
splits:
- name: processed
num_bytes: 1003905756
num_examples: 4512
- name: processed_224
num_bytes: 128910963
num_examples: 4512
download_size: 973060582
dataset_size: 1132816719
configs:
- config_name: default
data_files:
- split: processed
path: data/processed-*
- split: processed_224
path: data/processed_224-*
---
|