ERC-20
Overview
Max Total Supply
59,251,278.08933329723136762 TIE
Holders
913 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000253 TIEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TieToken
Compiler Version
v0.4.16+commit.d7661dd9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-09-18 */ /************************************************************************* * This contract has been merged with solidify * https://github.com/tiesnetwork/solidify *************************************************************************/ /* * Tie Token smart contract * * Supports ERC20, ERC223 stadards * * The TieToken is mintable during Token Sale. On Token Sale finalization it * will be minted up to the cap and minting will be finished forever * * @author Dmitry Kochin <[email protected]> */ pragma solidity ^0.4.14; /************************************************************************* * import "./include/MintableToken.sol" : start *************************************************************************/ /************************************************************************* * import "zeppelin/contracts/token/StandardToken.sol" : start *************************************************************************/ /************************************************************************* * import "./BasicToken.sol" : start *************************************************************************/ /************************************************************************* * import "./ERC20Basic.sol" : start *************************************************************************/ /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) constant returns (uint256); function transfer(address to, uint256 value) returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /************************************************************************* * import "./ERC20Basic.sol" : end *************************************************************************/ /************************************************************************* * import "../math/SafeMath.sol" : start *************************************************************************/ /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /************************************************************************* * import "../math/SafeMath.sol" : end *************************************************************************/ /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) returns (bool) { balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } } /************************************************************************* * import "./BasicToken.sol" : end *************************************************************************/ /************************************************************************* * import "./ERC20.sol" : start *************************************************************************/ /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) constant returns (uint256); function transferFrom(address from, address to, uint256 value) returns (bool); function approve(address spender, uint256 value) returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /************************************************************************* * import "./ERC20.sol" : end *************************************************************************/ /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amout of tokens to be transfered */ function transferFrom(address _from, address _to, uint256 _value) returns (bool) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_to] = balances[_to].add(_value); balances[_from] = balances[_from].sub(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) returns (bool) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_value == 0) || (allowed[msg.sender][_spender] == 0)); allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifing the amount of tokens still avaible for the spender. */ function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } } /************************************************************************* * import "zeppelin/contracts/token/StandardToken.sol" : end *************************************************************************/ /************************************************************************* * import "zeppelin/contracts/ownership/Ownable.sol" : start *************************************************************************/ /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } /************************************************************************* * import "zeppelin/contracts/ownership/Ownable.sol" : end *************************************************************************/ /** * Mintable token */ contract MintableToken is StandardToken, Ownable { uint public totalSupply = 0; address private minter; modifier onlyMinter(){ require(minter == msg.sender); _; } function setMinter(address _minter) onlyOwner { minter = _minter; } function mint(address _to, uint _amount) onlyMinter { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Transfer(address(0x0), _to, _amount); } } /************************************************************************* * import "./include/MintableToken.sol" : end *************************************************************************/ /************************************************************************* * import "./include/ERC23PayableToken.sol" : start *************************************************************************/ /************************************************************************* * import "./ERC23.sol" : start *************************************************************************/ /* * ERC23 * ERC23 interface * see https://github.com/ethereum/EIPs/issues/223 */ contract ERC23 is ERC20Basic { function transfer(address to, uint value, bytes data); event TransferData(address indexed from, address indexed to, uint value, bytes data); } /************************************************************************* * import "./ERC23.sol" : end *************************************************************************/ /************************************************************************* * import "./ERC23PayableReceiver.sol" : start *************************************************************************/ /* * Contract that is working with ERC223 tokens */ contract ERC23PayableReceiver { function tokenFallback(address _from, uint _value, bytes _data) payable; }/************************************************************************* * import "./ERC23PayableReceiver.sol" : end *************************************************************************/ /** https://github.com/Dexaran/ERC23-tokens/blob/master/token/ERC223/ERC223BasicToken.sol * */ contract ERC23PayableToken is BasicToken, ERC23{ // Function that is called when a user or another contract wants to transfer funds . function transfer(address to, uint value, bytes data){ transferAndPay(to, value, data); } // Standard function transfer similar to ERC20 transfer with no _data . // Added due to backwards compatibility reasons . function transfer(address to, uint value) returns (bool){ bytes memory empty; transfer(to, value, empty); return true; } function transferAndPay(address to, uint value, bytes data) payable { // Standard function transfer similar to ERC20 transfer with no _data . // Added due to backwards compatibility reasons . uint codeLength; assembly { // Retrieve the size of the code on target address, this needs assembly . codeLength := extcodesize(to) } balances[msg.sender] = balances[msg.sender].sub(value); balances[to] = balances[to].add(value); if(codeLength>0) { ERC23PayableReceiver receiver = ERC23PayableReceiver(to); receiver.tokenFallback.value(msg.value)(msg.sender, value, data); }else if(msg.value > 0){ to.transfer(msg.value); } Transfer(msg.sender, to, value); if(data.length > 0) TransferData(msg.sender, to, value, data); } }/************************************************************************* * import "./include/ERC23PayableToken.sol" : end *************************************************************************/ contract TieToken is MintableToken, ERC23PayableToken { string public constant name = "TieToken"; string public constant symbol = "TIE"; uint public constant decimals = 18; bool public transferEnabled = false; //The cap is 200 mln TIEs uint private constant CAP = 200*(10**6)*(10**decimals); function mint(address _to, uint _amount){ require(totalSupply.add(_amount) <= CAP); super.mint(_to, _amount); } function TieToken(address multisigOwner) { //Transfer ownership on the token to multisig on creation transferOwnership(multisigOwner); } /** * Overriding all transfers to check if transfers are enabled */ function transferAndPay(address to, uint value, bytes data) payable{ require(transferEnabled); super.transferAndPay(to, value, data); } function enableTransfer(bool enabled) onlyOwner{ transferEnabled = enabled; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"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":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"}],"name":"transferAndPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"enabled","type":"bool"}],"name":"enableTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_minter","type":"address"}],"name":"setMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"multisigOwner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"TransferData","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"}]
Contract Creation Code
606060405260006004556005805460a060020a60ff0219169055341561002457600080fd5b604051602080610e0f833981016040528080519150505b5b60038054600160a060020a03191633600160a060020a03161790555b61006e816401000000006108ac61007582021704565b5b506100c0565b60035433600160a060020a0390811691161461009057600080fd5b600160a060020a038116156100bb5760038054600160a060020a031916600160a060020a0383161790555b5b5b50565b610d40806100cf6000396000f300606060405236156100ee5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f3578063095ea7b31461017e57806318160ddd146101b457806323b872dd146101d9578063313ce5671461021557806340c10f191461023a5780634cd412d51461025e57806370a08231146102855780638da5cb5b146102b657806395d89b41146102e5578063a9059cbb14610370578063be45fd62146103a6578063d8615e5b1461040d578063dd62ed3e14610469578063ef7ac0e5146104a0578063f2fde38b146104ba578063fca3b5aa146104db575b600080fd5b34156100fe57600080fd5b6101066104fc565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101435780820151818401525b60200161012a565b50505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018957600080fd5b6101a0600160a060020a0360043516602435610533565b604051901515815260200160405180910390f35b34156101bf57600080fd5b6101c76105da565b60405190815260200160405180910390f35b34156101e457600080fd5b6101a0600160a060020a03600435811690602435166044356105e0565b604051901515815260200160405180910390f35b341561022057600080fd5b6101c76106f5565b60405190815260200160405180910390f35b341561024557600080fd5b61025c600160a060020a03600435166024356106fa565b005b341561026957600080fd5b6101a0610734565b604051901515815260200160405180910390f35b341561029057600080fd5b6101c7600160a060020a0360043516610755565b60405190815260200160405180910390f35b34156102c157600080fd5b6102c9610774565b604051600160a060020a03909116815260200160405180910390f35b34156102f057600080fd5b610106610783565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101435780820151818401525b60200161012a565b50505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561037b57600080fd5b6101a0600160a060020a03600435166024356107ba565b604051901515815260200160405180910390f35b34156103b157600080fd5b61025c60048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506107db95505050505050565b005b61025c60048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506107ec95505050505050565b005b341561047457600080fd5b6101c7600160a060020a0360043581169060243516610826565b60405190815260200160405180910390f35b34156104ab57600080fd5b61025c6004351515610853565b005b34156104c557600080fd5b61025c600160a060020a03600435166108ac565b005b34156104e657600080fd5b61025c600160a060020a0360043516610904565b005b60408051908101604052600881527f546965546f6b656e000000000000000000000000000000000000000000000000602082015281565b60008115806105655750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561057057600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60045481565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190610627908463ffffffff61094c16565b600160a060020a03808616600090815260016020526040808220939093559087168152205461065c908463ffffffff61096616565b600160a060020a038616600090815260016020526040902055610685818463ffffffff61096616565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b601281565b6004546aa56fa5b99019a5c80000009061071a908363ffffffff61094c16565b111561072557600080fd5b61072f828261097d565b5b5050565b60055474010000000000000000000000000000000000000000900460ff1681565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b60408051908101604052600381527f5449450000000000000000000000000000000000000000000000000000000000602082015281565b60006107c4610d02565b6107cf8484836107db565b600191505b5092915050565b6107e68383836107ec565b5b505050565b60055474010000000000000000000000000000000000000000900460ff16151561081557600080fd5b6107e6838383610a2f565b5b505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a0390811691161461086e57600080fd5b6005805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000831515021790555b5b50565b60035433600160a060020a039081169116146108c757600080fd5b600160a060020a038116156108a8576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b60035433600160a060020a0390811691161461091f57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282018381101561095b57fe5b8091505b5092915050565b60008282111561097257fe5b508082035b92915050565b60055433600160a060020a0390811691161461099857600080fd5b6004546109ab908263ffffffff61094c16565b600455600160a060020a0382166000908152600160205260409020546109d7908263ffffffff61094c16565b600160a060020a0383166000818152600160205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5b5050565b600160a060020a033316600090815260016020526040812054843b9190610a5c908563ffffffff61096616565b600160a060020a033381166000908152600160205260408082209390935590871681522054610a91908563ffffffff61094c16565b600160a060020a038616600090815260016020526040812091909155821115610bb6575083600160a060020a03811663c0ee0b8a343387876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b505780820151818401525b602001610b37565b50505050905090810190601f168015610b7d5780820380516001836020036101000a031916815260200191505b509450505050506000604051808303818588803b1515610b9c57600080fd5b6125ee5a03f11515610bad57600080fd5b50505050610bf1565b6000341115610bf157600160a060020a0385163480156108fc0290604051600060405180830381858888f193505050501515610bf157600080fd5b5b5b84600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600083511115610cfa5784600160a060020a031633600160a060020a03167f9b6aa1faccbd47218eb2870ae6411b374a3cf25c4285a37ef90bcb3c1fdde9ac868660405182815260406020820181815290820183818151815260200191508051906020019080838360005b83811015610cbe5780820151818401525b602001610ca5565b50505050905090810190601f168015610ceb5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35b5b5050505050565b602060405190810160405260008152905600a165627a7a72305820677a480ed7582c539f21dfca7d2acfc8ac2ee258c3f322239d148770f4636f33002900000000000000000000000000eadc3cf4f4791a9e64d6e7e476236b8db096ab
Deployed Bytecode
0x606060405236156100ee5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f3578063095ea7b31461017e57806318160ddd146101b457806323b872dd146101d9578063313ce5671461021557806340c10f191461023a5780634cd412d51461025e57806370a08231146102855780638da5cb5b146102b657806395d89b41146102e5578063a9059cbb14610370578063be45fd62146103a6578063d8615e5b1461040d578063dd62ed3e14610469578063ef7ac0e5146104a0578063f2fde38b146104ba578063fca3b5aa146104db575b600080fd5b34156100fe57600080fd5b6101066104fc565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101435780820151818401525b60200161012a565b50505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018957600080fd5b6101a0600160a060020a0360043516602435610533565b604051901515815260200160405180910390f35b34156101bf57600080fd5b6101c76105da565b60405190815260200160405180910390f35b34156101e457600080fd5b6101a0600160a060020a03600435811690602435166044356105e0565b604051901515815260200160405180910390f35b341561022057600080fd5b6101c76106f5565b60405190815260200160405180910390f35b341561024557600080fd5b61025c600160a060020a03600435166024356106fa565b005b341561026957600080fd5b6101a0610734565b604051901515815260200160405180910390f35b341561029057600080fd5b6101c7600160a060020a0360043516610755565b60405190815260200160405180910390f35b34156102c157600080fd5b6102c9610774565b604051600160a060020a03909116815260200160405180910390f35b34156102f057600080fd5b610106610783565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101435780820151818401525b60200161012a565b50505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561037b57600080fd5b6101a0600160a060020a03600435166024356107ba565b604051901515815260200160405180910390f35b34156103b157600080fd5b61025c60048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506107db95505050505050565b005b61025c60048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506107ec95505050505050565b005b341561047457600080fd5b6101c7600160a060020a0360043581169060243516610826565b60405190815260200160405180910390f35b34156104ab57600080fd5b61025c6004351515610853565b005b34156104c557600080fd5b61025c600160a060020a03600435166108ac565b005b34156104e657600080fd5b61025c600160a060020a0360043516610904565b005b60408051908101604052600881527f546965546f6b656e000000000000000000000000000000000000000000000000602082015281565b60008115806105655750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561057057600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60045481565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190610627908463ffffffff61094c16565b600160a060020a03808616600090815260016020526040808220939093559087168152205461065c908463ffffffff61096616565b600160a060020a038616600090815260016020526040902055610685818463ffffffff61096616565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b601281565b6004546aa56fa5b99019a5c80000009061071a908363ffffffff61094c16565b111561072557600080fd5b61072f828261097d565b5b5050565b60055474010000000000000000000000000000000000000000900460ff1681565b600160a060020a0381166000908152600160205260409020545b919050565b600354600160a060020a031681565b60408051908101604052600381527f5449450000000000000000000000000000000000000000000000000000000000602082015281565b60006107c4610d02565b6107cf8484836107db565b600191505b5092915050565b6107e68383836107ec565b5b505050565b60055474010000000000000000000000000000000000000000900460ff16151561081557600080fd5b6107e6838383610a2f565b5b505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a0390811691161461086e57600080fd5b6005805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000831515021790555b5b50565b60035433600160a060020a039081169116146108c757600080fd5b600160a060020a038116156108a8576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b60035433600160a060020a0390811691161461091f57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282018381101561095b57fe5b8091505b5092915050565b60008282111561097257fe5b508082035b92915050565b60055433600160a060020a0390811691161461099857600080fd5b6004546109ab908263ffffffff61094c16565b600455600160a060020a0382166000908152600160205260409020546109d7908263ffffffff61094c16565b600160a060020a0383166000818152600160205260408082209390935590917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5b5050565b600160a060020a033316600090815260016020526040812054843b9190610a5c908563ffffffff61096616565b600160a060020a033381166000908152600160205260408082209390935590871681522054610a91908563ffffffff61094c16565b600160a060020a038616600090815260016020526040812091909155821115610bb6575083600160a060020a03811663c0ee0b8a343387876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b505780820151818401525b602001610b37565b50505050905090810190601f168015610b7d5780820380516001836020036101000a031916815260200191505b509450505050506000604051808303818588803b1515610b9c57600080fd5b6125ee5a03f11515610bad57600080fd5b50505050610bf1565b6000341115610bf157600160a060020a0385163480156108fc0290604051600060405180830381858888f193505050501515610bf157600080fd5b5b5b84600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600083511115610cfa5784600160a060020a031633600160a060020a03167f9b6aa1faccbd47218eb2870ae6411b374a3cf25c4285a37ef90bcb3c1fdde9ac868660405182815260406020820181815290820183818151815260200191508051906020019080838360005b83811015610cbe5780820151818401525b602001610ca5565b50505050905090810190601f168015610ceb5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35b5b5050505050565b602060405190810160405260008152905600a165627a7a72305820677a480ed7582c539f21dfca7d2acfc8ac2ee258c3f322239d148770f4636f330029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000eadc3cf4f4791a9e64d6e7e476236b8db096ab
-----Decoded View---------------
Arg [0] : multisigOwner (address): 0x00EaDC3CF4F4791a9E64d6E7e476236b8dB096AB
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000eadc3cf4f4791a9e64d6e7e476236b8db096ab
Swarm Source
bzzr://677a480ed7582c539f21dfca7d2acfc8ac2ee258c3f322239d148770f4636f33
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.