@dnextco/tokenboost-solidity-erc223token
Version:
Solidity contracts for TokenBoost (ERC223Token)
799 lines (798 loc) • 104 kB
JSON
{
"contractName": "ERC223PausableToken",
"abi": [
{
"constant": false,
"inputs": [
{
"name": "_spender",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_from",
"type": "address"
},
{
"name": "_to",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "unpause",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "paused",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_spender",
"type": "address"
},
{
"name": "_subtractedValue",
"type": "uint256"
}
],
"name": "decreaseApproval",
"outputs": [
{
"name": "success",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "pause",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "owner",
"outputs": [
{
"name": "",
"type": "address"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_spender",
"type": "address"
},
{
"name": "_addedValue",
"type": "uint256"
}
],
"name": "increaseApproval",
"outputs": [
{
"name": "success",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "_owner",
"type": "address"
},
{
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"anonymous": false,
"inputs": [],
"name": "Pause",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "Unpause",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "previousOwner",
"type": "address"
}
],
"name": "OwnershipRenounced",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "owner",
"type": "address"
},
{
"indexed": true,
"name": "spender",
"type": "address"
},
{
"indexed": false,
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "from",
"type": "address"
},
{
"indexed": true,
"name": "to",
"type": "address"
},
{
"indexed": false,
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "from",
"type": "address"
},
{
"indexed": true,
"name": "to",
"type": "address"
},
{
"indexed": false,
"name": "value",
"type": "uint256"
},
{
"indexed": false,
"name": "data",
"type": "bytes"
}
],
"name": "Transfer",
"type": "event"
},
{
"constant": false,
"inputs": [
{
"name": "_to",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"name": "success",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_to",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
},
{
"name": "_data",
"type": "bytes"
}
],
"name": "transfer",
"outputs": [
{
"name": "success",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_to",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
},
{
"name": "_data",
"type": "bytes"
},
{
"name": "_custom_fallback",
"type": "string"
}
],
"name": "transfer",
"outputs": [
{
"name": "success",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
],
"bytecode": "0x608060405260038054600160a860020a03191633179055611193806100256000396000f3006080604052600436106100cc5763ffffffff60e060020a600035041663095ea7b381146100d157806318160ddd1461010957806323b872dd146101305780633f4ba83a1461015a5780635c975abb14610171578063661884631461018657806370a08231146101aa578063715018a6146101cb5780638456cb59146101e05780638da5cb5b146101f5578063a9059cbb14610226578063be45fd621461024a578063d73dd623146102b3578063dd62ed3e146102d7578063f2fde38b146102fe578063f6368f8a1461031f575b600080fd5b3480156100dd57600080fd5b506100f5600160a060020a03600435166024356103c6565b604080519115158252519081900360200190f35b34801561011557600080fd5b5061011e6103f1565b60408051918252519081900360200190f35b34801561013c57600080fd5b506100f5600160a060020a03600435811690602435166044356103f7565b34801561016657600080fd5b5061016f610424565b005b34801561017d57600080fd5b506100f561049c565b34801561019257600080fd5b506100f5600160a060020a03600435166024356104ac565b3480156101b657600080fd5b5061011e600160a060020a03600435166104d0565b3480156101d757600080fd5b5061016f6104eb565b3480156101ec57600080fd5b5061016f610559565b34801561020157600080fd5b5061020a6105d6565b60408051600160a060020a039092168252519081900360200190f35b34801561023257600080fd5b506100f5600160a060020a03600435166024356105e5565b34801561025657600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526100f5948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106099650505050505050565b3480156102bf57600080fd5b506100f5600160a060020a036004351660243561062e565b3480156102e357600080fd5b5061011e600160a060020a0360043581169060243516610652565b34801561030a57600080fd5b5061016f600160a060020a036004351661067d565b34801561032b57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526100f5948235600160a060020a031694602480359536959460649492019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497506106a09650505050505050565b60035460009060a060020a900460ff16156103e057600080fd5b6103ea83836106cf565b9392505050565b60015490565b60035460009060a060020a900460ff161561041157600080fd5b61041c848484610735565b949350505050565b600354600160a060020a0316331461043b57600080fd5b60035460a060020a900460ff16151561045357600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156104c657600080fd5b6103ea83836108aa565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461050257600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a0316331461057057600080fd5b60035460a060020a900460ff161561058757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60035460009060a060020a900460ff16156105ff57600080fd5b6103ea838361099b565b60035460009060a060020a900460ff161561062357600080fd5b61041c8484846109bf565b60035460009060a060020a900460ff161561064857600080fd5b6103ea83836109ec565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461069457600080fd5b61069d81610a85565b50565b60035460009060a060020a900460ff16156106ba57600080fd5b6106c685858585610b03565b95945050505050565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a03831660009081526020819052604081205482111561075a57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561078a57600080fd5b600160a060020a038316151561079f57600080fd5b600160a060020a0384166000908152602081905260409020546107c8908363ffffffff610de116565b600160a060020a0380861660009081526020819052604080822093909355908516815220546107fd908363ffffffff610df316565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461083f908363ffffffff610de116565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083106108fe57336000908152600260209081526040808320600160a060020a0388168452909152812055610933565b61090e818463ffffffff610de116565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3600191505b5092915050565b60035460009060a060020a900460ff16156109b557600080fd5b6103ea8383610e06565b60006109ca84610e35565b156109e1576109da848484610e3d565b90506103ea565b6109da848484611040565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a20908363ffffffff610df316565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a0381161515610a9a57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000610b0e85610e35565b15610dcf5783610b1d336104d0565b11610b2757600080fd5b610b4084610b34336104d0565b9063ffffffff610de116565b33600090815260208190526040902055610b6984610b5d876104d0565b9063ffffffff610df316565b60008087600160a060020a0316600160a060020a031681526020019081526020016000208190555084600160a060020a03166000836040516020018082805190602001908083835b60208310610bd05780518252601f199092019160209182019101610bb1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b60208310610c335780518252601f199092019160209182019101610c14565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051809103902060e060020a9004903387876040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015610cc5578181015183820152602001610cad565b50505050905090810190601f168015610cf25780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185885af193505050501515610d1257fe5b84600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610d8c578181015183820152602001610d74565b50505050905090810190601f168015610db95780820380516001836020036101000a031916815260200191505b50935050505060405180910390a350600161041c565b610dda858585611040565b905061041c565b600082821115610ded57fe5b50900390565b81810182811015610e0057fe5b92915050565b60006060610e1384610e35565b15610e2a57610e23848483610e3d565b9150610994565b610e23848483611040565b6000903b1190565b60008083610e4a336104d0565b11610e5457600080fd5b610e6184610b34336104d0565b33600090815260208190526040902055610e7e84610b5d876104d0565b600160a060020a0386166000818152602081815260408083209490945592517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523360048201818152602483018a90526060604484019081528951606485015289518c9850959663c0ee0b8a9693958c958c956084909101928601918190849084905b83811015610f1a578181015183820152602001610f02565b50505050905090810190601f168015610f475780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610f6857600080fd5b505af1158015610f7c573d6000803e3d6000fd5b5050505084600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610ffa578181015183820152602001610fe2565b50505050905090810190601f1680156110275780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b60008261104c336104d0565b1161105657600080fd5b61106383610b34336104d0565b3360009081526020819052604090205561108083610b5d866104d0565b60008086600160a060020a0316600160a060020a031681526020019081526020016000208190555083600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561112257818101518382015260200161110a565b50505050905090810190601f16801561114f5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a350600193925050505600a165627a7a72305820fd6968817979639de458adead882e9de833988e9d30d68d7999114abfea8bc1e0029",
"deployedBytecode": "0x6080604052600436106100cc5763ffffffff60e060020a600035041663095ea7b381146100d157806318160ddd1461010957806323b872dd146101305780633f4ba83a1461015a5780635c975abb14610171578063661884631461018657806370a08231146101aa578063715018a6146101cb5780638456cb59146101e05780638da5cb5b146101f5578063a9059cbb14610226578063be45fd621461024a578063d73dd623146102b3578063dd62ed3e146102d7578063f2fde38b146102fe578063f6368f8a1461031f575b600080fd5b3480156100dd57600080fd5b506100f5600160a060020a03600435166024356103c6565b604080519115158252519081900360200190f35b34801561011557600080fd5b5061011e6103f1565b60408051918252519081900360200190f35b34801561013c57600080fd5b506100f5600160a060020a03600435811690602435166044356103f7565b34801561016657600080fd5b5061016f610424565b005b34801561017d57600080fd5b506100f561049c565b34801561019257600080fd5b506100f5600160a060020a03600435166024356104ac565b3480156101b657600080fd5b5061011e600160a060020a03600435166104d0565b3480156101d757600080fd5b5061016f6104eb565b3480156101ec57600080fd5b5061016f610559565b34801561020157600080fd5b5061020a6105d6565b60408051600160a060020a039092168252519081900360200190f35b34801561023257600080fd5b506100f5600160a060020a03600435166024356105e5565b34801561025657600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526100f5948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106099650505050505050565b3480156102bf57600080fd5b506100f5600160a060020a036004351660243561062e565b3480156102e357600080fd5b5061011e600160a060020a0360043581169060243516610652565b34801561030a57600080fd5b5061016f600160a060020a036004351661067d565b34801561032b57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526100f5948235600160a060020a031694602480359536959460649492019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497506106a09650505050505050565b60035460009060a060020a900460ff16156103e057600080fd5b6103ea83836106cf565b9392505050565b60015490565b60035460009060a060020a900460ff161561041157600080fd5b61041c848484610735565b949350505050565b600354600160a060020a0316331461043b57600080fd5b60035460a060020a900460ff16151561045357600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156104c657600080fd5b6103ea83836108aa565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461050257600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a0316331461057057600080fd5b60035460a060020a900460ff161561058757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60035460009060a060020a900460ff16156105ff57600080fd5b6103ea838361099b565b60035460009060a060020a900460ff161561062357600080fd5b61041c8484846109bf565b60035460009060a060020a900460ff161561064857600080fd5b6103ea83836109ec565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461069457600080fd5b61069d81610a85565b50565b60035460009060a060020a900460ff16156106ba57600080fd5b6106c685858585610b03565b95945050505050565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a03831660009081526020819052604081205482111561075a57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561078a57600080fd5b600160a060020a038316151561079f57600080fd5b600160a060020a0384166000908152602081905260409020546107c8908363ffffffff610de116565b600160a060020a0380861660009081526020819052604080822093909355908516815220546107fd908363ffffffff610df316565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461083f908363ffffffff610de116565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083106108fe57336000908152600260209081526040808320600160a060020a0388168452909152812055610933565b61090e818463ffffffff610de116565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3600191505b5092915050565b60035460009060a060020a900460ff16156109b557600080fd5b6103ea8383610e06565b60006109ca84610e35565b156109e1576109da848484610e3d565b90506103ea565b6109da848484611040565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a20908363ffffffff610df316565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a0381161515610a9a57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000610b0e85610e35565b15610dcf5783610b1d336104d0565b11610b2757600080fd5b610b4084610b34336104d0565b9063ffffffff610de116565b33600090815260208190526040902055610b6984610b5d876104d0565b9063ffffffff610df316565b60008087600160a060020a0316600160a060020a031681526020019081526020016000208190555084600160a060020a03166000836040516020018082805190602001908083835b60208310610bd05780518252601f199092019160209182019101610bb1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b60208310610c335780518252601f199092019160209182019101610c14565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051809103902060e060020a9004903387876040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015610cc5578181015183820152602001610cad565b50505050905090810190601f168015610cf25780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185885af193505050501515610d1257fe5b84600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610d8c578181015183820152602001610d74565b50505050905090810190601f168015610db95780820380516001836020036101000a031916815260200191505b50935050505060405180910390a350600161041c565b610dda858585611040565b905061041c565b600082821115610ded57fe5b50900390565b81810182811015610e0057fe5b92915050565b60006060610e1384610e35565b15610e2a57610e23848483610e3d565b9150610994565b610e23848483611040565b6000903b1190565b60008083610e4a336104d0565b11610e5457600080fd5b610e6184610b34336104d0565b33600090815260208190526040902055610e7e84610b5d876104d0565b600160a060020a0386166000818152602081815260408083209490945592517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523360048201818152602483018a90526060604484019081528951606485015289518c9850959663c0ee0b8a9693958c958c956084909101928601918190849084905b83811015610f1a578181015183820152602001610f02565b50505050905090810190601f168015610f475780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610f6857600080fd5b505af1158015610f7c573d6000803e3d6000fd5b5050505084600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610ffa578181015183820152602001610fe2565b50505050905090810190601f1680156110275780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b60008261104c336104d0565b1161105657600080fd5b61106383610b34336104d0565b3360009081526020819052604090205561108083610b5d866104d0565b60008086600160a060020a0316600160a060020a031681526020019081526020016000208190555083600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561112257818101518382015260200161110a565b50505050905090810190601f16801561114f5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a350600193925050505600a165627a7a72305820fd6968817979639de458adead882e9de833988e9d30d68d7999114abfea8bc1e0029",
"sourceMap": "131:588:4:-;;;247:26:41;;;-1:-1:-1;;;;;;567:18:43;575:10;567:18;;;131:588:4;;;;;;",
"deployedSourceMap": "131:588:4:-;;;;;;;;;-1:-1:-1;;;131:588:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;592:162:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;592:162:49;-1:-1:-1;;;;;592:162:49;;;;;;;;;;;;;;;;;;;;;;;;;389:83:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;389:83:44;;;;;;;;;;;;;;;;;;;;400:188:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;400:188:49;-1:-1:-1;;;;;400:188:49;;;;;;;;;;;;838:92:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;838:92:41;;;;;;247:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;247:26:41;;;;957:205:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;957:205:49;-1:-1:-1;;;;;957:205:49;;;;;;;1149:99:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1149:99:44;-1:-1:-1;;;;;1149:99:44;;;;;1001:111:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1001:111:43;;;;666:90:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;666:90:41;;;;238:20:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;238:20:43;;;;;;;;-1:-1:-1;;;;;238:20:43;;;;;;;;;;;;;;578:139:4;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;578:139:4;-1:-1:-1;;;;;578:139:4;;;;;;;413:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;413:159:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;413:159:4;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;413:159:4;;-1:-1:-1;413:159:4;;-1:-1:-1;;;;;;;413:159:4;758:195:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;758:195:49;-1:-1:-1;;;;;758:195:49;;;;;;;2321:153:51;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2321:153:51;-1:-1:-1;;;;;2321:153:51;;;;;;;;;;1274:103:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1274:103:43;-1:-1:-1;;;;;1274:103:43;;;;;205:202:4;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;205:202:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;205:202:4;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;205:202:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;205:202:4;;;;-1:-1:-1;205:202:4;-1:-1:-1;205:202:4;;-1:-1:-1;205:202:4;;;;;;;;-1:-1:-1;205:202:4;;-1:-1:-1;205:202:4;;-1:-1:-1;;;;;;;205:202:4;592:162:49;416:6:41;;697:4:49;;-1:-1:-1;;;416:6:41;;;;415:7;407:16;;;;;;718:31:49;732:8;742:6;718:13;:31::i;:::-;711:38;592:162;-1:-1:-1;;;592:162:49:o;389:83:44:-;455:12;;389:83;:::o;400:188:49:-;416:6:41;;524:4:49;;-1:-1:-1;;;416:6:41;;;;415:7;407:16;;;;;;545:38:49;564:5;571:3;576:6;545:18;:38::i;:::-;538:45;400:188;-1:-1:-1;;;;400:188:49:o;838:92:41:-;719:5:43;;-1:-1:-1;;;;;719:5:43;705:10;:19;697:28;;;;;;568:6:41;;-1:-1:-1;;;568:6:41;;;;560:15;;;;;;;;891:6;:14;;-1:-1:-1;;891:14:41;;;916:9;;;;900:5;;916:9;838:92::o;247:26::-;;;-1:-1:-1;;;247:26:41;;;;;:::o;957:205:49:-;416:6:41;;1078:12:49;;-1:-1:-1;;;416:6:41;;;;415:7;407:16;;;;;;1107:50:49;1130:8;1140:16;1107:22;:50::i;1149:99:44:-;-1:-1:-1;;;;;1227:16:44;1205:7;1227:16;;;;;;;;;;;;1149:99::o;1001:111:43:-;719:5;;-1:-1:-1;;;;;719:5:43;705:10;:19;697:28;;;;;;1077:5;;1058:25;;-1:-1:-1;;;;;1077:5:43;;;;1058:25;;1077:5;;1058:25;1089:5;:18;;-1:-1:-1;;1089:18:43;;;1001:111::o;666:90:41:-;719:5:43;;-1:-1:-1;;;;;719:5:43;705:10;:19;697:28;;;;;;416:6:41;;-1:-1:-1;;;416:6:41;;;;415:7;407:16;;;;;;720:6;:13;;-1:-1:-1;;720:13:41;-1:-1:-1;;;720:13:41;;;744:7;;;;720:13;;744:7;666:90::o;238:20:43:-;;;-1:-1:-1;;;;;238:20:43;;:::o;578:139:4:-;416:6:41;;652:12:4;;-1:-1:-1;;;416:6:41;;;;415:7;407:16;;;;;;683:27:4;698:3;703:6;683:14;:27::i;413:159::-;416:6:41;;500:12:4;;-1:-1:-1;;;416:6:41;;;;415:7;407:16;;;;;;531:34:4;546:3;551:6;559:5;531:14;:34::i;758:195:49:-;416:6:41;;874:12:49;;-1:-1:-1;;;416:6:41;;;;415:7;407:16;;;;;;903:45:49;926:8;936:11;903:22;:45::i;2321:153:51:-;-1:-1:-1;;;;;2444:15:51;;;2420:7;2444:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;2321:153::o;1274:103:43:-;719:5;;-1:-1:-1;;;;;719:5:43;705:10;:19;697:28;;;;;;1343:29;1362:9;1343:18;:29::i;:::-;1274:103;:::o;205:202:4:-;416:6:41;;317:12:4;;-1:-1:-1;;;416:6:41;;;;415:7;407:16;;;;;;348:52:4;363:3;368:6;376:5;383:16;348:14;:52::i;:::-;341:59;205:202;-1:-1:-1;;;;;205:202:4:o;1814:188:51:-;1901:10;1881:4;1893:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;1893:29:51;;;;;;;;;;;:38;;;1942;;;;;;;1881:4;;1893:29;;1901:10;;1942:38;;;;;;;;-1:-1:-1;1993:4:51;1814:188;;;;:::o;726:470::-;-1:-1:-1;;;;;864:15:51;;832:4;864:15;;;;;;;;;;;854:25;;;846:34;;;;;;-1:-1:-1;;;;;904:14:51;;;;;;:7;:14;;;;;;;;919:10;904:26;;;;;;;;894:36;;;886:45;;;;;;-1:-1:-1;;;;;945:17:51;;;;937:26;;;;;;-1:-1:-1;;;;;988:15:51;;:8;:15;;;;;;;;;;;:27;;1008:6;988:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;970:15:51;;;:8;:15;;;;;;;;;;;:45;;;;1037:13;;;;;;;:25;;1055:6;1037:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;1021:13:51;;;:8;:13;;;;;;;;;;;:41;;;;1097:14;;;;;:7;:14;;;;;1112:10;1097:26;;;;;;;:38;;1128:6;1097:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;1068:14:51;;;;;;;:7;:14;;;;;;;;1083:10;1068:26;;;;;;;;:67;;;;1146:28;;;;;;;;;;;1068:14;;1146:28;;;;;;;;;;;-1:-1:-1;1187:4:51;726:470;;;;;:::o;3679:432::-;3826:10;3785:4;3818:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3818:29:51;;;;;;;;;;3857:28;;;3853:165;;3903:10;3927:1;3895:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3895:29:51;;;;;;;;;:33;3853:165;;;3981:30;:8;3994:16;3981:30;:12;:30;:::i;:::-;3957:10;3949:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3949:29:51;;;;;;;;;:62;3853:165;4037:10;4059:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4028:61:51;;4059:29;;;;;;;;;;;4028:61;;;;;;;;;4037:10;4028:61;;;;;;;;;;;4102:4;4095:11;;3679:432;;;;;;:::o;242:154:49:-;416:6:41;;343:4:49;;-1:-1:-1;;;416:6:41;;;;415:7;407:16;;;;;;364:27:49;379:3;384:6;364:14;:27::i;1064:278:6:-;1137:12;1166:15;1177:3;1166:10;:15::i;:::-;1162:174;;;1204:38;1223:3;1228:6;1236:5;1204:18;:38::i;:::-;1197:45;;;;1162:174;1288:37;1306:3;1311:6;1319:5;1288:17;:37::i;2926:296:51:-;3089:10;3027:4;3081:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3081:29:51;;;;;;;;;;:46;;3115:11;3081:46;:33;:46;:::i;:::-;3049:10;3041:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3041:29:51;;;;;;;;;;;;:87;;;3139:61;;;;;;3041:29;;3139:61;;;;;;;;;;;-1:-1:-1;3213:4:51;2926:296;;;;:::o;1512:171:43:-;-1:-1:-1;;;;;1582:23:43;;;;1574:32;;;;;;1638:5;;1617:38;;-1:-1:-1;;;;;1617:38:43;;;;1638:5;;1617:38;;1638:5;;1617:38;1661:5;:17;;-1:-1:-1;;1661:17:43;-1:-1:-1;;;;;1661:17:43;;;;;;;;;;1512:171::o;338:630:6:-;436:12;465:15;476:3;465:10;:15::i;:::-;461:501;;;528:6;504:21;514:10;504:9;:21::i;:::-;:30;496:39;;;;;;572:33;598:6;572:21;582:10;572:9;:21::i;:::-;:25;:33;:25;:33;:::i;:::-;558:10;549:8;:20;;;;;;;;;;:56;635:26;654:6;635:14;645:3;635:9;:14::i;:::-;:18;:26;:18;:26;:::i;:::-;619:8;:13;628:3;-1:-1:-1;;;;;619:13:6;-1:-1:-1;;;;;619:13:6;;;;;;;;;;;;:42;;;;682:3;-1:-1:-1;;;;;682:8:6;697:1;734:16;717:34;;;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;717:34:6;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;717:34:6;;;707:45;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;707:45:6;;;;;;;;;;;;;;;;-1:-1:-1;;;682:99:6;;;755:10;767:6;775:5;682:99;;;;;-1:-1:-1;;;682:99:6;;;;;;;-1:-1:-1;;;;;682:99:6;-1:-1:-1;;;;;682:99:6;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;682:99:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;675:107;;;;;;823:3;-1:-1:-1;;;;;802:40:6;811:10;-1:-1:-1;;;;;802:40:6;;828:6;836:5;802:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;802:40:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;864:4:6;857:11;;461:501;914:37;932:3;937:6;945:5;914:17;:37::i;:::-;907:44;;;;1060:116:42;1120:7;1142:8;;;;1135:16;;;;-1:-1:-1;1164:7:42;;;1060:116::o;1238:128::-;1319:7;;;1339;;;;1332:15;;;;1238:128;;;;:::o;1479:426:6:-;1539:12;1696:18;1729:15;1740:3;1729:10;:15::i;:::-;1725:174;;;1767:38;1786:3;1791:6;1799:5;1767:18;:38::i;:::-;1760:45;;;;1725:174;1851:37;1869:3;1874:6;1882:5;1851:17;:37::i;2004:284::-;2061:16;2224:18;;2270:10;;2004:284::o;2788:484::-;2872:12;3065:32;2929:6;2905:21;2915:10;2905:9;:21::i;:::-;:30;2897:39;;;;;;2969:33;2995:6;2969:21;2979:10;2969:9;:21::i;:33::-;2955:10;2946:8;:20;;;;;;;;;;:56;3028:26;3047:6;3028:14;3038:3;3028:9;:14::i;:26::-;-1:-1:-1;;;;;3012:13:6;;:8;:13;;;;;;;;;;;:42;;;;3138:49;;;;;3161:10;3138:49;;;;;;;;;;;;;;;;;;;;;;;;;;;3021:3;;-1:-1:-1;3012:13:6;;3138:22;;3161:10;;3173:6;;3181:5;;3138:49;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3138:49:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3138:49:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3138:49:6;;;;3224:3;-1:-1:-1;;;;;3203:40:6;3212:10;-1:-1:-1;;;;;3203:40:6;;3229:6;3237:5;3203:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3203:40:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3261:4:6;;2788:484;-1:-1:-1;;;;2788:484:6:o;2363:350::-;2446:12;2503:6;2479:21;2489:10;2479:9;:21::i;:::-;:30;2471:39;;;;;;2543:33;2569:6;2543:21;2553:10;2543:9;:21::i;:33::-;2529:10;2520:8;:20;;;;;;;;;;:56;2602:26;2621:6;2602:14;2612:3;2602:9;:14::i;:26::-;2586:8;:13;2595:3;-1:-1:-1;;;;;2586:13:6;-1:-1:-1;;;;;2586:13:6;;;;;;;;;;;;:42;;;;2665:3;-1:-1:-1;;;;;2644:40:6;2653:10;-1:-1:-1;;;;;2644:40:6;;2670:6;2678:5;2644:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2644:40:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2702:4:6;2363:350;;;;;:::o",
"source": "pragma solidity ^0.4.24;\n\nimport \"./ERC223StandardToken.sol\";\nimport \"zeppelin-solidity/contracts/token/ERC20/PausableToken.sol\";\n\ncontract ERC223PausableToken is ERC223StandardToken, PausableToken {\n\n function transfer(address _to, uint _value, bytes _data, string _custom_fallback) public whenNotPaused returns (bool success) {\n return super.transfer(_to, _value, _data, _custom_fallback);\n }\n\n function transfer(address _to, uint _value, bytes _data) public whenNotPaused returns (bool success) {\n return super.transfer(_to, _value, _data);\n }\n\n function transfer(address _to, uint _value) public whenNotPaused returns (bool success) {\n return super.transfer(_to, _value);\n }\n}\n",
"sourcePath": "/Users/dowonlee/Desktop/dowon/DNext/tokenboost/tokenboost-solidity-erc223token/contracts/token/erc223/ERC223PausableToken.sol",
"ast": {
"absolutePath": "/Users/dowonlee/Desktop/dowon/DNext/tokenboost/tokenboost-solidity-erc223token/contracts/token/erc223/ERC223PausableToken.sol",
"exportedSymbols": {
"ERC223PausableToken": [
393
]
},
"id": 394,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 323,
"literals": [
"solidity",
"^",
"0.4",
".24"
],
"nodeType": "PragmaDirective",
"src": "0:24:4"
},
{
"absolutePath": "/Users/dowonlee/Desktop/dowon/DNext/tokenboost/tokenboost-solidity-erc223token/contracts/token/erc223/ERC223StandardToken.sol",
"file": "./ERC223StandardToken.sol",
"id": 324,
"nodeType": "ImportDirective",
"scope": 394,
"sourceUnit": 712,
"src": "26:35:4",
"symbolAliases": [],
"unitAlias": ""
},
{
"absolutePath": "zeppelin-solidity/contracts/token/ERC20/PausableToken.sol",
"file": "zeppelin-solidity/contracts/token/ERC20/PausableToken.sol",
"id": 325,
"nodeType": "ImportDirective",
"scope": 394,
"sourceUnit": 7353,
"src": "62:67:4",
"symbolAliases": [],
"unitAlias": ""
},
{
"baseContracts": [
{
"arguments": null,
"baseName": {
"contractScope": null,
"id": 326,
"name": "ERC223StandardToken",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 711,
"src": "163:19:4",
"typeDescriptions": {
"typeIdentifier": "t_contract$_ERC223StandardToken_$711",
"typeString": "contract ERC223StandardToken"
}
},
"id": 327,
"nodeType": "InheritanceSpecifier",
"src": "163:19:4"
},
{
"arguments": null,
"baseName": {
"contractScope": null,
"id": 328,
"name": "PausableToken",
"nodeType": "UserDefinedTypeName",
"referencedDeclaration": 7352,
"src": "184:13:4",
"typeDescriptions": {
"typeIdentifier": "t_contract$_PausableToken_$7352",
"typeString": "contract PausableToken"
}
},
"id": 329,
"nodeType": "InheritanceSpecifier",
"src": "184:13:4"
}
],
"contractDependencies": [
321,
711,
6722,
6902,
6998,
7112,
7144,
7352,
7647
],
"contractKind": "contract",
"documentation": null,
"fullyImplemented": true,
"id": 393,
"linearizedBaseContracts": [
393,
7352,
6722,
6902,
711,
7647,
6998,
7112,
7144,
321
],
"name": "ERC223PausableToken",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 352,
"nodeType": "Block",
"src": "331:76:4",
"statements": [
{
"expression": {
"argumentTypes": null,
"arguments": [
{
"argumentTypes": null,
"id": 346,
"name": "_to",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 331,
"src": "363:3:4",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"argumentTypes": null,
"id": 347,
"name": "_value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 333,
"src": "368:6:4",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
{
"argumentTypes": null,
"id": 348,
"name": "_data",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 335,
"src": "376:5:4",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
}
},
{
"argumentTypes": null,
"id": 349,
"name": "_custom_fallback",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 337,
"src": "383:16:4",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
{
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes memory"
},
{
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
],
"expression": {
"argumentTypes": null,
"id": 344,
"name": "super",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 7700,
"src": "348:5:4",
"typeDescriptions": {
"typeIdentifier": "t_super$_ERC223PausableToken_$393",
"typeString": "contract super ERC223PausableToken"
}
},
"id": 345,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "transfer",
"nodeType": "MemberAccess",
"referencedDeclaration": 507,
"src": "348:14:4",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bool_$",
"typeString": "function (address,uint256,bytes memory,string memory) returns (bool)"
}
},
"id": 350,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "348:52:4",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"functionReturnParameters": 343,
"id": 351,
"nodeType": "Return",
"src": "341:59:4"
}
]
},
"documentation": null,
"id": 353,
"implemented": true,
"isConstructor": false,
"isDeclaredConst": false,
"modifiers": [
{
"arguments": null,
"id": 340,
"modifierName": {
"argumentTypes": null,
"id": 339,
"name": "whenNotPaused",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 6683,
"src": "294:13:4",
"typeDescriptions": {
"typeIdentifier": "t_modifier$__$",
"typeString": "modifier ()"
}
},
"nodeType": "ModifierInvocation",
"src": "294:13:4"
}
],
"name": "transfer",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 338,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 331,
"name": "_to",
"nodeType": "VariableDeclaration",
"scope": 353,
"src": "223:11:4",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 330,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "223:7:4",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 333,
"name": "_value",
"nodeType": "VariableDeclaration",
"scope": 353,
"src": "236:11:4",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 332,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "236:4:4",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 335,
"name": "_data",
"nodeType": "VariableDeclaration",
"scope": 353,
"src": "249:11:4",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes_memory_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 334,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "249:5:4",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"value": null,
"visibility": "internal"
},
{
"constant": false,
"id": 337,
"name": "_custom_fallback",
"nodeType": "VariableDeclaration",
"scope": 353,
"src": "262:23:4",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string"
},
"typeName": {
"id": 336,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "262:6:4",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}