create account

The first instance of Tau MetaLanguage (TML) has appeared on Github! by dana-edwards

View this thread on: hive.blogpeakd.comecency.com
· @dana-edwards · (edited)
$249.94
The first instance of Tau MetaLanguage (TML) has appeared on Github!
Ohad Asor has kept his word and released the first iteration of TML for peer review on [Github](https://github.com/idni/tau). This is exciting news and many people have been watching Tauchain for a very long time waiting for this. In this blog post I will try my best to analyze some portions of the code but be aware that this is a task which could take multiple blog posts and explanation from Ohad himself.

What is TML?
----
TML is the core component which will make Tauchain possible. TML is known as the Tau Meta Language. This technology is what will allow humans and machines to effectively communicate back and forth in an organized manner. Many people may be familiar with a compiler, but fewer are familiar with what is known as a compiler-compiler or parser generator. The approach taken by TML resembles that of a parser generator. To be specific, we have what is called partial evaluation.

This quote provides a brief description of what this means when applied for TML:

> A particularly interesting example of the use of partial evaluation, first described in the 1970s by Yoshihiko Futamura,[1] is when prog is an interpreter for a programming language.

This is something Ohad will have to elaborate on because the theory is very complicated and hard to explain. My own understanding is that TML will be able to have the unique properties of self interpretation and self definition.  So the two concepts to study to analyze the source code thoroughly are partial evaluation (particularly as Futamura describes), and self interpretation.

```C++

#include "tml.h"
#include <algorithm>

int32_t evaluate(int32_t v, env &e) {
	if (v > 0) return v;
	env::const_iterator it = e.find(v);
	if (it == e.end()) return v;
	int32_t u;
	while ((it = e.find(u = it->second)) != e.end());
	return e[v] = u;
} 

literal::literal(const literal &l, env& e) {
//	DEBUG(endl<<L"evaluating "<<(*this)<<L" with "<<e<<L" giving ");
	resize(l.size()), (*this)[0] = l[0];
	for (size_t i = 1; i < l.size(); ++i) (*this)[i] = evaluate(l[i], e);
//	DEBUG(r << endl);
} 

bool literal::unify(const literal &g, env &e) const {
	DEBUG(endl<<L"unifying "<<*this<<L" with "<<g<<L" given "<<e);
	size_t sz = size();
	if (g.size() != sz) return false;
	int v;
	for (size_t i = 1; i < sz; ++i) // assuming same rel
		if ((v = ::evaluate(at(i), e)) > 0 && v != g[i]) return false;
		else if (v < 0) e[v] = g[i]; 
	DEBUG(L" output " << e << endl);
	return true;
} 

bool literal::operator==(const literal &l) const{return ((base)*this)==(base)l;}
////////////////////////////////////////////////////////////////////////////////
clause::clause(const clause& c, env& e) {for(literal *l:c)*this+=literal(*l,e);} 

bool clause::operator==(const clause &l) const {
	size_t sz = size();
	if (sz != l.size()) return false;
	for (size_t n = 0; n < sz; ++n) if (*at(n) != *l[n]) return false;
	return true;
}

clause& clause::operator+=(const literal &t) {
	for (size_t n = 0, s = size(); n != s; ++n)
		if (abs((*at(n))[0]) == abs(t[0]) &&
		    t.size() == at(n)->size() &&
		    !memcmp(&(*at(n))[1], &t[1], (t.size()-1)*sizeof(int32_t))){
			if ((*at(n))[0] != t[0]) erase(begin() + n);
			return *this;
		}
	push_back(new literal(t));
	return *this;
}
////////////////////////////////////////////////////////////////////////////////
dlp& dlp::operator+=(clause *c) {
	sort(c->begin(), c->end());
	for (const clause *d : *this) if (*d == *c) return *this;
	size_t n;
	int v;
	literal *l;
	//DEBUG(L"clause_push called with " << *c << endl);
	//DEBUG(L"program before new clause: " << endl << *this << endl);
	for (size_t k = 0; k < c->size(); ++k) {
		c->rels.emplace(v = (l = c->at(k))->at(0));
		index[v][size()] = k;
		for (n = 1; n < l->size(); ++n)
			if ((v = l->at(n)) < 0)
				l->vars.emplace(v), c->vars.emplace(v);
	}
	push_back(c);
	//DEBUG(L"program after new clause: " << endl << *this << endl);
	return *this;
}

void dlp::pe(dlp &q) {
	typedef const pair<size_t, size_t> index_element;
	const clause *d;
	const literal *g;
	size_t  szp, szq, iter = 0;
	do {	++iter, szp = size(), szq = q.size();
		for (size_t n = 0; n < q.size(); ++n)
			for (size_t k = 0; k < q[n]->size(); ++k) {
				g = q.at(n)->at(k);
				for(index_element& x : index[-g->at(0)])
					d = at(x.first),
					pe(d, d->at(x.second), g, q);
			DEBUG(L"finished iteration "<<iter<< L" program len " << szp << endl);
	}	
	} while (size() != szp || q.size() != szq);
}

void dlp::pe(const clause *c, const literal *l, const literal *g, dlp &q) {
	env e;
	clause *d;
//	DEBUG(L"pe: c="<<*c<<L" l="<<*l<<L" g="<<*g<<endl);
	if (l->unify(*g, e)) {
		d = new clause(*c, e);
		if ((*d += *g).size() == 1) q += d;
		else *this += d;
	}
}

dlp::~dlp()  { for (const clause *c : *this) delete c; clear(); }
clause::~clause() { for (literal *l : *this) delete l; clear(); }

int32_t main() {
	setlocale(LC_ALL, "");
	dlp p, q;
	p.program_read(wcin);
	q.program_read(wcin);
	p.index_write(wcout);
	q.index_write(wcout);
	p.pe(q);
	wcout<<p<<endl;
	wcout<<q<<endl;
}
```

My understanding of this code is that it allows you to do partial evaluation, which I will describe as a way of translating, where the interpreter and source code are both inputs. If my understanding is correct then we can see in the code the structure for taking in both inputs. The structure uses p and q which are familiar to me from logic used for proofs, and we see the partial evaluation at "p.pe(q);".  Partial evaluation to my current understanding is to fix some variables in the given code prior to execution, exploiting the fact that certain variables are not likely to change and can be fixed. Specially TML utilizes the concept of partial fixed point evaluation which in theory has been shown to allow for the self definition property necessary to make Tauchain work as intended.

DLP stands for disjunctive logic program, which has interesting implementations for knowledge representation.  This post was made to introduce the concepts of partial evaluation which is critical for making sense of this code base. There are other pieces of the code base which I have not reviewed, dealing with the parser, and disjunctive logic programming is something I am not familiar with. This code however gives programmers and researchers a place to start for deeper understanding and contribution to Tau.



References
----
1. https://github.com/idni/tau
2. https://en.wikipedia.org/wiki/Partial_evaluation
3. https://gist.github.com/tomykaira/3159910
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 181 others
properties (23)
authordana-edwards
permlinkthe-first-instance-of-tau-metalanguage-tml-has-appeared-on-github
categorycrypto-news
json_metadata{"tags":["crypto-news","crypto","tauchain","cryptocurrency"],"links":["https://github.com/idni/tau","https://en.wikipedia.org/wiki/Partial_evaluation","https://gist.github.com/tomykaira/3159910"],"app":"steemit/0.1","format":"markdown"}
created2017-12-17 21:45:48
last_update2017-12-18 08:30:24
depth0
children15
last_payout2017-12-24 21:45:48
cashout_time1969-12-31 23:59:59
total_payout_value193.005 HBD
curator_payout_value56.939 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,472
author_reputation353,623,611,191,427
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,933,757
net_rshares40,235,942,801,904
author_curate_reward""
vote details (245)
@bitgeek ·
$1.18
comment
Congratulations @dana-edwards, this post is the eighth most rewarded post (based on pending payouts) in the last 12 hours written by a Hero account holder (accounts that hold between 10 and 100 Mega Vests). The total number of posts by Hero account holders during this period was 378 and the total pending payments to posts in this category was $7073.03. To see the full list of highest paid posts across all accounts categories, [click here](www.steemit.com/steemit/@bitgeek/payout-stats-report-for-18th-december-2017--part-ii). 

If you do not wish to receive these messages in future, please reply stop to this comment.
👍  
properties (23)
authorbitgeek
permlinkre-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171218t075159
categorycrypto-news
json_metadata""
created2017-12-18 07:52:00
last_update2017-12-18 07:52:00
depth1
children0
last_payout2017-12-25 07:52:00
cashout_time1969-12-31 23:59:59
total_payout_value0.883 HBD
curator_payout_value0.294 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length623
author_reputation13,049,044,453,787
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,987,358
net_rshares190,284,550,776
author_curate_reward""
vote details (1)
@deobrands ·
$0.92
Tau-Chain always looked verry interesting and seems they are going in a good direction. They do have this explainer video wich lookz like an LSD trip
https://youtu.be/1SXfYgQxsOA
👍  
properties (23)
authordeobrands
permlinkre-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171222t200525482z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"image":["https://img.youtube.com/vi/1SXfYgQxsOA/0.jpg"],"links":["https://youtu.be/1SXfYgQxsOA"],"app":"steemit/0.1"}
created2017-12-22 20:05:24
last_update2017-12-22 20:05:24
depth1
children0
last_payout2017-12-29 20:05:24
cashout_time1969-12-31 23:59:59
total_payout_value0.923 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length178
author_reputation743,022,767,293
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id24,750,115
net_rshares154,828,912,983
author_curate_reward""
vote details (1)
@lavater ·
$0.48
damn it I tried to snap up some Agoras but they already skyrocketed +51%
thanks for the heads up anyway, I'll keep an eye out for a better entry.
👍  
properties (23)
authorlavater
permlinkre-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171218t103143953z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-18 10:31:51
last_update2017-12-18 10:31:51
depth1
children0
last_payout2017-12-25 10:31:51
cashout_time1969-12-31 23:59:59
total_payout_value0.364 HBD
curator_payout_value0.120 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation1,664,297,623,099
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,003,121
net_rshares78,779,597,642
author_curate_reward""
vote details (1)
@mattclarke ·
The only word I recognised was 'Futurama'.
My favourite is zoidberg.
properties (22)
authormattclarke
permlinkre-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171217t234148375z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-17 23:41:51
last_update2017-12-17 23:41:51
depth1
children0
last_payout2017-12-24 23:41:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation127,969,409,698,336
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,943,846
net_rshares0
@rok-sivante ·
$0.20
I *totally* don't understand the coding or technical aspects of this, but your earlier summaries of Tauchain's potentials sold me on the investment - **great** news hearing the code has finally come out. A wonderful early Xmas present. :-)
👍  ,
properties (23)
authorrok-sivante
permlinkre-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171217t223758154z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-17 22:37:57
last_update2017-12-17 22:37:57
depth1
children2
last_payout2017-12-24 22:37:57
cashout_time1969-12-31 23:59:59
total_payout_value0.170 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length239
author_reputation665,093,768,323,780
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,938,628
net_rshares32,417,702,910
author_curate_reward""
vote details (2)
@godcomplex ·
$1.21
Well if you know how a compiler works, where you take a document as input, parse it and it outputs as an o file or exe? In the case of TML you will be able to input a document defining the programming language, so this means Tau will be like an Internet of Languages. To explain in depth will require Ohad but the breakthrough of TML is that unlike what you have with Ethereum or Tezos where you have to basically work within the box, in Tau you define the box using TML.
👍  , ,
properties (23)
authorgodcomplex
permlinkre-rok-sivante-re-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171217t224205916z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-17 22:42:06
last_update2017-12-17 22:42:06
depth2
children1
last_payout2017-12-24 22:42:06
cashout_time1969-12-31 23:59:59
total_payout_value0.914 HBD
curator_payout_value0.298 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length471
author_reputation1,483,372,185,052
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,938,974
net_rshares196,794,842,630
author_curate_reward""
vote details (3)
@whyknot ·
Thanks for the analogy. However, I agree with rok-sivante that the implications of such a breakthrough are difficult to grasp, our brains being so familiar with using programming langages, not create them.
properties (22)
authorwhyknot
permlinkre-godcomplex-re-rok-sivante-re-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171219t145720832z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-19 14:57:18
last_update2017-12-19 14:57:18
depth3
children0
last_payout2017-12-26 14:57:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length205
author_reputation112,320,686,869
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,198,058
net_rshares0
@shahin24 ·
Thanx you so much dear @dana-adwards for sharing this crypto news.
👍  
properties (23)
authorshahin24
permlinkre-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171217t215545022z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"users":["dana-adwards"],"app":"steemit/0.1"}
created2017-12-17 21:55:45
last_update2017-12-17 21:55:45
depth1
children0
last_payout2017-12-24 21:55:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation8,181,493,131,349
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,934,628
net_rshares96,142,557
author_curate_reward""
vote details (1)
@statsmonkey ·
comment
Congratulations, your post received one of the top 10 most powerful upvotes in the last 12 hours. You received an upvote from @trafalgar valued at 101.06 SBD, based on the pending payout at the time the data was extracted.

If you do not wish to receive these messages in future, reply with the word "stop".
👍  
properties (23)
authorstatsmonkey
permlinkre-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171218t073905
categorycrypto-news
json_metadata""
created2017-12-18 07:39:06
last_update2017-12-18 07:39:06
depth1
children0
last_payout2017-12-25 07:39:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length308
author_reputation503,392,294,628
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,986,179
net_rshares371,969,796
author_curate_reward""
vote details (1)
@trafalgar ·
$26.22
This project is very different from anything else out there

A self defining, decidable logic under pspace that acts as a compiler-compiler is very non trivial and took years of research, and now he's achieved the centerpiece that will allow for a lot of extraordinary features to come

Ohad will be releasing a set of explanations soon that will detail this and I'm looking forward to it. 

This guy is truly something else, he's the smartest person with whom I've ever interacted and I'm glad I found out about the project through your posts.
👍  , , , , , , , , ,
properties (23)
authortrafalgar
permlinkre-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171218t020540598z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-18 02:05:57
last_update2017-12-18 02:05:57
depth1
children2
last_payout2017-12-25 02:05:57
cashout_time1969-12-31 23:59:59
total_payout_value25.333 HBD
curator_payout_value0.885 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length544
author_reputation196,449,472,677,173
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,955,695
net_rshares4,239,673,017,870
author_curate_reward""
vote details (10)
@dana-edwards · (edited)
$2.14
It Works! https://github.com/IDNI/tau/blob/master/example

This is what it computes:
 https://www.youtube.com/watch?v=PIr-6__VHyY

The version TML computes is a slight variation but based on the same concepts.
👍  , ,
properties (23)
authordana-edwards
permlinkre-trafalgar-re-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171218t081256435z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"image":["https://img.youtube.com/vi/PIr-6__VHyY/0.jpg"],"links":["https://github.com/IDNI/tau/blob/master/example","https://www.youtube.com/watch?v=PIr-6__VHyY"],"app":"steemit/0.1"}
created2017-12-18 08:12:57
last_update2017-12-18 08:42:12
depth2
children0
last_payout2017-12-25 08:12:57
cashout_time1969-12-31 23:59:59
total_payout_value1.608 HBD
curator_payout_value0.530 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation353,623,611,191,427
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,989,304
net_rshares345,455,118,932
author_curate_reward""
vote details (3)
@dana-edwards · (edited)
Also we cannot forget Henrik Imhof's work on partial fixed point logic which seems very relevant for TML. The logic is something I'm unfamiliar with so I don't discuss it in detail in this post but it is something critical for the self defining property of TML. This is something for Ohad to describe best in my opinion because logic is not standard knowledge common for programmers.

The fact that the code works represents a breakthrough because it's a practical implementation where "the proof is in the pudding" as they say.
properties (22)
authordana-edwards
permlinkre-trafalgar-re-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171218t083243620z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-18 08:32:42
last_update2017-12-18 08:33:45
depth2
children0
last_payout2017-12-25 08:32:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length528
author_reputation353,623,611,191,427
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,991,114
net_rshares0
@trillionaire ·
After long years of waiting, finally! Yes! Now we wait for the explanation included in the whitepaper.
properties (22)
authortrillionaire
permlinkre-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171218t015031241z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-18 01:50:27
last_update2017-12-18 01:50:27
depth1
children0
last_payout2017-12-25 01:50:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation179,500,903,502
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,954,496
net_rshares0
@tyanderson ·
Excellent attempt at explaining Tau. Continue working on making it simple, with metaphor too. "A true leader does not seek to enlighten the people, but help them achieve simplicity" - A wise dude.
properties (22)
authortyanderson
permlinkre-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171222t175432482z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-22 17:54:36
last_update2017-12-22 17:54:36
depth1
children0
last_payout2017-12-29 17:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation261,104,803,647
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,733,521
net_rshares0
@ul1yck1t ·
Thank you for this post, it really helped to answer some of the questions I had when looking at the github code. I am very much looking forward to see  how it pans out, and hope that eventually I too will be able to contribute to the project in a meaningful manner. Have a great day!
properties (22)
authorul1yck1t
permlinkre-dana-edwards-the-first-instance-of-tau-metalanguage-tml-has-appeared-on-github-20171223t165349922z
categorycrypto-news
json_metadata{"tags":["crypto-news"],"app":"steemit/0.1"}
created2017-12-23 16:53:54
last_update2017-12-23 16:53:54
depth1
children0
last_payout2017-12-30 16:53:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length283
author_reputation17,010,899,353
root_title"The first instance of Tau MetaLanguage (TML) has appeared on Github!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,887,829
net_rshares0