to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
On Friday, 15 May 2015, the U.S. Treasury identified the national origins of the major foreign holders of debt issued by the U.S. government through the end of March 2015, the halfway point of the federal government's fiscal year. With that information, we can now update our chart showing just who has loaned the U.S. government money in the Spring of 2015:
Update 24 May 2016: We have updated our visualization through March 2016!
The big news is that debt held by "Mainland China" has once again edged out the total U.S. government-issued debt holdings of Japan to reclaim its undisputed spot as the biggest foreign owner of the U.S. national debt. That China is the largest foreign holder of that debt however was never really in dispute, because the figure for Mainland China omits the amount of U.S. debt held by Hong Kong, which has been under Chinese rule since 1997.
Collectively, foreign entities hold about 47% of all the U.S. government's "Debt Held by the Public", which totaled $13.099 trillion on 30 March 2015.
Domestically, the big story about the U.S. national debt is that it has been essentially frozen at $18.152 trillion since 13 March 2015, which is when the total public debt outstanding of the U.S. government hit its statutory debt ceiling. Since that time, the U.S. Treasury has been playing something of a shell game to hold the U.S. national debt at that level, replacing the holdings of debt held by entities it controls with I.O.U.s as it continues issuing new debt to other holders.
In our chart above, that shell game shows up as a decrease in the amount of debt that appears to be held by the U.S. Civil Service Retirement and Disability Fund, which appears to have fallen from the $857.2 billion it was reported as holding at the end of the U.S. government's 2014 fiscal year to $818.2 billion just six months later. What that change means is that in just the first 14 days after the U.S. national debt hit its statutory ceiling, the U.S. Treasury has exchanged at least $39 billion of short-term debt that came due in the holdings within the U.S. Civil Service Retirement Trust Fund with I.O.U.s so it could continue issuing new public debt to other parties.
That situation will change suddenly and dramatically when the U.S. Congress acts to increase the nation's statutory debt ceiling, which will likely happen as it progresses toward passing a budget for the first time since 2009. When that happens, the U.S. Treasury will rush to exchange the I.O.U.s that it has issued into the accounts it controls with newly-issued U.S. government debt securities. When that happens, it will be as if the U.S. national debt had never been frozen at 18.2 trillion dollars.
Federal Reserve Statistical Release. H.4.1. Factors Affecting Reserve Balances. Release Date: 2 April 2015. [Online Document]. Accessed 15 May 2015.
U.S. Treasury. Major Foreign Holders of Treasury Securities. Accessed 15 May 2015.
U.S. Treasury. Monthly Treasury Statement of Receipts and Outlays of the United States Government for Fiscal Year 2015 Through March 30, 2015. [PDF Document].
Labels: national debt
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.