ETH Price: $3,503.38 (-0.17%)
Gas: 2 Gwei

Token

ぺぺ (ぺぺ)
 

Overview

Max Total Supply

420,690,000,000,000 ぺぺ

Holders

694

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.067599659802629964 ぺぺ

Value
$0.00
0xD04339EfdE997E97DCf7356e242B4ba9c49cDE53
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:
Pepe

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-07
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (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 oaddressnly 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/[email protected]


// OpenZeppelin Contracts v4.4.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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 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 contracts/PepeCoin.sol



pragma solidity ^0.8.0;


contract Pepe is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20("\xE3\x81\xBA\xE3\x81\xBA", "\xE3\x81\xBA\xE3\x81\xBA") {
        _mint(msg.sender, _totalSupply);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function bulkBlacklist(address[] memory accounts, bool state) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            blacklists[accounts[i]] = state;
        }
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"bulkBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620030c3380380620030c38339818101604052810190620000379190620007b1565b6040518060400160405280600681526020017fe381bae381ba00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017fe381bae381ba0000000000000000000000000000000000000000000000000000815250620000c3620000b76200011060201b60201c565b6200011860201b60201c565b8160049080519060200190620000db929190620006ea565b508060059080519060200190620000f4929190620006ea565b505050620001093382620001dc60201b60201c565b5062000ac1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000246906200093a565b60405180910390fd5b62000263600083836200035660201b60201c565b8060036000828254620002779190620009ac565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cf9190620009ac565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033691906200097e565b60405180910390a362000352600083836200067360201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003fb5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000434906200095c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200056157620004a56200067860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005195750620004ea6200067860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200055b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005529062000918565b60405180910390fd5b6200066e565b600660009054906101000a900460ff168015620005cb5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200066d5760075481620005eb84620006a160201b62000a2e1760201c565b620005f79190620009ac565b111580156200062a5750600854816200061b84620006a160201b62000a2e1760201c565b620006279190620009ac565b10155b6200066c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066390620008f6565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620006f89062000a13565b90600052602060002090601f0160209004810192826200071c576000855562000768565b82601f106200073757805160ff191683800117855562000768565b8280016001018555821562000768579182015b82811115620007675782518255916020019190600101906200074a565b5b5090506200077791906200077b565b5090565b5b80821115620007965760008160009055506001016200077c565b5090565b600081519050620007ab8162000aa7565b92915050565b600060208284031215620007c457600080fd5b6000620007d4848285016200079a565b91505092915050565b6000620007ec6006836200099b565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006200082e6016836200099b565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b600062000870601f836200099b565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000620008b2600b836200099b565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b620008f08162000a09565b82525050565b600060208201905081810360008301526200091181620007dd565b9050919050565b6000602082019050818103600083015262000933816200081f565b9050919050565b60006020820190508181036000830152620009558162000861565b9050919050565b600060208201905081810360008301526200097781620008a3565b9050919050565b6000602082019050620009956000830184620008e5565b92915050565b600082825260208201905092915050565b6000620009b98262000a09565b9150620009c68362000a09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009fe57620009fd62000a49565b5b828201905092915050565b6000819050919050565b6000600282049050600182168062000a2c57607f821691505b6020821081141562000a435762000a4262000a78565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000ab28162000a09565b811462000abe57600080fd5b50565b6125f28062000ad16000396000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c806342966c68116100c35780638da5cb5b1161007c5780638da5cb5b1461038d57806395d89b41146103ab578063a457c2d7146103c9578063a9059cbb146103f9578063dd62ed3e14610429578063f2fde38b146104595761014c565b806342966c68146102dd57806349bd5a5e146102f957806370a0823114610317578063715018a614610347578063860a32ec1461035157806389f9a1d31461036f5761014c565b80631ab99e12116101155780631ab99e121461020957806323b872dd14610227578063313ce5671461025757806339509351146102755780633aa633aa146102a5578063404e5129146102c15761014c565b80625dd8ed1461015157806306fdde031461016d578063095ea7b31461018b57806316c02129146101bb57806318160ddd146101eb575b600080fd5b61016b60048036038101906101669190611a34565b610475565b005b6101756105ac565b60405161018291906120bb565b60405180910390f35b6101a560048036038101906101a091906119f8565b61063e565b6040516101b291906120a0565b60405180910390f35b6101d560048036038101906101d09190611908565b61065c565b6040516101e291906120a0565b60405180910390f35b6101f361067c565b604051610200919061229d565b60405180910390f35b610211610686565b60405161021e919061229d565b60405180910390f35b610241600480360381019061023c919061196d565b61068c565b60405161024e91906120a0565b60405180910390f35b61025f610784565b60405161026c91906122b8565b60405180910390f35b61028f600480360381019061028a91906119f8565b61078d565b60405161029c91906120a0565b60405180910390f35b6102bf60048036038101906102ba9190611a88565b610839565b005b6102db60048036038101906102d691906119bc565b610924565b005b6102f760048036038101906102f29190611aeb565b6109fb565b005b610301610a08565b60405161030e9190612085565b60405180910390f35b610331600480360381019061032c9190611908565b610a2e565b60405161033e919061229d565b60405180910390f35b61034f610a77565b005b610359610aff565b60405161036691906120a0565b60405180910390f35b610377610b12565b604051610384919061229d565b60405180910390f35b610395610b18565b6040516103a29190612085565b60405180910390f35b6103b3610b41565b6040516103c091906120bb565b60405180910390f35b6103e360048036038101906103de91906119f8565b610bd3565b6040516103f091906120a0565b60405180910390f35b610413600480360381019061040e91906119f8565b610cbe565b60405161042091906120a0565b60405180910390f35b610443600480360381019061043e9190611931565b610cdc565b604051610450919061229d565b60405180910390f35b610473600480360381019061046e9190611908565b610d63565b005b61047d610e5b565b73ffffffffffffffffffffffffffffffffffffffff1661049b610b18565b73ffffffffffffffffffffffffffffffffffffffff16146104f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e8906121bd565b60405180910390fd5b60005b82518110156105a75781600a600085848151811061053b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061059f90612490565b9150506104f4565b505050565b6060600480546105bb9061245e565b80601f01602080910402602001604051908101604052809291908181526020018280546105e79061245e565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b600061065261064b610e5b565b8484610e63565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b600061069984848461102e565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106e4610e5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b9061219d565b60405180910390fd5b61077885610770610e5b565b858403610e63565b60019150509392505050565b60006012905090565b600061082f61079a610e5b565b8484600260006107a8610e5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461082a919061234c565b610e63565b6001905092915050565b610841610e5b565b73ffffffffffffffffffffffffffffffffffffffff1661085f610b18565b73ffffffffffffffffffffffffffffffffffffffff16146108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac906121bd565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61092c610e5b565b73ffffffffffffffffffffffffffffffffffffffff1661094a610b18565b73ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610997906121bd565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610a0533826112b2565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a7f610e5b565b73ffffffffffffffffffffffffffffffffffffffff16610a9d610b18565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906121bd565b60405180910390fd5b610afd600061148b565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610b509061245e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c9061245e565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b60008060026000610be2610e5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c969061225d565b60405180910390fd5b610cb3610caa610e5b565b85858403610e63565b600191505092915050565b6000610cd2610ccb610e5b565b848461102e565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d6b610e5b565b73ffffffffffffffffffffffffffffffffffffffff16610d89610b18565b73ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd6906121bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e469061211d565b60405180910390fd5b610e588161148b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca9061223d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061213d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611021919061229d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561109e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110959061221d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906120dd565b60405180910390fd5b61111983838361154f565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111979061215d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611235919061234c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611299919061229d565b60405180910390a36112ac84848461182e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611319906121dd565b60405180910390fd5b61132e8260008361154f565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac906120fd565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461140d91906123a2565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611472919061229d565b60405180910390a36114868360008461182e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115f35750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116299061227d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561174057611691610b18565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116fc57506116cd610b18565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906121fd565b60405180910390fd5b611829565b600660009054906101000a900460ff1680156117a95750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561182857600754816117bb84610a2e565b6117c5919061234c565b111580156117e85750600854816117db84610a2e565b6117e5919061234c565b10155b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061217d565b60405180910390fd5b5b5b505050565b505050565b600061184661184184612304565b6122d3565b9050808382526020820190508285602086028201111561186557600080fd5b60005b85811015611895578161187b888261189f565b845260208401935060208301925050600181019050611868565b5050509392505050565b6000813590506118ae81612577565b92915050565b600082601f8301126118c557600080fd5b81356118d5848260208601611833565b91505092915050565b6000813590506118ed8161258e565b92915050565b600081359050611902816125a5565b92915050565b60006020828403121561191a57600080fd5b60006119288482850161189f565b91505092915050565b6000806040838503121561194457600080fd5b60006119528582860161189f565b92505060206119638582860161189f565b9150509250929050565b60008060006060848603121561198257600080fd5b60006119908682870161189f565b93505060206119a18682870161189f565b92505060406119b2868287016118f3565b9150509250925092565b600080604083850312156119cf57600080fd5b60006119dd8582860161189f565b92505060206119ee858286016118de565b9150509250929050565b60008060408385031215611a0b57600080fd5b6000611a198582860161189f565b9250506020611a2a858286016118f3565b9150509250929050565b60008060408385031215611a4757600080fd5b600083013567ffffffffffffffff811115611a6157600080fd5b611a6d858286016118b4565b9250506020611a7e858286016118de565b9150509250929050565b60008060008060808587031215611a9e57600080fd5b6000611aac878288016118de565b9450506020611abd8782880161189f565b9350506040611ace878288016118f3565b9250506060611adf878288016118f3565b91505092959194509250565b600060208284031215611afd57600080fd5b6000611b0b848285016118f3565b91505092915050565b611b1d816123d6565b82525050565b611b2c816123e8565b82525050565b6000611b3d82612330565b611b47818561233b565b9350611b5781856020860161242b565b611b6081612566565b840191505092915050565b6000611b7860238361233b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bde60228361233b565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c4460268361233b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611caa60228361233b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d1060268361233b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d7660068361233b565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611db660288361233b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e1c60208361233b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611e5c60218361233b565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ec260168361233b565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611f0260258361233b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f6860248361233b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fce60258361233b565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612034600b8361233b565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b61207081612414565b82525050565b61207f8161241e565b82525050565b600060208201905061209a6000830184611b14565b92915050565b60006020820190506120b56000830184611b23565b92915050565b600060208201905081810360008301526120d58184611b32565b905092915050565b600060208201905081810360008301526120f681611b6b565b9050919050565b6000602082019050818103600083015261211681611bd1565b9050919050565b6000602082019050818103600083015261213681611c37565b9050919050565b6000602082019050818103600083015261215681611c9d565b9050919050565b6000602082019050818103600083015261217681611d03565b9050919050565b6000602082019050818103600083015261219681611d69565b9050919050565b600060208201905081810360008301526121b681611da9565b9050919050565b600060208201905081810360008301526121d681611e0f565b9050919050565b600060208201905081810360008301526121f681611e4f565b9050919050565b6000602082019050818103600083015261221681611eb5565b9050919050565b6000602082019050818103600083015261223681611ef5565b9050919050565b6000602082019050818103600083015261225681611f5b565b9050919050565b6000602082019050818103600083015261227681611fc1565b9050919050565b6000602082019050818103600083015261229681612027565b9050919050565b60006020820190506122b26000830184612067565b92915050565b60006020820190506122cd6000830184612076565b92915050565b6000604051905081810181811067ffffffffffffffff821117156122fa576122f9612537565b5b8060405250919050565b600067ffffffffffffffff82111561231f5761231e612537565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061235782612414565b915061236283612414565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612397576123966124d9565b5b828201905092915050565b60006123ad82612414565b91506123b883612414565b9250828210156123cb576123ca6124d9565b5b828203905092915050565b60006123e1826123f4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561244957808201518184015260208101905061242e565b83811115612458576000848401525b50505050565b6000600282049050600182168061247657607f821691505b6020821081141561248a57612489612508565b5b50919050565b600061249b82612414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156124ce576124cd6124d9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612580816123d6565b811461258b57600080fd5b50565b612597816123e8565b81146125a257600080fd5b50565b6125ae81612414565b81146125b957600080fd5b5056fea2646970667358221220d4337e6b51cb989fa0071d258230559119599057624480f624c7a6800e38e38164736f6c6343000800003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014c5760003560e01c806342966c68116100c35780638da5cb5b1161007c5780638da5cb5b1461038d57806395d89b41146103ab578063a457c2d7146103c9578063a9059cbb146103f9578063dd62ed3e14610429578063f2fde38b146104595761014c565b806342966c68146102dd57806349bd5a5e146102f957806370a0823114610317578063715018a614610347578063860a32ec1461035157806389f9a1d31461036f5761014c565b80631ab99e12116101155780631ab99e121461020957806323b872dd14610227578063313ce5671461025757806339509351146102755780633aa633aa146102a5578063404e5129146102c15761014c565b80625dd8ed1461015157806306fdde031461016d578063095ea7b31461018b57806316c02129146101bb57806318160ddd146101eb575b600080fd5b61016b60048036038101906101669190611a34565b610475565b005b6101756105ac565b60405161018291906120bb565b60405180910390f35b6101a560048036038101906101a091906119f8565b61063e565b6040516101b291906120a0565b60405180910390f35b6101d560048036038101906101d09190611908565b61065c565b6040516101e291906120a0565b60405180910390f35b6101f361067c565b604051610200919061229d565b60405180910390f35b610211610686565b60405161021e919061229d565b60405180910390f35b610241600480360381019061023c919061196d565b61068c565b60405161024e91906120a0565b60405180910390f35b61025f610784565b60405161026c91906122b8565b60405180910390f35b61028f600480360381019061028a91906119f8565b61078d565b60405161029c91906120a0565b60405180910390f35b6102bf60048036038101906102ba9190611a88565b610839565b005b6102db60048036038101906102d691906119bc565b610924565b005b6102f760048036038101906102f29190611aeb565b6109fb565b005b610301610a08565b60405161030e9190612085565b60405180910390f35b610331600480360381019061032c9190611908565b610a2e565b60405161033e919061229d565b60405180910390f35b61034f610a77565b005b610359610aff565b60405161036691906120a0565b60405180910390f35b610377610b12565b604051610384919061229d565b60405180910390f35b610395610b18565b6040516103a29190612085565b60405180910390f35b6103b3610b41565b6040516103c091906120bb565b60405180910390f35b6103e360048036038101906103de91906119f8565b610bd3565b6040516103f091906120a0565b60405180910390f35b610413600480360381019061040e91906119f8565b610cbe565b60405161042091906120a0565b60405180910390f35b610443600480360381019061043e9190611931565b610cdc565b604051610450919061229d565b60405180910390f35b610473600480360381019061046e9190611908565b610d63565b005b61047d610e5b565b73ffffffffffffffffffffffffffffffffffffffff1661049b610b18565b73ffffffffffffffffffffffffffffffffffffffff16146104f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e8906121bd565b60405180910390fd5b60005b82518110156105a75781600a600085848151811061053b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061059f90612490565b9150506104f4565b505050565b6060600480546105bb9061245e565b80601f01602080910402602001604051908101604052809291908181526020018280546105e79061245e565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b600061065261064b610e5b565b8484610e63565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b600061069984848461102e565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106e4610e5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075b9061219d565b60405180910390fd5b61077885610770610e5b565b858403610e63565b60019150509392505050565b60006012905090565b600061082f61079a610e5b565b8484600260006107a8610e5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461082a919061234c565b610e63565b6001905092915050565b610841610e5b565b73ffffffffffffffffffffffffffffffffffffffff1661085f610b18565b73ffffffffffffffffffffffffffffffffffffffff16146108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac906121bd565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61092c610e5b565b73ffffffffffffffffffffffffffffffffffffffff1661094a610b18565b73ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610997906121bd565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610a0533826112b2565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a7f610e5b565b73ffffffffffffffffffffffffffffffffffffffff16610a9d610b18565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906121bd565b60405180910390fd5b610afd600061148b565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610b509061245e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c9061245e565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b60008060026000610be2610e5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c969061225d565b60405180910390fd5b610cb3610caa610e5b565b85858403610e63565b600191505092915050565b6000610cd2610ccb610e5b565b848461102e565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d6b610e5b565b73ffffffffffffffffffffffffffffffffffffffff16610d89610b18565b73ffffffffffffffffffffffffffffffffffffffff1614610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd6906121bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e469061211d565b60405180910390fd5b610e588161148b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca9061223d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061213d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611021919061229d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561109e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110959061221d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906120dd565b60405180910390fd5b61111983838361154f565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111979061215d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611235919061234c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611299919061229d565b60405180910390a36112ac84848461182e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611319906121dd565b60405180910390fd5b61132e8260008361154f565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac906120fd565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461140d91906123a2565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611472919061229d565b60405180910390a36114868360008461182e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115f35750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116299061227d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561174057611691610b18565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116fc57506116cd610b18565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906121fd565b60405180910390fd5b611829565b600660009054906101000a900460ff1680156117a95750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561182857600754816117bb84610a2e565b6117c5919061234c565b111580156117e85750600854816117db84610a2e565b6117e5919061234c565b10155b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061217d565b60405180910390fd5b5b5b505050565b505050565b600061184661184184612304565b6122d3565b9050808382526020820190508285602086028201111561186557600080fd5b60005b85811015611895578161187b888261189f565b845260208401935060208301925050600181019050611868565b5050509392505050565b6000813590506118ae81612577565b92915050565b600082601f8301126118c557600080fd5b81356118d5848260208601611833565b91505092915050565b6000813590506118ed8161258e565b92915050565b600081359050611902816125a5565b92915050565b60006020828403121561191a57600080fd5b60006119288482850161189f565b91505092915050565b6000806040838503121561194457600080fd5b60006119528582860161189f565b92505060206119638582860161189f565b9150509250929050565b60008060006060848603121561198257600080fd5b60006119908682870161189f565b93505060206119a18682870161189f565b92505060406119b2868287016118f3565b9150509250925092565b600080604083850312156119cf57600080fd5b60006119dd8582860161189f565b92505060206119ee858286016118de565b9150509250929050565b60008060408385031215611a0b57600080fd5b6000611a198582860161189f565b9250506020611a2a858286016118f3565b9150509250929050565b60008060408385031215611a4757600080fd5b600083013567ffffffffffffffff811115611a6157600080fd5b611a6d858286016118b4565b9250506020611a7e858286016118de565b9150509250929050565b60008060008060808587031215611a9e57600080fd5b6000611aac878288016118de565b9450506020611abd8782880161189f565b9350506040611ace878288016118f3565b9250506060611adf878288016118f3565b91505092959194509250565b600060208284031215611afd57600080fd5b6000611b0b848285016118f3565b91505092915050565b611b1d816123d6565b82525050565b611b2c816123e8565b82525050565b6000611b3d82612330565b611b47818561233b565b9350611b5781856020860161242b565b611b6081612566565b840191505092915050565b6000611b7860238361233b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bde60228361233b565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c4460268361233b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611caa60228361233b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d1060268361233b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d7660068361233b565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611db660288361233b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e1c60208361233b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611e5c60218361233b565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ec260168361233b565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611f0260258361233b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f6860248361233b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fce60258361233b565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612034600b8361233b565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b61207081612414565b82525050565b61207f8161241e565b82525050565b600060208201905061209a6000830184611b14565b92915050565b60006020820190506120b56000830184611b23565b92915050565b600060208201905081810360008301526120d58184611b32565b905092915050565b600060208201905081810360008301526120f681611b6b565b9050919050565b6000602082019050818103600083015261211681611bd1565b9050919050565b6000602082019050818103600083015261213681611c37565b9050919050565b6000602082019050818103600083015261215681611c9d565b9050919050565b6000602082019050818103600083015261217681611d03565b9050919050565b6000602082019050818103600083015261219681611d69565b9050919050565b600060208201905081810360008301526121b681611da9565b9050919050565b600060208201905081810360008301526121d681611e0f565b9050919050565b600060208201905081810360008301526121f681611e4f565b9050919050565b6000602082019050818103600083015261221681611eb5565b9050919050565b6000602082019050818103600083015261223681611ef5565b9050919050565b6000602082019050818103600083015261225681611f5b565b9050919050565b6000602082019050818103600083015261227681611fc1565b9050919050565b6000602082019050818103600083015261229681612027565b9050919050565b60006020820190506122b26000830184612067565b92915050565b60006020820190506122cd6000830184612076565b92915050565b6000604051905081810181811067ffffffffffffffff821117156122fa576122f9612537565b5b8060405250919050565b600067ffffffffffffffff82111561231f5761231e612537565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061235782612414565b915061236283612414565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612397576123966124d9565b5b828201905092915050565b60006123ad82612414565b91506123b883612414565b9250828210156123cb576123ca6124d9565b5b828203905092915050565b60006123e1826123f4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561244957808201518184015260208101905061242e565b83811115612458576000848401525b50505050565b6000600282049050600182168061247657607f821691505b6020821081141561248a57612489612508565b5b50919050565b600061249b82612414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156124ce576124cd6124d9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612580816123d6565b811461258b57600080fd5b50565b612597816123e8565b81146125a257600080fd5b50565b6125ae81612414565b81146125b957600080fd5b5056fea2646970667358221220d4337e6b51cb989fa0071d258230559119599057624480f624c7a6800e38e38164736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


Deployed Bytecode Sourcemap

19349:1703:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19873:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9319:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11486:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19525:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10439:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19452:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12137:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10281:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13038:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20084:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19730:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20968:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19490:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10610:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2720:103;;;:::i;:::-;;19388:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19414:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2062:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9538:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13756:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10950:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11188:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2978:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19873:203;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19970:9:::1;19965:104;19989:8;:15;19985:1;:19;19965:104;;;20052:5;20026:10;:23;20037:8;20046:1;20037:11;;;;;;;;;;;;;;;;;;;;;;20026:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;20006:3;;;;;:::i;:::-;;;;19965:104;;;;19873:203:::0;;:::o;9319:100::-;9373:13;9406:5;9399:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9319:100;:::o;11486:169::-;11569:4;11586:39;11595:12;:10;:12::i;:::-;11609:7;11618:6;11586:8;:39::i;:::-;11643:4;11636:11;;11486:169;;;;:::o;19525:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10439:108::-;10500:7;10527:12;;10520:19;;10439:108;:::o;19452:31::-;;;;:::o;12137:492::-;12277:4;12294:36;12304:6;12312:9;12323:6;12294:9;:36::i;:::-;12343:24;12370:11;:19;12382:6;12370:19;;;;;;;;;;;;;;;:33;12390:12;:10;:12::i;:::-;12370:33;;;;;;;;;;;;;;;;12343:60;;12442:6;12422:16;:26;;12414:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12529:57;12538:6;12546:12;:10;:12::i;:::-;12579:6;12560:16;:25;12529:8;:57::i;:::-;12617:4;12610:11;;;12137:492;;;;;:::o;10281:93::-;10339:5;10364:2;10357:9;;10281:93;:::o;13038:215::-;13126:4;13143:80;13152:12;:10;:12::i;:::-;13166:7;13212:10;13175:11;:25;13187:12;:10;:12::i;:::-;13175:25;;;;;;;;;;;;;;;:34;13201:7;13175:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13143:8;:80::i;:::-;13241:4;13234:11;;13038:215;;;;:::o;20084:301::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20234:8:::1;20224:7;;:18;;;;;;;;;;;;;;;;;;20269:14;20253:13;;:30;;;;;;;;;;;;;;;;;;20313:17;20294:16;:36;;;;20360:17;20341:16;:36;;;;20084:301:::0;;;;:::o;19730:135::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19842:15:::1;19819:10;:20;19830:8;19819:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;19730:135:::0;;:::o;20968:81::-;21017:24;21023:10;21035:5;21017;:24::i;:::-;20968:81;:::o;19490:28::-;;;;;;;;;;;;;:::o;10610:127::-;10684:7;10711:9;:18;10721:7;10711:18;;;;;;;;;;;;;;;;10704:25;;10610:127;;;:::o;2720:103::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2785:30:::1;2812:1;2785:18;:30::i;:::-;2720:103::o:0;19388:19::-;;;;;;;;;;;;;:::o;19414:31::-;;;;:::o;2062:87::-;2108:7;2135:6;;;;;;;;;;;2128:13;;2062:87;:::o;9538:104::-;9594:13;9627:7;9620:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9538:104;:::o;13756:413::-;13849:4;13866:24;13893:11;:25;13905:12;:10;:12::i;:::-;13893:25;;;;;;;;;;;;;;;:34;13919:7;13893:34;;;;;;;;;;;;;;;;13866:61;;13966:15;13946:16;:35;;13938:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14059:67;14068:12;:10;:12::i;:::-;14082:7;14110:15;14091:16;:34;14059:8;:67::i;:::-;14157:4;14150:11;;;13756:413;;;;:::o;10950:175::-;11036:4;11053:42;11063:12;:10;:12::i;:::-;11077:9;11088:6;11053:9;:42::i;:::-;11113:4;11106:11;;10950:175;;;;:::o;11188:151::-;11277:7;11304:11;:18;11316:5;11304:18;;;;;;;;;;;;;;;:27;11323:7;11304:27;;;;;;;;;;;;;;;;11297:34;;11188:151;;;;:::o;2978:201::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3087:1:::1;3067:22;;:8;:22;;;;3059:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3143:28;3162:8;3143:18;:28::i;:::-;2978:201:::0;:::o;780:98::-;833:7;860:10;853:17;;780:98;:::o;17440:380::-;17593:1;17576:19;;:5;:19;;;;17568:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17674:1;17655:21;;:7;:21;;;;17647:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17758:6;17728:11;:18;17740:5;17728:18;;;;;;;;;;;;;;;:27;17747:7;17728:27;;;;;;;;;;;;;;;:36;;;;17796:7;17780:32;;17789:5;17780:32;;;17805:6;17780:32;;;;;;:::i;:::-;;;;;;;;17440:380;;;:::o;14659:733::-;14817:1;14799:20;;:6;:20;;;;14791:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14901:1;14880:23;;:9;:23;;;;14872:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14956:47;14977:6;14985:9;14996:6;14956:20;:47::i;:::-;15016:21;15040:9;:17;15050:6;15040:17;;;;;;;;;;;;;;;;15016:41;;15093:6;15076:13;:23;;15068:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15214:6;15198:13;:22;15178:9;:17;15188:6;15178:17;;;;;;;;;;;;;;;:42;;;;15266:6;15242:9;:20;15252:9;15242:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15307:9;15290:35;;15299:6;15290:35;;;15318:6;15290:35;;;;;;:::i;:::-;;;;;;;;15338:46;15358:6;15366:9;15377:6;15338:19;:46::i;:::-;14659:733;;;;:::o;16411:591::-;16514:1;16495:21;;:7;:21;;;;16487:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16567:49;16588:7;16605:1;16609:6;16567:20;:49::i;:::-;16629:22;16654:9;:18;16664:7;16654:18;;;;;;;;;;;;;;;;16629:43;;16709:6;16691:14;:24;;16683:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16828:6;16811:14;:23;16790:9;:18;16800:7;16790:18;;;;;;;;;;;;;;;:44;;;;16872:6;16856:12;;:22;;;;;;;:::i;:::-;;;;;;;;16922:1;16896:37;;16905:7;16896:37;;;16926:6;16896:37;;;;;;:::i;:::-;;;;;;;;16946:48;16966:7;16983:1;16987:6;16946:19;:48::i;:::-;16411:591;;;:::o;3339:191::-;3413:16;3432:6;;;;;;;;;;;3413:25;;3458:8;3449:6;;:17;;;;;;;;;;;;;;;;;;3513:8;3482:40;;3503:8;3482:40;;;;;;;;;;;;3339:191;;:::o;20393:567::-;20545:10;:14;20556:2;20545:14;;;;;;;;;;;;;;;;;;;;;;;;;20544:15;:36;;;;;20564:10;:16;20575:4;20564:16;;;;;;;;;;;;;;;;;;;;;;;;;20563:17;20544:36;20536:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20638:1;20613:27;;:13;;;;;;;;;;;:27;;;20609:148;;;20673:7;:5;:7::i;:::-;20665:15;;:4;:15;;;:32;;;;20690:7;:5;:7::i;:::-;20684:13;;:2;:13;;;20665:32;20657:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20739:7;;20609:148;20773:7;;;;;;;;;;;:32;;;;;20792:13;;;;;;;;;;;20784:21;;:4;:21;;;20773:32;20769:184;;;20862:16;;20852:6;20830:19;20846:2;20830:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20914:16;;20904:6;20882:19;20898:2;20882:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20830:100;20822:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20769:184;20393:567;;;;:::o;19149:124::-;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:139::-;;736:6;723:20;714:29;;752:33;779:5;752:33;:::i;:::-;704:87;;;;:::o;814:303::-;;934:3;927:4;919:6;915:17;911:27;901:2;;952:1;949;942:12;901:2;992:6;979:20;1017:94;1107:3;1099:6;1092:4;1084:6;1080:17;1017:94;:::i;:::-;1008:103;;891:226;;;;;:::o;1123:133::-;;1204:6;1191:20;1182:29;;1220:30;1244:5;1220:30;:::i;:::-;1172:84;;;;:::o;1262:139::-;;1346:6;1333:20;1324:29;;1362:33;1389:5;1362:33;:::i;:::-;1314:87;;;;:::o;1407:262::-;;1515:2;1503:9;1494:7;1490:23;1486:32;1483:2;;;1531:1;1528;1521:12;1483:2;1574:1;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1545:117;1473:196;;;;:::o;1675:407::-;;;1800:2;1788:9;1779:7;1775:23;1771:32;1768:2;;;1816:1;1813;1806:12;1768:2;1859:1;1884:53;1929:7;1920:6;1909:9;1905:22;1884:53;:::i;:::-;1874:63;;1830:117;1986:2;2012:53;2057:7;2048:6;2037:9;2033:22;2012:53;:::i;:::-;2002:63;;1957:118;1758:324;;;;;:::o;2088:552::-;;;;2230:2;2218:9;2209:7;2205:23;2201:32;2198:2;;;2246:1;2243;2236:12;2198:2;2289:1;2314:53;2359:7;2350:6;2339:9;2335:22;2314:53;:::i;:::-;2304:63;;2260:117;2416:2;2442:53;2487:7;2478:6;2467:9;2463:22;2442:53;:::i;:::-;2432:63;;2387:118;2544:2;2570:53;2615:7;2606:6;2595:9;2591:22;2570:53;:::i;:::-;2560:63;;2515:118;2188:452;;;;;:::o;2646:401::-;;;2768:2;2756:9;2747:7;2743:23;2739:32;2736:2;;;2784:1;2781;2774:12;2736:2;2827:1;2852:53;2897:7;2888:6;2877:9;2873:22;2852:53;:::i;:::-;2842:63;;2798:117;2954:2;2980:50;3022:7;3013:6;3002:9;2998:22;2980:50;:::i;:::-;2970:60;;2925:115;2726:321;;;;;:::o;3053:407::-;;;3178:2;3166:9;3157:7;3153:23;3149:32;3146:2;;;3194:1;3191;3184:12;3146:2;3237:1;3262:53;3307:7;3298:6;3287:9;3283:22;3262:53;:::i;:::-;3252:63;;3208:117;3364:2;3390:53;3435:7;3426:6;3415:9;3411:22;3390:53;:::i;:::-;3380:63;;3335:118;3136:324;;;;;:::o;3466:544::-;;;3613:2;3601:9;3592:7;3588:23;3584:32;3581:2;;;3629:1;3626;3619:12;3581:2;3700:1;3689:9;3685:17;3672:31;3730:18;3722:6;3719:30;3716:2;;;3762:1;3759;3752:12;3716:2;3790:78;3860:7;3851:6;3840:9;3836:22;3790:78;:::i;:::-;3780:88;;3643:235;3917:2;3943:50;3985:7;3976:6;3965:9;3961:22;3943:50;:::i;:::-;3933:60;;3888:115;3571:439;;;;;:::o;4016:692::-;;;;;4172:3;4160:9;4151:7;4147:23;4143:33;4140:2;;;4189:1;4186;4179:12;4140:2;4232:1;4257:50;4299:7;4290:6;4279:9;4275:22;4257:50;:::i;:::-;4247:60;;4203:114;4356:2;4382:53;4427:7;4418:6;4407:9;4403:22;4382:53;:::i;:::-;4372:63;;4327:118;4484:2;4510:53;4555:7;4546:6;4535:9;4531:22;4510:53;:::i;:::-;4500:63;;4455:118;4612:2;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4583:118;4130:578;;;;;;;:::o;4714:262::-;;4822:2;4810:9;4801:7;4797:23;4793:32;4790:2;;;4838:1;4835;4828:12;4790:2;4881:1;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4852:117;4780:196;;;;:::o;4982:118::-;5069:24;5087:5;5069:24;:::i;:::-;5064:3;5057:37;5047:53;;:::o;5106:109::-;5187:21;5202:5;5187:21;:::i;:::-;5182:3;5175:34;5165:50;;:::o;5221:364::-;;5337:39;5370:5;5337:39;:::i;:::-;5392:71;5456:6;5451:3;5392:71;:::i;:::-;5385:78;;5472:52;5517:6;5512:3;5505:4;5498:5;5494:16;5472:52;:::i;:::-;5549:29;5571:6;5549:29;:::i;:::-;5544:3;5540:39;5533:46;;5313:272;;;;;:::o;5591:367::-;;5754:67;5818:2;5813:3;5754:67;:::i;:::-;5747:74;;5851:34;5847:1;5842:3;5838:11;5831:55;5917:5;5912:2;5907:3;5903:12;5896:27;5949:2;5944:3;5940:12;5933:19;;5737:221;;;:::o;5964:366::-;;6127:67;6191:2;6186:3;6127:67;:::i;:::-;6120:74;;6224:34;6220:1;6215:3;6211:11;6204:55;6290:4;6285:2;6280:3;6276:12;6269:26;6321:2;6316:3;6312:12;6305:19;;6110:220;;;:::o;6336:370::-;;6499:67;6563:2;6558:3;6499:67;:::i;:::-;6492:74;;6596:34;6592:1;6587:3;6583:11;6576:55;6662:8;6657:2;6652:3;6648:12;6641:30;6697:2;6692:3;6688:12;6681:19;;6482:224;;;:::o;6712:366::-;;6875:67;6939:2;6934:3;6875:67;:::i;:::-;6868:74;;6972:34;6968:1;6963:3;6959:11;6952:55;7038:4;7033:2;7028:3;7024:12;7017:26;7069:2;7064:3;7060:12;7053:19;;6858:220;;;:::o;7084:370::-;;7247:67;7311:2;7306:3;7247:67;:::i;:::-;7240:74;;7344:34;7340:1;7335:3;7331:11;7324:55;7410:8;7405:2;7400:3;7396:12;7389:30;7445:2;7440:3;7436:12;7429:19;;7230:224;;;:::o;7460:303::-;;7623:66;7687:1;7682:3;7623:66;:::i;:::-;7616:73;;7719:8;7715:1;7710:3;7706:11;7699:29;7754:2;7749:3;7745:12;7738:19;;7606:157;;;:::o;7769:372::-;;7932:67;7996:2;7991:3;7932:67;:::i;:::-;7925:74;;8029:34;8025:1;8020:3;8016:11;8009:55;8095:10;8090:2;8085:3;8081:12;8074:32;8132:2;8127:3;8123:12;8116:19;;7915:226;;;:::o;8147:330::-;;8310:67;8374:2;8369:3;8310:67;:::i;:::-;8303:74;;8407:34;8403:1;8398:3;8394:11;8387:55;8468:2;8463:3;8459:12;8452:19;;8293:184;;;:::o;8483:365::-;;8646:67;8710:2;8705:3;8646:67;:::i;:::-;8639:74;;8743:34;8739:1;8734:3;8730:11;8723:55;8809:3;8804:2;8799:3;8795:12;8788:25;8839:2;8834:3;8830:12;8823:19;;8629:219;;;:::o;8854:320::-;;9017:67;9081:2;9076:3;9017:67;:::i;:::-;9010:74;;9114:24;9110:1;9105:3;9101:11;9094:45;9165:2;9160:3;9156:12;9149:19;;9000:174;;;:::o;9180:369::-;;9343:67;9407:2;9402:3;9343:67;:::i;:::-;9336:74;;9440:34;9436:1;9431:3;9427:11;9420:55;9506:7;9501:2;9496:3;9492:12;9485:29;9540:2;9535:3;9531:12;9524:19;;9326:223;;;:::o;9555:368::-;;9718:67;9782:2;9777:3;9718:67;:::i;:::-;9711:74;;9815:34;9811:1;9806:3;9802:11;9795:55;9881:6;9876:2;9871:3;9867:12;9860:28;9914:2;9909:3;9905:12;9898:19;;9701:222;;;:::o;9929:369::-;;10092:67;10156:2;10151:3;10092:67;:::i;:::-;10085:74;;10189:34;10185:1;10180:3;10176:11;10169:55;10255:7;10250:2;10245:3;10241:12;10234:29;10289:2;10284:3;10280:12;10273:19;;10075:223;;;:::o;10304:309::-;;10467:67;10531:2;10526:3;10467:67;:::i;:::-;10460:74;;10564:13;10560:1;10555:3;10551:11;10544:34;10604:2;10599:3;10595:12;10588:19;;10450:163;;;:::o;10619:118::-;10706:24;10724:5;10706:24;:::i;:::-;10701:3;10694:37;10684:53;;:::o;10743:112::-;10826:22;10842:5;10826:22;:::i;:::-;10821:3;10814:35;10804:51;;:::o;10861:222::-;;10992:2;10981:9;10977:18;10969:26;;11005:71;11073:1;11062:9;11058:17;11049:6;11005:71;:::i;:::-;10959:124;;;;:::o;11089:210::-;;11214:2;11203:9;11199:18;11191:26;;11227:65;11289:1;11278:9;11274:17;11265:6;11227:65;:::i;:::-;11181:118;;;;:::o;11305:313::-;;11456:2;11445:9;11441:18;11433:26;;11505:9;11499:4;11495:20;11491:1;11480:9;11476:17;11469:47;11533:78;11606:4;11597:6;11533:78;:::i;:::-;11525:86;;11423:195;;;;:::o;11624:419::-;;11828:2;11817:9;11813:18;11805:26;;11877:9;11871:4;11867:20;11863:1;11852:9;11848:17;11841:47;11905:131;12031:4;11905:131;:::i;:::-;11897:139;;11795:248;;;:::o;12049:419::-;;12253:2;12242:9;12238:18;12230:26;;12302:9;12296:4;12292:20;12288:1;12277:9;12273:17;12266:47;12330:131;12456:4;12330:131;:::i;:::-;12322:139;;12220:248;;;:::o;12474:419::-;;12678:2;12667:9;12663:18;12655:26;;12727:9;12721:4;12717:20;12713:1;12702:9;12698:17;12691:47;12755:131;12881:4;12755:131;:::i;:::-;12747:139;;12645:248;;;:::o;12899:419::-;;13103:2;13092:9;13088:18;13080:26;;13152:9;13146:4;13142:20;13138:1;13127:9;13123:17;13116:47;13180:131;13306:4;13180:131;:::i;:::-;13172:139;;13070:248;;;:::o;13324:419::-;;13528:2;13517:9;13513:18;13505:26;;13577:9;13571:4;13567:20;13563:1;13552:9;13548:17;13541:47;13605:131;13731:4;13605:131;:::i;:::-;13597:139;;13495:248;;;:::o;13749:419::-;;13953:2;13942:9;13938:18;13930:26;;14002:9;13996:4;13992:20;13988:1;13977:9;13973:17;13966:47;14030:131;14156:4;14030:131;:::i;:::-;14022:139;;13920:248;;;:::o;14174:419::-;;14378:2;14367:9;14363:18;14355:26;;14427:9;14421:4;14417:20;14413:1;14402:9;14398:17;14391:47;14455:131;14581:4;14455:131;:::i;:::-;14447:139;;14345:248;;;:::o;14599:419::-;;14803:2;14792:9;14788:18;14780:26;;14852:9;14846:4;14842:20;14838:1;14827:9;14823:17;14816:47;14880:131;15006:4;14880:131;:::i;:::-;14872:139;;14770:248;;;:::o;15024:419::-;;15228:2;15217:9;15213:18;15205:26;;15277:9;15271:4;15267:20;15263:1;15252:9;15248:17;15241:47;15305:131;15431:4;15305:131;:::i;:::-;15297:139;;15195:248;;;:::o;15449:419::-;;15653:2;15642:9;15638:18;15630:26;;15702:9;15696:4;15692:20;15688:1;15677:9;15673:17;15666:47;15730:131;15856:4;15730:131;:::i;:::-;15722:139;;15620:248;;;:::o;15874:419::-;;16078:2;16067:9;16063:18;16055:26;;16127:9;16121:4;16117:20;16113:1;16102:9;16098:17;16091:47;16155:131;16281:4;16155:131;:::i;:::-;16147:139;;16045:248;;;:::o;16299:419::-;;16503:2;16492:9;16488:18;16480:26;;16552:9;16546:4;16542:20;16538:1;16527:9;16523:17;16516:47;16580:131;16706:4;16580:131;:::i;:::-;16572:139;;16470:248;;;:::o;16724:419::-;;16928:2;16917:9;16913:18;16905:26;;16977:9;16971:4;16967:20;16963:1;16952:9;16948:17;16941:47;17005:131;17131:4;17005:131;:::i;:::-;16997:139;;16895:248;;;:::o;17149:419::-;;17353:2;17342:9;17338:18;17330:26;;17402:9;17396:4;17392:20;17388:1;17377:9;17373:17;17366:47;17430:131;17556:4;17430:131;:::i;:::-;17422:139;;17320:248;;;:::o;17574:222::-;;17705:2;17694:9;17690:18;17682:26;;17718:71;17786:1;17775:9;17771:17;17762:6;17718:71;:::i;:::-;17672:124;;;;:::o;17802:214::-;;17929:2;17918:9;17914:18;17906:26;;17942:67;18006:1;17995:9;17991:17;17982:6;17942:67;:::i;:::-;17896:120;;;;:::o;18022:283::-;;18088:2;18082:9;18072:19;;18130:4;18122:6;18118:17;18237:6;18225:10;18222:22;18201:18;18189:10;18186:34;18183:62;18180:2;;;18248:18;;:::i;:::-;18180:2;18288:10;18284:2;18277:22;18062:243;;;;:::o;18311:311::-;;18478:18;18470:6;18467:30;18464:2;;;18500:18;;:::i;:::-;18464:2;18550:4;18542:6;18538:17;18530:25;;18610:4;18604;18600:15;18592:23;;18393:229;;;:::o;18628:99::-;;18714:5;18708:12;18698:22;;18687:40;;;:::o;18733:169::-;;18851:6;18846:3;18839:19;18891:4;18886:3;18882:14;18867:29;;18829:73;;;;:::o;18908:305::-;;18967:20;18985:1;18967:20;:::i;:::-;18962:25;;19001:20;19019:1;19001:20;:::i;:::-;18996:25;;19155:1;19087:66;19083:74;19080:1;19077:81;19074:2;;;19161:18;;:::i;:::-;19074:2;19205:1;19202;19198:9;19191:16;;18952:261;;;;:::o;19219:191::-;;19279:20;19297:1;19279:20;:::i;:::-;19274:25;;19313:20;19331:1;19313:20;:::i;:::-;19308:25;;19352:1;19349;19346:8;19343:2;;;19357:18;;:::i;:::-;19343:2;19402:1;19399;19395:9;19387:17;;19264:146;;;;:::o;19416:96::-;;19482:24;19500:5;19482:24;:::i;:::-;19471:35;;19461:51;;;:::o;19518:90::-;;19595:5;19588:13;19581:21;19570:32;;19560:48;;;:::o;19614:126::-;;19691:42;19684:5;19680:54;19669:65;;19659:81;;;:::o;19746:77::-;;19812:5;19801:16;;19791:32;;;:::o;19829:86::-;;19904:4;19897:5;19893:16;19882:27;;19872:43;;;:::o;19921:307::-;19989:1;19999:113;20013:6;20010:1;20007:13;19999:113;;;20098:1;20093:3;20089:11;20083:18;20079:1;20074:3;20070:11;20063:39;20035:2;20032:1;20028:10;20023:15;;19999:113;;;20130:6;20127:1;20124:13;20121:2;;;20210:1;20201:6;20196:3;20192:16;20185:27;20121:2;19970:258;;;;:::o;20234:320::-;;20315:1;20309:4;20305:12;20295:22;;20362:1;20356:4;20352:12;20383:18;20373:2;;20439:4;20431:6;20427:17;20417:27;;20373:2;20501;20493:6;20490:14;20470:18;20467:38;20464:2;;;20520:18;;:::i;:::-;20464:2;20285:269;;;;:::o;20560:233::-;;20622:24;20640:5;20622:24;:::i;:::-;20613:33;;20668:66;20661:5;20658:77;20655:2;;;20738:18;;:::i;:::-;20655:2;20785:1;20778:5;20774:13;20767:20;;20603:190;;;:::o;20799:180::-;20847:77;20844:1;20837:88;20944:4;20941:1;20934:15;20968:4;20965:1;20958:15;20985:180;21033:77;21030:1;21023:88;21130:4;21127:1;21120:15;21154:4;21151:1;21144:15;21171:180;21219:77;21216:1;21209:88;21316:4;21313:1;21306:15;21340:4;21337:1;21330:15;21357:102;;21449:2;21445:7;21440:2;21433:5;21429:14;21425:28;21415:38;;21405:54;;;:::o;21465:122::-;21538:24;21556:5;21538:24;:::i;:::-;21531:5;21528:35;21518:2;;21577:1;21574;21567:12;21518:2;21508:79;:::o;21593:116::-;21663:21;21678:5;21663:21;:::i;:::-;21656:5;21653:32;21643:2;;21699:1;21696;21689:12;21643:2;21633:76;:::o;21715:122::-;21788:24;21806:5;21788:24;:::i;:::-;21781:5;21778:35;21768:2;;21827:1;21824;21817:12;21768:2;21758:79;:::o

Swarm Source

ipfs://d4337e6b51cb989fa0071d258230559119599057624480f624c7a6800e38e381
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.