Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 9 from a total of 9 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 14054221 | 1084 days ago | IN | 0 ETH | 0.00826511 | ||||
Approve | 14040592 | 1086 days ago | IN | 0 ETH | 0.00457194 | ||||
Approve | 14040589 | 1086 days ago | IN | 0 ETH | 0.00458498 | ||||
Transfer | 14023762 | 1089 days ago | IN | 0 ETH | 0.00399296 | ||||
Approve | 13183197 | 1220 days ago | IN | 0 ETH | 0.00236333 | ||||
Approve | 13183197 | 1220 days ago | IN | 0 ETH | 0.00408267 | ||||
Approve | 12928648 | 1260 days ago | IN | 0 ETH | 0.00161679 | ||||
Approve | 12921284 | 1261 days ago | IN | 0 ETH | 0.00166298 | ||||
Mint | 11693529 | 1451 days ago | IN | 0 ETH | 0.00479642 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AdAstraUSDT
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.6.12; import "ERC20.sol"; contract AdAstraUSDT is ERC20 { address private owner; constructor(address _owner) public ERC20("AdAstraUSDT", "adUSDT") { owner = _owner; } function getOwner() external view returns (address) { return owner; } function mint(address _to, uint256 _amount) external { require(msg.sender == owner); _mint(_to, _amount); } function burn(uint256 _amount, address _fromOwner) external { require(msg.sender == owner); _burn(_fromOwner, _amount); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.6.0 <0.8.0; import "SafeMath.sol"; import "IERC20.sol"; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 6. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 6; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_fromOwner","type":"address"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051620011c2380380620011c28339818101604052602081101561003557600080fd5b5051604080518082018252600b81526a1059105cdd1c985554d11560aa1b60208281019182528351808501909452600684526518591554d11560d21b908401528151919291610086916003916100d3565b50805161009a9060049060208401906100d3565b5050600580546001600160a01b0390931661010002610100600160a81b031960ff19909416600617939093169290921790915550610166565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011457805160ff1916838001178555610141565b82800160010185558215610141579182015b82811115610141578251825591602001919060010190610126565b5061014d929150610151565b5090565b5b8082111561014d5760008155600101610152565b61104c80620001766000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610314578063a9059cbb1461034d578063dd62ed3e14610386578063fcd3533c146103c1576100ea565b806370a08231146102a8578063893d20e8146102db57806395d89b411461030c576100ea565b806323b872dd116100c857806323b872dd146101d3578063313ce56714610216578063395093511461023457806340c10f191461026d576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101b9575b600080fd5b6100f76103fa565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a56004803603604081101561018257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104ae565b604080519115158252519081900360200190f35b6101c16104cb565b60408051918252519081900360200190f35b6101a5600480360360608110156101e957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013590911690604001356104d1565b61021e610572565b6040805160ff9092168252519081900360200190f35b6101a56004803603604081101561024a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561057b565b6102a66004803603604081101561028357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356105d6565b005b6101c1600480360360208110156102be57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661060d565b6102e3610635565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100f7610656565b6101a56004803603604081101561032a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356106d5565b6101a56004803603604081101561036357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561074a565b6101c16004803603604081101561039c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602001351661075e565b6102a6600480360360408110156103d757600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610796565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b820191906000526020600020905b81548152906001019060200180831161048757829003601f168201915b5050505050905090565b60006104c26104bb6107c9565b84846107cd565b50600192915050565b60025490565b60006104de848484610914565b610568846104ea6107c9565b61056385604051806060016040528060288152602001610f606028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160205260408120906105356107c9565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190610ae4565b6107cd565b5060019392505050565b60055460ff1690565b60006104c26105886107c9565b8461056385600160006105996107c9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490610b95565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1633146105ff57600080fd5b6106098282610c10565b5050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b60006104c26106e26107c9565b8461056385604051806060016040528060258152602001610ff2602591396001600061070c6107c9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190610ae4565b60006104c26107576107c9565b8484610914565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1633146107bf57600080fd5b6106098183610d41565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180610fce6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166108a5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610f186022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180610fa96025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166109ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610ed36023913960400191505060405180910390fd5b6109f7838383610e8b565b610a4181604051806060016040528060268152602001610f3a6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190610ae4565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610a7d9082610b95565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b52578181015183820152602001610b3a565b50505050905090810190601f168015610b7f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c0957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216610c9257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610c9e60008383610e8b565b600254610cab9082610b95565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054610cde9082610b95565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610f886021913960400191505060405180910390fd5b610db982600083610e8b565b610e0381604051806060016040528060228152602001610ef66022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190610ae4565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254610e369082610e90565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6000610c0983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ae456fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122091ce53877a0a2a478779d3d2c271d8b30e5b5462d1ed302dc94b04dfe1347c8664736f6c634300060c003300000000000000000000000094dd66f464c03f253204cb7731536c01532b9ff2
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610314578063a9059cbb1461034d578063dd62ed3e14610386578063fcd3533c146103c1576100ea565b806370a08231146102a8578063893d20e8146102db57806395d89b411461030c576100ea565b806323b872dd116100c857806323b872dd146101d3578063313ce56714610216578063395093511461023457806340c10f191461026d576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101b9575b600080fd5b6100f76103fa565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a56004803603604081101561018257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104ae565b604080519115158252519081900360200190f35b6101c16104cb565b60408051918252519081900360200190f35b6101a5600480360360608110156101e957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013590911690604001356104d1565b61021e610572565b6040805160ff9092168252519081900360200190f35b6101a56004803603604081101561024a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561057b565b6102a66004803603604081101561028357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356105d6565b005b6101c1600480360360208110156102be57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661060d565b6102e3610635565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100f7610656565b6101a56004803603604081101561032a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356106d5565b6101a56004803603604081101561036357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561074a565b6101c16004803603604081101561039c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602001351661075e565b6102a6600480360360408110156103d757600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610796565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b820191906000526020600020905b81548152906001019060200180831161048757829003601f168201915b5050505050905090565b60006104c26104bb6107c9565b84846107cd565b50600192915050565b60025490565b60006104de848484610914565b610568846104ea6107c9565b61056385604051806060016040528060288152602001610f606028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160205260408120906105356107c9565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190610ae4565b6107cd565b5060019392505050565b60055460ff1690565b60006104c26105886107c9565b8461056385600160006105996107c9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490610b95565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1633146105ff57600080fd5b6106098282610c10565b5050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a45780601f10610479576101008083540402835291602001916104a4565b60006104c26106e26107c9565b8461056385604051806060016040528060258152602001610ff2602591396001600061070c6107c9565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190610ae4565b60006104c26107576107c9565b8484610914565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1633146107bf57600080fd5b6106098183610d41565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180610fce6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166108a5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610f186022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180610fa96025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166109ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610ed36023913960400191505060405180910390fd5b6109f7838383610e8b565b610a4181604051806060016040528060268152602001610f3a6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190610ae4565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610a7d9082610b95565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b52578181015183820152602001610b3a565b50505050905090810190601f168015610b7f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c0957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216610c9257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610c9e60008383610e8b565b600254610cab9082610b95565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054610cde9082610b95565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180610f886021913960400191505060405180910390fd5b610db982600083610e8b565b610e0381604051806060016040528060228152602001610ef66022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190610ae4565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254610e369082610e90565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6000610c0983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ae456fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122091ce53877a0a2a478779d3d2c271d8b30e5b5462d1ed302dc94b04dfe1347c8664736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000094dd66f464c03f253204cb7731536c01532b9ff2
-----Decoded View---------------
Arg [0] : _owner (address): 0x94dD66F464c03F253204cB7731536C01532b9FF2
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000094dd66f464c03f253204cb7731536c01532b9ff2
Deployed Bytecode Sourcemap
92:607:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2575:83:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4681:169;;;;;;;;;;;;;;;;-1:-1:-1;4681:169:1;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3650:100;;;:::i;:::-;;;;;;;;;;;;;;;;5332:321;;;;;;;;;;;;;;;;-1:-1:-1;5332:321:1;;;;;;;;;;;;;;;;;;:::i;3502:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6062:218;;;;;;;;;;;;;;;;-1:-1:-1;6062:218:1;;;;;;;;;:::i;380:145:0:-;;;;;;;;;;;;;;;;-1:-1:-1;380:145:0;;;;;;;;;:::i;:::-;;3813:119:1;;;;;;;;;;;;;;;;-1:-1:-1;3813:119:1;;;;:::i;280:88:0:-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2777:87:1;;;:::i;6783:269::-;;;;;;;;;;;;;;;;-1:-1:-1;6783:269:1;;;;;;;;;:::i;4145:175::-;;;;;;;;;;;;;;;;-1:-1:-1;4145:175:1;;;;;;;;;:::i;4383:151::-;;;;;;;;;;;;;;;;-1:-1:-1;4383:151:1;;;;;;;;;;;:::i;537:159:0:-;;;;;;;;;;;;;;;;-1:-1:-1;537:159:0;;;;;;;;;:::i;2575:83:1:-;2645:5;2638:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2612:13;;2638:12;;2645:5;;2638:12;;2645:5;2638:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2575:83;:::o;4681:169::-;4764:4;4781:39;4790:12;:10;:12::i;:::-;4804:7;4813:6;4781:8;:39::i;:::-;-1:-1:-1;4838:4:1;4681:169;;;;:::o;3650:100::-;3730:12;;3650:100;:::o;5332:321::-;5438:4;5455:36;5465:6;5473:9;5484:6;5455:9;:36::i;:::-;5502:121;5511:6;5519:12;:10;:12::i;:::-;5533:89;5571:6;5533:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;5553:12;:10;:12::i;:::-;5533:33;;;;;;;;;;;;;-1:-1:-1;5533:33:1;;;:89;:37;:89::i;:::-;5502:8;:121::i;:::-;-1:-1:-1;5641:4:1;5332:321;;;;;:::o;3502:83::-;3568:9;;;;3502:83;:::o;6062:218::-;6150:4;6167:83;6176:12;:10;:12::i;:::-;6190:7;6199:50;6238:10;6199:11;:25;6211:12;:10;:12::i;:::-;6199:25;;;;;;;;;;;;;;;;;;-1:-1:-1;6199:25:1;;;:34;;;;;;;;;;;:38;:50::i;380:145:0:-;471:5;;;;;;;457:10;:19;449:28;;;;;;498:19;504:3;509:7;498:5;:19::i;:::-;380:145;;:::o;3813:119:1:-;3906:18;;3879:7;3906:18;;;;;;;;;;;;3813:119::o;280:88:0:-;355:5;;;;;;;;280:88::o;2777:87:1:-;2849:7;2842:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2816:13;;2842:14;;2849:7;;2842:14;;2849:7;2842:14;;;;;;;;;;;;;;;;;;;;;;;;6783:269;6876:4;6893:129;6902:12;:10;:12::i;:::-;6916:7;6925:96;6964:15;6925:96;;;;;;;;;;;;;;;;;:11;:25;6937:12;:10;:12::i;:::-;6925:25;;;;;;;;;;;;;;;;;;-1:-1:-1;6925:25:1;;;:34;;;;;;;;;;;:96;:38;:96::i;4145:175::-;4231:4;4248:42;4258:12;:10;:12::i;:::-;4272:9;4283:6;4248:9;:42::i;4383:151::-;4499:18;;;;4472:7;4499:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4383:151::o;537:159:0:-;635:5;;;;;;;621:10;:19;613:28;;;;;;662:26;668:10;680:7;662:5;:26::i;158:106:1:-;246:10;158:106;:::o;9930:346::-;10032:19;;;10024:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10111:21;;;10103:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10184:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10236:32;;;;;;;;;;;;;;;;;9930:346;;;:::o;7542:539::-;7648:20;;;7640:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7729:23;;;7721:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7805:47;7826:6;7834:9;7845:6;7805:20;:47::i;:::-;7885:71;7907:6;7885:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;7865:17;;;;:9;:17;;;;;;;;;;;:91;;;;7990:20;;;;;;;:32;;8015:6;7990:24;:32::i;:::-;7967:20;;;;:9;:20;;;;;;;;;;;;:55;;;;8038:35;;;;;;;7967:20;;8038:35;;;;;;;;;;;;;7542:539;;;:::o;1820:192:3:-;1906:7;1942:12;1934:6;;;;1926:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1978:5:3;;;1820:192::o;917:181::-;975:7;1007:5;;;1031:6;;;;1023:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1089:1;917:181;-1:-1:-1;;;917:181:3:o;8363:378:1:-;8447:21;;;8439:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8517:49;8546:1;8550:7;8559:6;8517:20;:49::i;:::-;8594:12;;:24;;8611:6;8594:16;:24::i;:::-;8579:12;:39;8650:18;;;:9;:18;;;;;;;;;;;:30;;8673:6;8650:22;:30::i;:::-;8629:18;;;:9;:18;;;;;;;;;;;:51;;;;8696:37;;;;;;;8629:18;;:9;;8696:37;;;;;;;;;;8363:378;;:::o;9074:418::-;9158:21;;;9150:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9230:49;9251:7;9268:1;9272:6;9230:20;:49::i;:::-;9313:68;9336:6;9313:68;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;9292:18;;;:9;:18;;;;;;;;;;:89;9407:12;;:24;;9424:6;9407:16;:24::i;:::-;9392:12;:39;9447:37;;;;;;;;9473:1;;9447:37;;;;;;;;;;;;;9074:418;;:::o;11301:92::-;;;;:::o;1381:136:3:-;1439:7;1466:43;1470:1;1473;1466:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://91ce53877a0a2a478779d3d2c271d8b30e5b5462d1ed302dc94b04dfe1347c86
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 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.