File size: 65,383 Bytes
ef0c133 |
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 |
{
"_id": "qd4982518",
"title": "",
"text": "What was the price of the S&P 500 index at the end of the year 2015?"
}
{
"_id": "qd49795a8",
"title": "",
"text": "What is the sum of the average year-end backlog for the years 2014 and 2015?"
}
{
"_id": "qd496f724",
"title": "",
"text": "What was the total gross amount of unrecognized tax benefits for the year 2018?"
}
{
"_id": "qd496f102",
"title": "",
"text": "What was the average revenue generated by companies from their discontinued operations in the year 2013?"
}
{
"_id": "qd496f918",
"title": "",
"text": "What was the total amount of estimated future contingent acquisition obligations that were payable in cash in the year 2009?"
}
{
"_id": "qd49859fc",
"title": "",
"text": "What was the interest rate for AAA-rated bonds in the year 2009?"
}
{
"_id": "qd4981d2a",
"title": "",
"text": "What is the difference between the total capital and tier 1 capital in 2008?"
}
{
"_id": "qd497d4aa",
"title": "",
"text": "What was the average backlog of orders for the company in the year 2015?"
}
{
"_id": "qd497e0ee",
"title": "",
"text": "As of December 28, 2013, what percentage of the square footage of major facilities was owned by their respective operators?"
}
{
"_id": "qd49850c4",
"title": "",
"text": "What is the sum of the highest and lowest stock prices during the second quarter of 2002?"
}
{
"_id": "qd4982d6a",
"title": "",
"text": "What was the total revenue of the company in 2011?"
}
{
"_id": "qd498998a",
"title": "",
"text": "What is the amount of rent after a five-year increase?"
}
{
"_id": "qd4977906",
"title": "",
"text": "What is the net change in revenue between the years 2007 and 2008?"
}
{
"_id": "qd498a6dc",
"title": "",
"text": "What was the total amount of earnings from non-utility nuclear operations by the end of the year 2002?"
}
{
"_id": "qd498f128",
"title": "",
"text": "What is the net change in the estimated future net amortization expense of the present value of future profits between the years 2013 and 2014?"
}
{
"_id": "qd4973770",
"title": "",
"text": "What was the total amount of contingent payments made in relation to the Impella heart pump device?"
}
{
"_id": "qd498d6fc",
"title": "",
"text": "What was the change in the total debt between the years 2014 and 2015?"
}
{
"_id": "qd496d118",
"title": "",
"text": "What was the amount of cash provided by operating activities in the year 2013?"
}
{
"_id": "qd496f594",
"title": "",
"text": "What was the value of Citigroup's common stock in 2017 after subtracting an initial investment of $100?"
}
{
"_id": "qd49825e0",
"title": "",
"text": "What is the difference between the value of outstanding fuel hedges in 2015 and the value of outstanding fuel hedges in 2014?"
}
{
"_id": "qd497a3b8",
"title": "",
"text": "What was the variance in the price of common stock from its lowest to highest point in the first quarter of 2002?"
}
{
"_id": "qd497c528",
"title": "",
"text": "What were the total annual dividend requirements at the end of 2015 and at the end of 2016?"
}
{
"_id": "qd498f394",
"title": "",
"text": "What was the highest price of any stock during the second quarter of 2017?"
}
{
"_id": "qd4980326",
"title": "",
"text": "What is the assumed fair market value of a share?"
}
{
"_id": "qd498cc2a",
"title": "",
"text": "What is the value of the net sales for European industrial packaging in the year 2007, multiplied by 1000?"
}
{
"_id": "qd497b7e0",
"title": "",
"text": "What was the total financial liability at the end of the year 2008?"
}
{
"_id": "qd498ed9a",
"title": "",
"text": "What was the combined total of accounts payable and other current liabilities in the year 2014?"
}
{
"_id": "qd498e660",
"title": "",
"text": "What was the value of the unrecognized tax benefits for the year 2016?"
}
{
"_id": "qd498d5e4",
"title": "",
"text": "What is the net change in rental expense for operating leases between the years 2009 and 2010?"
}
{
"_id": "qd497c92e",
"title": "",
"text": "What was the total amount of long-term debt that matured in the year 2017?"
}
{
"_id": "qd498c428",
"title": "",
"text": "What was the net revenue for the company in the year 2007?"
}
{
"_id": "qd4978d1a",
"title": "",
"text": "What was the increase in the weighted average exercise price per share from 2005 to 2007?"
}
{
"_id": "qd49792ba",
"title": "",
"text": "What was the difference in the total cash flow from the year 2014 to the year 2015?"
}
{
"_id": "qd4980a06",
"title": "",
"text": "What was the stock price of JPMorgan Chase in the year 2014?"
}
{
"_id": "qd4973c3e",
"title": "",
"text": "What percentage of a company's total other assets consisted of goodwill and identifiable intangible assets in the year 2012?"
}
{
"_id": "qd4986d0c",
"title": "",
"text": "What is the fair value of the notes that are due in 2015 combined with the fair value of the notes that are due in 2017?"
}
{
"_id": "qd498650a",
"title": "",
"text": "What was the increase in the operating profit for the space systems division from the year 2011 to the year 2012?"
}
{
"_id": "qd498c8b0",
"title": "",
"text": "What was the operating margin of the company in the year 2014?"
}
{
"_id": "qd49781b2",
"title": "",
"text": "What percentage of the fuel surcharge revenue in 2014 is compared to the fuel surcharge revenue in 2013?"
}
{
"_id": "qd498b1b8",
"title": "",
"text": "What is the net change in the value of Delphi Automotive PLC between the years 2011 and 2014?"
}
{
"_id": "qd497214a",
"title": "",
"text": "In 2013, what was the ratio of a company's sales to its operating income?"
}
{
"_id": "qd4972b4a",
"title": "",
"text": "What is the net change in the price of PMI (Philip Morris International) common stock between the years 2013 and 2018?"
}
{
"_id": "qd4979c6a",
"title": "",
"text": "What was the difference in net revenue between the years 2015 and 2016?"
}
{
"_id": "qd498c2de",
"title": "",
"text": "What was the percentage of a company's total sales that were made to restaurants in the year 2018?"
}
{
"_id": "qd496e4f0",
"title": "",
"text": "What was the amount of net favorable prior period development for insurance claims in the year 2010?"
}
{
"_id": "qd4988300",
"title": "",
"text": "What is the total carrying value of the notes that are due in the years 2014 and 2015?"
}
{
"_id": "qd497b4e8",
"title": "",
"text": "What was the stock price of LKQ Corporation in the year 2016?"
}
{
"_id": "qd496fbca",
"title": "",
"text": "What is the difference in the price of Cadence Design Systems' products between the years 2007 and 2012?"
}
{
"_id": "qd4970ce6",
"title": "",
"text": "What was the difference in the financial balance of the Prudential Insurance Company of America between the years 2016 and 2017?"
}
{
"_id": "qd49885da",
"title": "",
"text": "What was the amount of money generated from the sales of CILCORP/Medina Valley in January 2003?"
}
{
"_id": "qd4982112",
"title": "",
"text": "What was the stock price of Advance Auto Parts in 2009 minus 100 dollars?"
}
{
"_id": "qd498411a",
"title": "",
"text": "What is the total value when goodwill and customer-related intangible assets are added together?"
}
{
"_id": "qd498d21a",
"title": "",
"text": "What was the net change in the price of the NASDAQ Composite Index between the years 2008 and 2012?"
}
{
"_id": "qd4982770",
"title": "",
"text": "What was the total amount of unrecognized tax benefits for the year 2015?"
}
{
"_id": "qd498de22",
"title": "",
"text": "What was the market value of Cadence Design Systems in 2006 minus 100 dollars?"
}
{
"_id": "qd498a5e2",
"title": "",
"text": "What is the total value of acquired intangible assets, expressed in thousands of dollars?"
}
{
"_id": "qd498ce96",
"title": "",
"text": "What was the value of stock-based compensation expenses in the year 2011?"
}
{
"_id": "qd497b95c",
"title": "",
"text": "What was the change in the stock price of Ball Corporation between December 31, 2005, and December 31, 2010?"
}
{
"_id": "qd4978306",
"title": "",
"text": "What was the total amount of net earnings attributable to Philip Morris International in the year 2017?"
}
{
"_id": "qd4988422",
"title": "",
"text": "What was the net change in the amortized cost of an asset during the year 2009?"
}
{
"_id": "qd4981186",
"title": "",
"text": "What were the preliminary purchase price allocations for contract-based intangible assets, expressed in thousands of dollars, in the year 2008?"
}
{
"_id": "qd4976d12",
"title": "",
"text": "What was the total payment volume in billions of dollars for American Express?"
}
{
"_id": "qd4971344",
"title": "",
"text": "What is the net change in the value of commodities between the years 2016 and 2017?"
}
{
"_id": "qd498cb30",
"title": "",
"text": "What were the operating profits of the company in the year 2012?"
}
{
"_id": "qd4989ac0",
"title": "",
"text": "In the year 2011, what percentage of the total investment was represented by mutual funds?"
}
{
"_id": "qd4987784",
"title": "",
"text": "What is the sum of the interest-only product and the principal-and-interest product for the year 2012?"
}
{
"_id": "qd4983b3e",
"title": "",
"text": "What was the change in the amount of unamortized debt issuance costs associated with the senior notes between the years 2016 and 2017?"
}
{
"_id": "qd497843c",
"title": "",
"text": "What is the sum of the net cash provided by operating activities and the net cash used in investing activities in a financial report?"
}
{
"_id": "qd497feb2",
"title": "",
"text": "What is the ratio of the number of common stock outstanding shares after a stock split compared to the number of shares before the split?"
}
{
"_id": "qd4970de0",
"title": "",
"text": "What was the ratio of the gallons hedged in 2016 to the gallons hedged in 2017?"
}
{
"_id": "qd498694c",
"title": "",
"text": "How many new stores were opened in the years 2008 and 2012?"
}
{
"_id": "qd497fc46",
"title": "",
"text": "What was the total value of the shares that were purchased in October?"
}
{
"_id": "qd496dc08",
"title": "",
"text": "What was the difference in total shipment volume between the year 2010 and the year 2011?"
}
{
"_id": "qd498fc86",
"title": "",
"text": "What was the fair value of the asset in 2011?"
}
{
"_id": "qd496f404",
"title": "",
"text": "What is the net change in the balance of other intangible assets from the year 2003 to the year 2004?"
}
{
"_id": "qd49703d6",
"title": "",
"text": "What was the minimum annual rental payment for properties in 2011?"
}
{
"_id": "qd4974436",
"title": "",
"text": "What was the fluctuation in stockholder return for Cadence Design Systems Inc. during the five-year period ending in 2012?"
}
{
"_id": "qd4981bfe",
"title": "",
"text": "What is the proportion of environmental capital expenditures dedicated to recoverable projects in the year 2015?"
}
{
"_id": "qd4983256",
"title": "",
"text": "What was the fair value per share of the company in the year 2016?"
}
{
"_id": "qd496fd00",
"title": "",
"text": "What was the net change in total debt between the years 2014 and 2015?"
}
{
"_id": "qd4988a76",
"title": "",
"text": "What was the difference in net sales for Shorewood between the years 2005 and 2006?"
}
{
"_id": "qd497a926",
"title": "",
"text": "What was the total net sales in millions of dollars for consumer packaging in North America in the year 2009?"
}
{
"_id": "qd498c090",
"title": "",
"text": "As of December 31, 2007, what percentage of the total future principal payments of corporate debt did the payments due in 2011 represent?"
}
{
"_id": "qd4984a16",
"title": "",
"text": "What was the total value of intangible assets, expressed in millions of dollars?"
}
{
"_id": "qd4970f34",
"title": "",
"text": "What was the total expenditure on raw materials and supplies in the year 2018?"
}
{
"_id": "qd4971722",
"title": "",
"text": "What was the total amount of payments made to Entergy Arkansas, expressed in millions of dollars?"
}
{
"_id": "qd4987d7e",
"title": "",
"text": "What was the total amount of annual long-term debt maturities, excluding lease obligations, and annual cash sinking fund requirements for debt that was outstanding in the year 2005?"
}
{
"_id": "qd496c9c0",
"title": "",
"text": "What was the difference in the unamortized debt issuance costs for the senior notes from the year 2016 to the year 2017?"
}
{
"_id": "qd49856aa",
"title": "",
"text": "What was the percentage of equity ownership interests that Discovery Communications acquired in Eurosport?"
}
{
"_id": "qd49867da",
"title": "",
"text": "What was the difference in the estimated future net amortization expense of the present value of future profits between the years 2013 and 2014?"
}
{
"_id": "qd4987b12",
"title": "",
"text": "What was the combined total, in thousands, of purchase commitments for the years 2010 and 2011?"
}
{
"_id": "qd497471a",
"title": "",
"text": "What was the financial performance of United Parcel Service, Inc. in the year 2006?"
}
{
"_id": "qd498cd6a",
"title": "",
"text": "What was the revenue from the fuel surcharge program for freight services in the year 2014?"
}
{
"_id": "qd4978054",
"title": "",
"text": "What was the net change in the value of the amortization expense between the years 2016 and 2017?"
}
{
"_id": "qd49893e0",
"title": "",
"text": "In the year 2007, what was the net income expressed as a percentage of the revenue?"
}
{
"_id": "qd497b006",
"title": "",
"text": "What was the amount of long-term debt in the year 2011?"
}
{
"_id": "qd498f47a",
"title": "",
"text": "What was the total amount of long-term debt that matured in the year 2018?"
}
{
"_id": "qd496ecd4",
"title": "",
"text": "What was the amount of tier 2 capital in the year 2008?"
}
{
"_id": "qd4988152",
"title": "",
"text": "What was the percentage change in the KBW Bank Index between the years 2009 and 2014?"
}
{
"_id": "qd498b99c",
"title": "",
"text": "What was the percentage of the total financial commitments that are due to expire in less than one year?"
}
{
"_id": "qd496e07c",
"title": "",
"text": "In the year 2008, what was the variance of the foreign exchange products in the first section of what?"
}
{
"_id": "qd4977e06",
"title": "",
"text": "What was the net value of credit in the year 2017?"
}
{
"_id": "qd498cfd6",
"title": "",
"text": "What was the difference in the expense of rent and the expense of certain office equipment under agreements from the year 2012 to the year 2013?"
}
{
"_id": "qd4979f26",
"title": "",
"text": "What was the amount of net sales for the company in the year 2014?"
}
{
"_id": "qd4977410",
"title": "",
"text": "What is the amount of the goodwill on the company's balance sheet?"
}
{
"_id": "qd498d90e",
"title": "",
"text": "What was the company's revenue in the year 2013?"
}
{
"_id": "qd497ca32",
"title": "",
"text": "What was the amount of cash generated from operating activities in the year 2014?"
}
{
"_id": "qd497cff0",
"title": "",
"text": "What was the purchase price, net of the amount of cash that was acquired?"
}
{
"_id": "qd496d3f2",
"title": "",
"text": "What was the total revenue of the risk and insurance brokerage services segment in the year 2009?"
}
{
"_id": "qd496eb76",
"title": "",
"text": "What were the total long-term financial obligations for the year 2014?"
}
{
"_id": "qd498be10",
"title": "",
"text": "What is the maximum potential change that the Chicago Mercantile Exchange (CME) can make to its existing line of credit?"
}
{
"_id": "qd497f1d8",
"title": "",
"text": "What is the net change in the cash flows from operations between the years 2011 and 2012?"
}
{
"_id": "qd49779e2",
"title": "",
"text": "What was the amount of cash provided by operating activities in the financial report?"
}
{
"_id": "qd496ea54",
"title": "",
"text": "What is the ratio of fair value to carrying value in financial reporting?"
}
{
"_id": "qd4979b34",
"title": "",
"text": "What was the difference in capital gain distributions between the year 2008 and the year 2009?"
}
{
"_id": "qd4978afe",
"title": "",
"text": "What is the net change in revenue for the risk solutions sector from the year 2010 to the year 2011?"
}
{
"_id": "qd4989e12",
"title": "",
"text": "As of December 31, 2004, what percentage of the total aggregate contractual obligations consisted of long-term debt?"
}
{
"_id": "qd498aace",
"title": "",
"text": "What was the value of the investment in Snap-on Incorporated in the year 2008?"
}
{
"_id": "qd497d6c6",
"title": "",
"text": "What is the total amount of provision recapture for purchased impaired loans in the years 2014 and 2015 combined?"
}
{
"_id": "qd498d85a",
"title": "",
"text": "What was the price performance of the Purchasing Managers' Index (PMI) in the year 2014?"
}
{
"_id": "qd497f58e",
"title": "",
"text": "In 2008, what percentage of the total capital did tier 2 capital represent?"
}
{
"_id": "qd498a4d4",
"title": "",
"text": "What was the difference in the amount of free cash flow between the years 2015 and 2014?"
}
{
"_id": "qd4983a30",
"title": "",
"text": "What was the stock price of Citigroup Inc. in the year 2017?"
}
{
"_id": "qd498fe8e",
"title": "",
"text": "What was the total amount of amortization from the year 2015 to the year 2018?"
}
{
"_id": "qd498458e",
"title": "",
"text": "What was the price of United Parcel Service (UPS) stock in 2006 minus 100 dollars?"
}
{
"_id": "qd497b25e",
"title": "",
"text": "What is the sum of the average price per share in November and the average price per share in December?"
}
{
"_id": "qd4984afc",
"title": "",
"text": "What is the value of North American consumer packaging net sales in the year 2008 multiplied by 1000?"
}
{
"_id": "qd497dedc",
"title": "",
"text": "What was the difference in net research and development expenditure between the years 2011 and 2012?"
}
{
"_id": "qd4981e6a",
"title": "",
"text": "What was the combined total of catastrophe losses, in millions of dollars, for the years 2009 and 2010?"
}
{
"_id": "qd4975aca",
"title": "",
"text": "What is the capital expenditure value for property, plant, and equipment in the year 2010?"
}
{
"_id": "qd4983508",
"title": "",
"text": "What was the difference in the total amount of stock-based compensation expense between the years 2009 and 2010?"
}
{
"_id": "qd4985d26",
"title": "",
"text": "What was the difference in the total net goodwill of the company from the year 2010 to the year 2011?"
}
{
"_id": "qd496efe0",
"title": "",
"text": "What was the net revenue in the year 2016?"
}
{
"_id": "qd498885a",
"title": "",
"text": "What was the amount of the net pension cost for the year 2018?"
}
{
"_id": "qd497ed64",
"title": "",
"text": "What was the change in the rental expense between the years 2008 and 2009?"
}
{
"_id": "qd49812d0",
"title": "",
"text": "What was the stock price of E*Trade Financial Corporation in 2014 minus 100 dollars?"
}
{
"_id": "qd497a26e",
"title": "",
"text": "What was the total amount of purchase obligations due in the year 2008 as of December 31, 2007?"
}
{
"_id": "qd497e878",
"title": "",
"text": "What was the rental expense incurred under operating leases in the year 2005?"
}
{
"_id": "qd4973504",
"title": "",
"text": "What was the total purchase price, in millions of dollars, for all the towers combined?"
}
{
"_id": "qd49770fa",
"title": "",
"text": "What was the stock price of E*Trade Financial Corporation in the year 2014?"
}
{
"_id": "qd49878ce",
"title": "",
"text": "What was the net change in revenue between the years 2006 and 2007?"
}
{
"_id": "qd498482c",
"title": "",
"text": "What was the difference in the financial return of LKQ Corporation between the years 2011 and 2016?"
}
{
"_id": "qd497cb22",
"title": "",
"text": "What was the increase in net revenue from the year 2007 to the year 2008?"
}
{
"_id": "qd497da68",
"title": "",
"text": "What was the stock price of Tractor Supply Company in the year 2014?"
}
{
"_id": "qd497562e",
"title": "",
"text": "In 2009, what was the total amount of additions that were charged as expenses?"
}
{
"_id": "qd498b6d6",
"title": "",
"text": "What was the change in research, development, and engineering (RD&E) expenditures from the year 2013 to the year 2014?"
}
{
"_id": "qd498eb10",
"title": "",
"text": "What was the fluctuation in the total return of Citigroup's common stock over the five-year period ending in 2017?"
}
{
"_id": "qd498fd94",
"title": "",
"text": "What was the difference in the amount of rent payment after 10 years compared to the amount of rent payment after five years?"
}
{
"_id": "qd496fa58",
"title": "",
"text": "As of December 31, 2012, what was the remaining amount authorized for the share repurchase program specifically for Schlumberger common stock?"
}
{
"_id": "qd4981640",
"title": "",
"text": "In the year 2009, what number of facilities would have been rated BBB/BBB if there were a total of 50 facilities, given the percentage that BBB/BAA-rated facilities represented of the total facilities at that time?"
}
{
"_id": "qd497eb2a",
"title": "",
"text": "What was the amount of pension service cost in the year 2018, expressed in millions of dollars?"
}
{
"_id": "qd496cfc4",
"title": "",
"text": "What was the total number of net undeveloped acres in Africa and the United States that expired in 2016?"
}
{
"_id": "qd497d5c2",
"title": "",
"text": "What was the total value of operating leases in the year 2007?"
}
{
"_id": "qd497d964",
"title": "",
"text": "What is the net change in the cash dividend from March 31, 2002, to March 31, 2003?"
}
{
"_id": "qd497729e",
"title": "",
"text": "How did the fees charged by investment banks change between the years 2005 and 2006?"
}
{
"_id": "qd49813d4",
"title": "",
"text": "What was the total value of accumulated other comprehensive losses in the year 2014?"
}
{
"_id": "qd496df14",
"title": "",
"text": "What was the total expense incurred for repairs and maintenance in the year 2011?"
}
{
"_id": "qd4973d42",
"title": "",
"text": "What was the total increase in the volume of the weather segment from 2009 to 2010?"
}
{
"_id": "qd49704da",
"title": "",
"text": "What is the product of 45 and 4?"
}
{
"_id": "qd497cc6c",
"title": "",
"text": "What was the change in the number of restricted stock units (RSUs) from the year 2009 to the year 2010?"
}
{
"_id": "qd496e374",
"title": "",
"text": "What is the total amount of long-term debt that was due in the years 2004 and 2005?"
}
{
"_id": "qd4975cf0",
"title": "",
"text": "What was the amount of net rental expense for the year 2009?"
}
{
"_id": "qd4983fc6",
"title": "",
"text": "In the year 2016, what percentage of the total special terminations, settlements, and curtailments was represented by pension settlement losses?"
}
{
"_id": "qd4983ea4",
"title": "",
"text": "What is the net change in the value of total accumulated other comprehensive losses between the years 2013 and 2014?"
}
{
"_id": "qd49879d2",
"title": "",
"text": "What was the change in income from the defined benefit plan between the years 2016 and 2017?"
}
{
"_id": "qd4987266",
"title": "",
"text": "What was the net change in development costs between the years 2006 and 2007?"
}
{
"_id": "qd4980204",
"title": "",
"text": "What was the financial return for United Parcel Service Inc. in the year 2006?"
}
{
"_id": "qd4972c76",
"title": "",
"text": "As of December 31, 2003, what was the total amount, in thousands, of long-term debt scheduled to be due in the years 2004 and 2005?"
}
{
"_id": "qd498f858",
"title": "",
"text": "What was the total amount contributed to defined contribution pension plans in foreign countries in the year 2008?"
}
{
"_id": "qd4987c84",
"title": "",
"text": "How many stores were there at the end of 2011?"
}
{
"_id": "qd497c672",
"title": "",
"text": "What was the total value of accumulated depreciation and amortization at the end of the year 2005?"
}
{
"_id": "qd498764e",
"title": "",
"text": "What were the total weighted average common shares outstanding used for diluted earnings per share computations in the years 2016 and 2017?"
}
{
"_id": "qd4978f04",
"title": "",
"text": "What was the net change in the value of total net goodwill between the years 2010 and 2011?"
}
{
"_id": "qd49767c2",
"title": "",
"text": "What was the total cost of interest for the year 2018?"
}
{
"_id": "qd498f9c0",
"title": "",
"text": "What was the change in the total gross amount of unrecognized tax benefits between 2017 and 2018?"
}
{
"_id": "qd497d39c",
"title": "",
"text": "What was the stock price of Philip Morris International (PMI) in 2018?"
}
{
"_id": "qd498540c",
"title": "",
"text": "What was the difference in the amount of cash provided by operating activities in 2013 compared to the amount in 2014?"
}
{
"_id": "qd4988d64",
"title": "",
"text": "What was the total net revenue in the year 2017, expressed in millions of dollars?"
}
{
"_id": "qd4982a22",
"title": "",
"text": "What was the stock price performance of Advance Auto Parts in January 2009?"
}
{
"_id": "qd496fe5e",
"title": "",
"text": "What was the percentage of square footage in the office located in Alpharetta, Georgia that was not leased as of December 31, 2013?"
}
{
"_id": "qd4984912",
"title": "",
"text": "What was the difference in the amount of receivables sold by the company in 2007 compared to 2008?"
}
{
"_id": "qd497d7e8",
"title": "",
"text": "What can be concluded about the total consolidated net sales in billions for the year 2019, given the net sales for a specific segment in 2019 and the percentage that this segment's sales represented of the total consolidated net sales?"
}
{
"_id": "qd4985556",
"title": "",
"text": "What is the financial value of goodwill in accounting?"
}
{
"_id": "qd498efb6",
"title": "",
"text": "What was the difference in revenue from the fuel surcharge program for freight between the years 2012 and 2013?"
}
{
"_id": "qd497bbdc",
"title": "",
"text": "What was the value of the S&P 500 Financials Index in the year 2016?"
}
{
"_id": "qd498d30a",
"title": "",
"text": "What was the total amount of net inventories in the year 2003?"
}
{
"_id": "qd498a826",
"title": "",
"text": "How many stores did the company have at the beginning of 2012?"
}
{
"_id": "qd497e5a8",
"title": "",
"text": "What was the difference in the price of Henry Hub natural gas between the years 2007 and 2009?"
}
{
"_id": "qd498e282",
"title": "",
"text": "What is the total amount of receivables owed by Puerto Rico?"
}
{
"_id": "qd496f2b0",
"title": "",
"text": "What was the monetary value of the liability in the year 2007?"
}
{
"_id": "qd4970778",
"title": "",
"text": "What was the difference in the average amount of investments between the years 2014 and 2015?"
}
{
"_id": "qd498fbaa",
"title": "",
"text": "What is the proportion of total intangible assets to total amortization expenses in the year 2014?"
}
{
"_id": "qd4976fc4",
"title": "",
"text": "What was the value of the S&P 500 index in 2005 after subtracting an initial investment of $100?"
}
{
"_id": "qd4984fac",
"title": "",
"text": "What was the fair value per share of the company in the year 2015?"
}
{
"_id": "qd49886d4",
"title": "",
"text": "What was the net change in the fair value of outstanding derivatives from the year 2007 to the year 2008?"
}
{
"_id": "qd497a0fc",
"title": "",
"text": "What portion of the total identifiable net assets is held in cash?"
}
{
"_id": "qd4983918",
"title": "",
"text": "What was the stock price of Tractor Supply Company in the year 2013?"
}
{
"_id": "qd497b650",
"title": "",
"text": "What was the percentage of long-term retail/high-net-worth investments in the Americas relative to the total global long-term retail/high-net-worth investments?"
}
{
"_id": "qd498bcda",
"title": "",
"text": "What was the variation in capital gain distributions between the years 2008 and 2009?"
}
{
"_id": "qd4981776",
"title": "",
"text": "What was the difference in interest income between the years 2014 and 2015?"
}
{
"_id": "qd498e372",
"title": "",
"text": "What is the amount of long-term debt that was due in the year 2014?"
}
{
"_id": "qd496e64e",
"title": "",
"text": "What was the change in net revenues for the company during the year 2003?"
}
{
"_id": "qd49708fe",
"title": "",
"text": "What was the closing price of the common stock on February 11, 2011?"
}
{
"_id": "qd498abe6",
"title": "",
"text": "What was the change in the number of Class A common stocks issued and outstanding between the years 2016 and 2017?"
}
{
"_id": "qd497d266",
"title": "",
"text": "What was the total amount of short-term borrowings for the year 2016?"
}
{
"_id": "qd497a84a",
"title": "",
"text": "What is the effect of volume and weather on net revenue during the year 2010, expressed in millions of dollars?"
}
{
"_id": "qd4983c4c",
"title": "",
"text": "What is the net change in the rate of pension plans outside the United States from the year 2014 to the year 2015?"
}
{
"_id": "qd49714d4",
"title": "",
"text": "What is the net change in the price of Loews Corporation's common stock between the years 2013 and 2014?"
}
{
"_id": "qd498f204",
"title": "",
"text": "What was the difference between the number of common stocks issued under stock and option plans and the total number of common stocks issued?"
}
{
"_id": "qd497dcde",
"title": "",
"text": "What was the total increase in the amount of other regulatory credits in the year 2003?"
}
{
"_id": "qd497f9bc",
"title": "",
"text": "What was the stock price of Ball Corporation in the year 2010?"
}
{
"_id": "qd496cb6e",
"title": "",
"text": "What is the ratio of discretionary contributions made by companies to the total amounts expensed for employee savings plans in the year 2009?"
}
{
"_id": "qd497ec92",
"title": "",
"text": "What was the combined total amount of cash paid for interest in the years 2015 and 2016?"
}
{
"_id": "qd496d8f2",
"title": "",
"text": "How many customers did gas companies have in the year 2008?"
}
{
"_id": "qd498103c",
"title": "",
"text": "What is the numerical value obtained by multiplying the sinking fund requirements by 1000?"
}
{
"_id": "qd498043e",
"title": "",
"text": "What was the total amount invested in deferred compensation plans in the year 2011?"
}
{
"_id": "qd4980f24",
"title": "",
"text": "What was the net income or loss attributable to common shareholders for the year 2008?"
}
{
"_id": "qd4977be0",
"title": "",
"text": "What percentage of a company's total segment operations was comprised by its investment banking division in the year 2005?"
}
{
"_id": "qd498a100",
"title": "",
"text": "What was the change in the value of the interest retained by the company UPRI from the year 2007 to the year 2008?"
}
{
"_id": "qd4975fb6",
"title": "",
"text": "What is the total of the weighted average common shares outstanding used for diluted earnings per share calculations in the years 2017 and 2016?"
}
{
"_id": "qd49763a8",
"title": "",
"text": "What was the amount of the cash dividend distributed per share in the last quarter of 2002?"
}
{
"_id": "qd4985f56",
"title": "",
"text": "What would be the change in the multi-currency line of credit if the potential increase in the credit limit was fulfilled?"
}
{
"_id": "qd4983652",
"title": "",
"text": "What was the value of the gross unrecognized tax benefits at the end of the year 2015?"
}
{
"_id": "qd4975822",
"title": "",
"text": "What was the total amount, in millions, of U.S. dollar notes issued in 2014 that matured in either 2024 or 2044?"
}
{
"_id": "qd49846ec",
"title": "",
"text": "What is the net change in the amount of long-term debt payments between the years 2007 and 2011?"
}
{
"_id": "qd49798f0",
"title": "",
"text": "What was the price of the Purchasing Managers' Index (PMI) subscription in 2014?"
}
{
"_id": "qd497c3de",
"title": "",
"text": "What was the closing price of the common stock in February 2011?"
}
{
"_id": "qd4974012",
"title": "",
"text": "In 2014, what percentage of the fair value did the notional value of derivatives designated as hedging instruments under Generally Accepted Accounting Principles (GAAP) represent?"
}
{
"_id": "qd4987018",
"title": "",
"text": "What was the total operating income of the company in the year 2013?"
}
{
"_id": "qd498b06e",
"title": "",
"text": "What was the value of the available-for-sale (AFS) investment securities in 2018?"
}
{
"_id": "qd49860dc",
"title": "",
"text": "What was the amount of cash capital invested in railway tracks in the year 2006?"
}
{
"_id": "qd498aee8",
"title": "",
"text": "What was the net amount of total long-term debt in the year 2015?"
}
{
"_id": "qd497f0a2",
"title": "",
"text": "In 2011, what percentage of the increase in operating companies' income was represented by the higher charges related to tobacco and health judgments?"
}
{
"_id": "qd4972f78",
"title": "",
"text": "What was the average price per share paid in the acquisition of Suros Surgical Systems by Hologic, Inc.?"
}
{
"_id": "qd49768da",
"title": "",
"text": "What is the net change in the compensation cost recognized for restricted stock units (RSUs) between the years 2008 and 2009?"
}
{
"_id": "qd498a218",
"title": "",
"text": "In the year 2005, what percentage of the total federal net operating losses (NOL) did the federal NOL set to expire between 2016 and 2020 represent?"
}
{
"_id": "qd4970bd8",
"title": "",
"text": "How many shares were purchased in November during the fourth quarter of the fiscal year that ended on December 31, 2018?"
}
{
"_id": "qd497780c",
"title": "",
"text": "What was the weighted average cost per share for the company in the year 2017?"
}
{
"_id": "qd4980c18",
"title": "",
"text": "How many securities have been approved by the security holders?"
}
{
"_id": "qd4984214",
"title": "",
"text": "What was the difference in the average price of WTI crude oil between the years 2007 and 2009?"
}
{
"_id": "qd497ef44",
"title": "",
"text": "What was the total amount of diluted earnings per common share for the company as of December 2013?"
}
{
"_id": "qd496da50",
"title": "",
"text": "What was the operating income, in millions of dollars, for the company in the year 2017?"
}
{
"_id": "qd496dd84",
"title": "",
"text": "What was the total amount of accumulated other comprehensive losses for the year 2015?"
}
{
"_id": "qd4977f3c",
"title": "",
"text": "What was the change in the amortized cost of the asset in the year 2009?"
}
{
"_id": "qd496d596",
"title": "",
"text": "What was the difference in the S&P 500 index price between the beginning of 2015 and the end of 2016?"
}
{
"_id": "qd4990190",
"title": "",
"text": "What was the annual performance of Jack Henry & Associates stock in the year 2010?"
}
{
"_id": "qd496d758",
"title": "",
"text": "What is the ratio of the fair value of an asset to its carrying value on the balance sheet?"
}
{
"_id": "qd497264a",
"title": "",
"text": "What was the change in net revenue between the years 2015 and 2016?"
}
{
"_id": "qd49863d4",
"title": "",
"text": "What was the difference in the total amount of liabilities for litigation settlements between the years 2006 and 2007?"
}
{
"_id": "qd498c194",
"title": "",
"text": "What is the amount, in thousands, of long-term debt that was due in the year 2014?"
}
{
"_id": "qd498f6f0",
"title": "",
"text": "What was the trading volume of buying and selling transactions in the year 2006?"
}
{
"_id": "qd497b11e",
"title": "",
"text": "What was the value of goodwill, which represents the excess of the purchase price over the fair value of the net tangible and identifiable intangible assets, in the merger undertaken by the company named 1000?"
}
{
"_id": "qd496d2b2",
"title": "",
"text": "What is the amount of oil and gas, measured in million barrels of oil equivalent (MMBOE), produced by Canada as a proportion of the world's total production?"
}
{
"_id": "qd496e252",
"title": "",
"text": "What was the total value of the financial notes that matured in June 2022?"
}
{
"_id": "qd497019c",
"title": "",
"text": "What was the operating income of the company in the year 2017?"
}
{
"_id": "qd497bf38",
"title": "",
"text": "What was the value of Loews Corporation's common stock in 2011 minus 100 dollars?"
}
{
"_id": "qd49733ce",
"title": "",
"text": "What was the difference in the S&P 500 index performance between the years 2012 and 2017?"
}
{
"_id": "qd49730fe",
"title": "",
"text": "What was the reported operating profit for the company in 2018?"
}
{
"_id": "qd4976632",
"title": "",
"text": "What was the total amount, in millions, of future minimum lease commitments for all operating leases with a remaining term of more than one year as of December 31, 2006?"
}
{
"_id": "qd497dbb2",
"title": "",
"text": "What was the difference in the total shipment volume of smokeless tobacco products between the years 2011 and 2012?"
}
{
"_id": "qd498e02a",
"title": "",
"text": "What was the profit margin of the company in the year 2015?"
}
{
"_id": "qd498c572",
"title": "",
"text": "How many shares are excluded from the repurchase plan?"
}
{
"_id": "qd498c7b6",
"title": "",
"text": "As of February 13, 2009, what was the average number of outstanding shares of common stock per registered holder for a specific company?"
}
{
"_id": "qd49764fc",
"title": "",
"text": "What is the value of million barrels of oil equivalent (MMBOE) produced by Canada divided by the total global production of MMBOE?"
}
{
"_id": "qd49754ee",
"title": "",
"text": "What was the total amount of money spent on share repurchases in October 2007?"
}
{
"_id": "qd498a38a",
"title": "",
"text": "What was the change in the amount of long-term debt between the years 2004 and 2005?"
}
{
"_id": "qd498e4da",
"title": "",
"text": "What is the net change in total commitments to extend credit and other financial commitments from the year 2017 to the year 2018?"
}
{
"_id": "qd497ddba",
"title": "",
"text": "What is the difference in the value of annual long-term debt maturities between the years 2016 and 2017?"
}
{
"_id": "qd497ac6e",
"title": "",
"text": "What was the variance in the share price during the first quarter of 2002?"
}
{
"_id": "qd498bb90",
"title": "",
"text": "What was the difference in the net revenue between the years 2012 and 2013?"
}
{
"_id": "qd49806fa",
"title": "",
"text": "What was the reported carrying amount of trading assets on the consolidated balance sheet for the year 2008?"
}
{
"_id": "qd497ae62",
"title": "",
"text": "What was the net amount spent on research and development in 2013?"
}
{
"_id": "qd4985b64",
"title": "",
"text": "What is the difference in the value of the S&P 500 index between January 3, 2009, and the end of 2006?"
}
{
"_id": "qd4988ff8",
"title": "",
"text": "What were the operating revenues of the company in the year 2002?"
}
{
"_id": "qd49857c2",
"title": "",
"text": "What is the total value of the options, warrants, and rights that are still available for future issuance under the company's current plans?"
}
{
"_id": "qd497f2fa",
"title": "",
"text": "What was the total interest expense, in millions, for the fiscal year that ended on May 27, 2012?"
}
{
"_id": "qd4980d76",
"title": "",
"text": "What was the change in rent expenses between the years 2011 and 2012?"
}
{
"_id": "qd498664a",
"title": "",
"text": "How many securities will be issued when the outstanding options, warrants, and rights under equity compensation plans, which have been approved by the security holders, are exercised?"
}
{
"_id": "qd498b85c",
"title": "",
"text": "What was the difference in the amounts of accrued wages and accrued vacation pay between the years 2007 and 2008?"
}
{
"_id": "qd497c15e",
"title": "",
"text": "What was the difference in the amortization expense between the years 2007 and 2008?"
}
{
"_id": "qd497915c",
"title": "",
"text": "What was the net change in the fair value of the asset category \"forward exchange contracts\" from the year 2010 to the year 2011?"
}
{
"_id": "qd4974ac6",
"title": "",
"text": "What percentage of the total capital expenditures for the second generation, as reported by each operating segment, was allocated to office-related expenses in 2012?"
}
{
"_id": "qd4976b96",
"title": "",
"text": "What was the change in the value of Loews Corporation's common stock from the year 2010 to the year 2011?"
}
{
"_id": "qd4980b0a",
"title": "",
"text": "What was the value of the non-tower cash flow for the twelve-month period ending December 31, 2005?"
}
{
"_id": "qd498e174",
"title": "",
"text": "What was the amount paid from the long-term debt after accounting for discounts and debt issuance costs, expressed in millions of dollars?"
}
{
"_id": "qd497611e",
"title": "",
"text": "What was the amount of unamortized debt issuance costs associated with credit facilities in the year 2017?"
}
{
"_id": "qd4989520",
"title": "",
"text": "As of December 31, 2008, what was the total amount of accrued wages and vacation pay?"
}
{
"_id": "qd4976a60",
"title": "",
"text": "What was the performance value of Cadence Design Systems Inc. in the year 2004?"
}
{
"_id": "qd497f700",
"title": "",
"text": "What was the difference in the amortization expense amounts for the years 2008 and 2009?"
}
{
"_id": "qd4982b3a",
"title": "",
"text": "What was the price of Loews Corporation's common stock in the year 2012?"
}
{
"_id": "qd497e238",
"title": "",
"text": "What was the closing price of the S&P 500 index at the end of the year 2012?"
}
{
"_id": "qd498984a",
"title": "",
"text": "What is the difference in segment revenue between the years 2008 and 2009?"
}
{
"_id": "qd4990050",
"title": "",
"text": "What were the contingent payments agreed upon for Impella 2019's former shareholders if the Impella 2.5 and Impella 5.0 devices receive approval?"
}
{
"_id": "qd49702b4",
"title": "",
"text": "What is the net cash generated from operating activities and net cash used in investing activities?"
}
{
"_id": "qd497ad40",
"title": "",
"text": "In 2007, what was the sales amount in millions for industrial packaging originating from Europe?"
}
{
"_id": "qd498eea8",
"title": "",
"text": "What was the net change in the total amount of purchased impaired loans from December 31, 2014, to December 31, 2015?"
}
{
"_id": "qd497fade",
"title": "",
"text": "What was the total net change in the net fair value of derivatives outstanding from the year 2007 to the year 2008?"
}
{
"_id": "qd498dcd8",
"title": "",
"text": "What was the difference in the amount of cash capital invested in railway tracks between the years 2004 and 2005?"
}
{
"_id": "qd4985312",
"title": "",
"text": "What was the stock price of Cadence Design Systems in the year 2018?"
}
{
"_id": "qd497f46c",
"title": "",
"text": "What was the net change in the value of net earnings attributable to Philip Morris International (PMI) from the year 2016 to the year 2017?"
}
{
"_id": "qd4986f00",
"title": "",
"text": "What was the total amount of U.S. dollar notes issued in November 2014, expressed in millions of dollars?"
}
{
"_id": "qd498df58",
"title": "",
"text": "What was the highest price of the company's shares during the quarter that ended on March 31, 2008?"
}
{
"_id": "qd4975be2",
"title": "",
"text": "What was the total change in net revenue between the years 2010 and 2011?"
}
{
"_id": "qd4984304",
"title": "",
"text": "What was the weighted average discount rate used for calculating the liabilities of postretirement benefit plans in the year 2018?"
}
{
"_id": "qd4977708",
"title": "",
"text": "What was the value of net earnings used to calculate both basic and diluted earnings per share in 2017?"
}
{
"_id": "qd498e8b8",
"title": "",
"text": "What was the combined total value, in millions, of the reserve equalization and the purchased power capacity, as a change in net revenue from the year 2015 to 2016?"
}
{
"_id": "qd4976e70",
"title": "",
"text": "What was the difference in the average price per share between the years 2010 and 2011?"
}
{
"_id": "qd4984476",
"title": "",
"text": "What was the value of the distressed loan portfolio that the company purchased in 2010?"
}
{
"_id": "qd4975e44",
"title": "",
"text": "What was the percentage of the total investment amount attributable to railway tracks in 2006?"
}
{
"_id": "qd4976222",
"title": "",
"text": "What is the total monetary value of all the options, warrants, and rights that have been issued?"
}
{
"_id": "qd4974bca",
"title": "",
"text": "What is the total amount of long-term debt that was due in the years 2004 and 2005?"
}
{
"_id": "qd496ccfe",
"title": "",
"text": "What was the amount of rent payable for equipment in the year 2008?"
}
{
"_id": "qd4974eae",
"title": "",
"text": "What was the starting balance of the gross amount of unrecognized tax benefits at the beginning of the year 2018?"
}
{
"_id": "qd497596c",
"title": "",
"text": "What was the amount of statutory capital and surplus for Bermuda-based subsidiaries in the year 2010?"
}
{
"_id": "qd4983d78",
"title": "",
"text": "What is the final year listed on the current facility lease agreements?"
}
{
"_id": "qd497c01e",
"title": "",
"text": "In the year 2005, what was the total amount of cash flow from non-tower operations?"
}
{
"_id": "qd4973eb4",
"title": "",
"text": "What was the difference in investment income between the years 2011 and 2012?"
}
{
"_id": "qd49729a6",
"title": "",
"text": "What were the non-GAAP capital expenditures in the year 2012?"
}
{
"_id": "qd4986230",
"title": "",
"text": "What was the change in the total amount of residential mortgages, measured in millions of dollars, between the years 2012 and 2013?"
}
{
"_id": "qd498088a",
"title": "",
"text": "What is the net change in the total maximum exposure to loss for variable interest entities from the year 2016 to the year 2017?"
}
{
"_id": "qd49745d0",
"title": "",
"text": "What was the combined total, in millions, of sales proceeds from subsidiary assets in Bangladesh and the Republic of Georgia for the months of December and August in 2003?"
}
{
"_id": "qd49837ce",
"title": "",
"text": "What percentage of the total revenue did the Eurasia Strategic Business Unit contribute in 2017?"
}
{
"_id": "qd497c28a",
"title": "",
"text": "In the year 2017, what percentage of the company's net sales were attributed to international markets?"
}
{
"_id": "qd49823ec",
"title": "",
"text": "What was the value of the adjustments made to net income to reconcile it to net cash provided by operating activities in the year 2015?"
}
{
"_id": "qd4974fc6",
"title": "",
"text": "What was the weighted average discount rate for U.S. pension plans in the year 2015?"
}
{
"_id": "qd497a61a",
"title": "",
"text": "What was the amount of the pre-tax pension and postretirement expense for the year 2019?"
}
{
"_id": "qd498f592",
"title": "",
"text": "What was the value of the liabilities that were assumed?"
}
{
"_id": "qd4984d72",
"title": "",
"text": "What was the change in the stock value of Cadence Design Systems Inc. from the year 2001 to the year 2006?"
}
{
"_id": "qd498338c",
"title": "",
"text": "What is the total amount of goodwill on the company's balance sheet?"
}
{
"_id": "qd49851a0",
"title": "",
"text": "In 2013, what was the total expense related to the discontinued operations of the company?"
}
{
"_id": "qd4974986",
"title": "",
"text": "What was the net revenue for Entergy Texas, Inc. in the year 2016?"
}
{
"_id": "qd49830f8",
"title": "",
"text": "What is the ratio of the financial balance at the end of the year 2012 to the financial balance at the beginning of the year 2010?"
}
{
"_id": "qd497a750",
"title": "",
"text": "What was the total amount of interest and penalties related to taxes that had accrued by the end of 2011?"
}
{
"_id": "qd498290a",
"title": "",
"text": "What was the net change in the value of the NASDAQ stock market index from the beginning of 2017 to the end of 2018?"
}
{
"_id": "qd4988bc0",
"title": "",
"text": "What was the total value of the net operating loss carryforwards at the end of the fiscal year?"
}
{
"_id": "qd497e468",
"title": "",
"text": "What percentage did the change in proportional free cash flow from 2008 to 2009 represent relative to the proportional free cash flow in 2008?"
}
{
"_id": "qd4971114",
"title": "",
"text": "What were the fees charged by investment banks in the year 2007?"
}
{
"_id": "qd4988954",
"title": "",
"text": "What were the company's total revenues in the year 2007?"
}
{
"_id": "qd4987fcc",
"title": "",
"text": "What was the unpaid principal balance outstanding, in billions, of loans sold as a participant in specific programs in the year 2011?"
}
{
"_id": "qd496e874",
"title": "",
"text": "What is the last year in which payments to participants in the unfunded German plans are expected to be approximately $26 million?"
}
{
"_id": "qd4973946",
"title": "",
"text": "What portion of the long-term debt is classified as current liabilities on the balance sheet dated September 28, 2008?"
}
{
"_id": "qd498ca04",
"title": "",
"text": "What is the expected amount of annual dividends per share for the year 2007?"
}
{
"_id": "qd49892dc",
"title": "",
"text": "By what amount, in millions, did the net earnings attributable to Philip Morris International decrease over the past year?"
}
{
"_id": "qd4982c20",
"title": "",
"text": "What was the change in the amount spent on capital expenditures for property, plant, and equipment between the years 2008 and 2009?"
}
{
"_id": "qd497bde4",
"title": "",
"text": "What was the total amount of unrealized losses related to reclassifications before tax in the year 2011?"
}
{
"_id": "qd498fac4",
"title": "",
"text": "What were the lease payments made to the employee who became an officer of the company after acquiring a business in 2008?"
}
{
"_id": "qd496ee8c",
"title": "",
"text": "What was the change in the research, development, and engineering (RD&E) expenditures from the year 2013 to the year 2014?"
}
{
"_id": "qd497dff4",
"title": "",
"text": "What was the net change in revenue between the years 2007 and 2008?"
}
{
"_id": "qd4984c28",
"title": "",
"text": "What was the change in the fair value per share of the company from the year 2014 to the year 2016?"
}
{
"_id": "qd497e9a4",
"title": "",
"text": "What was the change in the amount of the contingent rental liability between the years 2007 and 2009?"
}
{
"_id": "qd498ada8",
"title": "",
"text": "What is the value of euro-denominated banknotes that are due to mature in March 2021?"
}
{
"_id": "qd497fd2c",
"title": "",
"text": "What is the ratio of the dividend payment amount per share in 2017 compared to the dividend payment amount per share in 2016?"
}
{
"_id": "qd4981fc8",
"title": "",
"text": "What was the difference between the highest and the lowest payment made for the postretirement benefit plans in terms of future benefits?"
}
{
"_id": "qd497d0f4",
"title": "",
"text": "What is the net change in the value of interest income between the years 2014 and 2015?"
}
{
"_id": "qd49858da",
"title": "",
"text": "What was the net change in the rental expense for operating leases between the years 2008 and 2009?"
}
{
"_id": "qd496c6a0",
"title": "",
"text": "What was the weighted average exercise price per share of stock options in 2007?"
}
{
"_id": "qd49800e2",
"title": "",
"text": "What is the net change in the number of securities from the year 2008 to the year 2009?"
}
{
"_id": "qd497a4ee",
"title": "",
"text": "As of December 31, 2006, what was the total amount of future minimum lease commitments for all operating leases with a remaining term of more than one year?"
}
{
"_id": "qd4974878",
"title": "",
"text": "What was the value of miscellaneous receivables and other assets in the year 2012 divided by 100?"
}
{
"_id": "qd497bcc2",
"title": "",
"text": "What percentage of the facilities owned by the company are located in Europe?"
}
{
"_id": "qd498a97a",
"title": "",
"text": "What was the increase in the share price from its lowest point to its highest point during the quarter that ended on September 30, 2010?"
}
{
"_id": "qd498c64e",
"title": "",
"text": "What would be the total amount paid for purchasing 1000 units of Impella 2019 products if sold worldwide?"
}
{
"_id": "qd498d422",
"title": "",
"text": "What was the amount of cash provided by operating activities in the year 2015?"
}
{
"_id": "qd4979db4",
"title": "",
"text": "What was the total expense incurred for repairs and maintenance in the year 2013?"
}
{
"_id": "qd4974d64",
"title": "",
"text": "How did the amount of guarantees provided by the parent company change between the years 2007 and 2008?"
}
{
"_id": "qd4986b4a",
"title": "",
"text": "What was the amount of the cash dividend paid per common stock share in the year 2006?"
}
{
"_id": "qd497f818",
"title": "",
"text": "What percentage of the total dividends paid in 2019 was paid in the first quarter of 2019?"
}
{
"_id": "qd497b3d0",
"title": "",
"text": "What is the difference between the initial carrying amount of loan receivables and the allowance for loan losses?"
}
{
"_id": "qd498150a",
"title": "",
"text": "What was the statutory net income of Bermuda-based subsidiaries in the year 2010?"
}
{
"_id": "qd497e724",
"title": "",
"text": "What was the price of stock market shares in February 2009?"
}
{
"_id": "qd497325c",
"title": "",
"text": "What was the operating profit for the Americas region expressed as a percentage of its net sales in the year 2003?"
}
{
"_id": "qd498ec5a",
"title": "",
"text": "What was the highest sales price achieved in the second quarter of 2016?"
}
{
"_id": "qd497ce92",
"title": "",
"text": "What was the financial balance of the unaffiliated life insurance company in the year 2017?"
}
{
"_id": "qd4975110",
"title": "",
"text": "What was the dollar value of the capital investments allocated for the buyout of locomotives in the year 2012?"
}
{
"_id": "qd49799ea",
"title": "",
"text": "What was the impact in million barrels of oil equivalent (mmboe) on US resource plays due to an increase in drilling programs and an increase in discontinued operations resulting from technical reevaluation and lower royalty percentages associated with lower realized prices?"
}
{
"_id": "qd4970034",
"title": "",
"text": "What was the difference in net revenues between December 28, 2012, and December 29, 2013?"
}
{
"_id": "qd498dbb6",
"title": "",
"text": "What was the operating profit of the company in the year 2011?"
}
{
"_id": "qd498e7a0",
"title": "",
"text": "What was the adjusted operating profit margin for the year 2017?"
}
{
"_id": "qd4970606",
"title": "",
"text": "What was the market value of E*TRADE Financial Corporation on December 14th?"
}
{
"_id": "qd4981a46",
"title": "",
"text": "As of December 31, 2008, what was the combined total liability from the 2003 program and the 2007 program?"
}
{
"_id": "qd498ff92",
"title": "",
"text": "What was the net revenue for the company Entergy Texas, Inc. in the year 2007?"
}
{
"_id": "qd497cd70",
"title": "",
"text": "In the year 2006, what was the amount of consumer packaging sales attributed to foodservice net sales?"
}
{
"_id": "qd4973afe",
"title": "",
"text": "What was the total cost, in millions of dollars, of all the towers acquired by MTN Group?"
}
{
"_id": "qd497ba9c",
"title": "",
"text": "What was the net change in earnings from non-utility nuclear operations between the years 2001 and 2002?"
}
{
"_id": "qd4989174",
"title": "",
"text": "What was the value of the available-for-sale (AFS) investment securities in the year 2018?"
}
{
"_id": "qd497857c",
"title": "",
"text": "What was the total revenue from transactions involving related parties in the year 2017?"
}
{
"_id": "qd4987540",
"title": "",
"text": "What was the value of an investment in Cadence Design Systems Inc. in the year 2012?"
}
{
"_id": "qd4984e8a",
"title": "",
"text": "What was the value of business inventories in the year 2018?"
}
{
"_id": "qd498bf64",
"title": "",
"text": "What was the amount of free cash flow for the company in the year 2015?"
}
{
"_id": "qd497ffde",
"title": "",
"text": "What was the fair value of the asset in 2011?"
}
{
"_id": "qd49818ac",
"title": "",
"text": "What was the change in net revenue for the company Entergy Texas in the year 2007?"
}
{
"_id": "qd498e9f8",
"title": "",
"text": "What was the value of Cadence Design Systems in 2018 after subtracting an initial investment of $100?"
}
{
"_id": "qd49805a6",
"title": "",
"text": "What was the difference in the total expense incurred for repairs and maintenance between the years 2013 and 2014?"
}
{
"_id": "qd497977e",
"title": "",
"text": "What is the difference between the fair value and the carrying value of all financial notes?"
}
{
"_id": "qd49789be",
"title": "",
"text": "What is the total value, in billions, of operating leases that have a remaining term of more than one year?"
}
{
"_id": "qd4982f22",
"title": "",
"text": "What percentage of the total long-term debt obligations is constituted by long-term debt?"
}
{
"_id": "qd4989f8e",
"title": "",
"text": "What was the net change in cash contributions to funded pension plans and benefit payments for unfunded pension plans from 2015 to 2016?"
}
{
"_id": "qd496ce3e",
"title": "",
"text": "What percentage of the gallons hedged in 2017 was represented by the gallons hedged in 2018?"
}
{
"_id": "qd498d4f4",
"title": "",
"text": "What was the total amount of payments made by the New York Power Authority (NYPA) for the seven-year notes issued by Entergy?"
}
{
"_id": "qd4978842",
"title": "",
"text": "What was the balance of our foreign currency forward contracts in the year 2009?"
}
{
"_id": "qd4975386",
"title": "",
"text": "In the year 2010, what percentage did the net allowance for loan losses represent in relation to the carrying amount of the company's purchased distressed loan portfolio?"
}
{
"_id": "qd4970a48",
"title": "",
"text": "What was the total amount, in millions of dollars, of cash outflow used for repurchasing shares during November 2007?"
}
{
"_id": "qd4978716",
"title": "",
"text": "What was the highest price of what product or commodity in the year 2016?"
}
{
"_id": "qd497942c",
"title": "",
"text": "What was the definition or nature of operating leases in the year 2007?"
}
{
"_id": "qd4977596",
"title": "",
"text": "How did the total debt, including future payments under existing debt, lease commitments, and purchase obligations, change from 2008 to 2009 as of December 31, 2005?"
}
{
"_id": "qd4979030",
"title": "",
"text": "What was the total value of inventories in the year 2003?"
}
{
"_id": "qd498da94",
"title": "",
"text": "What was the change in the financial balance from January 1, 2010, to December 31, 2012?"
}
{
"_id": "qd49742ec",
"title": "",
"text": "What is the total net revenue for the years 2016 and 2017 combined?"
}
{
"_id": "qd4987eb4",
"title": "",
"text": "What was the change in the estimated sensitivity to a one basis point increase in credit spreads on financial liabilities for which the fair value option was elected between the years of 2015 and 2016?"
}
{
"_id": "qd4973676",
"title": "",
"text": "What is 1000 times the number of votes associated with the class B-3 common stock that was authorized, issued, and outstanding in the year 2017?"
}
{
"_id": "qd4989c8c",
"title": "",
"text": "What was the amount in dollars of the annual cash dividends paid per share of common stock in the year 2006?"
}
{
"_id": "qd49873e2",
"title": "",
"text": "What was the market value of the connected fitness industry in the year 2014?"
}
{
"_id": "qd49751f6",
"title": "",
"text": "What was the difference in the number of shares issued under the employee stock purchase plan between the years 2016 and 2017?"
}
{
"_id": "qd497ab06",
"title": "",
"text": "In what year does the initial lease expire for the headquarters located in Chicago?"
}
{
"_id": "qd49741b6",
"title": "",
"text": "What was the total revenue from cabinet sales in the year 2017?"
}
{
"_id": "qd498d0f8",
"title": "",
"text": "What was the financial earning of non-utility nuclear sectors in the year 2002?"
}
{
"_id": "qd497c816",
"title": "",
"text": "What was the decrease in the net interest amount from fiscal year 2015 to fiscal year 2016?"
}
{
"_id": "qd4988ecc",
"title": "",
"text": "What was the total amount of operating expenses for the company in the year 2018?"
}
{
"_id": "qd4982266",
"title": "",
"text": "What is the current financial ratio of the Robert Mondavi Corporation?"
}
{
"_id": "qd4985e34",
"title": "",
"text": "What was the amount of rent expense for the year 2007?"
}
{
"_id": "qd4989714",
"title": "",
"text": "What was the change in the net credit amount between the years 2016 and 2017?"
}
|