Have any actually ended up in the block chain?
Never: you can search d21633ba23f70118185227be58a63527675641ad37967e2aa461559f577aec43 with google
However, I wonder if this is a valid transaction (if someone put it in a block, is the block still valid?)
It's not:
{
// Basic checks that don't depend on any context
if (tx.vin.empty())
return state.DoS(10, error("CheckTransaction() : vin empty"));
if (tx.vout.empty())
return state.DoS(10, error("CheckTransaction() : vout empty"));
and in CheckBlock():
BOOST_FOREACH(const CTransaction& tx, block.vtx)
if (!CheckTransaction(tx, state))
return error("CheckBlock() : CheckTransaction failed");