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
When Joe Biden was sworn in as President of the United States on 20 January 2021, the U.S. national debt stood at $27.76 trillion. One year later, the total public debt outstanding of the U.S. government has ballooned by nearly $2.11 trillion (or 7.6%) to $29.87 trillion.
Perhaps a better question to ask is to whom does the U.S. government borrow owe all the money it has borrowed?
The following chart illustrates who the U.S. government's biggest creditors are as of the end of President Biden's first year in office along with the portion of the national debt they are owed.
The U.S. Federal Reserve is once again Uncle Sam's single largest creditor, accounting for 19.1% of the entire U.S. government's national debt. The Fed's share of the total public debt outstanding has grown from 16.5% a year earlier.
By contrast, the U.S. government's second largest creditor is Social Security, whose share of the ownership of the national debt dropped from 10.4% of the total to 9.2%. Social Security has been running in the red since 2009, forcing its Old Age and Survivors' Insurance Trust Fund to sell off U.S. treasuries it accumulated when it was operating in the black in order to keep paying out benefits at promised levels. Social Security's share of the U.S. national debt is projected to decline to 0% in 2034. After that happens, Social Security benefits will be reduced by somewhere between 20-25% as promised under current law.
The retirement trust funds for the U.S. government's military and civilian employees together account for 7.1% of the total U.S. national debt. After these large holdings, a diverse range of U.S. institutions, such as banks, insurance companies, independent corporations, investment firms and individuals combine to hold the largest share of money owed by the U.S. government, accounting for 38.6% of the total, down from the 40.4% share they held a year ago.
Foreign entities combine to account for holding 25.9% of the total debt liabilities issued by the U.S. government, up from the share of 25.4% they held on 20 January 2021. Of the portion of the national debt owed to foreign-based institutions, Japan now holds the greatest share at 4.5% of the U.S. national debt based on preliminary estimates, whose share is unchanged from a year earlier. China comes in second holding a share of 4.4%, which is down from 4.6% in 2021.
The international banking centers of Belgium, Ireland, and Luxembourg saw their share of the U.S. government's total public debt outstanding held steady at 3.0%, while the United Kingdom saw its share increase from 1.5% to 2.1% over the past year. Brazil and the remaining foreign nations saw their shares of the U.S. national debt dip.
As we noted, the national debt increased by $2.11 trillion in President Biden's first year in office. That amount was inflated by President Biden's American Rescue Plan Act, which we estimate accounts for $1.34 trillion or 63.5% of the increase by itself.
The following waterfall chart breaks down where most the money the U.S. government newly borrowed in President Biden's first year in office came from:
We find the Federal Reserve loaned Uncle Sam 45% of all the net new borrowing. Foreign entities loaned the U.S. government the second largest amount at 33% of the net change, while U.S. individuals and institutions contributed the remaining 22%.
These figures represent the most current information available as of 20 January 2022, which for the total public debt outstanding is fully current through 20 January 2022. The Federal Reserve's holdings is current through 19 January 2022, data on U.S. government entity holdings is current through December 2021, and data for foreign holdings is based on estimates through November 2021 that were published on 18 January 2022.
Labels: data visualization, 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.