Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 52 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 16546270 | 746 days ago | IN | 0 ETH | 0.00096702 | ||||
Transfer | 14299178 | 1085 days ago | IN | 0 ETH | 0.00137316 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.00123869 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.00184002 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.00123827 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.00184044 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.00184044 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.00184044 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.00184044 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.00124786 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.0012544 | ||||
Transfer | 14208274 | 1099 days ago | IN | 0 ETH | 0.001844 | ||||
Transfer | 14208273 | 1099 days ago | IN | 0 ETH | 0.00186468 | ||||
Transfer | 14208273 | 1099 days ago | IN | 0 ETH | 0.00187609 | ||||
Transfer | 14208273 | 1099 days ago | IN | 0 ETH | 0.00184294 | ||||
Transfer | 14183300 | 1103 days ago | IN | 0 ETH | 0.00268472 | ||||
Transfer | 14131805 | 1111 days ago | IN | 0 ETH | 0.0060993 | ||||
Transfer | 13885545 | 1149 days ago | IN | 0 ETH | 0.00902288 | ||||
Transfer | 13885543 | 1149 days ago | IN | 0 ETH | 0.01340457 | ||||
Transfer | 13774593 | 1166 days ago | IN | 0 ETH | 0.01091496 | ||||
Transfer | 13732632 | 1173 days ago | IN | 0 ETH | 0.00475839 | ||||
Transfer | 13732147 | 1173 days ago | IN | 0 ETH | 0.0036536 | ||||
Transfer | 13705514 | 1177 days ago | IN | 0 ETH | 0.00719507 | ||||
Transfer | 13705512 | 1177 days ago | IN | 0 ETH | 0.00674361 | ||||
Transfer | 13682622 | 1181 days ago | IN | 0 ETH | 0.00601412 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
UNIEX
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-12-26 */ pragma solidity ^0.4.24; /** * @title SafeMath */ library SafeMath { /** * @dev Multiplies two numbers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); uint256 c = a / b; return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title Roles */ library Roles { struct Role { mapping (address => bool) bearer; } function add(Role storage role, address account) internal { require(account != address(0)); role.bearer[account] = true; } function remove(Role storage role, address account) internal { require(account != address(0)); role.bearer[account] = false; } function has(Role storage role, address account) internal view returns (bool) { require(account != address(0)); return role.bearer[account]; } } /** * @title ERC20 interface */ interface ERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @title TokenBasic ERC20 token */ contract TokenBasic is ERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } function allowance( address owner, address spender ) public view returns (uint256) { return _allowed[owner][spender]; } function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } function approve(address spender, uint256 value) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } function increaseAllowance( address spender, uint256 addedValue ) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = ( _allowed[msg.sender][spender].add(addedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } function decreaseAllowance( address spender, uint256 subtractedValue ) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = ( _allowed[msg.sender][spender].sub(subtractedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } function _transfer(address from, address to, uint256 value) internal { require(value <= _balances[from]); require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } function _mint(address account, uint256 value) internal { require(account != 0); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } function _burn(address account, uint256 value) internal { require(account != 0); require(value <= _balances[account]); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } function _burnFrom(address account, uint256 value) internal { require(value <= _allowed[account][msg.sender]); _allowed[account][msg.sender] = _allowed[account][msg.sender].sub( value); _burn(account, value); } } contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private minters; constructor() public { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender)); _; } function isMinter(address account) public view returns (bool) { return minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { minters.remove(account); emit MinterRemoved(account); } } /** * @title Mintable */ contract Mintable is TokenBasic, MinterRole { function mint( address to, uint256 value ) public onlyMinter returns (bool) { _mint(to, value); return true; } } /** * @title Burnable Token */ contract Burnable is TokenBasic { function burn(uint256 value) public { _burn(msg.sender, value); } function burnFrom(address from, uint256 value) public { _burnFrom(from, value); } } /** * @title UNIEX */ contract UNIEX is Burnable, Mintable { string public constant name = "UNIONex Platform Coin"; string public constant symbol = "UNIEX"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 10000000000 * (10 ** uint256(decimals)); constructor(address _owner) public { _mint(_owner, INITIAL_SUPPLY); } }
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":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"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":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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"},{"inputs":[{"name":"_owner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051602080610ccc833981016040525161003433640100000000610059810204565b610053816b204fce5e3e250261100000006401000000006100a8810204565b506101b3565b610071600382640100000000610a6d61016082021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b600160a060020a03821615156100bd57600080fd5b6002546100d7908264010000000061067a61019a82021704565b600255600160a060020a03821660009081526020819052604090205461010a908264010000000061067a61019a82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038116151561017557600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156101ac57600080fd5b9392505050565b610b0a806101c26000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b75780632ff2e9dc146101de578063313ce567146101f3578063395093511461021e57806340c10f191461024257806342966c681461026657806370a082311461028057806379cc6790146102a157806395d89b41146102c5578063983b2d56146102da57806398650275146102fb578063a457c2d714610310578063a9059cbb14610334578063aa271e1a14610358578063dd62ed3e14610379575b600080fd5b34801561010157600080fd5b5061010a6103a0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356103d7565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc610455565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101cc61045b565b3480156101ff57600080fd5b5061020861046b565b6040805160ff9092168252519081900360200190f35b34801561022a57600080fd5b506101a3600160a060020a0360043516602435610470565b34801561024e57600080fd5b506101a3600160a060020a0360043516602435610520565b34801561027257600080fd5b5061027e600435610549565b005b34801561028c57600080fd5b506101cc600160a060020a0360043516610556565b3480156102ad57600080fd5b5061027e600160a060020a0360043516602435610571565b3480156102d157600080fd5b5061010a61057f565b3480156102e657600080fd5b5061027e600160a060020a03600435166105b6565b34801561030757600080fd5b5061027e6105d3565b34801561031c57600080fd5b506101a3600160a060020a03600435166024356105de565b34801561034057600080fd5b506101a3600160a060020a0360043516602435610629565b34801561036457600080fd5b506101a3600160a060020a0360043516610636565b34801561038557600080fd5b506101cc600160a060020a036004358116906024351661064f565b60408051808201909152601581527f554e494f4e657820506c6174666f726d20436f696e0000000000000000000000602082015281565b6000600160a060020a03831615156103ee57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b6b204fce5e3e2502611000000081565b601281565b6000600160a060020a038316151561048757600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546104bb908363ffffffff61067a16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600061052b33610636565b151561053657600080fd5b6105408383610693565b50600192915050565b610553338261073d565b50565b600160a060020a031660009081526020819052604090205490565b61057b828261080b565b5050565b60408051808201909152600581527f554e494558000000000000000000000000000000000000000000000000000000602082015281565b6105bf33610636565b15156105ca57600080fd5b6105538161089d565b6105dc336108e5565b565b6000600160a060020a03831615156105f557600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546104bb908363ffffffff61092d16565b6000610540338484610944565b600061064960038363ffffffff610a3616565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60008282018381101561068c57600080fd5b9392505050565b600160a060020a03821615156106a857600080fd5b6002546106bb908263ffffffff61067a16565b600255600160a060020a0382166000908152602081905260409020546106e7908263ffffffff61067a16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561075257600080fd5b600160a060020a03821660009081526020819052604090205481111561077757600080fd5b60025461078a908263ffffffff61092d16565b600255600160a060020a0382166000908152602081905260409020546107b6908263ffffffff61092d16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a038216600090815260016020908152604080832033845290915290205481111561083b57600080fd5b600160a060020a038216600090815260016020908152604080832033845290915290205461086f908263ffffffff61092d16565b600160a060020a038316600090815260016020908152604080832033845290915290205561057b828261073d565b6108ae60038263ffffffff610a6d16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6108f660038263ffffffff610aa716565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000808383111561093d57600080fd5b5050900390565b600160a060020a03831660009081526020819052604090205481111561096957600080fd5b600160a060020a038216151561097e57600080fd5b600160a060020a0383166000908152602081905260409020546109a7908263ffffffff61092d16565b600160a060020a0380851660009081526020819052604080822093909355908416815220546109dc908263ffffffff61067a16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600160a060020a0382161515610a4d57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0381161515610a8257600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a0381161515610abc57600080fd5b600160a060020a0316600090815260209190915260409020805460ff191690555600a165627a7a72305820f6edc5e6dd15c0dfab329b8ffc9fded875a20a069098f8e31f2314fe61b503f50029000000000000000000000000085df8629edd090c7c422d44f3361c01a07a9579
Deployed Bytecode
0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b75780632ff2e9dc146101de578063313ce567146101f3578063395093511461021e57806340c10f191461024257806342966c681461026657806370a082311461028057806379cc6790146102a157806395d89b41146102c5578063983b2d56146102da57806398650275146102fb578063a457c2d714610310578063a9059cbb14610334578063aa271e1a14610358578063dd62ed3e14610379575b600080fd5b34801561010157600080fd5b5061010a6103a0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a03600435166024356103d7565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc610455565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101cc61045b565b3480156101ff57600080fd5b5061020861046b565b6040805160ff9092168252519081900360200190f35b34801561022a57600080fd5b506101a3600160a060020a0360043516602435610470565b34801561024e57600080fd5b506101a3600160a060020a0360043516602435610520565b34801561027257600080fd5b5061027e600435610549565b005b34801561028c57600080fd5b506101cc600160a060020a0360043516610556565b3480156102ad57600080fd5b5061027e600160a060020a0360043516602435610571565b3480156102d157600080fd5b5061010a61057f565b3480156102e657600080fd5b5061027e600160a060020a03600435166105b6565b34801561030757600080fd5b5061027e6105d3565b34801561031c57600080fd5b506101a3600160a060020a03600435166024356105de565b34801561034057600080fd5b506101a3600160a060020a0360043516602435610629565b34801561036457600080fd5b506101a3600160a060020a0360043516610636565b34801561038557600080fd5b506101cc600160a060020a036004358116906024351661064f565b60408051808201909152601581527f554e494f4e657820506c6174666f726d20436f696e0000000000000000000000602082015281565b6000600160a060020a03831615156103ee57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b6b204fce5e3e2502611000000081565b601281565b6000600160a060020a038316151561048757600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546104bb908363ffffffff61067a16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600061052b33610636565b151561053657600080fd5b6105408383610693565b50600192915050565b610553338261073d565b50565b600160a060020a031660009081526020819052604090205490565b61057b828261080b565b5050565b60408051808201909152600581527f554e494558000000000000000000000000000000000000000000000000000000602082015281565b6105bf33610636565b15156105ca57600080fd5b6105538161089d565b6105dc336108e5565b565b6000600160a060020a03831615156105f557600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546104bb908363ffffffff61092d16565b6000610540338484610944565b600061064960038363ffffffff610a3616565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60008282018381101561068c57600080fd5b9392505050565b600160a060020a03821615156106a857600080fd5b6002546106bb908263ffffffff61067a16565b600255600160a060020a0382166000908152602081905260409020546106e7908263ffffffff61067a16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561075257600080fd5b600160a060020a03821660009081526020819052604090205481111561077757600080fd5b60025461078a908263ffffffff61092d16565b600255600160a060020a0382166000908152602081905260409020546107b6908263ffffffff61092d16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a038216600090815260016020908152604080832033845290915290205481111561083b57600080fd5b600160a060020a038216600090815260016020908152604080832033845290915290205461086f908263ffffffff61092d16565b600160a060020a038316600090815260016020908152604080832033845290915290205561057b828261073d565b6108ae60038263ffffffff610a6d16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6108f660038263ffffffff610aa716565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000808383111561093d57600080fd5b5050900390565b600160a060020a03831660009081526020819052604090205481111561096957600080fd5b600160a060020a038216151561097e57600080fd5b600160a060020a0383166000908152602081905260409020546109a7908263ffffffff61092d16565b600160a060020a0380851660009081526020819052604080822093909355908416815220546109dc908263ffffffff61067a16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600160a060020a0382161515610a4d57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0381161515610a8257600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a0381161515610abc57600080fd5b600160a060020a0316600090815260209190915260409020805460ff191690555600a165627a7a72305820f6edc5e6dd15c0dfab329b8ffc9fded875a20a069098f8e31f2314fe61b503f50029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000085df8629edd090c7c422d44f3361c01a07a9579
-----Decoded View---------------
Arg [0] : _owner (address): 0x085DF8629EDd090C7C422D44F3361c01A07a9579
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000085df8629edd090c7c422d44f3361c01a07a9579
Deployed Bytecode Sourcemap
6226:355:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6270:53;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6270:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;6270:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2859:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2859:226:0;-1:-1:-1;;;;;2859:226:0;;;;;;;;;;;;;;;;;;;;;;;;;2368:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2368:85:0;;;;;;;;;;;;;;;;;;;;6412:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6412:80:0;;;;6372:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6372:35:0;;;;;;;;;;;;;;;;;;;;;;;3091:337;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3091:337:0;-1:-1:-1;;;;;3091:337:0;;;;;;;5788:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5788:148:0;-1:-1:-1;;;;;5788:148:0;;;;;;;6020:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6020:73:0;;;;;;;2459:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2459:100:0;-1:-1:-1;;;;;2459:100:0;;;;;6099:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6099:89:0;-1:-1:-1;;;;;6099:89:0;;;;;;;6328:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6328:39:0;;;;5295:86;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5295:86:0;-1:-1:-1;;;;;5295:86:0;;;;;5387:71;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5387:71:0;;;;3434:347;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3434:347:0;-1:-1:-1;;;;;3434:347:0;;;;;;;2723:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2723:130:0;-1:-1:-1;;;;;2723:130:0;;;;;;;5187:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5187:102:0;-1:-1:-1;;;;;5187:102:0;;;;;2565:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2565:152:0;-1:-1:-1;;;;;2565:152:0;;;;;;;;;;6270:53;;;;;;;;;;;;;;;;;;;:::o;2859:226::-;2924:4;-1:-1:-1;;;;;2945:21:0;;;;2937:30;;;;;;2985:10;2976:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;2976:29:0;;;;;;;;;;;;:37;;;3025:36;;;;;;;2976:29;;2985:10;3025:36;;;;;;;;;;;-1:-1:-1;3075:4:0;2859:226;;;;:::o;2368:85::-;2435:12;;2368:85;:::o;6412:80::-;6453:39;6412:80;:::o;6372:35::-;6405:2;6372:35;:::o;3091:337::-;3192:4;-1:-1:-1;;;;;3216:21:0;;;;3208:30;;;;;;3295:10;3286:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;3286:29:0;;;;;;;;;;:45;;3320:10;3286:45;:33;:45;:::i;:::-;3256:10;3247:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;3247:29:0;;;;;;;;;;;;:85;;;3344:60;;;;;;3247:29;;3344:60;;;;;;;;;;;-1:-1:-1;3418:4:0;3091:337;;;;:::o;5788:148::-;5880:4;5146:20;5155:10;5146:8;:20::i;:::-;5138:29;;;;;;;;5896:16;5902:2;5906:5;5896;:16::i;:::-;-1:-1:-1;5926:4:0;5788:148;;;;:::o;6020:73::-;6063:24;6069:10;6081:5;6063;:24::i;:::-;6020:73;:::o;2459:100::-;-1:-1:-1;;;;;2537:16:0;2514:7;2537:16;;;;;;;;;;;;2459:100::o;6099:89::-;6160:22;6170:4;6176:5;6160:9;:22::i;:::-;6099:89;;:::o;6328:39::-;;;;;;;;;;;;;;;;;;;:::o;5295:86::-;5146:20;5155:10;5146:8;:20::i;:::-;5138:29;;;;;;;;5356:19;5367:7;5356:10;:19::i;5387:71::-;5427:25;5441:10;5427:13;:25::i;:::-;5387:71::o;3434:347::-;3540:4;-1:-1:-1;;;;;3564:21:0;;;;3556:30;;;;;;3643:10;3634:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;3634:29:0;;;;;;;;;;:50;;3668:15;3634:50;:33;:50;:::i;2723:130::-;2784:4;2797:32;2807:10;2819:2;2823:5;2797:9;:32::i;5187:102::-;5243:4;5263:20;:7;5275;5263:20;:11;:20;:::i;:::-;5256:27;5187:102;-1:-1:-1;;5187:102:0:o;2565:152::-;-1:-1:-1;;;;;2687:15:0;;;2661:7;2687:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;2565:152::o;625:136::-;683:7;711:5;;;731:6;;;;723:15;;;;;;754:1;625:136;-1:-1:-1;;;625:136:0:o;4077:240::-;-1:-1:-1;;;;;4148:12:0;;;;4140:21;;;;;;4183:12;;:23;;4200:5;4183:23;:16;:23;:::i;:::-;4168:12;:38;-1:-1:-1;;;;;4234:18:0;;:9;:18;;;;;;;;;;;:29;;4257:5;4234:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;4213:18:0;;:9;:18;;;;;;;;;;;:50;;;;4275:36;;;;;;;4213:18;;:9;;4275:36;;;;;;;;;;4077:240;;:::o;4323:285::-;-1:-1:-1;;;;;4394:12:0;;;;4386:21;;;;;;-1:-1:-1;;;;;4431:18:0;;:9;:18;;;;;;;;;;;4422:27;;;4414:36;;;;;;4474:12;;:23;;4491:5;4474:23;:16;:23;:::i;:::-;4459:12;:38;-1:-1:-1;;;;;4525:18:0;;:9;:18;;;;;;;;;;;:29;;4548:5;4525:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;4504:18:0;;:9;:18;;;;;;;;;;;:50;;;;4566:36;;;;;;;4504:9;;4566:36;;;;;;;;;;;4323:285;;:::o;4614:237::-;-1:-1:-1;;;;;4698:17:0;;;;;;:8;:17;;;;;;;;4716:10;4698:29;;;;;;;;4689:38;;;4681:47;;;;;;-1:-1:-1;;;;;4769:17:0;;;;;;:8;:17;;;;;;;;4787:10;4769:29;;;;;;;;:48;;4811:5;4769:48;:33;:48;:::i;:::-;-1:-1:-1;;;;;4737:17:0;;;;;;:8;:17;;;;;;;;4755:10;4737:29;;;;;;;:80;4824:21;4746:7;4839:5;4824;:21::i;5464:111::-;5517:20;:7;5529;5517:20;:11;:20;:::i;:::-;5549;;-1:-1:-1;;;;;5549:20:0;;;;;;;;5464:111;:::o;5581:119::-;5637:23;:7;5652;5637:23;:14;:23;:::i;:::-;5672:22;;-1:-1:-1;;;;;5672:22:0;;;;;;;;5581:119;:::o;483:136::-;541:7;;565:6;;;;557:15;;;;;;-1:-1:-1;;591:5:0;;;483:136::o;3787:284::-;-1:-1:-1;;;;;3880:15:0;;:9;:15;;;;;;;;;;;3871:24;;;3863:33;;;;;;-1:-1:-1;;;;;3911:16:0;;;;3903:25;;;;;;-1:-1:-1;;;;;3955:15:0;;:9;:15;;;;;;;;;;;:26;;3975:5;3955:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;3937:15:0;;;:9;:15;;;;;;;;;;;:44;;;;4004:13;;;;;;;:24;;4022:5;4004:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;3988:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;4040:25;;;;;;;3988:13;;4040:25;;;;;;;;;;;;;3787:284;;;:::o;1283:167::-;1364:4;-1:-1:-1;;;;;1388:21:0;;;;1380:30;;;;;;-1:-1:-1;;;;;;1424:20:0;:11;:20;;;;;;;;;;;;;;;1283:167::o;997:135::-;-1:-1:-1;;;;;1070:21:0;;;;1062:30;;;;;;-1:-1:-1;;;;;1099:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;1099:27:0;1122:4;1099:27;;;997:135::o;1138:139::-;-1:-1:-1;;;;;1214:21:0;;;;1206:30;;;;;;-1:-1:-1;;;;;1243:20:0;1266:5;1243:20;;;;;;;;;;;:28;;-1:-1:-1;;1243:28:0;;;1138:139::o
Swarm Source
bzzr://f6edc5e6dd15c0dfab329b8ffc9fded875a20a069098f8e31f2314fe61b503f5
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.