ETH Price: $2,929.94 (-4.49%)
Gas: 1 Gwei

Token

Miece (MIECE)
 

Overview

Max Total Supply

126,476.886147807869928391 MIECE

Holders

940

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
trevy.eth
Balance
63.38262767448 MIECE

Value
$0.00
0x6aE1C930c5a1402a78E3d72eeFF373E381503328
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:
Miece

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 2021-09-28
*/

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);
}

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

// 
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

// 
/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// 
/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// 
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// 
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// 
/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 
contract Miece is ERC20Burnable, Ownable {
 

    using SafeMath for uint256;

    uint256 public MAX_WALLET_STAKED = 10;
    uint256 public EMISSIONS_RATE = 11574070000000;
    uint256 public CLAIM_END_TIME = 1664582400;
    address nullAddress = 0x0000000000000000000000000000000000000000;

    address public catsAddress;

    //Mapping of mouse to timestamp
    mapping(uint256 => uint256) internal tokenIdToTimeStamp;

    //Mapping of mouse to staker
    mapping(uint256 => address) internal tokenIdToStaker;

    //Mapping of staker to mice
    mapping(address => uint256[]) internal stakerToTokenIds;

    constructor() ERC20("Miece", "MIECE") {}

    function setCatsAddress(address _catsAddress) public onlyOwner {
        catsAddress = _catsAddress;
        return;
    }

    function getTokensStaked(address staker)
        public
        view
        returns (uint256[] memory)
    {
        return stakerToTokenIds[staker];
    }

    function remove(address staker, uint256 index) internal {
        if (index >= stakerToTokenIds[staker].length) return;

        for (uint256 i = index; i < stakerToTokenIds[staker].length - 1; i++) {
            stakerToTokenIds[staker][i] = stakerToTokenIds[staker][i + 1];
        }
        stakerToTokenIds[staker].pop();
    }

    function removeTokenIdFromStaker(address staker, uint256 tokenId) internal {
        for (uint256 i = 0; i < stakerToTokenIds[staker].length; i++) {
            if (stakerToTokenIds[staker][i] == tokenId) {
                //This is the tokenId to remove;
                remove(staker, i);
            }
        }
    }

    function stakeByIds(uint256[] memory tokenIds) public {
        require(
            stakerToTokenIds[msg.sender].length + tokenIds.length <=
                MAX_WALLET_STAKED,
            "Must have less than 31 mice staked!"
        );

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                IERC721(catsAddress).ownerOf(tokenIds[i]) == msg.sender &&
                    tokenIdToStaker[tokenIds[i]] == nullAddress,
                "Token must be stakable by you!"
            );

            IERC721(catsAddress).transferFrom(
                msg.sender,
                address(this),
                tokenIds[i]
            );

            stakerToTokenIds[msg.sender].push(tokenIds[i]);

            tokenIdToTimeStamp[tokenIds[i]] = block.timestamp;
            tokenIdToStaker[tokenIds[i]] = msg.sender;
        }
    }

    function unstakeAll() public {
        require(
            stakerToTokenIds[msg.sender].length > 0,
            "Must have at least one token staked!"
        );
        uint256 totalRewards = 0;

        for (uint256 i = stakerToTokenIds[msg.sender].length; i > 0; i--) {
            uint256 tokenId = stakerToTokenIds[msg.sender][i - 1];

            IERC721(catsAddress).transferFrom(
                address(this),
                msg.sender,
                tokenId
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenId]) *
                    EMISSIONS_RATE);

            removeTokenIdFromStaker(msg.sender, tokenId);

            tokenIdToStaker[tokenId] = nullAddress;
        }

        _mint(msg.sender, totalRewards);
    }

    function unstakeByIds(uint256[] memory tokenIds) public {
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                tokenIdToStaker[tokenIds[i]] == msg.sender,
                "Message Sender was not original staker!"
            );

            IERC721(catsAddress).transferFrom(
                address(this),
                msg.sender,
                tokenIds[i]
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);

            removeTokenIdFromStaker(msg.sender, tokenIds[i]);

            tokenIdToStaker[tokenIds[i]] = nullAddress;
        }

        _mint(msg.sender, totalRewards);
    }

    function claimByTokenId(uint256 tokenId) public {
        require(
            tokenIdToStaker[tokenId] == msg.sender,
            "Token is not claimable by you!"
        );
        require(block.timestamp < CLAIM_END_TIME, "Claim period is over!");

        _mint(
            msg.sender,
            ((block.timestamp - tokenIdToTimeStamp[tokenId]) * EMISSIONS_RATE)
        );

        tokenIdToTimeStamp[tokenId] = block.timestamp;
    }

    function claimAll() public {
        require(block.timestamp < CLAIM_END_TIME, "Claim period is over!");
        uint256[] memory tokenIds = stakerToTokenIds[msg.sender];
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(
                tokenIdToStaker[tokenIds[i]] == msg.sender,
                "Token is not claimable by you!"
            );

            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);

            tokenIdToTimeStamp[tokenIds[i]] = block.timestamp;
        }

        _mint(msg.sender, totalRewards);
    }

    function getAllRewards(address staker) public view returns (uint256) {
        uint256[] memory tokenIds = stakerToTokenIds[staker];
        uint256 totalRewards = 0;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            totalRewards =
                totalRewards +
                ((block.timestamp - tokenIdToTimeStamp[tokenIds[i]]) *
                    EMISSIONS_RATE);
        }

        return totalRewards;
    }

    function getRewardsByTokenId(uint256 tokenId)
        public
        view
        returns (uint256)
    {
        require(
            tokenIdToStaker[tokenId] != nullAddress,
            "Token is not staked!"
        );

        uint256 secondsStaked = block.timestamp - tokenIdToTimeStamp[tokenId];

        return secondsStaked * EMISSIONS_RATE;
    }

    function getStaker(uint256 tokenId) public view returns (address) {
        return tokenIdToStaker[tokenId];
    }
}

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":[],"name":"CLAIM_END_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSIONS_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_STAKED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"catsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimByTokenId","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":"staker","type":"address"}],"name":"getAllRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRewardsByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getStaker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTokensStaked","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"address","name":"_catsAddress","type":"address"}],"name":"setCatsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stakeByIds","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":"unstakeAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"unstakeByIds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a600655650a86cc54b98060075563633783006008556000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006a57600080fd5b506040518060400160405280600581526020017f4d696563650000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d494543450000000000000000000000000000000000000000000000000000008152508160039080519060200190620000ef929190620001ff565b50806004908051906020019062000108929190620001ff565b5050506200012b6200011f6200013160201b60201c565b6200013960201b60201c565b62000314565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020d90620002af565b90600052602060002090601f0160209004810192826200023157600085556200027d565b82601f106200024c57805160ff19168380011785556200027d565b828001600101855582156200027d579182015b828111156200027c5782518255916020019190600101906200025f565b5b5090506200028c919062000290565b5090565b5b80821115620002ab57600081600090555060010162000291565b5090565b60006002820490506001821680620002c857607f821691505b60208210811415620002df57620002de620002e5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d8480620003246000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a9059cbb116100a2578063d9ffad4711610071578063d9ffad4714610547578063dd62ed3e14610563578063e3c998fe14610593578063f2fde38b146105c3576101da565b8063a9059cbb146104d1578063ba7e766214610501578063c21f95cb1461051f578063d1058e591461053d576101da565b80638ab8fab3116100de5780638ab8fab3146104475780638da5cb5b1461046557806395d89b4114610483578063a457c2d7146104a1576101da565b806370a08231146103f1578063715018a61461042157806379cc67901461042b576101da565b8063362a3fad1161017c578063515ec1051161014b578063515ec1051461035957806352eb7796146103895780635e1f1e2a146103b95780636310ab11146103d5576101da565b8063362a3fad146102c157806339509351146102f157806342966c681461032157806348aa19361461033d576101da565b80632209d38c116101b85780632209d38c1461024b57806323b872dd14610269578063313ce5671461029957806335322f37146102b7576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e76105df565b6040516101f491906136e7565b60405180910390f35b61021760048036038101906102129190612da4565b610671565b60405161022491906136cc565b60405180910390f35b61023561068f565b6040516102429190613989565b60405180910390f35b610253610699565b6040516102609190613989565b60405180910390f35b610283600480360381019061027e9190612d55565b61069f565b60405161029091906136cc565b60405180910390f35b6102a1610797565b6040516102ae91906139a4565b60405180910390f35b6102bf6107a0565b005b6102db60048036038101906102d69190612cc7565b610a73565b6040516102e89190613989565b60405180910390f35b61030b60048036038101906103069190612da4565b610baa565b60405161031891906136cc565b60405180910390f35b61033b60048036038101906103369190612e21565b610c56565b005b61035760048036038101906103529190612de0565b610c6a565b005b610373600480360381019061036e9190612e21565b610fc2565b6040516103809190613989565b60405180910390f35b6103a3600480360381019061039e9190612cc7565b6110c1565b6040516103b091906136aa565b60405180910390f35b6103d360048036038101906103ce9190612e21565b611158565b005b6103ef60048036038101906103ea9190612cc7565b61128d565b005b61040b60048036038101906104069190612cc7565b61134d565b6040516104189190613989565b60405180910390f35b610429611395565b005b61044560048036038101906104409190612da4565b61141d565b005b61044f611498565b60405161045c9190613989565b60405180910390f35b61046d61149e565b60405161047a9190613658565b60405180910390f35b61048b6114c8565b60405161049891906136e7565b60405180910390f35b6104bb60048036038101906104b69190612da4565b61155a565b6040516104c891906136cc565b60405180910390f35b6104eb60048036038101906104e69190612da4565b611645565b6040516104f891906136cc565b60405180910390f35b610509611663565b6040516105169190613989565b60405180910390f35b610527611669565b6040516105349190613658565b60405180910390f35b61054561168f565b005b610561600480360381019061055c9190612de0565b611946565b005b61057d60048036038101906105789190612d19565b611e81565b60405161058a9190613989565b60405180910390f35b6105ad60048036038101906105a89190612e21565b611f08565b6040516105ba9190613658565b60405180910390f35b6105dd60048036038101906105d89190612cc7565b611f45565b005b6060600380546105ee90613c07565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90613c07565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b600061068561067e61203d565b8484612045565b6001905092915050565b6000600254905090565b60085481565b60006106ac848484612210565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106f761203d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076e90613849565b60405180910390fd5b61078b8561078361203d565b858403612045565b60019150509392505050565b60006012905090565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c90613829565b60405180910390fd5b600080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090505b6000811115610a65576000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001836108c59190613b21565b815481106108fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3033846040518463ffffffff1660e01b815260040161096893929190613673565b600060405180830381600087803b15801561098257600080fd5b505af1158015610996573d6000803e3d6000fd5b50505050600754600b600083815260200190815260200160002054426109bc9190613b21565b6109c69190613ac7565b836109d19190613a71565b92506109dd3382612491565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550508080610a5d90613bdd565b91505061086e565b50610a70338261258a565b50565b600080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610aff57602002820191906000526020600020905b815481526020019060010190808311610aeb575b505050505090506000805b8251811015610b9f57600754600b6000858481518110610b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000205442610b759190613b21565b610b7f9190613ac7565b82610b8a9190613a71565b91508080610b9790613c39565b915050610b0a565b508092505050919050565b6000610c4c610bb761203d565b848460016000610bc561203d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c479190613a71565b612045565b6001905092915050565b610c67610c6161203d565b826126ea565b50565b6000805b8251811015610fb3573373ffffffffffffffffffffffffffffffffffffffff16600c6000858481518110610ccb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f906138a9565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3033868581518110610dd1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518463ffffffff1660e01b8152600401610df793929190613673565b600060405180830381600087803b158015610e1157600080fd5b505af1158015610e25573d6000803e3d6000fd5b50505050600754600b6000858481518110610e69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000205442610e8b9190613b21565b610e959190613ac7565b82610ea09190613a71565b9150610eec33848381518110610edf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612491565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c6000858481518110610f4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610fab90613c39565b915050610c6e565b50610fbe338261258a565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613929565b60405180910390fd5b6000600b600084815260200190815260200160002054426110a99190613b21565b9050600754816110b99190613ac7565b915050919050565b6060600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561114c57602002820191906000526020600020905b815481526020019060010190808311611138575b50505050509050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f090613809565b60405180910390fd5b600854421061123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613749565b60405180910390fd5b61127233600754600b600085815260200190815260200160002054426112639190613b21565b61126d9190613ac7565b61258a565b42600b60008381526020019081526020016000208190555050565b61129561203d565b73ffffffffffffffffffffffffffffffffffffffff166112b361149e565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090613869565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61139d61203d565b73ffffffffffffffffffffffffffffffffffffffff166113bb61149e565b73ffffffffffffffffffffffffffffffffffffffff1614611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613869565b60405180910390fd5b61141b60006128c1565b565b60006114308361142b61203d565b611e81565b905081811015611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90613889565b60405180910390fd5b6114898361148161203d565b848403612045565b61149383836126ea565b505050565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114d790613c07565b80601f016020809104026020016040519081016040528092919081815260200182805461150390613c07565b80156115505780601f1061152557610100808354040283529160200191611550565b820191906000526020600020905b81548152906001019060200180831161153357829003601f168201915b5050505050905090565b6000806001600061156961203d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613949565b60405180910390fd5b61163a61163161203d565b85858403612045565b600191505092915050565b600061165961165261203d565b8484612210565b6001905092915050565b60075481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085442106116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613749565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561175e57602002820191906000526020600020905b81548152602001906001019080831161174a575b505050505090506000805b8251811015611937573373ffffffffffffffffffffffffffffffffffffffff16600c60008584815181106117c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90613809565b60405180910390fd5b600754600b6000858481518110611893577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054426118b59190613b21565b6118bf9190613ac7565b826118ca9190613a71565b915042600b600085848151811061190a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002081905550808061192f90613c39565b915050611769565b50611942338261258a565b5050565b6006548151600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506119989190613a71565b11156119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906137e9565b60405180910390fd5b60005b8151811015611e7d573373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110611a73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401611a979190613989565b60206040518083038186803b158015611aaf57600080fd5b505afa158015611ac3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae79190612cf0565b73ffffffffffffffffffffffffffffffffffffffff16148015611bca5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c6000848481518110611b7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c00906137c9565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330858581518110611c82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518463ffffffff1660e01b8152600401611ca893929190613673565b600060405180830381600087803b158015611cc257600080fd5b505af1158015611cd6573d6000803e3d6000fd5b50505050600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828281518110611d52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151908060018154018082558091505060019003906000526020600020016000909190919091505542600b6000848481518110611dbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000208190555033600c6000848481518110611e16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080611e7590613c39565b9150506119dc565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611f4d61203d565b73ffffffffffffffffffffffffffffffffffffffff16611f6b61149e565b73ffffffffffffffffffffffffffffffffffffffff1614611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890613869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613769565b60405180910390fd5b61203a816128c1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90613909565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613789565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122039190613989565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612277906138e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e790613709565b60405180910390fd5b6122fb838383612987565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612378906137a9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124149190613a71565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124789190613989565b60405180910390a361248b84848461298c565b50505050565b60005b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156125855781600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110612556577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541415612572576125718382612991565b5b808061257d90613c39565b915050612494565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f190613969565b60405180910390fd5b61260660008383612987565b80600260008282546126189190613a71565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266d9190613a71565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126d29190613989565b60405180910390a36126e66000838361298c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561275a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612751906138c9565b60405180910390fd5b61276682600083612987565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e390613729565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546128439190613b21565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128a89190613989565b60405180910390a36128bc8360008461298c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905081106129df57612bee565b60008190505b6001600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612a349190613b21565b811015612b6157600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182612a879190613a71565b81548110612abe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110612b40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508080612b5990613c39565b9150506129e5565b50600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480612bd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590555b5050565b6000612c05612c00846139f0565b6139bf565b90508083825260208201905082856020860282011115612c2457600080fd5b60005b85811015612c545781612c3a8882612cb2565b845260208401935060208301925050600181019050612c27565b5050509392505050565b600081359050612c6d81613d20565b92915050565b600081519050612c8281613d20565b92915050565b600082601f830112612c9957600080fd5b8135612ca9848260208601612bf2565b91505092915050565b600081359050612cc181613d37565b92915050565b600060208284031215612cd957600080fd5b6000612ce784828501612c5e565b91505092915050565b600060208284031215612d0257600080fd5b6000612d1084828501612c73565b91505092915050565b60008060408385031215612d2c57600080fd5b6000612d3a85828601612c5e565b9250506020612d4b85828601612c5e565b9150509250929050565b600080600060608486031215612d6a57600080fd5b6000612d7886828701612c5e565b9350506020612d8986828701612c5e565b9250506040612d9a86828701612cb2565b9150509250925092565b60008060408385031215612db757600080fd5b6000612dc585828601612c5e565b9250506020612dd685828601612cb2565b9150509250929050565b600060208284031215612df257600080fd5b600082013567ffffffffffffffff811115612e0c57600080fd5b612e1884828501612c88565b91505092915050565b600060208284031215612e3357600080fd5b6000612e4184828501612cb2565b91505092915050565b6000612e56838361362b565b60208301905092915050565b612e6b81613b55565b82525050565b6000612e7c82613a2c565b612e868185613a4f565b9350612e9183613a1c565b8060005b83811015612ec2578151612ea98882612e4a565b9750612eb483613a42565b925050600181019050612e95565b5085935050505092915050565b612ed881613b67565b82525050565b6000612ee982613a37565b612ef38185613a60565b9350612f03818560208601613baa565b612f0c81613d0f565b840191505092915050565b6000612f24602383613a60565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f8a602283613a60565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ff0601583613a60565b91507f436c61696d20706572696f64206973206f7665722100000000000000000000006000830152602082019050919050565b6000613030602683613a60565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613096602283613a60565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130fc602683613a60565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613162601e83613a60565b91507f546f6b656e206d757374206265207374616b61626c6520627920796f752100006000830152602082019050919050565b60006131a2602383613a60565b91507f4d7573742068617665206c657373207468616e203331206d696365207374616b60008301527f65642100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613208601e83613a60565b91507f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006000830152602082019050919050565b6000613248602483613a60565b91507f4d7573742068617665206174206c65617374206f6e6520746f6b656e2073746160008301527f6b656421000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ae602883613a60565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613314602083613a60565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613354602483613a60565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133ba602783613a60565b91507f4d6573736167652053656e64657220776173206e6f74206f726967696e616c2060008301527f7374616b657221000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613420602183613a60565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613486602583613a60565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ec602483613a60565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613552601483613a60565b91507f546f6b656e206973206e6f74207374616b6564210000000000000000000000006000830152602082019050919050565b6000613592602583613a60565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135f8601f83613a60565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61363481613b93565b82525050565b61364381613b93565b82525050565b61365281613b9d565b82525050565b600060208201905061366d6000830184612e62565b92915050565b60006060820190506136886000830186612e62565b6136956020830185612e62565b6136a2604083018461363a565b949350505050565b600060208201905081810360008301526136c48184612e71565b905092915050565b60006020820190506136e16000830184612ecf565b92915050565b600060208201905081810360008301526137018184612ede565b905092915050565b6000602082019050818103600083015261372281612f17565b9050919050565b6000602082019050818103600083015261374281612f7d565b9050919050565b6000602082019050818103600083015261376281612fe3565b9050919050565b6000602082019050818103600083015261378281613023565b9050919050565b600060208201905081810360008301526137a281613089565b9050919050565b600060208201905081810360008301526137c2816130ef565b9050919050565b600060208201905081810360008301526137e281613155565b9050919050565b6000602082019050818103600083015261380281613195565b9050919050565b60006020820190508181036000830152613822816131fb565b9050919050565b600060208201905081810360008301526138428161323b565b9050919050565b60006020820190508181036000830152613862816132a1565b9050919050565b6000602082019050818103600083015261388281613307565b9050919050565b600060208201905081810360008301526138a281613347565b9050919050565b600060208201905081810360008301526138c2816133ad565b9050919050565b600060208201905081810360008301526138e281613413565b9050919050565b6000602082019050818103600083015261390281613479565b9050919050565b60006020820190508181036000830152613922816134df565b9050919050565b6000602082019050818103600083015261394281613545565b9050919050565b6000602082019050818103600083015261396281613585565b9050919050565b60006020820190508181036000830152613982816135eb565b9050919050565b600060208201905061399e600083018461363a565b92915050565b60006020820190506139b96000830184613649565b92915050565b6000604051905081810181811067ffffffffffffffff821117156139e6576139e5613ce0565b5b8060405250919050565b600067ffffffffffffffff821115613a0b57613a0a613ce0565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613a7c82613b93565b9150613a8783613b93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613abc57613abb613c82565b5b828201905092915050565b6000613ad282613b93565b9150613add83613b93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b1657613b15613c82565b5b828202905092915050565b6000613b2c82613b93565b9150613b3783613b93565b925082821015613b4a57613b49613c82565b5b828203905092915050565b6000613b6082613b73565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613bc8578082015181840152602081019050613bad565b83811115613bd7576000848401525b50505050565b6000613be882613b93565b91506000821415613bfc57613bfb613c82565b5b600182039050919050565b60006002820490506001821680613c1f57607f821691505b60208210811415613c3357613c32613cb1565b5b50919050565b6000613c4482613b93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7757613c76613c82565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613d2981613b55565b8114613d3457600080fd5b50565b613d4081613b93565b8114613d4b57600080fd5b5056fea26469706673582212200fd0d927966d4367a200fadd5b56da0231093405b389cda484cd6f262ee9288564736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a9059cbb116100a2578063d9ffad4711610071578063d9ffad4714610547578063dd62ed3e14610563578063e3c998fe14610593578063f2fde38b146105c3576101da565b8063a9059cbb146104d1578063ba7e766214610501578063c21f95cb1461051f578063d1058e591461053d576101da565b80638ab8fab3116100de5780638ab8fab3146104475780638da5cb5b1461046557806395d89b4114610483578063a457c2d7146104a1576101da565b806370a08231146103f1578063715018a61461042157806379cc67901461042b576101da565b8063362a3fad1161017c578063515ec1051161014b578063515ec1051461035957806352eb7796146103895780635e1f1e2a146103b95780636310ab11146103d5576101da565b8063362a3fad146102c157806339509351146102f157806342966c681461032157806348aa19361461033d576101da565b80632209d38c116101b85780632209d38c1461024b57806323b872dd14610269578063313ce5671461029957806335322f37146102b7576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e76105df565b6040516101f491906136e7565b60405180910390f35b61021760048036038101906102129190612da4565b610671565b60405161022491906136cc565b60405180910390f35b61023561068f565b6040516102429190613989565b60405180910390f35b610253610699565b6040516102609190613989565b60405180910390f35b610283600480360381019061027e9190612d55565b61069f565b60405161029091906136cc565b60405180910390f35b6102a1610797565b6040516102ae91906139a4565b60405180910390f35b6102bf6107a0565b005b6102db60048036038101906102d69190612cc7565b610a73565b6040516102e89190613989565b60405180910390f35b61030b60048036038101906103069190612da4565b610baa565b60405161031891906136cc565b60405180910390f35b61033b60048036038101906103369190612e21565b610c56565b005b61035760048036038101906103529190612de0565b610c6a565b005b610373600480360381019061036e9190612e21565b610fc2565b6040516103809190613989565b60405180910390f35b6103a3600480360381019061039e9190612cc7565b6110c1565b6040516103b091906136aa565b60405180910390f35b6103d360048036038101906103ce9190612e21565b611158565b005b6103ef60048036038101906103ea9190612cc7565b61128d565b005b61040b60048036038101906104069190612cc7565b61134d565b6040516104189190613989565b60405180910390f35b610429611395565b005b61044560048036038101906104409190612da4565b61141d565b005b61044f611498565b60405161045c9190613989565b60405180910390f35b61046d61149e565b60405161047a9190613658565b60405180910390f35b61048b6114c8565b60405161049891906136e7565b60405180910390f35b6104bb60048036038101906104b69190612da4565b61155a565b6040516104c891906136cc565b60405180910390f35b6104eb60048036038101906104e69190612da4565b611645565b6040516104f891906136cc565b60405180910390f35b610509611663565b6040516105169190613989565b60405180910390f35b610527611669565b6040516105349190613658565b60405180910390f35b61054561168f565b005b610561600480360381019061055c9190612de0565b611946565b005b61057d60048036038101906105789190612d19565b611e81565b60405161058a9190613989565b60405180910390f35b6105ad60048036038101906105a89190612e21565b611f08565b6040516105ba9190613658565b60405180910390f35b6105dd60048036038101906105d89190612cc7565b611f45565b005b6060600380546105ee90613c07565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90613c07565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b600061068561067e61203d565b8484612045565b6001905092915050565b6000600254905090565b60085481565b60006106ac848484612210565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106f761203d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076e90613849565b60405180910390fd5b61078b8561078361203d565b858403612045565b60019150509392505050565b60006012905090565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c90613829565b60405180910390fd5b600080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090505b6000811115610a65576000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001836108c59190613b21565b815481106108fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3033846040518463ffffffff1660e01b815260040161096893929190613673565b600060405180830381600087803b15801561098257600080fd5b505af1158015610996573d6000803e3d6000fd5b50505050600754600b600083815260200190815260200160002054426109bc9190613b21565b6109c69190613ac7565b836109d19190613a71565b92506109dd3382612491565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550508080610a5d90613bdd565b91505061086e565b50610a70338261258a565b50565b600080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610aff57602002820191906000526020600020905b815481526020019060010190808311610aeb575b505050505090506000805b8251811015610b9f57600754600b6000858481518110610b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000205442610b759190613b21565b610b7f9190613ac7565b82610b8a9190613a71565b91508080610b9790613c39565b915050610b0a565b508092505050919050565b6000610c4c610bb761203d565b848460016000610bc561203d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c479190613a71565b612045565b6001905092915050565b610c67610c6161203d565b826126ea565b50565b6000805b8251811015610fb3573373ffffffffffffffffffffffffffffffffffffffff16600c6000858481518110610ccb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f906138a9565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3033868581518110610dd1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518463ffffffff1660e01b8152600401610df793929190613673565b600060405180830381600087803b158015610e1157600080fd5b505af1158015610e25573d6000803e3d6000fd5b50505050600754600b6000858481518110610e69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000205442610e8b9190613b21565b610e959190613ac7565b82610ea09190613a71565b9150610eec33848381518110610edf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612491565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c6000858481518110610f4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610fab90613c39565b915050610c6e565b50610fbe338261258a565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613929565b60405180910390fd5b6000600b600084815260200190815260200160002054426110a99190613b21565b9050600754816110b99190613ac7565b915050919050565b6060600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561114c57602002820191906000526020600020905b815481526020019060010190808311611138575b50505050509050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f090613809565b60405180910390fd5b600854421061123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613749565b60405180910390fd5b61127233600754600b600085815260200190815260200160002054426112639190613b21565b61126d9190613ac7565b61258a565b42600b60008381526020019081526020016000208190555050565b61129561203d565b73ffffffffffffffffffffffffffffffffffffffff166112b361149e565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090613869565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61139d61203d565b73ffffffffffffffffffffffffffffffffffffffff166113bb61149e565b73ffffffffffffffffffffffffffffffffffffffff1614611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613869565b60405180910390fd5b61141b60006128c1565b565b60006114308361142b61203d565b611e81565b905081811015611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90613889565b60405180910390fd5b6114898361148161203d565b848403612045565b61149383836126ea565b505050565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546114d790613c07565b80601f016020809104026020016040519081016040528092919081815260200182805461150390613c07565b80156115505780601f1061152557610100808354040283529160200191611550565b820191906000526020600020905b81548152906001019060200180831161153357829003601f168201915b5050505050905090565b6000806001600061156961203d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90613949565b60405180910390fd5b61163a61163161203d565b85858403612045565b600191505092915050565b600061165961165261203d565b8484612210565b6001905092915050565b60075481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085442106116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613749565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561175e57602002820191906000526020600020905b81548152602001906001019080831161174a575b505050505090506000805b8251811015611937573373ffffffffffffffffffffffffffffffffffffffff16600c60008584815181106117c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90613809565b60405180910390fd5b600754600b6000858481518110611893577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054426118b59190613b21565b6118bf9190613ac7565b826118ca9190613a71565b915042600b600085848151811061190a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002081905550808061192f90613c39565b915050611769565b50611942338261258a565b5050565b6006548151600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506119989190613a71565b11156119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906137e9565b60405180910390fd5b60005b8151811015611e7d573373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110611a73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401611a979190613989565b60206040518083038186803b158015611aaf57600080fd5b505afa158015611ac3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae79190612cf0565b73ffffffffffffffffffffffffffffffffffffffff16148015611bca5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600c6000848481518110611b7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c00906137c9565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330858581518110611c82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518463ffffffff1660e01b8152600401611ca893929190613673565b600060405180830381600087803b158015611cc257600080fd5b505af1158015611cd6573d6000803e3d6000fd5b50505050600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828281518110611d52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151908060018154018082558091505060019003906000526020600020016000909190919091505542600b6000848481518110611dbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000208190555033600c6000848481518110611e16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080611e7590613c39565b9150506119dc565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611f4d61203d565b73ffffffffffffffffffffffffffffffffffffffff16611f6b61149e565b73ffffffffffffffffffffffffffffffffffffffff1614611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890613869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613769565b60405180910390fd5b61203a816128c1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90613909565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613789565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122039190613989565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612277906138e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e790613709565b60405180910390fd5b6122fb838383612987565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612381576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612378906137a9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124149190613a71565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124789190613989565b60405180910390a361248b84848461298c565b50505050565b60005b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156125855781600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110612556577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541415612572576125718382612991565b5b808061257d90613c39565b915050612494565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f190613969565b60405180910390fd5b61260660008383612987565b80600260008282546126189190613a71565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266d9190613a71565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126d29190613989565b60405180910390a36126e66000838361298c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561275a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612751906138c9565b60405180910390fd5b61276682600083612987565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e390613729565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546128439190613b21565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128a89190613989565b60405180910390a36128bc8360008461298c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905081106129df57612bee565b60008190505b6001600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050612a349190613b21565b811015612b6157600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182612a879190613a71565b81548110612abe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110612b40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508080612b5990613c39565b9150506129e5565b50600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480612bd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590555b5050565b6000612c05612c00846139f0565b6139bf565b90508083825260208201905082856020860282011115612c2457600080fd5b60005b85811015612c545781612c3a8882612cb2565b845260208401935060208301925050600181019050612c27565b5050509392505050565b600081359050612c6d81613d20565b92915050565b600081519050612c8281613d20565b92915050565b600082601f830112612c9957600080fd5b8135612ca9848260208601612bf2565b91505092915050565b600081359050612cc181613d37565b92915050565b600060208284031215612cd957600080fd5b6000612ce784828501612c5e565b91505092915050565b600060208284031215612d0257600080fd5b6000612d1084828501612c73565b91505092915050565b60008060408385031215612d2c57600080fd5b6000612d3a85828601612c5e565b9250506020612d4b85828601612c5e565b9150509250929050565b600080600060608486031215612d6a57600080fd5b6000612d7886828701612c5e565b9350506020612d8986828701612c5e565b9250506040612d9a86828701612cb2565b9150509250925092565b60008060408385031215612db757600080fd5b6000612dc585828601612c5e565b9250506020612dd685828601612cb2565b9150509250929050565b600060208284031215612df257600080fd5b600082013567ffffffffffffffff811115612e0c57600080fd5b612e1884828501612c88565b91505092915050565b600060208284031215612e3357600080fd5b6000612e4184828501612cb2565b91505092915050565b6000612e56838361362b565b60208301905092915050565b612e6b81613b55565b82525050565b6000612e7c82613a2c565b612e868185613a4f565b9350612e9183613a1c565b8060005b83811015612ec2578151612ea98882612e4a565b9750612eb483613a42565b925050600181019050612e95565b5085935050505092915050565b612ed881613b67565b82525050565b6000612ee982613a37565b612ef38185613a60565b9350612f03818560208601613baa565b612f0c81613d0f565b840191505092915050565b6000612f24602383613a60565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f8a602283613a60565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ff0601583613a60565b91507f436c61696d20706572696f64206973206f7665722100000000000000000000006000830152602082019050919050565b6000613030602683613a60565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613096602283613a60565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130fc602683613a60565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613162601e83613a60565b91507f546f6b656e206d757374206265207374616b61626c6520627920796f752100006000830152602082019050919050565b60006131a2602383613a60565b91507f4d7573742068617665206c657373207468616e203331206d696365207374616b60008301527f65642100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613208601e83613a60565b91507f546f6b656e206973206e6f7420636c61696d61626c6520627920796f752100006000830152602082019050919050565b6000613248602483613a60565b91507f4d7573742068617665206174206c65617374206f6e6520746f6b656e2073746160008301527f6b656421000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ae602883613a60565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613314602083613a60565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613354602483613a60565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133ba602783613a60565b91507f4d6573736167652053656e64657220776173206e6f74206f726967696e616c2060008301527f7374616b657221000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613420602183613a60565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613486602583613a60565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ec602483613a60565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613552601483613a60565b91507f546f6b656e206973206e6f74207374616b6564210000000000000000000000006000830152602082019050919050565b6000613592602583613a60565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135f8601f83613a60565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61363481613b93565b82525050565b61364381613b93565b82525050565b61365281613b9d565b82525050565b600060208201905061366d6000830184612e62565b92915050565b60006060820190506136886000830186612e62565b6136956020830185612e62565b6136a2604083018461363a565b949350505050565b600060208201905081810360008301526136c48184612e71565b905092915050565b60006020820190506136e16000830184612ecf565b92915050565b600060208201905081810360008301526137018184612ede565b905092915050565b6000602082019050818103600083015261372281612f17565b9050919050565b6000602082019050818103600083015261374281612f7d565b9050919050565b6000602082019050818103600083015261376281612fe3565b9050919050565b6000602082019050818103600083015261378281613023565b9050919050565b600060208201905081810360008301526137a281613089565b9050919050565b600060208201905081810360008301526137c2816130ef565b9050919050565b600060208201905081810360008301526137e281613155565b9050919050565b6000602082019050818103600083015261380281613195565b9050919050565b60006020820190508181036000830152613822816131fb565b9050919050565b600060208201905081810360008301526138428161323b565b9050919050565b60006020820190508181036000830152613862816132a1565b9050919050565b6000602082019050818103600083015261388281613307565b9050919050565b600060208201905081810360008301526138a281613347565b9050919050565b600060208201905081810360008301526138c2816133ad565b9050919050565b600060208201905081810360008301526138e281613413565b9050919050565b6000602082019050818103600083015261390281613479565b9050919050565b60006020820190508181036000830152613922816134df565b9050919050565b6000602082019050818103600083015261394281613545565b9050919050565b6000602082019050818103600083015261396281613585565b9050919050565b60006020820190508181036000830152613982816135eb565b9050919050565b600060208201905061399e600083018461363a565b92915050565b60006020820190506139b96000830184613649565b92915050565b6000604051905081810181811067ffffffffffffffff821117156139e6576139e5613ce0565b5b8060405250919050565b600067ffffffffffffffff821115613a0b57613a0a613ce0565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613a7c82613b93565b9150613a8783613b93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613abc57613abb613c82565b5b828201905092915050565b6000613ad282613b93565b9150613add83613b93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b1657613b15613c82565b5b828202905092915050565b6000613b2c82613b93565b9150613b3783613b93565b925082821015613b4a57613b49613c82565b5b828203905092915050565b6000613b6082613b73565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015613bc8578082015181840152602081019050613bad565b83811115613bd7576000848401525b50505050565b6000613be882613b93565b91506000821415613bfc57613bfb613c82565b5b600182039050919050565b60006002820490506001821680613c1f57607f821691505b60208210811415613c3357613c32613cb1565b5b50919050565b6000613c4482613b93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7757613c76613c82565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613d2981613b55565b8114613d3457600080fd5b50565b613d4081613b93565b8114613d4b57600080fd5b5056fea26469706673582212200fd0d927966d4367a200fadd5b56da0231093405b389cda484cd6f262ee9288564736f6c63430008000033

Deployed Bytecode Sourcemap

32621:6386:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6074:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8241:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7194:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8892:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7036:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35186:846;;;:::i;:::-;;38057:447;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9793:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16419:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36040:823;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38512:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33437:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36871:455;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33304:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7365:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18770:94;;;:::i;:::-;;16829:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32709:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18119:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6293:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10511:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7705:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32753:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32928:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37334:715;;;:::i;:::-;;34288:890;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7943:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38888:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19019:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6074:100;6128:13;6161:5;6154:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6074:100;:::o;8241:169::-;8324:4;8341:39;8350:12;:10;:12::i;:::-;8364:7;8373:6;8341:8;:39::i;:::-;8398:4;8391:11;;8241:169;;;;:::o;7194:108::-;7255:7;7282:12;;7275:19;;7194:108;:::o;32806:42::-;;;;:::o;8892:492::-;9032:4;9049:36;9059:6;9067:9;9078:6;9049:9;:36::i;:::-;9098:24;9125:11;:19;9137:6;9125:19;;;;;;;;;;;;;;;:33;9145:12;:10;:12::i;:::-;9125:33;;;;;;;;;;;;;;;;9098:60;;9197:6;9177:16;:26;;9169:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9284:57;9293:6;9301:12;:10;:12::i;:::-;9334:6;9315:16;:25;9284:8;:57::i;:::-;9372:4;9365:11;;;8892:492;;;;;:::o;7036:93::-;7094:5;7119:2;7112:9;;7036:93;:::o;35186:846::-;35286:1;35248:16;:28;35265:10;35248:28;;;;;;;;;;;;;;;:35;;;;:39;35226:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;35362:20;35404:9;35416:16;:28;35433:10;35416:28;;;;;;;;;;;;;;;:35;;;;35404:47;;35399:582;35457:1;35453;:5;35399:582;;;35480:15;35498:16;:28;35515:10;35498:28;;;;;;;;;;;;;;;35531:1;35527;:5;;;;:::i;:::-;35498:35;;;;;;;;;;;;;;;;;;;;;;;;35480:53;;35558:11;;;;;;;;;;;35550:33;;;35610:4;35634:10;35663:7;35550:135;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35838:14;;35786:18;:27;35805:7;35786:27;;;;;;;;;;;;35768:15;:45;;;;:::i;:::-;35767:85;;;;:::i;:::-;35734:12;:119;;;;:::i;:::-;35702:151;;35870:44;35894:10;35906:7;35870:23;:44::i;:::-;35958:11;;;;;;;;;;;35931:15;:24;35947:7;35931:24;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;35399:582;35460:3;;;;;:::i;:::-;;;;35399:582;;;;35993:31;35999:10;36011:12;35993:5;:31::i;:::-;35186:846;:::o;38057:447::-;38117:7;38137:25;38165:16;:24;38182:6;38165:24;;;;;;;;;;;;;;;38137:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38200:20;38242:9;38237:228;38261:8;:15;38257:1;:19;38237:228;;;38438:14;;38382:18;:31;38401:8;38410:1;38401:11;;;;;;;;;;;;;;;;;;;;;;38382:31;;;;;;;;;;;;38364:15;:49;;;;:::i;:::-;38363:89;;;;:::i;:::-;38330:12;:123;;;;:::i;:::-;38298:155;;38278:3;;;;;:::i;:::-;;;;38237:228;;;;38484:12;38477:19;;;;38057:447;;;:::o;9793:215::-;9881:4;9898:80;9907:12;:10;:12::i;:::-;9921:7;9967:10;9930:11;:25;9942:12;:10;:12::i;:::-;9930:25;;;;;;;;;;;;;;;:34;9956:7;9930:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9898:8;:80::i;:::-;9996:4;9989:11;;9793:215;;;;:::o;16419:91::-;16475:27;16481:12;:10;:12::i;:::-;16495:6;16475:5;:27::i;:::-;16419:91;:::o;36040:823::-;36107:20;36149:9;36144:668;36168:8;:15;36164:1;:19;36144:668;;;36263:10;36231:42;;:15;:28;36247:8;36256:1;36247:11;;;;;;;;;;;;;;;;;;;;;;36231:28;;;;;;;;;;;;;;;;;;;;;:42;;;36205:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;36373:11;;;;;;;;;;;36365:33;;;36425:4;36449:10;36478:8;36487:1;36478:11;;;;;;;;;;;;;;;;;;;;;;36365:139;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36661:14;;36605:18;:31;36624:8;36633:1;36624:11;;;;;;;;;;;;;;;;;;;;;;36605:31;;;;;;;;;;;;36587:15;:49;;;;:::i;:::-;36586:89;;;;:::i;:::-;36553:12;:123;;;;:::i;:::-;36521:155;;36693:48;36717:10;36729:8;36738:1;36729:11;;;;;;;;;;;;;;;;;;;;;;36693:23;:48::i;:::-;36789:11;;;;;;;;;;;36758:15;:28;36774:8;36783:1;36774:11;;;;;;;;;;;;;;;;;;;;;;36758:28;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;36185:3;;;;;:::i;:::-;;;;36144:668;;;;36824:31;36830:10;36842:12;36824:5;:31::i;:::-;36040:823;;:::o;38512:368::-;38606:7;38681:11;;;;;;;;;;;38653:39;;:15;:24;38669:7;38653:24;;;;;;;;;;;;;;;;;;;;;:39;;;;38631:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;38753:21;38795:18;:27;38814:7;38795:27;;;;;;;;;;;;38777:15;:45;;;;:::i;:::-;38753:69;;38858:14;;38842:13;:30;;;;:::i;:::-;38835:37;;;38512:368;;;:::o;33437:162::-;33526:16;33567;:24;33584:6;33567:24;;;;;;;;;;;;;;;33560:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33437:162;;;:::o;36871:455::-;36980:10;36952:38;;:15;:24;36968:7;36952:24;;;;;;;;;;;;;;;;;;;;;:38;;;36930:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;37085:14;;37067:15;:32;37059:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37138:122;37158:10;37234:14;;37203:18;:27;37222:7;37203:27;;;;;;;;;;;;37185:15;:45;;;;:::i;:::-;37184:64;;;;:::i;:::-;37138:5;:122::i;:::-;37303:15;37273:18;:27;37292:7;37273:27;;;;;;;;;;;:45;;;;36871:455;:::o;33304:125::-;18350:12;:10;:12::i;:::-;18339:23;;:7;:5;:7::i;:::-;:23;;;18331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33392:12:::1;33378:11;;:26;;;;;;;;;;;;;;;;;;33304:125:::0;:::o;7365:127::-;7439:7;7466:9;:18;7476:7;7466:18;;;;;;;;;;;;;;;;7459:25;;7365:127;;;:::o;18770:94::-;18350:12;:10;:12::i;:::-;18339:23;;:7;:5;:7::i;:::-;:23;;;18331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18835:21:::1;18853:1;18835:9;:21::i;:::-;18770:94::o:0;16829:368::-;16906:24;16933:32;16943:7;16952:12;:10;:12::i;:::-;16933:9;:32::i;:::-;16906:59;;17004:6;16984:16;:26;;16976:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;17087:58;17096:7;17105:12;:10;:12::i;:::-;17138:6;17119:16;:25;17087:8;:58::i;:::-;17167:22;17173:7;17182:6;17167:5;:22::i;:::-;16829:368;;;:::o;32709:37::-;;;;:::o;18119:87::-;18165:7;18192:6;;;;;;;;;;;18185:13;;18119:87;:::o;6293:104::-;6349:13;6382:7;6375:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6293:104;:::o;10511:413::-;10604:4;10621:24;10648:11;:25;10660:12;:10;:12::i;:::-;10648:25;;;;;;;;;;;;;;;:34;10674:7;10648:34;;;;;;;;;;;;;;;;10621:61;;10721:15;10701:16;:35;;10693:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10814:67;10823:12;:10;:12::i;:::-;10837:7;10865:15;10846:16;:34;10814:8;:67::i;:::-;10912:4;10905:11;;;10511:413;;;;:::o;7705:175::-;7791:4;7808:42;7818:12;:10;:12::i;:::-;7832:9;7843:6;7808:9;:42::i;:::-;7868:4;7861:11;;7705:175;;;;:::o;32753:46::-;;;;:::o;32928:26::-;;;;;;;;;;;;;:::o;37334:715::-;37398:14;;37380:15;:32;37372:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37449:25;37477:16;:28;37494:10;37477:28;;;;;;;;;;;;;;;37449:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37516:20;37558:9;37553:445;37577:8;:15;37573:1;:19;37553:445;;;37672:10;37640:42;;:15;:28;37656:8;37665:1;37656:11;;;;;;;;;;;;;;;;;;;;;;37640:28;;;;;;;;;;;;;;;;;;;;;:42;;;37614:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;37905:14;;37849:18;:31;37868:8;37877:1;37868:11;;;;;;;;;;;;;;;;;;;;;;37849:31;;;;;;;;;;;;37831:15;:49;;;;:::i;:::-;37830:89;;;;:::i;:::-;37797:12;:123;;;;:::i;:::-;37765:155;;37971:15;37937:18;:31;37956:8;37965:1;37956:11;;;;;;;;;;;;;;;;;;;;;;37937:31;;;;;;;;;;;:49;;;;37594:3;;;;;:::i;:::-;;;;37553:445;;;;38010:31;38016:10;38028:12;38010:5;:31::i;:::-;37334:715;;:::o;34288:890::-;34449:17;;34413:8;:15;34375:16;:28;34392:10;34375:28;;;;;;;;;;;;;;;:35;;;;:53;;;;:::i;:::-;:91;;34353:176;;;;;;;;;;;;:::i;:::-;;;;;;;;;34547:9;34542:629;34566:8;:15;34562:1;:19;34542:629;;;34674:10;34629:55;;34637:11;;;;;;;;;;;34629:28;;;34658:8;34667:1;34658:11;;;;;;;;;;;;;;;;;;;;;;34629:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;;;:123;;;;;34741:11;;;;;;;;;;;34709:43;;:15;:28;34725:8;34734:1;34725:11;;;;;;;;;;;;;;;;;;;;;;34709:28;;;;;;;;;;;;;;;;;;;;;:43;;;34629:123;34603:215;;;;;;;;;;;;:::i;:::-;;;;;;;;;34843:11;;;;;;;;;;;34835:33;;;34887:10;34924:4;34948:8;34957:1;34948:11;;;;;;;;;;;;;;;;;;;;;;34835:139;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34991:16;:28;35008:10;34991:28;;;;;;;;;;;;;;;35025:8;35034:1;35025:11;;;;;;;;;;;;;;;;;;;;;;34991:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35088:15;35054:18;:31;35073:8;35082:1;35073:11;;;;;;;;;;;;;;;;;;;;;;35054:31;;;;;;;;;;;:49;;;;35149:10;35118:15;:28;35134:8;35143:1;35134:11;;;;;;;;;;;;;;;;;;;;;;35118:28;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;34583:3;;;;;:::i;:::-;;;;34542:629;;;;34288:890;:::o;7943:151::-;8032:7;8059:11;:18;8071:5;8059:18;;;;;;;;;;;;;;;:27;8078:7;8059:27;;;;;;;;;;;;;;;;8052:34;;7943:151;;;;:::o;38888:116::-;38945:7;38972:15;:24;38988:7;38972:24;;;;;;;;;;;;;;;;;;;;;38965:31;;38888:116;;;:::o;19019:192::-;18350:12;:10;:12::i;:::-;18339:23;;:7;:5;:7::i;:::-;:23;;;18331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19128:1:::1;19108:22;;:8;:22;;;;19100:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19184:19;19194:8;19184:9;:19::i;:::-;19019:192:::0;:::o;3877:98::-;3930:7;3957:10;3950:17;;3877:98;:::o;14195:380::-;14348:1;14331:19;;:5;:19;;;;14323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14429:1;14410:21;;:7;:21;;;;14402:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14513:6;14483:11;:18;14495:5;14483:18;;;;;;;;;;;;;;;:27;14502:7;14483:27;;;;;;;;;;;;;;;:36;;;;14551:7;14535:32;;14544:5;14535:32;;;14560:6;14535:32;;;;;;:::i;:::-;;;;;;;;14195:380;;;:::o;11414:733::-;11572:1;11554:20;;:6;:20;;;;11546:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11656:1;11635:23;;:9;:23;;;;11627:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11711:47;11732:6;11740:9;11751:6;11711:20;:47::i;:::-;11771:21;11795:9;:17;11805:6;11795:17;;;;;;;;;;;;;;;;11771:41;;11848:6;11831:13;:23;;11823:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11969:6;11953:13;:22;11933:9;:17;11943:6;11933:17;;;;;;;;;;;;;;;:42;;;;12021:6;11997:9;:20;12007:9;11997:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12062:9;12045:35;;12054:6;12045:35;;;12073:6;12045:35;;;;;;:::i;:::-;;;;;;;;12093:46;12113:6;12121:9;12132:6;12093:19;:46::i;:::-;11414:733;;;;:::o;33953:327::-;34044:9;34039:234;34063:16;:24;34080:6;34063:24;;;;;;;;;;;;;;;:31;;;;34059:1;:35;34039:234;;;34151:7;34120:16;:24;34137:6;34120:24;;;;;;;;;;;;;;;34145:1;34120:27;;;;;;;;;;;;;;;;;;;;;;;;:38;34116:146;;;34229:17;34236:6;34244:1;34229:6;:17::i;:::-;34116:146;34096:3;;;;;:::i;:::-;;;;34039:234;;;;33953:327;;:::o;12434:399::-;12537:1;12518:21;;:7;:21;;;;12510:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12588:49;12617:1;12621:7;12630:6;12588:20;:49::i;:::-;12666:6;12650:12;;:22;;;;;;;:::i;:::-;;;;;;;;12705:6;12683:9;:18;12693:7;12683:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12748:7;12727:37;;12744:1;12727:37;;;12757:6;12727:37;;;;;;:::i;:::-;;;;;;;;12777:48;12805:1;12809:7;12818:6;12777:19;:48::i;:::-;12434:399;;:::o;13166:591::-;13269:1;13250:21;;:7;:21;;;;13242:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13322:49;13343:7;13360:1;13364:6;13322:20;:49::i;:::-;13384:22;13409:9;:18;13419:7;13409:18;;;;;;;;;;;;;;;;13384:43;;13464:6;13446:14;:24;;13438:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13583:6;13566:14;:23;13545:9;:18;13555:7;13545:18;;;;;;;;;;;;;;;:44;;;;13627:6;13611:12;;:22;;;;;;;:::i;:::-;;;;;;;;13677:1;13651:37;;13660:7;13651:37;;;13681:6;13651:37;;;;;;:::i;:::-;;;;;;;;13701:48;13721:7;13738:1;13742:6;13701:19;:48::i;:::-;13166:591;;;:::o;19219:173::-;19275:16;19294:6;;;;;;;;;;;19275:25;;19320:8;19311:6;;:17;;;;;;;;;;;;;;;;;;19375:8;19344:40;;19365:8;19344:40;;;;;;;;;;;;19219:173;;:::o;15175:125::-;;;;:::o;15904:124::-;;;;:::o;33607:338::-;33687:16;:24;33704:6;33687:24;;;;;;;;;;;;;;;:31;;;;33678:5;:40;33674:53;;33720:7;;33674:53;33744:9;33756:5;33744:17;;33739:158;33801:1;33767:16;:24;33784:6;33767:24;;;;;;;;;;;;;;;:31;;;;:35;;;;:::i;:::-;33763:1;:39;33739:158;;;33854:16;:24;33871:6;33854:24;;;;;;;;;;;;;;;33883:1;33879;:5;;;;:::i;:::-;33854:31;;;;;;;;;;;;;;;;;;;;;;;;33824:16;:24;33841:6;33824:24;;;;;;;;;;;;;;;33849:1;33824:27;;;;;;;;;;;;;;;;;;;;;;;:61;;;;33804:3;;;;;:::i;:::-;;;;33739:158;;;;33907:16;:24;33924:6;33907:24;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33607:338;;;:::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;797:143::-;;885:6;879:13;870:22;;901:33;928:5;901:33;:::i;:::-;860:80;;;;:::o;963:303::-;;1083:3;1076:4;1068:6;1064:17;1060:27;1050:2;;1101:1;1098;1091:12;1050:2;1141:6;1128:20;1166:94;1256:3;1248:6;1241:4;1233:6;1229:17;1166:94;:::i;:::-;1157:103;;1040:226;;;;;:::o;1272:139::-;;1356:6;1343:20;1334:29;;1372:33;1399:5;1372:33;:::i;:::-;1324:87;;;;:::o;1417:262::-;;1525:2;1513:9;1504:7;1500:23;1496:32;1493:2;;;1541:1;1538;1531:12;1493:2;1584:1;1609:53;1654:7;1645:6;1634:9;1630:22;1609:53;:::i;:::-;1599:63;;1555:117;1483:196;;;;:::o;1685:284::-;;1804:2;1792:9;1783:7;1779:23;1775:32;1772:2;;;1820:1;1817;1810:12;1772:2;1863:1;1888:64;1944:7;1935:6;1924:9;1920:22;1888:64;:::i;:::-;1878:74;;1834:128;1762:207;;;;:::o;1975:407::-;;;2100:2;2088:9;2079:7;2075:23;2071:32;2068:2;;;2116:1;2113;2106:12;2068:2;2159:1;2184:53;2229:7;2220:6;2209:9;2205:22;2184:53;:::i;:::-;2174:63;;2130:117;2286:2;2312:53;2357:7;2348:6;2337:9;2333:22;2312:53;:::i;:::-;2302:63;;2257:118;2058:324;;;;;:::o;2388:552::-;;;;2530:2;2518:9;2509:7;2505:23;2501:32;2498:2;;;2546:1;2543;2536:12;2498:2;2589:1;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2560:117;2716:2;2742:53;2787:7;2778:6;2767:9;2763:22;2742:53;:::i;:::-;2732:63;;2687:118;2844:2;2870:53;2915:7;2906:6;2895:9;2891:22;2870:53;:::i;:::-;2860:63;;2815:118;2488:452;;;;;:::o;2946:407::-;;;3071:2;3059:9;3050:7;3046:23;3042:32;3039:2;;;3087:1;3084;3077:12;3039:2;3130:1;3155:53;3200:7;3191:6;3180:9;3176:22;3155:53;:::i;:::-;3145:63;;3101:117;3257:2;3283:53;3328:7;3319:6;3308:9;3304:22;3283:53;:::i;:::-;3273:63;;3228:118;3029:324;;;;;:::o;3359:405::-;;3492:2;3480:9;3471:7;3467:23;3463:32;3460:2;;;3508:1;3505;3498:12;3460:2;3579:1;3568:9;3564:17;3551:31;3609:18;3601:6;3598:30;3595:2;;;3641:1;3638;3631:12;3595:2;3669:78;3739:7;3730:6;3719:9;3715:22;3669:78;:::i;:::-;3659:88;;3522:235;3450:314;;;;:::o;3770:262::-;;3878:2;3866:9;3857:7;3853:23;3849:32;3846:2;;;3894:1;3891;3884:12;3846:2;3937:1;3962:53;4007:7;3998:6;3987:9;3983:22;3962:53;:::i;:::-;3952:63;;3908:117;3836:196;;;;:::o;4038:179::-;;4128:46;4170:3;4162:6;4128:46;:::i;:::-;4206:4;4201:3;4197:14;4183:28;;4118:99;;;;:::o;4223:118::-;4310:24;4328:5;4310:24;:::i;:::-;4305:3;4298:37;4288:53;;:::o;4377:732::-;;4525:54;4573:5;4525:54;:::i;:::-;4595:86;4674:6;4669:3;4595:86;:::i;:::-;4588:93;;4705:56;4755:5;4705:56;:::i;:::-;4784:7;4815:1;4800:284;4825:6;4822:1;4819:13;4800:284;;;4901:6;4895:13;4928:63;4987:3;4972:13;4928:63;:::i;:::-;4921:70;;5014:60;5067:6;5014:60;:::i;:::-;5004:70;;4860:224;4847:1;4844;4840:9;4835:14;;4800:284;;;4804:14;5100:3;5093:10;;4501:608;;;;;;;:::o;5115:109::-;5196:21;5211:5;5196:21;:::i;:::-;5191:3;5184:34;5174:50;;:::o;5230:364::-;;5346:39;5379:5;5346:39;:::i;:::-;5401:71;5465:6;5460:3;5401:71;:::i;:::-;5394:78;;5481:52;5526:6;5521:3;5514:4;5507:5;5503:16;5481:52;:::i;:::-;5558:29;5580:6;5558:29;:::i;:::-;5553:3;5549:39;5542:46;;5322:272;;;;;:::o;5600:367::-;;5763:67;5827:2;5822:3;5763:67;:::i;:::-;5756:74;;5860:34;5856:1;5851:3;5847:11;5840:55;5926:5;5921:2;5916:3;5912:12;5905:27;5958:2;5953:3;5949:12;5942:19;;5746:221;;;:::o;5973:366::-;;6136:67;6200:2;6195:3;6136:67;:::i;:::-;6129:74;;6233:34;6229:1;6224:3;6220:11;6213:55;6299:4;6294:2;6289:3;6285:12;6278:26;6330:2;6325:3;6321:12;6314:19;;6119:220;;;:::o;6345:319::-;;6508:67;6572:2;6567:3;6508:67;:::i;:::-;6501:74;;6605:23;6601:1;6596:3;6592:11;6585:44;6655:2;6650:3;6646:12;6639:19;;6491:173;;;:::o;6670:370::-;;6833:67;6897:2;6892:3;6833:67;:::i;:::-;6826:74;;6930:34;6926:1;6921:3;6917:11;6910:55;6996:8;6991:2;6986:3;6982:12;6975:30;7031:2;7026:3;7022:12;7015:19;;6816:224;;;:::o;7046:366::-;;7209:67;7273:2;7268:3;7209:67;:::i;:::-;7202:74;;7306:34;7302:1;7297:3;7293:11;7286:55;7372:4;7367:2;7362:3;7358:12;7351:26;7403:2;7398:3;7394:12;7387:19;;7192:220;;;:::o;7418:370::-;;7581:67;7645:2;7640:3;7581:67;:::i;:::-;7574:74;;7678:34;7674:1;7669:3;7665:11;7658:55;7744:8;7739:2;7734:3;7730:12;7723:30;7779:2;7774:3;7770:12;7763:19;;7564:224;;;:::o;7794:328::-;;7957:67;8021:2;8016:3;7957:67;:::i;:::-;7950:74;;8054:32;8050:1;8045:3;8041:11;8034:53;8113:2;8108:3;8104:12;8097:19;;7940:182;;;:::o;8128:367::-;;8291:67;8355:2;8350:3;8291:67;:::i;:::-;8284:74;;8388:34;8384:1;8379:3;8375:11;8368:55;8454:5;8449:2;8444:3;8440:12;8433:27;8486:2;8481:3;8477:12;8470:19;;8274:221;;;:::o;8501:328::-;;8664:67;8728:2;8723:3;8664:67;:::i;:::-;8657:74;;8761:32;8757:1;8752:3;8748:11;8741:53;8820:2;8815:3;8811:12;8804:19;;8647:182;;;:::o;8835:368::-;;8998:67;9062:2;9057:3;8998:67;:::i;:::-;8991:74;;9095:34;9091:1;9086:3;9082:11;9075:55;9161:6;9156:2;9151:3;9147:12;9140:28;9194:2;9189:3;9185:12;9178:19;;8981:222;;;:::o;9209:372::-;;9372:67;9436:2;9431:3;9372:67;:::i;:::-;9365:74;;9469:34;9465:1;9460:3;9456:11;9449:55;9535:10;9530:2;9525:3;9521:12;9514:32;9572:2;9567:3;9563:12;9556:19;;9355:226;;;:::o;9587:330::-;;9750:67;9814:2;9809:3;9750:67;:::i;:::-;9743:74;;9847:34;9843:1;9838:3;9834:11;9827:55;9908:2;9903:3;9899:12;9892:19;;9733:184;;;:::o;9923:368::-;;10086:67;10150:2;10145:3;10086:67;:::i;:::-;10079:74;;10183:34;10179:1;10174:3;10170:11;10163:55;10249:6;10244:2;10239:3;10235:12;10228:28;10282:2;10277:3;10273:12;10266:19;;10069:222;;;:::o;10297:371::-;;10460:67;10524:2;10519:3;10460:67;:::i;:::-;10453:74;;10557:34;10553:1;10548:3;10544:11;10537:55;10623:9;10618:2;10613:3;10609:12;10602:31;10659:2;10654:3;10650:12;10643:19;;10443:225;;;:::o;10674:365::-;;10837:67;10901:2;10896:3;10837:67;:::i;:::-;10830:74;;10934:34;10930:1;10925:3;10921:11;10914:55;11000:3;10995:2;10990:3;10986:12;10979:25;11030:2;11025:3;11021:12;11014:19;;10820:219;;;:::o;11045:369::-;;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11305:34;11301:1;11296:3;11292:11;11285:55;11371:7;11366:2;11361:3;11357:12;11350:29;11405:2;11400:3;11396:12;11389:19;;11191:223;;;:::o;11420:368::-;;11583:67;11647:2;11642:3;11583:67;:::i;:::-;11576:74;;11680:34;11676:1;11671:3;11667:11;11660:55;11746:6;11741:2;11736:3;11732:12;11725:28;11779:2;11774:3;11770:12;11763:19;;11566:222;;;:::o;11794:318::-;;11957:67;12021:2;12016:3;11957:67;:::i;:::-;11950:74;;12054:22;12050:1;12045:3;12041:11;12034:43;12103:2;12098:3;12094:12;12087:19;;11940:172;;;:::o;12118:369::-;;12281:67;12345:2;12340:3;12281:67;:::i;:::-;12274:74;;12378:34;12374:1;12369:3;12365:11;12358:55;12444:7;12439:2;12434:3;12430:12;12423:29;12478:2;12473:3;12469:12;12462:19;;12264:223;;;:::o;12493:329::-;;12656:67;12720:2;12715:3;12656:67;:::i;:::-;12649:74;;12753:33;12749:1;12744:3;12740:11;12733:54;12813:2;12808:3;12804:12;12797:19;;12639:183;;;:::o;12828:108::-;12905:24;12923:5;12905:24;:::i;:::-;12900:3;12893:37;12883:53;;:::o;12942:118::-;13029:24;13047:5;13029:24;:::i;:::-;13024:3;13017:37;13007:53;;:::o;13066:112::-;13149:22;13165:5;13149:22;:::i;:::-;13144:3;13137:35;13127:51;;:::o;13184:222::-;;13315:2;13304:9;13300:18;13292:26;;13328:71;13396:1;13385:9;13381:17;13372:6;13328:71;:::i;:::-;13282:124;;;;:::o;13412:442::-;;13599:2;13588:9;13584:18;13576:26;;13612:71;13680:1;13669:9;13665:17;13656:6;13612:71;:::i;:::-;13693:72;13761:2;13750:9;13746:18;13737:6;13693:72;:::i;:::-;13775;13843:2;13832:9;13828:18;13819:6;13775:72;:::i;:::-;13566:288;;;;;;:::o;13860:373::-;;14041:2;14030:9;14026:18;14018:26;;14090:9;14084:4;14080:20;14076:1;14065:9;14061:17;14054:47;14118:108;14221:4;14212:6;14118:108;:::i;:::-;14110:116;;14008:225;;;;:::o;14239:210::-;;14364:2;14353:9;14349:18;14341:26;;14377:65;14439:1;14428:9;14424:17;14415:6;14377:65;:::i;:::-;14331:118;;;;:::o;14455:313::-;;14606:2;14595:9;14591:18;14583:26;;14655:9;14649:4;14645:20;14641:1;14630:9;14626:17;14619:47;14683:78;14756:4;14747:6;14683:78;:::i;:::-;14675:86;;14573:195;;;;:::o;14774:419::-;;14978:2;14967:9;14963:18;14955:26;;15027:9;15021:4;15017:20;15013:1;15002:9;14998:17;14991:47;15055:131;15181:4;15055:131;:::i;:::-;15047:139;;14945:248;;;:::o;15199:419::-;;15403:2;15392:9;15388:18;15380:26;;15452:9;15446:4;15442:20;15438:1;15427:9;15423:17;15416:47;15480:131;15606:4;15480:131;:::i;:::-;15472:139;;15370:248;;;:::o;15624:419::-;;15828:2;15817:9;15813:18;15805:26;;15877:9;15871:4;15867:20;15863:1;15852:9;15848:17;15841:47;15905:131;16031:4;15905:131;:::i;:::-;15897:139;;15795:248;;;:::o;16049:419::-;;16253:2;16242:9;16238:18;16230:26;;16302:9;16296:4;16292:20;16288:1;16277:9;16273:17;16266:47;16330:131;16456:4;16330:131;:::i;:::-;16322:139;;16220:248;;;:::o;16474:419::-;;16678:2;16667:9;16663:18;16655:26;;16727:9;16721:4;16717:20;16713:1;16702:9;16698:17;16691:47;16755:131;16881:4;16755:131;:::i;:::-;16747:139;;16645:248;;;:::o;16899:419::-;;17103:2;17092:9;17088:18;17080:26;;17152:9;17146:4;17142:20;17138:1;17127:9;17123:17;17116:47;17180:131;17306:4;17180:131;:::i;:::-;17172:139;;17070:248;;;:::o;17324:419::-;;17528:2;17517:9;17513:18;17505:26;;17577:9;17571:4;17567:20;17563:1;17552:9;17548:17;17541:47;17605:131;17731:4;17605:131;:::i;:::-;17597:139;;17495:248;;;:::o;17749:419::-;;17953:2;17942:9;17938:18;17930:26;;18002:9;17996:4;17992:20;17988:1;17977:9;17973:17;17966:47;18030:131;18156:4;18030:131;:::i;:::-;18022:139;;17920:248;;;:::o;18174:419::-;;18378:2;18367:9;18363:18;18355:26;;18427:9;18421:4;18417:20;18413:1;18402:9;18398:17;18391:47;18455:131;18581:4;18455:131;:::i;:::-;18447:139;;18345:248;;;:::o;18599:419::-;;18803:2;18792:9;18788:18;18780:26;;18852:9;18846:4;18842:20;18838:1;18827:9;18823:17;18816:47;18880:131;19006:4;18880:131;:::i;:::-;18872:139;;18770:248;;;:::o;19024:419::-;;19228:2;19217:9;19213:18;19205:26;;19277:9;19271:4;19267:20;19263:1;19252:9;19248:17;19241:47;19305:131;19431:4;19305:131;:::i;:::-;19297:139;;19195:248;;;:::o;19449:419::-;;19653:2;19642:9;19638:18;19630:26;;19702:9;19696:4;19692:20;19688:1;19677:9;19673:17;19666:47;19730:131;19856:4;19730:131;:::i;:::-;19722:139;;19620:248;;;:::o;19874:419::-;;20078:2;20067:9;20063:18;20055:26;;20127:9;20121:4;20117:20;20113:1;20102:9;20098:17;20091:47;20155:131;20281:4;20155:131;:::i;:::-;20147:139;;20045:248;;;:::o;20299:419::-;;20503:2;20492:9;20488:18;20480:26;;20552:9;20546:4;20542:20;20538:1;20527:9;20523:17;20516:47;20580:131;20706:4;20580:131;:::i;:::-;20572:139;;20470:248;;;:::o;20724:419::-;;20928:2;20917:9;20913:18;20905:26;;20977:9;20971:4;20967:20;20963:1;20952:9;20948:17;20941:47;21005:131;21131:4;21005:131;:::i;:::-;20997:139;;20895:248;;;:::o;21149:419::-;;21353:2;21342:9;21338:18;21330:26;;21402:9;21396:4;21392:20;21388:1;21377:9;21373:17;21366:47;21430:131;21556:4;21430:131;:::i;:::-;21422:139;;21320:248;;;:::o;21574:419::-;;21778:2;21767:9;21763:18;21755:26;;21827:9;21821:4;21817:20;21813:1;21802:9;21798:17;21791:47;21855:131;21981:4;21855:131;:::i;:::-;21847:139;;21745:248;;;:::o;21999:419::-;;22203:2;22192:9;22188:18;22180:26;;22252:9;22246:4;22242:20;22238:1;22227:9;22223:17;22216:47;22280:131;22406:4;22280:131;:::i;:::-;22272:139;;22170:248;;;:::o;22424:419::-;;22628:2;22617:9;22613:18;22605:26;;22677:9;22671:4;22667:20;22663:1;22652:9;22648:17;22641:47;22705:131;22831:4;22705:131;:::i;:::-;22697:139;;22595:248;;;:::o;22849:419::-;;23053:2;23042:9;23038:18;23030:26;;23102:9;23096:4;23092:20;23088:1;23077:9;23073:17;23066:47;23130:131;23256:4;23130:131;:::i;:::-;23122:139;;23020:248;;;:::o;23274:222::-;;23405:2;23394:9;23390:18;23382:26;;23418:71;23486:1;23475:9;23471:17;23462:6;23418:71;:::i;:::-;23372:124;;;;:::o;23502:214::-;;23629:2;23618:9;23614:18;23606:26;;23642:67;23706:1;23695:9;23691:17;23682:6;23642:67;:::i;:::-;23596:120;;;;:::o;23722:283::-;;23788:2;23782:9;23772:19;;23830:4;23822:6;23818:17;23937:6;23925:10;23922:22;23901:18;23889:10;23886:34;23883:62;23880:2;;;23948:18;;:::i;:::-;23880:2;23988:10;23984:2;23977:22;23762:243;;;;:::o;24011:311::-;;24178:18;24170:6;24167:30;24164:2;;;24200:18;;:::i;:::-;24164:2;24250:4;24242:6;24238:17;24230:25;;24310:4;24304;24300:15;24292:23;;24093:229;;;:::o;24328:132::-;;24418:3;24410:11;;24448:4;24443:3;24439:14;24431:22;;24400:60;;;:::o;24466:114::-;;24567:5;24561:12;24551:22;;24540:40;;;:::o;24586:99::-;;24672:5;24666:12;24656:22;;24645:40;;;:::o;24691:113::-;;24793:4;24788:3;24784:14;24776:22;;24766:38;;;:::o;24810:184::-;;24943:6;24938:3;24931:19;24983:4;24978:3;24974:14;24959:29;;24921:73;;;;:::o;25000:169::-;;25118:6;25113:3;25106:19;25158:4;25153:3;25149:14;25134:29;;25096:73;;;;:::o;25175:305::-;;25234:20;25252:1;25234:20;:::i;:::-;25229:25;;25268:20;25286:1;25268:20;:::i;:::-;25263:25;;25422:1;25354:66;25350:74;25347:1;25344:81;25341:2;;;25428:18;;:::i;:::-;25341:2;25472:1;25469;25465:9;25458:16;;25219:261;;;;:::o;25486:348::-;;25549:20;25567:1;25549:20;:::i;:::-;25544:25;;25583:20;25601:1;25583:20;:::i;:::-;25578:25;;25771:1;25703:66;25699:74;25696:1;25693:81;25688:1;25681:9;25674:17;25670:105;25667:2;;;25778:18;;:::i;:::-;25667:2;25826:1;25823;25819:9;25808:20;;25534:300;;;;:::o;25840:191::-;;25900:20;25918:1;25900:20;:::i;:::-;25895:25;;25934:20;25952:1;25934:20;:::i;:::-;25929:25;;25973:1;25970;25967:8;25964:2;;;25978:18;;:::i;:::-;25964:2;26023:1;26020;26016:9;26008:17;;25885:146;;;;:::o;26037:96::-;;26103:24;26121:5;26103:24;:::i;:::-;26092:35;;26082:51;;;:::o;26139:90::-;;26216:5;26209:13;26202:21;26191:32;;26181:48;;;:::o;26235:126::-;;26312:42;26305:5;26301:54;26290:65;;26280:81;;;:::o;26367:77::-;;26433:5;26422:16;;26412:32;;;:::o;26450:86::-;;26525:4;26518:5;26514:16;26503:27;;26493:43;;;:::o;26542:307::-;26610:1;26620:113;26634:6;26631:1;26628:13;26620:113;;;26719:1;26714:3;26710:11;26704:18;26700:1;26695:3;26691:11;26684:39;26656:2;26653:1;26649:10;26644:15;;26620:113;;;26751:6;26748:1;26745:13;26742:2;;;26831:1;26822:6;26817:3;26813:16;26806:27;26742:2;26591:258;;;;:::o;26855:171::-;;26917:24;26935:5;26917:24;:::i;:::-;26908:33;;26963:4;26956:5;26953:15;26950:2;;;26971:18;;:::i;:::-;26950:2;27018:1;27011:5;27007:13;27000:20;;26898:128;;;:::o;27032:320::-;;27113:1;27107:4;27103:12;27093:22;;27160:1;27154:4;27150:12;27181:18;27171:2;;27237:4;27229:6;27225:17;27215:27;;27171:2;27299;27291:6;27288:14;27268:18;27265:38;27262:2;;;27318:18;;:::i;:::-;27262:2;27083:269;;;;:::o;27358:233::-;;27420:24;27438:5;27420:24;:::i;:::-;27411:33;;27466:66;27459:5;27456:77;27453:2;;;27536:18;;:::i;:::-;27453:2;27583:1;27576:5;27572:13;27565:20;;27401:190;;;:::o;27597:180::-;27645:77;27642:1;27635:88;27742:4;27739:1;27732:15;27766:4;27763:1;27756:15;27783:180;27831:77;27828:1;27821:88;27928:4;27925:1;27918:15;27952:4;27949:1;27942:15;27969:180;28017:77;28014:1;28007:88;28114:4;28111:1;28104:15;28138:4;28135:1;28128:15;28155:102;;28247:2;28243:7;28238:2;28231:5;28227:14;28223:28;28213:38;;28203:54;;;:::o;28263:122::-;28336:24;28354:5;28336:24;:::i;:::-;28329:5;28326:35;28316:2;;28375:1;28372;28365:12;28316:2;28306:79;:::o;28391:122::-;28464:24;28482:5;28464:24;:::i;:::-;28457:5;28454:35;28444:2;;28503:1;28500;28493:12;28444:2;28434:79;:::o

Swarm Source

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