ETH Price: $3,285.85 (-0.82%)
Gas: 7 Gwei

Token

Honey (HONEY)
 

Overview

Max Total Supply

1,000,000,000 HONEY

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
58,422,513.70518 HONEY

Value
$0.00
0x78c2eac46577af313b450264d217b18183a96dc8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Honey

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-18
*/

// File: honey_flat.sol


// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public 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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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 Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

    /**
     * @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-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @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 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, _allowances[owner][spender] + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 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].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @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 from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: honey.sol


pragma solidity ^0.8.4;



contract Honey is ERC20, Ownable {
    
    mapping(address => bool) public isBlacklisted;

    constructor() ERC20("Honey", "HONEY") {}

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20) {
        super._beforeTokenTransfer(from, to, amount);

        if(isBlacklisted[from] || isBlacklisted[to]) {
            revert("From or To are blacklisted.");
        }       
    }

    function addBlacklist(address _address) public onlyOwner {
        require(!isBlacklisted[_address], "Address is already blacklisted.");
        isBlacklisted[_address] = true;
    }

    function removeBlacklist(address _address) public onlyOwner {
        require(isBlacklisted[_address], "Address is not blacklisted.");
        isBlacklisted[_address] = false;
    }

}

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":"addBlacklist","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":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeBlacklist","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f486f6e65790000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f484f4e4559000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002ba565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000285565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029e57607f821691505b602082108103620002b457620002b362000256565b5b50919050565b611f8680620002ca6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a9059cbb11610071578063a9059cbb146102e3578063dd62ed3e14610313578063eb91e65114610343578063f2fde38b1461035f578063fe575a871461037b57610116565b80638da5cb5b1461025b57806395d89b41146102795780639cfe42da14610297578063a457c2d7146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806340c10f191461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b6040516101309190611569565b60405180910390f35b610153600480360381019061014e9190611624565b61043d565b604051610160919061167f565b60405180910390f35b610171610460565b60405161017e91906116a9565b60405180910390f35b6101a1600480360381019061019c91906116c4565b61046a565b6040516101ae919061167f565b60405180910390f35b6101bf610499565b6040516101cc9190611733565b60405180910390f35b6101ef60048036038101906101ea9190611624565b6104a2565b6040516101fc919061167f565b60405180910390f35b61021f600480360381019061021a9190611624565b61054c565b005b61023b6004803603810190610236919061174e565b6105d6565b60405161024891906116a9565b60405180910390f35b61025961061e565b005b6102636106a6565b604051610270919061178a565b60405180910390f35b6102816106d0565b60405161028e9190611569565b60405180910390f35b6102b160048036038101906102ac919061174e565b610762565b005b6102cd60048036038101906102c89190611624565b6108c6565b6040516102da919061167f565b60405180910390f35b6102fd60048036038101906102f89190611624565b6109b0565b60405161030a919061167f565b60405180910390f35b61032d600480360381019061032891906117a5565b6109d3565b60405161033a91906116a9565b60405180910390f35b61035d6004803603810190610358919061174e565b610a5a565b005b6103796004803603810190610374919061174e565b610bbd565b005b6103956004803603810190610390919061174e565b610cb4565b6040516103a2919061167f565b60405180910390f35b6060600380546103ba90611814565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611814565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600080610448610cd4565b9050610455818585610cdc565b600191505092915050565b6000600254905090565b600080610475610cd4565b9050610482858285610ea5565b61048d858585610f31565b60019150509392505050565b60006012905090565b6000806104ad610cd4565b9050610541818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461053c9190611874565b610cdc565b600191505092915050565b610554610cd4565b73ffffffffffffffffffffffffffffffffffffffff166105726106a6565b73ffffffffffffffffffffffffffffffffffffffff16146105c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bf90611916565b60405180910390fd5b6105d282826111b0565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610626610cd4565b73ffffffffffffffffffffffffffffffffffffffff166106446106a6565b73ffffffffffffffffffffffffffffffffffffffff161461069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069190611916565b60405180910390fd5b6106a4600061130f565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106df90611814565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90611814565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b61076a610cd4565b73ffffffffffffffffffffffffffffffffffffffff166107886106a6565b73ffffffffffffffffffffffffffffffffffffffff16146107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611916565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290611982565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806108d1610cd4565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90611a14565b60405180910390fd5b6109a48286868403610cdc565b60019250505092915050565b6000806109bb610cd4565b90506109c8818585610f31565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a62610cd4565b73ffffffffffffffffffffffffffffffffffffffff16610a806106a6565b73ffffffffffffffffffffffffffffffffffffffff1614610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90611916565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990611a80565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610bc5610cd4565b73ffffffffffffffffffffffffffffffffffffffff16610be36106a6565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090611916565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90611b12565b60405180910390fd5b610cb18161130f565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290611ba4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190611c36565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e9891906116a9565b60405180910390a3505050565b6000610eb184846109d3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f2b5781811015610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490611ca2565b60405180910390fd5b610f2a8484848403610cdc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790611d34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690611dc6565b60405180910390fd5b61101a8383836113d5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611e58565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111339190611874565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161119791906116a9565b60405180910390a36111aa8484846114c6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690611ec4565b60405180910390fd5b61122b600083836113d5565b806002600082825461123d9190611874565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112929190611874565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112f791906116a9565b60405180910390a361130b600083836114c6565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113e08383836114cb565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114815750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890611f30565b60405180910390fd5b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561150a5780820151818401526020810190506114ef565b83811115611519576000848401525b50505050565b6000601f19601f8301169050919050565b600061153b826114d0565b61154581856114db565b93506115558185602086016114ec565b61155e8161151f565b840191505092915050565b600060208201905081810360008301526115838184611530565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115bb82611590565b9050919050565b6115cb816115b0565b81146115d657600080fd5b50565b6000813590506115e8816115c2565b92915050565b6000819050919050565b611601816115ee565b811461160c57600080fd5b50565b60008135905061161e816115f8565b92915050565b6000806040838503121561163b5761163a61158b565b5b6000611649858286016115d9565b925050602061165a8582860161160f565b9150509250929050565b60008115159050919050565b61167981611664565b82525050565b60006020820190506116946000830184611670565b92915050565b6116a3816115ee565b82525050565b60006020820190506116be600083018461169a565b92915050565b6000806000606084860312156116dd576116dc61158b565b5b60006116eb868287016115d9565b93505060206116fc868287016115d9565b925050604061170d8682870161160f565b9150509250925092565b600060ff82169050919050565b61172d81611717565b82525050565b60006020820190506117486000830184611724565b92915050565b6000602082840312156117645761176361158b565b5b6000611772848285016115d9565b91505092915050565b611784816115b0565b82525050565b600060208201905061179f600083018461177b565b92915050565b600080604083850312156117bc576117bb61158b565b5b60006117ca858286016115d9565b92505060206117db858286016115d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182c57607f821691505b60208210810361183f5761183e6117e5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061187f826115ee565b915061188a836115ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118bf576118be611845565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119006020836114db565b915061190b826118ca565b602082019050919050565b6000602082019050818103600083015261192f816118f3565b9050919050565b7f4164647265737320697320616c726561647920626c61636b6c69737465642e00600082015250565b600061196c601f836114db565b915061197782611936565b602082019050919050565b6000602082019050818103600083015261199b8161195f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119fe6025836114db565b9150611a09826119a2565b604082019050919050565b60006020820190508181036000830152611a2d816119f1565b9050919050565b7f41646472657373206973206e6f7420626c61636b6c69737465642e0000000000600082015250565b6000611a6a601b836114db565b9150611a7582611a34565b602082019050919050565b60006020820190508181036000830152611a9981611a5d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611afc6026836114db565b9150611b0782611aa0565b604082019050919050565b60006020820190508181036000830152611b2b81611aef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b8e6024836114db565b9150611b9982611b32565b604082019050919050565b60006020820190508181036000830152611bbd81611b81565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c206022836114db565b9150611c2b82611bc4565b604082019050919050565b60006020820190508181036000830152611c4f81611c13565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c8c601d836114db565b9150611c9782611c56565b602082019050919050565b60006020820190508181036000830152611cbb81611c7f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d1e6025836114db565b9150611d2982611cc2565b604082019050919050565b60006020820190508181036000830152611d4d81611d11565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611db06023836114db565b9150611dbb82611d54565b604082019050919050565b60006020820190508181036000830152611ddf81611da3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e426026836114db565b9150611e4d82611de6565b604082019050919050565b60006020820190508181036000830152611e7181611e35565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611eae601f836114db565b9150611eb982611e78565b602082019050919050565b60006020820190508181036000830152611edd81611ea1565b9050919050565b7f46726f6d206f7220546f2061726520626c61636b6c69737465642e0000000000600082015250565b6000611f1a601b836114db565b9150611f2582611ee4565b602082019050919050565b60006020820190508181036000830152611f4981611f0d565b905091905056fea264697066735822122021fdf0c2bec8bbf642bc799206e45c214b87f8c6d44c66af0b9a04c9b9f73f9d64736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a9059cbb11610071578063a9059cbb146102e3578063dd62ed3e14610313578063eb91e65114610343578063f2fde38b1461035f578063fe575a871461037b57610116565b80638da5cb5b1461025b57806395d89b41146102795780639cfe42da14610297578063a457c2d7146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806340c10f191461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b6040516101309190611569565b60405180910390f35b610153600480360381019061014e9190611624565b61043d565b604051610160919061167f565b60405180910390f35b610171610460565b60405161017e91906116a9565b60405180910390f35b6101a1600480360381019061019c91906116c4565b61046a565b6040516101ae919061167f565b60405180910390f35b6101bf610499565b6040516101cc9190611733565b60405180910390f35b6101ef60048036038101906101ea9190611624565b6104a2565b6040516101fc919061167f565b60405180910390f35b61021f600480360381019061021a9190611624565b61054c565b005b61023b6004803603810190610236919061174e565b6105d6565b60405161024891906116a9565b60405180910390f35b61025961061e565b005b6102636106a6565b604051610270919061178a565b60405180910390f35b6102816106d0565b60405161028e9190611569565b60405180910390f35b6102b160048036038101906102ac919061174e565b610762565b005b6102cd60048036038101906102c89190611624565b6108c6565b6040516102da919061167f565b60405180910390f35b6102fd60048036038101906102f89190611624565b6109b0565b60405161030a919061167f565b60405180910390f35b61032d600480360381019061032891906117a5565b6109d3565b60405161033a91906116a9565b60405180910390f35b61035d6004803603810190610358919061174e565b610a5a565b005b6103796004803603810190610374919061174e565b610bbd565b005b6103956004803603810190610390919061174e565b610cb4565b6040516103a2919061167f565b60405180910390f35b6060600380546103ba90611814565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611814565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600080610448610cd4565b9050610455818585610cdc565b600191505092915050565b6000600254905090565b600080610475610cd4565b9050610482858285610ea5565b61048d858585610f31565b60019150509392505050565b60006012905090565b6000806104ad610cd4565b9050610541818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461053c9190611874565b610cdc565b600191505092915050565b610554610cd4565b73ffffffffffffffffffffffffffffffffffffffff166105726106a6565b73ffffffffffffffffffffffffffffffffffffffff16146105c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bf90611916565b60405180910390fd5b6105d282826111b0565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610626610cd4565b73ffffffffffffffffffffffffffffffffffffffff166106446106a6565b73ffffffffffffffffffffffffffffffffffffffff161461069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069190611916565b60405180910390fd5b6106a4600061130f565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106df90611814565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90611814565b80156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b5050505050905090565b61076a610cd4565b73ffffffffffffffffffffffffffffffffffffffff166107886106a6565b73ffffffffffffffffffffffffffffffffffffffff16146107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611916565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290611982565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806108d1610cd4565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90611a14565b60405180910390fd5b6109a48286868403610cdc565b60019250505092915050565b6000806109bb610cd4565b90506109c8818585610f31565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a62610cd4565b73ffffffffffffffffffffffffffffffffffffffff16610a806106a6565b73ffffffffffffffffffffffffffffffffffffffff1614610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90611916565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990611a80565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610bc5610cd4565b73ffffffffffffffffffffffffffffffffffffffff16610be36106a6565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090611916565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90611b12565b60405180910390fd5b610cb18161130f565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290611ba4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190611c36565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e9891906116a9565b60405180910390a3505050565b6000610eb184846109d3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f2b5781811015610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490611ca2565b60405180910390fd5b610f2a8484848403610cdc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790611d34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690611dc6565b60405180910390fd5b61101a8383836113d5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611e58565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111339190611874565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161119791906116a9565b60405180910390a36111aa8484846114c6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690611ec4565b60405180910390fd5b61122b600083836113d5565b806002600082825461123d9190611874565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112929190611874565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112f791906116a9565b60405180910390a361130b600083836114c6565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113e08383836114cb565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114815750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890611f30565b60405180910390fd5b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561150a5780820151818401526020810190506114ef565b83811115611519576000848401525b50505050565b6000601f19601f8301169050919050565b600061153b826114d0565b61154581856114db565b93506115558185602086016114ec565b61155e8161151f565b840191505092915050565b600060208201905081810360008301526115838184611530565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115bb82611590565b9050919050565b6115cb816115b0565b81146115d657600080fd5b50565b6000813590506115e8816115c2565b92915050565b6000819050919050565b611601816115ee565b811461160c57600080fd5b50565b60008135905061161e816115f8565b92915050565b6000806040838503121561163b5761163a61158b565b5b6000611649858286016115d9565b925050602061165a8582860161160f565b9150509250929050565b60008115159050919050565b61167981611664565b82525050565b60006020820190506116946000830184611670565b92915050565b6116a3816115ee565b82525050565b60006020820190506116be600083018461169a565b92915050565b6000806000606084860312156116dd576116dc61158b565b5b60006116eb868287016115d9565b93505060206116fc868287016115d9565b925050604061170d8682870161160f565b9150509250925092565b600060ff82169050919050565b61172d81611717565b82525050565b60006020820190506117486000830184611724565b92915050565b6000602082840312156117645761176361158b565b5b6000611772848285016115d9565b91505092915050565b611784816115b0565b82525050565b600060208201905061179f600083018461177b565b92915050565b600080604083850312156117bc576117bb61158b565b5b60006117ca858286016115d9565b92505060206117db858286016115d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182c57607f821691505b60208210810361183f5761183e6117e5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061187f826115ee565b915061188a836115ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118bf576118be611845565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119006020836114db565b915061190b826118ca565b602082019050919050565b6000602082019050818103600083015261192f816118f3565b9050919050565b7f4164647265737320697320616c726561647920626c61636b6c69737465642e00600082015250565b600061196c601f836114db565b915061197782611936565b602082019050919050565b6000602082019050818103600083015261199b8161195f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119fe6025836114db565b9150611a09826119a2565b604082019050919050565b60006020820190508181036000830152611a2d816119f1565b9050919050565b7f41646472657373206973206e6f7420626c61636b6c69737465642e0000000000600082015250565b6000611a6a601b836114db565b9150611a7582611a34565b602082019050919050565b60006020820190508181036000830152611a9981611a5d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611afc6026836114db565b9150611b0782611aa0565b604082019050919050565b60006020820190508181036000830152611b2b81611aef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b8e6024836114db565b9150611b9982611b32565b604082019050919050565b60006020820190508181036000830152611bbd81611b81565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c206022836114db565b9150611c2b82611bc4565b604082019050919050565b60006020820190508181036000830152611c4f81611c13565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c8c601d836114db565b9150611c9782611c56565b602082019050919050565b60006020820190508181036000830152611cbb81611c7f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d1e6025836114db565b9150611d2982611cc2565b604082019050919050565b60006020820190508181036000830152611d4d81611d11565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611db06023836114db565b9150611dbb82611d54565b604082019050919050565b60006020820190508181036000830152611ddf81611da3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e426026836114db565b9150611e4d82611de6565b604082019050919050565b60006020820190508181036000830152611e7181611e35565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611eae601f836114db565b9150611eb982611e78565b602082019050919050565b60006020820190508181036000830152611edd81611ea1565b9050919050565b7f46726f6d206f7220546f2061726520626c61636b6c69737465642e0000000000600082015250565b6000611f1a601b836114db565b9150611f2582611ee4565b602082019050919050565b60006020820190508181036000830152611f4981611f0d565b905091905056fea264697066735822122021fdf0c2bec8bbf642bc799206e45c214b87f8c6d44c66af0b9a04c9b9f73f9d64736f6c634300080d0033

Deployed Bytecode Sourcemap

20062:937:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9212:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11563:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10332:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12344:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10174:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13048:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20210:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10503:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2635:103;;;:::i;:::-;;1984:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9431:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20617:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13791:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10836:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11092:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20810:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2893:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20108:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9212:100;9266:13;9299:5;9292:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9212:100;:::o;11563:201::-;11646:4;11663:13;11679:12;:10;:12::i;:::-;11663:28;;11702:32;11711:5;11718:7;11727:6;11702:8;:32::i;:::-;11752:4;11745:11;;;11563:201;;;;:::o;10332:108::-;10393:7;10420:12;;10413:19;;10332:108;:::o;12344:295::-;12475:4;12492:15;12510:12;:10;:12::i;:::-;12492:30;;12533:38;12549:4;12555:7;12564:6;12533:15;:38::i;:::-;12582:27;12592:4;12598:2;12602:6;12582:9;:27::i;:::-;12627:4;12620:11;;;12344:295;;;;;:::o;10174:93::-;10232:5;10257:2;10250:9;;10174:93;:::o;13048:240::-;13136:4;13153:13;13169:12;:10;:12::i;:::-;13153:28;;13192:66;13201:5;13208:7;13247:10;13217:11;:18;13229:5;13217:18;;;;;;;;;;;;;;;:27;13236:7;13217:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;13192:8;:66::i;:::-;13276:4;13269:11;;;13048:240;;;;:::o;20210:95::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20280:17:::1;20286:2;20290:6;20280:5;:17::i;:::-;20210:95:::0;;:::o;10503:127::-;10577:7;10604:9;:18;10614:7;10604:18;;;;;;;;;;;;;;;;10597:25;;10503:127;;;:::o;2635:103::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2700:30:::1;2727:1;2700:18;:30::i;:::-;2635:103::o:0;1984:87::-;2030:7;2057:6;;;;;;;;;;;2050:13;;1984:87;:::o;9431:104::-;9487:13;9520:7;9513:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9431:104;:::o;20617:185::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20694:13:::1;:23;20708:8;20694:23;;;;;;;;;;;;;;;;;;;;;;;;;20693:24;20685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20790:4;20764:13;:23;20778:8;20764:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;20617:185:::0;:::o;13791:438::-;13884:4;13901:13;13917:12;:10;:12::i;:::-;13901:28;;13940:24;13967:11;:18;13979:5;13967:18;;;;;;;;;;;;;;;:27;13986:7;13967:27;;;;;;;;;;;;;;;;13940:54;;14033:15;14013:16;:35;;14005:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14126:60;14135:5;14142:7;14170:15;14151:16;:34;14126:8;:60::i;:::-;14217:4;14210:11;;;;13791:438;;;;:::o;10836:193::-;10915:4;10932:13;10948:12;:10;:12::i;:::-;10932:28;;10971;10981:5;10988:2;10992:6;10971:9;:28::i;:::-;11017:4;11010:11;;;10836:193;;;;:::o;11092:151::-;11181:7;11208:11;:18;11220:5;11208:18;;;;;;;;;;;;;;;:27;11227:7;11208:27;;;;;;;;;;;;;;;;11201:34;;11092:151;;;;:::o;20810:184::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20889:13:::1;:23;20903:8;20889:23;;;;;;;;;;;;;;;;;;;;;;;;;20881:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;20981:5;20955:13;:23;20969:8;20955:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;20810:184:::0;:::o;2893:201::-;2215:12;:10;:12::i;:::-;2204:23;;:7;:5;:7::i;:::-;:23;;;2196:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3002:1:::1;2982:22;;:8;:22;;::::0;2974:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3058:28;3077:8;3058:18;:28::i;:::-;2893:201:::0;:::o;20108:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;708:98::-;761:7;788:10;781:17;;708:98;:::o;17427:380::-;17580:1;17563:19;;:5;:19;;;17555:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17661:1;17642:21;;:7;:21;;;17634:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17745:6;17715:11;:18;17727:5;17715:18;;;;;;;;;;;;;;;:27;17734:7;17715:27;;;;;;;;;;;;;;;:36;;;;17783:7;17767:32;;17776:5;17767:32;;;17792:6;17767:32;;;;;;:::i;:::-;;;;;;;;17427:380;;;:::o;18094:453::-;18229:24;18256:25;18266:5;18273:7;18256:9;:25::i;:::-;18229:52;;18316:17;18296:16;:37;18292:248;;18378:6;18358:16;:26;;18350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18462:51;18471:5;18478:7;18506:6;18487:16;:25;18462:8;:51::i;:::-;18292:248;18218:329;18094:453;;;:::o;14708:671::-;14855:1;14839:18;;:4;:18;;;14831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14932:1;14918:16;;:2;:16;;;14910:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14987:38;15008:4;15014:2;15018:6;14987:20;:38::i;:::-;15038:19;15060:9;:15;15070:4;15060:15;;;;;;;;;;;;;;;;15038:37;;15109:6;15094:11;:21;;15086:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15226:6;15212:11;:20;15194:9;:15;15204:4;15194:15;;;;;;;;;;;;;;;:38;;;;15271:6;15254:9;:13;15264:2;15254:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15310:2;15295:26;;15304:4;15295:26;;;15314:6;15295:26;;;;;;:::i;:::-;;;;;;;;15334:37;15354:4;15360:2;15364:6;15334:19;:37::i;:::-;14820:559;14708:671;;;:::o;15666:399::-;15769:1;15750:21;;:7;:21;;;15742:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15820:49;15849:1;15853:7;15862:6;15820:20;:49::i;:::-;15898:6;15882:12;;:22;;;;;;;:::i;:::-;;;;;;;;15937:6;15915:9;:18;15925:7;15915:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;15980:7;15959:37;;15976:1;15959:37;;;15989:6;15959:37;;;;;;:::i;:::-;;;;;;;;16009:48;16037:1;16041:7;16050:6;16009:19;:48::i;:::-;15666:399;;:::o;3254:191::-;3328:16;3347:6;;;;;;;;;;;3328:25;;3373:8;3364:6;;:17;;;;;;;;;;;;;;;;;;3428:8;3397:40;;3418:8;3397:40;;;;;;;;;;;;3317:128;3254:191;:::o;20313:296::-;20429:44;20456:4;20462:2;20466:6;20429:26;:44::i;:::-;20489:13;:19;20503:4;20489:19;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;;20512:13;:17;20526:2;20512:17;;;;;;;;;;;;;;;;;;;;;;;;;20489:40;20486:109;;;20546:37;;;;;;;;;;:::i;:::-;;;;;;;;20486:109;20313:296;;;:::o;19876:124::-;;;;:::o;19147:125::-;;;;:::o;7:99:1:-;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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:180::-;6116:77;6113:1;6106:88;6213:4;6210:1;6203:15;6237:4;6234:1;6227:15;6254:320;6298:6;6335:1;6329:4;6325:12;6315:22;;6382:1;6376:4;6372:12;6403:18;6393:81;;6459:4;6451:6;6447:17;6437:27;;6393:81;6521:2;6513:6;6510:14;6490:18;6487:38;6484:84;;6540:18;;:::i;:::-;6484:84;6305:269;6254:320;;;:::o;6580:180::-;6628:77;6625:1;6618:88;6725:4;6722:1;6715:15;6749:4;6746:1;6739:15;6766:305;6806:3;6825:20;6843:1;6825:20;:::i;:::-;6820:25;;6859:20;6877:1;6859:20;:::i;:::-;6854:25;;7013:1;6945:66;6941:74;6938:1;6935:81;6932:107;;;7019:18;;:::i;:::-;6932:107;7063:1;7060;7056:9;7049:16;;6766:305;;;;:::o;7077:182::-;7217:34;7213:1;7205:6;7201:14;7194:58;7077:182;:::o;7265:366::-;7407:3;7428:67;7492:2;7487:3;7428:67;:::i;:::-;7421:74;;7504:93;7593:3;7504:93;:::i;:::-;7622:2;7617:3;7613:12;7606:19;;7265:366;;;:::o;7637:419::-;7803:4;7841:2;7830:9;7826:18;7818:26;;7890:9;7884:4;7880:20;7876:1;7865:9;7861:17;7854:47;7918:131;8044:4;7918:131;:::i;:::-;7910:139;;7637:419;;;:::o;8062:181::-;8202:33;8198:1;8190:6;8186:14;8179:57;8062:181;:::o;8249:366::-;8391:3;8412:67;8476:2;8471:3;8412:67;:::i;:::-;8405:74;;8488:93;8577:3;8488:93;:::i;:::-;8606:2;8601:3;8597:12;8590:19;;8249:366;;;:::o;8621:419::-;8787:4;8825:2;8814:9;8810:18;8802:26;;8874:9;8868:4;8864:20;8860:1;8849:9;8845:17;8838:47;8902:131;9028:4;8902:131;:::i;:::-;8894:139;;8621:419;;;:::o;9046:224::-;9186:34;9182:1;9174:6;9170:14;9163:58;9255:7;9250:2;9242:6;9238:15;9231:32;9046:224;:::o;9276:366::-;9418:3;9439:67;9503:2;9498:3;9439:67;:::i;:::-;9432:74;;9515:93;9604:3;9515:93;:::i;:::-;9633:2;9628:3;9624:12;9617:19;;9276:366;;;:::o;9648:419::-;9814:4;9852:2;9841:9;9837:18;9829:26;;9901:9;9895:4;9891:20;9887:1;9876:9;9872:17;9865:47;9929:131;10055:4;9929:131;:::i;:::-;9921:139;;9648:419;;;:::o;10073:177::-;10213:29;10209:1;10201:6;10197:14;10190:53;10073:177;:::o;10256:366::-;10398:3;10419:67;10483:2;10478:3;10419:67;:::i;:::-;10412:74;;10495:93;10584:3;10495:93;:::i;:::-;10613:2;10608:3;10604:12;10597:19;;10256:366;;;:::o;10628:419::-;10794:4;10832:2;10821:9;10817:18;10809:26;;10881:9;10875:4;10871:20;10867:1;10856:9;10852:17;10845:47;10909:131;11035:4;10909:131;:::i;:::-;10901:139;;10628:419;;;:::o;11053:225::-;11193:34;11189:1;11181:6;11177:14;11170:58;11262:8;11257:2;11249:6;11245:15;11238:33;11053:225;:::o;11284:366::-;11426:3;11447:67;11511:2;11506:3;11447:67;:::i;:::-;11440:74;;11523:93;11612:3;11523:93;:::i;:::-;11641:2;11636:3;11632:12;11625:19;;11284:366;;;:::o;11656:419::-;11822:4;11860:2;11849:9;11845:18;11837:26;;11909:9;11903:4;11899:20;11895:1;11884:9;11880:17;11873:47;11937:131;12063:4;11937:131;:::i;:::-;11929:139;;11656:419;;;:::o;12081:223::-;12221:34;12217:1;12209:6;12205:14;12198:58;12290:6;12285:2;12277:6;12273:15;12266:31;12081:223;:::o;12310:366::-;12452:3;12473:67;12537:2;12532:3;12473:67;:::i;:::-;12466:74;;12549:93;12638:3;12549:93;:::i;:::-;12667:2;12662:3;12658:12;12651:19;;12310:366;;;:::o;12682:419::-;12848:4;12886:2;12875:9;12871:18;12863:26;;12935:9;12929:4;12925:20;12921:1;12910:9;12906:17;12899:47;12963:131;13089:4;12963:131;:::i;:::-;12955:139;;12682:419;;;:::o;13107:221::-;13247:34;13243:1;13235:6;13231:14;13224:58;13316:4;13311:2;13303:6;13299:15;13292:29;13107:221;:::o;13334:366::-;13476:3;13497:67;13561:2;13556:3;13497:67;:::i;:::-;13490:74;;13573:93;13662:3;13573:93;:::i;:::-;13691:2;13686:3;13682:12;13675:19;;13334:366;;;:::o;13706:419::-;13872:4;13910:2;13899:9;13895:18;13887:26;;13959:9;13953:4;13949:20;13945:1;13934:9;13930:17;13923:47;13987:131;14113:4;13987:131;:::i;:::-;13979:139;;13706:419;;;:::o;14131:179::-;14271:31;14267:1;14259:6;14255:14;14248:55;14131:179;:::o;14316:366::-;14458:3;14479:67;14543:2;14538:3;14479:67;:::i;:::-;14472:74;;14555:93;14644:3;14555:93;:::i;:::-;14673:2;14668:3;14664:12;14657:19;;14316:366;;;:::o;14688:419::-;14854:4;14892:2;14881:9;14877:18;14869:26;;14941:9;14935:4;14931:20;14927:1;14916:9;14912:17;14905:47;14969:131;15095:4;14969:131;:::i;:::-;14961:139;;14688:419;;;:::o;15113:224::-;15253:34;15249:1;15241:6;15237:14;15230:58;15322:7;15317:2;15309:6;15305:15;15298:32;15113:224;:::o;15343:366::-;15485:3;15506:67;15570:2;15565:3;15506:67;:::i;:::-;15499:74;;15582:93;15671:3;15582:93;:::i;:::-;15700:2;15695:3;15691:12;15684:19;;15343:366;;;:::o;15715:419::-;15881:4;15919:2;15908:9;15904:18;15896:26;;15968:9;15962:4;15958:20;15954:1;15943:9;15939:17;15932:47;15996:131;16122:4;15996:131;:::i;:::-;15988:139;;15715:419;;;:::o;16140:222::-;16280:34;16276:1;16268:6;16264:14;16257:58;16349:5;16344:2;16336:6;16332:15;16325:30;16140:222;:::o;16368:366::-;16510:3;16531:67;16595:2;16590:3;16531:67;:::i;:::-;16524:74;;16607:93;16696:3;16607:93;:::i;:::-;16725:2;16720:3;16716:12;16709:19;;16368:366;;;:::o;16740:419::-;16906:4;16944:2;16933:9;16929:18;16921:26;;16993:9;16987:4;16983:20;16979:1;16968:9;16964:17;16957:47;17021:131;17147:4;17021:131;:::i;:::-;17013:139;;16740:419;;;:::o;17165:225::-;17305:34;17301:1;17293:6;17289:14;17282:58;17374:8;17369:2;17361:6;17357:15;17350:33;17165:225;:::o;17396:366::-;17538:3;17559:67;17623:2;17618:3;17559:67;:::i;:::-;17552:74;;17635:93;17724:3;17635:93;:::i;:::-;17753:2;17748:3;17744:12;17737:19;;17396:366;;;:::o;17768:419::-;17934:4;17972:2;17961:9;17957:18;17949:26;;18021:9;18015:4;18011:20;18007:1;17996:9;17992:17;17985:47;18049:131;18175:4;18049:131;:::i;:::-;18041:139;;17768:419;;;:::o;18193:181::-;18333:33;18329:1;18321:6;18317:14;18310:57;18193:181;:::o;18380:366::-;18522:3;18543:67;18607:2;18602:3;18543:67;:::i;:::-;18536:74;;18619:93;18708:3;18619:93;:::i;:::-;18737:2;18732:3;18728:12;18721:19;;18380:366;;;:::o;18752:419::-;18918:4;18956:2;18945:9;18941:18;18933:26;;19005:9;18999:4;18995:20;18991:1;18980:9;18976:17;18969:47;19033:131;19159:4;19033:131;:::i;:::-;19025:139;;18752:419;;;:::o;19177:177::-;19317:29;19313:1;19305:6;19301:14;19294:53;19177:177;:::o;19360:366::-;19502:3;19523:67;19587:2;19582:3;19523:67;:::i;:::-;19516:74;;19599:93;19688:3;19599:93;:::i;:::-;19717:2;19712:3;19708:12;19701:19;;19360:366;;;:::o;19732:419::-;19898:4;19936:2;19925:9;19921:18;19913:26;;19985:9;19979:4;19975:20;19971:1;19960:9;19956:17;19949:47;20013:131;20139:4;20013:131;:::i;:::-;20005:139;;19732:419;;;:::o

Swarm Source

ipfs://21fdf0c2bec8bbf642bc799206e45c214b87f8c6d44c66af0b9a04c9b9f73f9d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.