Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 5 from a total of 5 transactions
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ERC20TokenImplementation
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-06 */ // File: contracts/IERC20.sol pragma solidity ^0.6.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the erc token owner. */ function getOwner() external view returns (address); /** * @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); } // File: openzeppelin-solidity/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ 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; } } // File: openzeppelin-solidity/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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; } } // File: openzeppelin-solidity/contracts/proxy/Initializable.sol // SPDX-License-Identifier: MIT pragma solidity >=0.4.24 <0.7.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; // solhint-disable-next-line no-inline-assembly assembly { cs := extcodesize(self) } return cs == 0; } } // File: contracts/ERC20TokenImplementation.sol pragma solidity ^0.6.0; contract ERC20TokenImplementation is Context, IERC20, Initializable { 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; address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); bool private _mintable; constructor(string memory name, string memory symbol, uint8 decimals, uint256 amount, bool mintable, address owner) public { _owner = owner; _name = name; _symbol = symbol; _decimals = decimals; _mintable = mintable; _mint(owner, amount); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } /** * @dev Returns if the token is mintable or not */ function mintable() external view returns (bool) { return _mintable; } /** * @dev Returns the erc token owner. */ function getOwner() external override view returns (address) { return _owner; } /** * @dev Returns the token decimals. */ function decimals() external override view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external override view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external override view returns (string memory) { return _name; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() external override view returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) external override view returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner, address spender) external override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ERC20-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) external 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 {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public 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 {ERC20-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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner * - `_mintable` must be true */ function mint(uint256 amount) public onlyOwner returns (bool) { require(_mintable, "this token is not mintable"); _mint(_msgSender(), amount); return true; } /** * @dev Burn `amount` tokens and decreasing the total supply. */ function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _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 { require(account != address(0), "ERC20: mint to the zero address"); _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 { require(account != address(0), "ERC20: burn from the zero address"); _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 is 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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"mintable","type":"bool"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620014e5380380620014e5833981810160405260c08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604090815260208281015191830151606084015160809094015160068054610100600160a81b0319166101006001600160a01b03841602179055885193965090945091620001ee9160049190890190620003a4565b50845162000204906005906020880190620003a4565b506006805460ff191660ff86161760ff60a81b1916600160a81b841515021790556200023181846200023d565b50505050505062000449565b6001600160a01b03821662000299576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620002b5816003546200034260201b62000c5b1790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620002ea91839062000c5b62000342821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200039d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003e757805160ff191683800117855562000417565b8280016001018555821562000417579182015b8281111562000417578251825591602001919060010190620003fa565b506200042592915062000429565b5090565b6200044691905b8082111562000425576000815560010162000430565b90565b61108c80620004596000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a0712d6811610071578063a0712d68146102e8578063a457c2d714610305578063a9059cbb14610331578063dd62ed3e1461035d578063f2fde38b1461038b5761010b565b806370a082311461028c578063715018a6146102b2578063893d20e8146102bc57806395d89b41146102e05761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b57806342966c68146102675780634bf365df146102845761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103b1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b038135169060200135610447565b604080519115158252519081900360200190f35b6101d5610464565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b0381358116916020810135909116906040013561046a565b6102256104f7565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b038135169060200135610500565b6101b96004803603602081101561027d57600080fd5b5035610554565b6101b961056f565b6101d5600480360360208110156102a257600080fd5b50356001600160a01b031661057f565b6102ba61059a565b005b6102c4610659565b604080516001600160a01b039092168252519081900360200190f35b61011861066d565b6101b9600480360360208110156102fe57600080fd5b50356106ce565b6101b96004803603604081101561031b57600080fd5b506001600160a01b0381351690602001356107ae565b6101b96004803603604081101561034757600080fd5b506001600160a01b03813516906020013561081c565b6101d56004803603604081101561037357600080fd5b506001600160a01b0381358116916020013516610830565b6102ba600480360360208110156103a157600080fd5b50356001600160a01b031661085b565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561043d5780601f106104125761010080835404028352916020019161043d565b820191906000526020600020905b81548152906001019060200180831161042057829003601f168201915b5050505050905090565b600061045b610454610976565b848461097a565b50600192915050565b60035490565b6000610477848484610a66565b6104ed84610483610976565b6104e885604051806060016040528060288152602001610fa0602891396001600160a01b038a166000908152600260205260408120906104c1610976565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610bc416565b61097a565b5060019392505050565b60065460ff1690565b600061045b61050d610976565b846104e8856002600061051e610976565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c5b16565b6000610567610561610976565b83610cbc565b506001919050565b600654600160a81b900460ff1690565b6001600160a01b031660009081526001602052604090205490565b6105a2610976565b60065461010090046001600160a01b03908116911614610609576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60065460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360068054610100600160a81b0319169055565b60065461010090046001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561043d5780601f106104125761010080835404028352916020019161043d565b60006106d8610976565b60065461010090046001600160a01b0390811691161461073f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600654600160a81b900460ff1661079d576040805162461bcd60e51b815260206004820152601a60248201527f7468697320746f6b656e206973206e6f74206d696e7461626c65000000000000604482015290519081900360640190fd5b6105676107a8610976565b83610db8565b600061045b6107bb610976565b846104e88560405180606001604052806025815260200161103260259139600260006107e5610976565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610bc416565b600061045b610829610976565b8484610a66565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610863610976565b60065461010090046001600160a01b039081169116146108ca576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661090f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610f326026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166109bf5760405162461bcd60e51b815260040180806020018281038252602481526020018061100e6024913960400191505060405180910390fd5b6001600160a01b038216610a045760405162461bcd60e51b8152600401808060200182810382526022815260200180610f586022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610aab5760405162461bcd60e51b8152600401808060200182810382526025815260200180610fe96025913960400191505060405180910390fd5b6001600160a01b038216610af05760405162461bcd60e51b8152600401808060200182810382526023815260200180610eed6023913960400191505060405180910390fd5b610b3381604051806060016040528060268152602001610f7a602691396001600160a01b038616600090815260016020526040902054919063ffffffff610bc416565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b68908263ffffffff610c5b16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c535760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c18578181015183820152602001610c00565b50505050905090810190601f168015610c455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610cb5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610d015760405162461bcd60e51b8152600401808060200182810382526021815260200180610fc86021913960400191505060405180910390fd5b610d4481604051806060016040528060228152602001610f10602291396001600160a01b038516600090815260016020526040902054919063ffffffff610bc416565b6001600160a01b038316600090815260016020526040902055600354610d70908263ffffffff610eaa16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610e13576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610e26908263ffffffff610c5b16565b6003556001600160a01b038216600090815260016020526040902054610e52908263ffffffff610c5b16565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000610cb583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bc456fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a4de4ada9003948e05c3d98b707dcf1822651ed6310128bdc4cdf719d34ff0c364736f6c6343000602003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000b7d162cb18d773d57800000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ece3a3b2495353b6189bc8f1e078953147bf663000000000000000000000000000000000000000000000000000000000000000064d79f09f9095000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d79f09f90950000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a0712d6811610071578063a0712d68146102e8578063a457c2d714610305578063a9059cbb14610331578063dd62ed3e1461035d578063f2fde38b1461038b5761010b565b806370a082311461028c578063715018a6146102b2578063893d20e8146102bc57806395d89b41146102e05761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b57806342966c68146102675780634bf365df146102845761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103b1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b038135169060200135610447565b604080519115158252519081900360200190f35b6101d5610464565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b0381358116916020810135909116906040013561046a565b6102256104f7565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b038135169060200135610500565b6101b96004803603602081101561027d57600080fd5b5035610554565b6101b961056f565b6101d5600480360360208110156102a257600080fd5b50356001600160a01b031661057f565b6102ba61059a565b005b6102c4610659565b604080516001600160a01b039092168252519081900360200190f35b61011861066d565b6101b9600480360360208110156102fe57600080fd5b50356106ce565b6101b96004803603604081101561031b57600080fd5b506001600160a01b0381351690602001356107ae565b6101b96004803603604081101561034757600080fd5b506001600160a01b03813516906020013561081c565b6101d56004803603604081101561037357600080fd5b506001600160a01b0381358116916020013516610830565b6102ba600480360360208110156103a157600080fd5b50356001600160a01b031661085b565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561043d5780601f106104125761010080835404028352916020019161043d565b820191906000526020600020905b81548152906001019060200180831161042057829003601f168201915b5050505050905090565b600061045b610454610976565b848461097a565b50600192915050565b60035490565b6000610477848484610a66565b6104ed84610483610976565b6104e885604051806060016040528060288152602001610fa0602891396001600160a01b038a166000908152600260205260408120906104c1610976565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610bc416565b61097a565b5060019392505050565b60065460ff1690565b600061045b61050d610976565b846104e8856002600061051e610976565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c5b16565b6000610567610561610976565b83610cbc565b506001919050565b600654600160a81b900460ff1690565b6001600160a01b031660009081526001602052604090205490565b6105a2610976565b60065461010090046001600160a01b03908116911614610609576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60065460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360068054610100600160a81b0319169055565b60065461010090046001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561043d5780601f106104125761010080835404028352916020019161043d565b60006106d8610976565b60065461010090046001600160a01b0390811691161461073f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600654600160a81b900460ff1661079d576040805162461bcd60e51b815260206004820152601a60248201527f7468697320746f6b656e206973206e6f74206d696e7461626c65000000000000604482015290519081900360640190fd5b6105676107a8610976565b83610db8565b600061045b6107bb610976565b846104e88560405180606001604052806025815260200161103260259139600260006107e5610976565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610bc416565b600061045b610829610976565b8484610a66565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610863610976565b60065461010090046001600160a01b039081169116146108ca576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661090f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610f326026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166109bf5760405162461bcd60e51b815260040180806020018281038252602481526020018061100e6024913960400191505060405180910390fd5b6001600160a01b038216610a045760405162461bcd60e51b8152600401808060200182810382526022815260200180610f586022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610aab5760405162461bcd60e51b8152600401808060200182810382526025815260200180610fe96025913960400191505060405180910390fd5b6001600160a01b038216610af05760405162461bcd60e51b8152600401808060200182810382526023815260200180610eed6023913960400191505060405180910390fd5b610b3381604051806060016040528060268152602001610f7a602691396001600160a01b038616600090815260016020526040902054919063ffffffff610bc416565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b68908263ffffffff610c5b16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c535760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c18578181015183820152602001610c00565b50505050905090810190601f168015610c455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610cb5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610d015760405162461bcd60e51b8152600401808060200182810382526021815260200180610fc86021913960400191505060405180910390fd5b610d4481604051806060016040528060228152602001610f10602291396001600160a01b038516600090815260016020526040902054919063ffffffff610bc416565b6001600160a01b038316600090815260016020526040902055600354610d70908263ffffffff610eaa16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610e13576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610e26908263ffffffff610c5b16565b6003556001600160a01b038216600090815260016020526040902054610e52908263ffffffff610c5b16565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000610cb583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bc456fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a4de4ada9003948e05c3d98b707dcf1822651ed6310128bdc4cdf719d34ff0c364736f6c63430006020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000b7d162cb18d773d57800000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ece3a3b2495353b6189bc8f1e078953147bf663000000000000000000000000000000000000000000000000000000000000000064d79f09f9095000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d79f09f90950000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): My🐕
Arg [1] : symbol (string): My🐕
Arg [2] : decimals (uint8): 18
Arg [3] : amount (uint256): 222222222000000000000000000
Arg [4] : mintable (bool): True
Arg [5] : owner (address): 0xeCe3A3B2495353B6189bc8f1E078953147Bf6630
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000b7d162cb18d773d5780000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 000000000000000000000000ece3a3b2495353b6189bc8f1e078953147bf6630
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 4d79f09f90950000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 4d79f09f90950000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
12288:10197:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12288:10197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14898:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;14898:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16075:163;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16075:163:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15056:102;;;:::i;:::-;;;;;;;;;;;;;;;;16709:315;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16709:315:0;;;;;;;;;;;;;;;;;:::i;14580:94::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17432:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17432:210:0;;;;;;;;:::i;18936:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18936:120:0;;:::i;14268:84::-;;;:::i;15220:121::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15220:121:0;-1:-1:-1;;;;;15220:121:0;;:::i;13658:140::-;;;:::i;:::-;;14420:93;;;:::i;:::-;;;;-1:-1:-1;;;;;14420:93:0;;;;;;;;;;;;;;14739:98;;;:::i;18658:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18658:189:0;;:::i;18144:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18144:261:0;;;;;;;;:::i;15553:169::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15553:169:0;;;;;;;;:::i;15784:145::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15784:145:0;;;;;;;;;;:::i;13953:236::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13953:236:0;-1:-1:-1;;;;;13953:236:0;;:::i;14898:94::-;14979:5;14972:12;;;;;;;;-1:-1:-1;;14972:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14946:13;;14972:12;;14979:5;;14972:12;;14979:5;14972:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14898:94;:::o;16075:163::-;16152:4;16169:39;16178:12;:10;:12::i;:::-;16192:7;16201:6;16169:8;:39::i;:::-;-1:-1:-1;16226:4:0;16075:163;;;;:::o;15056:102::-;15138:12;;15056:102;:::o;16709:315::-;16809:4;16826:36;16836:6;16844:9;16855:6;16826:9;:36::i;:::-;16873:121;16882:6;16890:12;:10;:12::i;:::-;16904:89;16942:6;16904:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16904:19:0;;;;;;:11;:19;;;;;;16924:12;:10;:12::i;:::-;-1:-1:-1;;;;;16904:33:0;;;;;;;;;;;;-1:-1:-1;16904:33:0;;;:89;;:37;:89;:::i;:::-;16873:8;:121::i;:::-;-1:-1:-1;17012:4:0;16709:315;;;;;:::o;14580:94::-;14657:9;;;;14580:94;:::o;17432:210::-;17512:4;17529:83;17538:12;:10;:12::i;:::-;17552:7;17561:50;17600:10;17561:11;:25;17573:12;:10;:12::i;:::-;-1:-1:-1;;;;;17561:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17561:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;18936:120::-;18982:4;18999:27;19005:12;:10;:12::i;:::-;19019:6;18999:5;:27::i;:::-;-1:-1:-1;19044:4:0;18936:120;;;:::o;14268:84::-;14335:9;;-1:-1:-1;;;14335:9:0;;;;;14268:84::o;15220:121::-;-1:-1:-1;;;;;15315:18:0;15288:7;15315:18;;;:9;:18;;;;;;;15220:121::o;13658:140::-;13244:12;:10;:12::i;:::-;13234:6;;;;;-1:-1:-1;;;;;13234:6:0;;;:22;;;13226:67;;;;;-1:-1:-1;;;13226:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13741:6:::1;::::0;13720:40:::1;::::0;13757:1:::1;::::0;13741:6:::1;::::0;::::1;-1:-1:-1::0;;;;;13741:6:0::1;::::0;13720:40:::1;::::0;13757:1;;13720:40:::1;13771:6;:19:::0;;-1:-1:-1;;;;;;13771:19:0::1;::::0;;13658:140::o;14420:93::-;14499:6;;;;;-1:-1:-1;;;;;14499:6:0;;14420:93::o;14739:98::-;14822:7;14815:14;;;;;;;;-1:-1:-1;;14815:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14789:13;;14815:14;;14822:7;;14815:14;;14822:7;14815:14;;;;;;;;;;;;;;;;;;;;;;;;18658:189;18714:4;13244:12;:10;:12::i;:::-;13234:6;;;;;-1:-1:-1;;;;;13234:6:0;;;:22;;;13226:67;;;;;-1:-1:-1;;;13226:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18739:9:::1;::::0;-1:-1:-1;;;18739:9:0;::::1;;;18731:48;;;::::0;;-1:-1:-1;;;18731:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;18790:27;18796:12;:10;:12::i;:::-;18810:6;18790:5;:27::i;18144:261::-:0;18229:4;18246:129;18255:12;:10;:12::i;:::-;18269:7;18278:96;18317:15;18278:96;;;;;;;;;;;;;;;;;:11;:25;18290:12;:10;:12::i;:::-;-1:-1:-1;;;;;18278:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18278:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;15553:169::-;15633:4;15650:42;15660:12;:10;:12::i;:::-;15674:9;15685:6;15650:9;:42::i;15784:145::-;-1:-1:-1;;;;;15894:18:0;;;15867:7;15894:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15784:145::o;13953:236::-;13244:12;:10;:12::i;:::-;13234:6;;;;;-1:-1:-1;;;;;13234:6:0;;;:22;;;13226:67;;;;;-1:-1:-1;;;13226:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14034:22:0;::::1;14026:73;;;;-1:-1:-1::0;;;14026:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14136:6;::::0;14115:38:::1;::::0;-1:-1:-1;;;;;14115:38:0;;::::1;::::0;14136:6:::1;::::0;::::1;;::::0;14115:38:::1;::::0;;;::::1;14164:6;:17:::0;;-1:-1:-1;;;;;14164:17:0;;::::1;;;-1:-1:-1::0;;;;;;14164:17:0;;::::1;::::0;;;::::1;::::0;;13953:236::o;3838:106::-;3926:10;3838:106;:::o;21726:338::-;-1:-1:-1;;;;;21820:19:0;;21812:68;;;;-1:-1:-1;;;21812:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21899:21:0;;21891:68;;;;-1:-1:-1;;;21891:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21972:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22024:32;;;;;;;;;;;;;;;;;21726:338;;;:::o;19546:471::-;-1:-1:-1;;;;;19644:20:0;;19636:70;;;;-1:-1:-1;;;19636:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19725:23:0;;19717:71;;;;-1:-1:-1;;;19717:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19821;19843:6;19821:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19821:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;19801:17:0;;;;;;;:9;:17;;;;;;:91;;;;19926:20;;;;;;;:32;;19951:6;19926:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;19903:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;19974:35;;;;;;;19903:20;;19974:35;;;;;;;;;;;;;19546:471;;;:::o;6059:192::-;6145:7;6181:12;6173:6;;;;6165:29;;;;-1:-1:-1;;;6165:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6165:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6217:5:0;;;6059:192::o;5156:181::-;5214:7;5246:5;;;5270:6;;;;5262:46;;;;;-1:-1:-1;;;5262:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5328:1;5156:181;-1:-1:-1;;;5156:181:0:o;20938:348::-;-1:-1:-1;;;;;21014:21:0;;21006:67;;;;-1:-1:-1;;;21006:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21107:68;21130:6;21107:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21107:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;21086:18:0;;;;;;:9;:18;;;;;:89;21201:12;;:24;;21218:6;21201:24;:16;:24;:::i;:::-;21186:12;:39;21241:37;;;;;;;;21267:1;;-1:-1:-1;;;;;21241:37:0;;;;;;;;;;;;20938:348;;:::o;20298:308::-;-1:-1:-1;;;;;20374:21:0;;20366:65;;;;;-1:-1:-1;;;20366:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20459:12;;:24;;20476:6;20459:24;:16;:24;:::i;:::-;20444:12;:39;-1:-1:-1;;;;;20515:18:0;;;;;;:9;:18;;;;;;:30;;20538:6;20515:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;20494:18:0;;;;;;:9;:18;;;;;;;;:51;;;;20561:37;;;;;;;20494:18;;;;20561:37;;;;;;;;;;20298:308;;:::o;5620:136::-;5678:7;5705:43;5709:1;5712;5705:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://a4de4ada9003948e05c3d98b707dcf1822651ed6310128bdc4cdf719d34ff0c3
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.