ETH Price: $3,299.24 (-3.30%)
Gas: 18 Gwei

Token

Heroes of Evermore (HOE)
 

Overview

Max Total Supply

10,000 HOE

Holders

2,036

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xmist.eth
Balance
4 HOE
0xf19b975ab5b1ab459ee989f1875c80fd24359b4e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Welcome Adventurer! Join us on [Discord](https://discord.gg/yZs7etuPmf)

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HeroesOfEvermore

Compiler Version
v0.8.4+commit.c7e474f2

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-08
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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;
        }
    }
}

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = '0123456789abcdef';

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return '0';
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return '0x00';
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = '0';
        buffer[1] = 'x';
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, 'Strings: hex length insufficient');
        return string(buffer);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, 'Address: insufficient balance');

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}('');
        require(success, 'Address: unable to send value, recipient may have reverted');
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, 'Address: low-level call failed');
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, 'Address: low-level call with value failed');
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, 'Address: insufficient balance for call');
        require(isContract(target), 'Address: call to non-contract');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, 'Address: low-level static call failed');
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), 'Address: static call to non-contract');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, 'Address: low-level delegate call failed');
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), 'Address: delegate call to non-contract');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), 'ERC721: balance query for the zero address');
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), 'ERC721: owner query for nonexistent token');
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, 'ERC721: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), 'ERC721: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), 'ERC721: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer');
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), 'ERC721: operator query for nonexistent token');
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, '');
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            'ERC721: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), 'ERC721: mint to the zero address');
        require(!_exists(tokenId), 'ERC721: token already minted');

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, 'ERC721: transfer of token that is not own');
        require(to != address(0), 'ERC721: transfer to the zero address');

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721: transfer to non ERC721Receiver implementer');
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), 'ERC721Enumerable: owner index out of bounds');
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), 'ERC721Enumerable: global index out of bounds');
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

pragma solidity ^0.8.0;

contract HeroesOfEvermore is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint256 public constant NFT_PRICE = 80000000000000000; // 0.08 ETH
    uint public constant MAX_NFT_PURCHASE = 20;
    uint256 public MAX_SUPPLY = 10000;
    bool public saleIsActive = false;

    string private _baseURIExtended;
    mapping(uint256 => string) _tokenURIs;
    mapping(address => bool) minted;
    mapping(address => uint256) purchased;

    modifier mintOnlyOnce() {
        require(!minted[_msgSender()], 'Can only mint once');
        minted[_msgSender()] = true;
        _;
    }

    constructor() ERC721('Heroes of Evermore', 'HOE') {}

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }


    function mintHero(uint numberOfTokens) public payable {
        require(purchased[msg.sender].add(numberOfTokens) <= MAX_NFT_PURCHASE, 'Can only mint up to 20 per address');
        require(saleIsActive, 'Sale is not active at the moment');
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0");
        require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Purchase would exceed max supply of Muds");
        require(numberOfTokens <= MAX_NFT_PURCHASE,"Can only mint up to 20 per purchase");
        require(NFT_PRICE.mul(numberOfTokens) == msg.value, "Sent ether value is incorrect");
        purchased[msg.sender] = purchased[msg.sender].add(numberOfTokens);
        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }

    function mintHeroForFree() public mintOnlyOnce {
        require(saleIsActive, 'Sale is not active at the moment');
        require(totalSupply().add(1) <= MAX_SUPPLY, 'Purchase would exceed max supply of Muds');
        _safeMint(msg.sender, totalSupply());
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintHero","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintHeroForFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600b556000600c60006101000a81548160ff0219169083151502179055503480156200003257600080fd5b506040518060400160405280601281526020017f4865726f6573206f6620457665726d6f726500000000000000000000000000008152506040518060400160405280600381526020017f484f4500000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b792919062000192565b508060019080519060200190620000d092919062000192565b5050506000620000e56200018a60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002a7565b600033905090565b828054620001a09062000242565b90600052602060002090601f016020900481019282620001c4576000855562000210565b82601f10620001df57805160ff191683800117855562000210565b8280016001018555821562000210579182015b828111156200020f578251825591602001919060010190620001f2565b5b5090506200021f919062000223565b5090565b5b808211156200023e57600081600090555060010162000224565b5090565b600060028204905060018216806200025b57607f821691505b6020821081141562000272576200027162000278565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6143c980620002b76000396000f3fe6080604052600436106101b75760003560e01c806355f804b3116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105c5578063e985e9c514610602578063eb8d24441461063f578063f2fde38b1461066a576101b7565b8063a22cb4651461055c578063b88d4fde14610585578063bdb9b3bc146105ae576101b7565b806370a08231116100c657806370a08231146104b2578063715018a6146104ef5780638da5cb5b1461050657806395d89b4114610531576101b7565b806355f804b3146104215780636352211e1461044a578063676dd56314610487576101b7565b806323b872dd1161015957806334918dfd1161013357806334918dfd1461038d5780633ccfd60b146103a457806342842e0e146103bb5780634f6ccce7146103e4576101b7565b806323b872dd146102fc5780632f745c591461032557806332cb6b0c14610362576101b7565b806306fdde031161019557806306fdde0314610240578063081812fc1461026b578063095ea7b3146102a857806318160ddd146102d1576101b7565b806301ffc9a7146101bc578063020b39cc146101f95780630606cb2914610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612f51565b610693565b6040516101f091906134d3565b60405180910390f35b34801561020557600080fd5b5061020e61070d565b60405161021b9190613830565b60405180910390f35b61023e60048036038101906102399190612fe4565b610712565b005b34801561024c57600080fd5b506102556109ff565b60405161026291906134ee565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612fe4565b610a91565b60405161029f919061346c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612f15565b610b16565b005b3480156102dd57600080fd5b506102e6610c2e565b6040516102f39190613830565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612e0f565b610c3b565b005b34801561033157600080fd5b5061034c60048036038101906103479190612f15565b610c9b565b6040516103599190613830565b60405180910390f35b34801561036e57600080fd5b50610377610d40565b6040516103849190613830565b60405180910390f35b34801561039957600080fd5b506103a2610d46565b005b3480156103b057600080fd5b506103b9610dee565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612e0f565b610eb9565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612fe4565b610ed9565b6040516104189190613830565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612fa3565b610f70565b005b34801561045657600080fd5b50610471600480360381019061046c9190612fe4565b611006565b60405161047e919061346c565b60405180910390f35b34801561049357600080fd5b5061049c6110b8565b6040516104a99190613830565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612daa565b6110c4565b6040516104e69190613830565b60405180910390f35b3480156104fb57600080fd5b5061050461117c565b005b34801561051257600080fd5b5061051b6112b9565b604051610528919061346c565b60405180910390f35b34801561053d57600080fd5b506105466112e3565b60405161055391906134ee565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190612ed9565b611375565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612e5e565b6114f6565b005b3480156105ba57600080fd5b506105c3611558565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612fe4565b61170c565b6040516105f991906134ee565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612dd3565b61187f565b60405161063691906134d3565b60405180910390f35b34801561064b57600080fd5b50610654611913565b60405161066191906134d3565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612daa565b611926565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610706575061070582611ad2565b5b9050919050565b601481565b601461076682601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bb490919063ffffffff16565b11156107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90613510565b60405180910390fd5b600c60009054906101000a900460ff166107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed90613810565b60405180910390fd5b60008111610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090613530565b60405180910390fd5b600b5461085682610848610c2e565b611bb490919063ffffffff16565b1115610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e906137f0565b60405180910390fd5b60148111156108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d290613630565b60405180910390fd5b346108f78267011c37937e080000611bca90919063ffffffff16565b14610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e906136b0565b60405180910390fd5b61098981601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bb490919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b818110156109fb576109e8336109e3610c2e565b611be0565b80806109f390613b43565b9150506109cf565b5050565b606060008054610a0e90613ae0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3a90613ae0565b8015610a875780601f10610a5c57610100808354040283529160200191610a87565b820191906000526020600020905b815481529060010190602001808311610a6a57829003601f168201915b5050505050905090565b6000610a9c82611bfe565b610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad2906136f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2182611006565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990613770565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb1611c6a565b73ffffffffffffffffffffffffffffffffffffffff161480610be05750610bdf81610bda611c6a565b61187f565b5b610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690613650565b60405180910390fd5b610c298383611c72565b505050565b6000600880549050905090565b610c4c610c46611c6a565b82611d2b565b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c82906137b0565b60405180910390fd5b610c96838383611e09565b505050565b6000610ca6836110c4565b8210610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613550565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b610d4e611c6a565b73ffffffffffffffffffffffffffffffffffffffff16610d6c6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613710565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610df6611c6a565b73ffffffffffffffffffffffffffffffffffffffff16610e146112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190613710565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb5573d6000803e3d6000fd5b5050565b610ed4838383604051806020016040528060008152506114f6565b505050565b6000610ee3610c2e565b8210610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b906137d0565b60405180910390fd5b60088281548110610f5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f78611c6a565b73ffffffffffffffffffffffffffffffffffffffff16610f966112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390613710565b60405180910390fd5b80600d9080519060200190611002929190612bce565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690613690565b60405180910390fd5b80915050919050565b67011c37937e08000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90613670565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611184611c6a565b73ffffffffffffffffffffffffffffffffffffffff166111a26112b9565b73ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613710565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112f290613ae0565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613ae0565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b61137d611c6a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906135f0565b60405180910390fd5b80600560006113f8611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114a5611c6a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ea91906134d3565b60405180910390a35050565b611507611501611c6a565b83611d2b565b611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906137b0565b60405180910390fd5b61155284848484612065565b50505050565b600f6000611564611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390613790565b60405180910390fd5b6001600f60006115fa611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c60009054906101000a900460ff1661169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190613810565b60405180910390fd5b600b546116b860016116aa610c2e565b611bb490919063ffffffff16565b11156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f0906137f0565b60405180910390fd5b61170a33611705610c2e565b611be0565b565b606061171782611bfe565b611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613750565b60405180910390fd5b6000600e6000848152602001908152602001600020805461177690613ae0565b80601f01602080910402602001604051908101604052809291908181526020018280546117a290613ae0565b80156117ef5780601f106117c4576101008083540402835291602001916117ef565b820191906000526020600020905b8154815290600101906020018083116117d257829003601f168201915b5050505050905060006118006120c1565b905060008151141561181657819250505061187a565b60008251111561184b578082604051602001611833929190613448565b6040516020818303038152906040529250505061187a565b8061185585612153565b604051602001611866929190613448565b604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b61192e611c6a565b73ffffffffffffffffffffffffffffffffffffffff1661194c6112b9565b73ffffffffffffffffffffffffffffffffffffffff16146119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613710565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990613590565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b9d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bad5750611bac82612300565b5b9050919050565b60008183611bc29190613915565b905092915050565b60008183611bd8919061399c565b905092915050565b611bfa82826040518060200160405280600081525061236a565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ce583611006565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d3682611bfe565b611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613610565b60405180910390fd5b6000611d8083611006565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611def57508373ffffffffffffffffffffffffffffffffffffffff16611dd784610a91565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e005750611dff818561187f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e2982611006565b73ffffffffffffffffffffffffffffffffffffffff1614611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690613730565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee6906135d0565b60405180910390fd5b611efa8383836123c5565b611f05600082611c72565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f5591906139f6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fac9190613915565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612070848484611e09565b61207c848484846124d9565b6120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290613570565b60405180910390fd5b50505050565b6060600d80546120d090613ae0565b80601f01602080910402602001604051908101604052809291908181526020018280546120fc90613ae0565b80156121495780601f1061211e57610100808354040283529160200191612149565b820191906000526020600020905b81548152906001019060200180831161212c57829003601f168201915b5050505050905090565b6060600082141561219b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122fb565b600082905060005b600082146121cd5780806121b690613b43565b915050600a826121c6919061396b565b91506121a3565b60008167ffffffffffffffff81111561220f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122415781602001600182028036833780820191505090505b5090505b600085146122f45760018261225a91906139f6565b9150600a856122699190613b8c565b60306122759190613915565b60f81b8183815181106122b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ed919061396b565b9450612245565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123748383612670565b61238160008484846124d9565b6123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790613570565b60405180910390fd5b505050565b6123d083838361283e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124135761240e81612843565b612452565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461245157612450838261288c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561249557612490816129f9565b6124d4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124d3576124d28282612b3c565b5b5b505050565b60006124fa8473ffffffffffffffffffffffffffffffffffffffff16612bbb565b15612663578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612523611c6a565b8786866040518563ffffffff1660e01b81526004016125459493929190613487565b602060405180830381600087803b15801561255f57600080fd5b505af192505050801561259057506040513d601f19601f8201168201806040525081019061258d9190612f7a565b60015b612613573d80600081146125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b5060008151141561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260290613570565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612668565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d7906136d0565b60405180910390fd5b6126e981611bfe565b15612729576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612720906135b0565b60405180910390fd5b612735600083836123c5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127859190613915565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612899846110c4565b6128a391906139f6565b9050600060076000848152602001908152602001600020549050818114612988576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a0d91906139f6565b9050600060096000848152602001908152602001600020549050600060088381548110612a63577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612aab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b47836110c4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612bda90613ae0565b90600052602060002090601f016020900481019282612bfc5760008555612c43565b82601f10612c1557805160ff1916838001178555612c43565b82800160010185558215612c43579182015b82811115612c42578251825591602001919060010190612c27565b5b509050612c509190612c54565b5090565b5b80821115612c6d576000816000905550600101612c55565b5090565b6000612c84612c7f84613870565b61384b565b905082815260208101848484011115612c9c57600080fd5b612ca7848285613a9e565b509392505050565b6000612cc2612cbd846138a1565b61384b565b905082815260208101848484011115612cda57600080fd5b612ce5848285613a9e565b509392505050565b600081359050612cfc81614337565b92915050565b600081359050612d118161434e565b92915050565b600081359050612d2681614365565b92915050565b600081519050612d3b81614365565b92915050565b600082601f830112612d5257600080fd5b8135612d62848260208601612c71565b91505092915050565b600082601f830112612d7c57600080fd5b8135612d8c848260208601612caf565b91505092915050565b600081359050612da48161437c565b92915050565b600060208284031215612dbc57600080fd5b6000612dca84828501612ced565b91505092915050565b60008060408385031215612de657600080fd5b6000612df485828601612ced565b9250506020612e0585828601612ced565b9150509250929050565b600080600060608486031215612e2457600080fd5b6000612e3286828701612ced565b9350506020612e4386828701612ced565b9250506040612e5486828701612d95565b9150509250925092565b60008060008060808587031215612e7457600080fd5b6000612e8287828801612ced565b9450506020612e9387828801612ced565b9350506040612ea487828801612d95565b925050606085013567ffffffffffffffff811115612ec157600080fd5b612ecd87828801612d41565b91505092959194509250565b60008060408385031215612eec57600080fd5b6000612efa85828601612ced565b9250506020612f0b85828601612d02565b9150509250929050565b60008060408385031215612f2857600080fd5b6000612f3685828601612ced565b9250506020612f4785828601612d95565b9150509250929050565b600060208284031215612f6357600080fd5b6000612f7184828501612d17565b91505092915050565b600060208284031215612f8c57600080fd5b6000612f9a84828501612d2c565b91505092915050565b600060208284031215612fb557600080fd5b600082013567ffffffffffffffff811115612fcf57600080fd5b612fdb84828501612d6b565b91505092915050565b600060208284031215612ff657600080fd5b600061300484828501612d95565b91505092915050565b61301681613a2a565b82525050565b61302581613a3c565b82525050565b6000613036826138d2565b61304081856138e8565b9350613050818560208601613aad565b61305981613c79565b840191505092915050565b600061306f826138dd565b61307981856138f9565b9350613089818560208601613aad565b61309281613c79565b840191505092915050565b60006130a8826138dd565b6130b2818561390a565b93506130c2818560208601613aad565b80840191505092915050565b60006130db6022836138f9565b91506130e682613c8a565b604082019050919050565b60006130fe6033836138f9565b915061310982613cd9565b604082019050919050565b6000613121602b836138f9565b915061312c82613d28565b604082019050919050565b60006131446032836138f9565b915061314f82613d77565b604082019050919050565b60006131676026836138f9565b915061317282613dc6565b604082019050919050565b600061318a601c836138f9565b915061319582613e15565b602082019050919050565b60006131ad6024836138f9565b91506131b882613e3e565b604082019050919050565b60006131d06019836138f9565b91506131db82613e8d565b602082019050919050565b60006131f3602c836138f9565b91506131fe82613eb6565b604082019050919050565b60006132166023836138f9565b915061322182613f05565b604082019050919050565b60006132396038836138f9565b915061324482613f54565b604082019050919050565b600061325c602a836138f9565b915061326782613fa3565b604082019050919050565b600061327f6029836138f9565b915061328a82613ff2565b604082019050919050565b60006132a2601d836138f9565b91506132ad82614041565b602082019050919050565b60006132c56020836138f9565b91506132d08261406a565b602082019050919050565b60006132e8602c836138f9565b91506132f382614093565b604082019050919050565b600061330b6020836138f9565b9150613316826140e2565b602082019050919050565b600061332e6029836138f9565b91506133398261410b565b604082019050919050565b6000613351602f836138f9565b915061335c8261415a565b604082019050919050565b60006133746021836138f9565b915061337f826141a9565b604082019050919050565b60006133976012836138f9565b91506133a2826141f8565b602082019050919050565b60006133ba6031836138f9565b91506133c582614221565b604082019050919050565b60006133dd602c836138f9565b91506133e882614270565b604082019050919050565b60006134006028836138f9565b915061340b826142bf565b604082019050919050565b60006134236020836138f9565b915061342e8261430e565b602082019050919050565b61344281613a94565b82525050565b6000613454828561309d565b9150613460828461309d565b91508190509392505050565b6000602082019050613481600083018461300d565b92915050565b600060808201905061349c600083018761300d565b6134a9602083018661300d565b6134b66040830185613439565b81810360608301526134c8818461302b565b905095945050505050565b60006020820190506134e8600083018461301c565b92915050565b600060208201905081810360008301526135088184613064565b905092915050565b60006020820190508181036000830152613529816130ce565b9050919050565b60006020820190508181036000830152613549816130f1565b9050919050565b6000602082019050818103600083015261356981613114565b9050919050565b6000602082019050818103600083015261358981613137565b9050919050565b600060208201905081810360008301526135a98161315a565b9050919050565b600060208201905081810360008301526135c98161317d565b9050919050565b600060208201905081810360008301526135e9816131a0565b9050919050565b60006020820190508181036000830152613609816131c3565b9050919050565b60006020820190508181036000830152613629816131e6565b9050919050565b6000602082019050818103600083015261364981613209565b9050919050565b600060208201905081810360008301526136698161322c565b9050919050565b600060208201905081810360008301526136898161324f565b9050919050565b600060208201905081810360008301526136a981613272565b9050919050565b600060208201905081810360008301526136c981613295565b9050919050565b600060208201905081810360008301526136e9816132b8565b9050919050565b60006020820190508181036000830152613709816132db565b9050919050565b60006020820190508181036000830152613729816132fe565b9050919050565b6000602082019050818103600083015261374981613321565b9050919050565b6000602082019050818103600083015261376981613344565b9050919050565b6000602082019050818103600083015261378981613367565b9050919050565b600060208201905081810360008301526137a98161338a565b9050919050565b600060208201905081810360008301526137c9816133ad565b9050919050565b600060208201905081810360008301526137e9816133d0565b9050919050565b60006020820190508181036000830152613809816133f3565b9050919050565b6000602082019050818103600083015261382981613416565b9050919050565b60006020820190506138456000830184613439565b92915050565b6000613855613866565b90506138618282613b12565b919050565b6000604051905090565b600067ffffffffffffffff82111561388b5761388a613c4a565b5b61389482613c79565b9050602081019050919050565b600067ffffffffffffffff8211156138bc576138bb613c4a565b5b6138c582613c79565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061392082613a94565b915061392b83613a94565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139605761395f613bbd565b5b828201905092915050565b600061397682613a94565b915061398183613a94565b92508261399157613990613bec565b5b828204905092915050565b60006139a782613a94565b91506139b283613a94565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139eb576139ea613bbd565b5b828202905092915050565b6000613a0182613a94565b9150613a0c83613a94565b925082821015613a1f57613a1e613bbd565b5b828203905092915050565b6000613a3582613a74565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613acb578082015181840152602081019050613ab0565b83811115613ada576000848401525b50505050565b60006002820490506001821680613af857607f821691505b60208210811415613b0c57613b0b613c1b565b5b50919050565b613b1b82613c79565b810181811067ffffffffffffffff82111715613b3a57613b39613c4a565b5b80604052505050565b6000613b4e82613a94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8157613b80613bbd565b5b600182019050919050565b6000613b9782613a94565b9150613ba283613a94565b925082613bb257613bb1613bec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e7420757020746f2032302070657220616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008201527f207468616e206f7220657175616c20746f203000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420757020746f2032302070657220707572636860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206f6e63650000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204d756473000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b61434081613a2a565b811461434b57600080fd5b50565b61435781613a3c565b811461436257600080fd5b50565b61436e81613a48565b811461437957600080fd5b50565b61438581613a94565b811461439057600080fd5b5056fea2646970667358221220dfedb7f49ffe0f370544649abcd60cc3e8f4d67d8735607bc8580f5f8466d26f64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806355f804b3116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105c5578063e985e9c514610602578063eb8d24441461063f578063f2fde38b1461066a576101b7565b8063a22cb4651461055c578063b88d4fde14610585578063bdb9b3bc146105ae576101b7565b806370a08231116100c657806370a08231146104b2578063715018a6146104ef5780638da5cb5b1461050657806395d89b4114610531576101b7565b806355f804b3146104215780636352211e1461044a578063676dd56314610487576101b7565b806323b872dd1161015957806334918dfd1161013357806334918dfd1461038d5780633ccfd60b146103a457806342842e0e146103bb5780634f6ccce7146103e4576101b7565b806323b872dd146102fc5780632f745c591461032557806332cb6b0c14610362576101b7565b806306fdde031161019557806306fdde0314610240578063081812fc1461026b578063095ea7b3146102a857806318160ddd146102d1576101b7565b806301ffc9a7146101bc578063020b39cc146101f95780630606cb2914610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612f51565b610693565b6040516101f091906134d3565b60405180910390f35b34801561020557600080fd5b5061020e61070d565b60405161021b9190613830565b60405180910390f35b61023e60048036038101906102399190612fe4565b610712565b005b34801561024c57600080fd5b506102556109ff565b60405161026291906134ee565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612fe4565b610a91565b60405161029f919061346c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612f15565b610b16565b005b3480156102dd57600080fd5b506102e6610c2e565b6040516102f39190613830565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612e0f565b610c3b565b005b34801561033157600080fd5b5061034c60048036038101906103479190612f15565b610c9b565b6040516103599190613830565b60405180910390f35b34801561036e57600080fd5b50610377610d40565b6040516103849190613830565b60405180910390f35b34801561039957600080fd5b506103a2610d46565b005b3480156103b057600080fd5b506103b9610dee565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612e0f565b610eb9565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612fe4565b610ed9565b6040516104189190613830565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612fa3565b610f70565b005b34801561045657600080fd5b50610471600480360381019061046c9190612fe4565b611006565b60405161047e919061346c565b60405180910390f35b34801561049357600080fd5b5061049c6110b8565b6040516104a99190613830565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612daa565b6110c4565b6040516104e69190613830565b60405180910390f35b3480156104fb57600080fd5b5061050461117c565b005b34801561051257600080fd5b5061051b6112b9565b604051610528919061346c565b60405180910390f35b34801561053d57600080fd5b506105466112e3565b60405161055391906134ee565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190612ed9565b611375565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612e5e565b6114f6565b005b3480156105ba57600080fd5b506105c3611558565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612fe4565b61170c565b6040516105f991906134ee565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612dd3565b61187f565b60405161063691906134d3565b60405180910390f35b34801561064b57600080fd5b50610654611913565b60405161066191906134d3565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612daa565b611926565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610706575061070582611ad2565b5b9050919050565b601481565b601461076682601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bb490919063ffffffff16565b11156107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90613510565b60405180910390fd5b600c60009054906101000a900460ff166107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed90613810565b60405180910390fd5b60008111610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090613530565b60405180910390fd5b600b5461085682610848610c2e565b611bb490919063ffffffff16565b1115610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e906137f0565b60405180910390fd5b60148111156108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d290613630565b60405180910390fd5b346108f78267011c37937e080000611bca90919063ffffffff16565b14610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e906136b0565b60405180910390fd5b61098981601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bb490919063ffffffff16565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b818110156109fb576109e8336109e3610c2e565b611be0565b80806109f390613b43565b9150506109cf565b5050565b606060008054610a0e90613ae0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3a90613ae0565b8015610a875780601f10610a5c57610100808354040283529160200191610a87565b820191906000526020600020905b815481529060010190602001808311610a6a57829003601f168201915b5050505050905090565b6000610a9c82611bfe565b610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad2906136f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2182611006565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990613770565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb1611c6a565b73ffffffffffffffffffffffffffffffffffffffff161480610be05750610bdf81610bda611c6a565b61187f565b5b610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690613650565b60405180910390fd5b610c298383611c72565b505050565b6000600880549050905090565b610c4c610c46611c6a565b82611d2b565b610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c82906137b0565b60405180910390fd5b610c96838383611e09565b505050565b6000610ca6836110c4565b8210610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613550565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b5481565b610d4e611c6a565b73ffffffffffffffffffffffffffffffffffffffff16610d6c6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613710565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610df6611c6a565b73ffffffffffffffffffffffffffffffffffffffff16610e146112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190613710565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb5573d6000803e3d6000fd5b5050565b610ed4838383604051806020016040528060008152506114f6565b505050565b6000610ee3610c2e565b8210610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b906137d0565b60405180910390fd5b60088281548110610f5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f78611c6a565b73ffffffffffffffffffffffffffffffffffffffff16610f966112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390613710565b60405180910390fd5b80600d9080519060200190611002929190612bce565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690613690565b60405180910390fd5b80915050919050565b67011c37937e08000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90613670565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611184611c6a565b73ffffffffffffffffffffffffffffffffffffffff166111a26112b9565b73ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613710565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112f290613ae0565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613ae0565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b61137d611c6a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906135f0565b60405180910390fd5b80600560006113f8611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114a5611c6a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ea91906134d3565b60405180910390a35050565b611507611501611c6a565b83611d2b565b611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906137b0565b60405180910390fd5b61155284848484612065565b50505050565b600f6000611564611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390613790565b60405180910390fd5b6001600f60006115fa611c6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c60009054906101000a900460ff1661169a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169190613810565b60405180910390fd5b600b546116b860016116aa610c2e565b611bb490919063ffffffff16565b11156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f0906137f0565b60405180910390fd5b61170a33611705610c2e565b611be0565b565b606061171782611bfe565b611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613750565b60405180910390fd5b6000600e6000848152602001908152602001600020805461177690613ae0565b80601f01602080910402602001604051908101604052809291908181526020018280546117a290613ae0565b80156117ef5780601f106117c4576101008083540402835291602001916117ef565b820191906000526020600020905b8154815290600101906020018083116117d257829003601f168201915b5050505050905060006118006120c1565b905060008151141561181657819250505061187a565b60008251111561184b578082604051602001611833929190613448565b6040516020818303038152906040529250505061187a565b8061185585612153565b604051602001611866929190613448565b604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b61192e611c6a565b73ffffffffffffffffffffffffffffffffffffffff1661194c6112b9565b73ffffffffffffffffffffffffffffffffffffffff16146119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613710565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990613590565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b9d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bad5750611bac82612300565b5b9050919050565b60008183611bc29190613915565b905092915050565b60008183611bd8919061399c565b905092915050565b611bfa82826040518060200160405280600081525061236a565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ce583611006565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d3682611bfe565b611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613610565b60405180910390fd5b6000611d8083611006565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611def57508373ffffffffffffffffffffffffffffffffffffffff16611dd784610a91565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e005750611dff818561187f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e2982611006565b73ffffffffffffffffffffffffffffffffffffffff1614611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690613730565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee6906135d0565b60405180910390fd5b611efa8383836123c5565b611f05600082611c72565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f5591906139f6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fac9190613915565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612070848484611e09565b61207c848484846124d9565b6120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290613570565b60405180910390fd5b50505050565b6060600d80546120d090613ae0565b80601f01602080910402602001604051908101604052809291908181526020018280546120fc90613ae0565b80156121495780601f1061211e57610100808354040283529160200191612149565b820191906000526020600020905b81548152906001019060200180831161212c57829003601f168201915b5050505050905090565b6060600082141561219b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122fb565b600082905060005b600082146121cd5780806121b690613b43565b915050600a826121c6919061396b565b91506121a3565b60008167ffffffffffffffff81111561220f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122415781602001600182028036833780820191505090505b5090505b600085146122f45760018261225a91906139f6565b9150600a856122699190613b8c565b60306122759190613915565b60f81b8183815181106122b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ed919061396b565b9450612245565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123748383612670565b61238160008484846124d9565b6123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790613570565b60405180910390fd5b505050565b6123d083838361283e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124135761240e81612843565b612452565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461245157612450838261288c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561249557612490816129f9565b6124d4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124d3576124d28282612b3c565b5b5b505050565b60006124fa8473ffffffffffffffffffffffffffffffffffffffff16612bbb565b15612663578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612523611c6a565b8786866040518563ffffffff1660e01b81526004016125459493929190613487565b602060405180830381600087803b15801561255f57600080fd5b505af192505050801561259057506040513d601f19601f8201168201806040525081019061258d9190612f7a565b60015b612613573d80600081146125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b5060008151141561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260290613570565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612668565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d7906136d0565b60405180910390fd5b6126e981611bfe565b15612729576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612720906135b0565b60405180910390fd5b612735600083836123c5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127859190613915565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612899846110c4565b6128a391906139f6565b9050600060076000848152602001908152602001600020549050818114612988576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a0d91906139f6565b9050600060096000848152602001908152602001600020549050600060088381548110612a63577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612aab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b47836110c4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612bda90613ae0565b90600052602060002090601f016020900481019282612bfc5760008555612c43565b82601f10612c1557805160ff1916838001178555612c43565b82800160010185558215612c43579182015b82811115612c42578251825591602001919060010190612c27565b5b509050612c509190612c54565b5090565b5b80821115612c6d576000816000905550600101612c55565b5090565b6000612c84612c7f84613870565b61384b565b905082815260208101848484011115612c9c57600080fd5b612ca7848285613a9e565b509392505050565b6000612cc2612cbd846138a1565b61384b565b905082815260208101848484011115612cda57600080fd5b612ce5848285613a9e565b509392505050565b600081359050612cfc81614337565b92915050565b600081359050612d118161434e565b92915050565b600081359050612d2681614365565b92915050565b600081519050612d3b81614365565b92915050565b600082601f830112612d5257600080fd5b8135612d62848260208601612c71565b91505092915050565b600082601f830112612d7c57600080fd5b8135612d8c848260208601612caf565b91505092915050565b600081359050612da48161437c565b92915050565b600060208284031215612dbc57600080fd5b6000612dca84828501612ced565b91505092915050565b60008060408385031215612de657600080fd5b6000612df485828601612ced565b9250506020612e0585828601612ced565b9150509250929050565b600080600060608486031215612e2457600080fd5b6000612e3286828701612ced565b9350506020612e4386828701612ced565b9250506040612e5486828701612d95565b9150509250925092565b60008060008060808587031215612e7457600080fd5b6000612e8287828801612ced565b9450506020612e9387828801612ced565b9350506040612ea487828801612d95565b925050606085013567ffffffffffffffff811115612ec157600080fd5b612ecd87828801612d41565b91505092959194509250565b60008060408385031215612eec57600080fd5b6000612efa85828601612ced565b9250506020612f0b85828601612d02565b9150509250929050565b60008060408385031215612f2857600080fd5b6000612f3685828601612ced565b9250506020612f4785828601612d95565b9150509250929050565b600060208284031215612f6357600080fd5b6000612f7184828501612d17565b91505092915050565b600060208284031215612f8c57600080fd5b6000612f9a84828501612d2c565b91505092915050565b600060208284031215612fb557600080fd5b600082013567ffffffffffffffff811115612fcf57600080fd5b612fdb84828501612d6b565b91505092915050565b600060208284031215612ff657600080fd5b600061300484828501612d95565b91505092915050565b61301681613a2a565b82525050565b61302581613a3c565b82525050565b6000613036826138d2565b61304081856138e8565b9350613050818560208601613aad565b61305981613c79565b840191505092915050565b600061306f826138dd565b61307981856138f9565b9350613089818560208601613aad565b61309281613c79565b840191505092915050565b60006130a8826138dd565b6130b2818561390a565b93506130c2818560208601613aad565b80840191505092915050565b60006130db6022836138f9565b91506130e682613c8a565b604082019050919050565b60006130fe6033836138f9565b915061310982613cd9565b604082019050919050565b6000613121602b836138f9565b915061312c82613d28565b604082019050919050565b60006131446032836138f9565b915061314f82613d77565b604082019050919050565b60006131676026836138f9565b915061317282613dc6565b604082019050919050565b600061318a601c836138f9565b915061319582613e15565b602082019050919050565b60006131ad6024836138f9565b91506131b882613e3e565b604082019050919050565b60006131d06019836138f9565b91506131db82613e8d565b602082019050919050565b60006131f3602c836138f9565b91506131fe82613eb6565b604082019050919050565b60006132166023836138f9565b915061322182613f05565b604082019050919050565b60006132396038836138f9565b915061324482613f54565b604082019050919050565b600061325c602a836138f9565b915061326782613fa3565b604082019050919050565b600061327f6029836138f9565b915061328a82613ff2565b604082019050919050565b60006132a2601d836138f9565b91506132ad82614041565b602082019050919050565b60006132c56020836138f9565b91506132d08261406a565b602082019050919050565b60006132e8602c836138f9565b91506132f382614093565b604082019050919050565b600061330b6020836138f9565b9150613316826140e2565b602082019050919050565b600061332e6029836138f9565b91506133398261410b565b604082019050919050565b6000613351602f836138f9565b915061335c8261415a565b604082019050919050565b60006133746021836138f9565b915061337f826141a9565b604082019050919050565b60006133976012836138f9565b91506133a2826141f8565b602082019050919050565b60006133ba6031836138f9565b91506133c582614221565b604082019050919050565b60006133dd602c836138f9565b91506133e882614270565b604082019050919050565b60006134006028836138f9565b915061340b826142bf565b604082019050919050565b60006134236020836138f9565b915061342e8261430e565b602082019050919050565b61344281613a94565b82525050565b6000613454828561309d565b9150613460828461309d565b91508190509392505050565b6000602082019050613481600083018461300d565b92915050565b600060808201905061349c600083018761300d565b6134a9602083018661300d565b6134b66040830185613439565b81810360608301526134c8818461302b565b905095945050505050565b60006020820190506134e8600083018461301c565b92915050565b600060208201905081810360008301526135088184613064565b905092915050565b60006020820190508181036000830152613529816130ce565b9050919050565b60006020820190508181036000830152613549816130f1565b9050919050565b6000602082019050818103600083015261356981613114565b9050919050565b6000602082019050818103600083015261358981613137565b9050919050565b600060208201905081810360008301526135a98161315a565b9050919050565b600060208201905081810360008301526135c98161317d565b9050919050565b600060208201905081810360008301526135e9816131a0565b9050919050565b60006020820190508181036000830152613609816131c3565b9050919050565b60006020820190508181036000830152613629816131e6565b9050919050565b6000602082019050818103600083015261364981613209565b9050919050565b600060208201905081810360008301526136698161322c565b9050919050565b600060208201905081810360008301526136898161324f565b9050919050565b600060208201905081810360008301526136a981613272565b9050919050565b600060208201905081810360008301526136c981613295565b9050919050565b600060208201905081810360008301526136e9816132b8565b9050919050565b60006020820190508181036000830152613709816132db565b9050919050565b60006020820190508181036000830152613729816132fe565b9050919050565b6000602082019050818103600083015261374981613321565b9050919050565b6000602082019050818103600083015261376981613344565b9050919050565b6000602082019050818103600083015261378981613367565b9050919050565b600060208201905081810360008301526137a98161338a565b9050919050565b600060208201905081810360008301526137c9816133ad565b9050919050565b600060208201905081810360008301526137e9816133d0565b9050919050565b60006020820190508181036000830152613809816133f3565b9050919050565b6000602082019050818103600083015261382981613416565b9050919050565b60006020820190506138456000830184613439565b92915050565b6000613855613866565b90506138618282613b12565b919050565b6000604051905090565b600067ffffffffffffffff82111561388b5761388a613c4a565b5b61389482613c79565b9050602081019050919050565b600067ffffffffffffffff8211156138bc576138bb613c4a565b5b6138c582613c79565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061392082613a94565b915061392b83613a94565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139605761395f613bbd565b5b828201905092915050565b600061397682613a94565b915061398183613a94565b92508261399157613990613bec565b5b828204905092915050565b60006139a782613a94565b91506139b283613a94565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139eb576139ea613bbd565b5b828202905092915050565b6000613a0182613a94565b9150613a0c83613a94565b925082821015613a1f57613a1e613bbd565b5b828203905092915050565b6000613a3582613a74565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613acb578082015181840152602081019050613ab0565b83811115613ada576000848401525b50505050565b60006002820490506001821680613af857607f821691505b60208210811415613b0c57613b0b613c1b565b5b50919050565b613b1b82613c79565b810181811067ffffffffffffffff82111715613b3a57613b39613c4a565b5b80604052505050565b6000613b4e82613a94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8157613b80613bbd565b5b600182019050919050565b6000613b9782613a94565b9150613ba283613a94565b925082613bb257613bb1613bec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e206f6e6c79206d696e7420757020746f2032302070657220616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008201527f207468616e206f7220657175616c20746f203000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420757020746f2032302070657220707572636860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206f6e63650000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204d756473000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b61434081613a2a565b811461434b57600080fd5b50565b61435781613a3c565b811461436257600080fd5b50565b61436e81613a48565b811461437957600080fd5b50565b61438581613a94565b811461439057600080fd5b5056fea2646970667358221220dfedb7f49ffe0f370544649abcd60cc3e8f4d67d8735607bc8580f5f8466d26f64736f6c63430008040033

Deployed Bytecode Sourcemap

49748:3224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43573:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49981:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50740:831;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31551:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32999:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32522:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44213:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33889:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43881:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50030:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50490:89;;;;;;;;;;;;;:::i;:::-;;50587:143;;;;;;;;;;;;;:::i;:::-;;34299:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44403:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52059:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31245:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49909:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30975:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28798:148;;;;;;;;;;;;;:::i;:::-;;28147:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31720:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33292:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34555:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51579:268;;;;;;;;;;;;;:::i;:::-;;52176:793;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33658:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50070:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29101:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43573:224;43675:4;43714:35;43699:50;;;:11;:50;;;;:90;;;;43753:36;43777:11;43753:23;:36::i;:::-;43699:90;43692:97;;43573:224;;;:::o;49981:42::-;50021:2;49981:42;:::o;50740:831::-;50021:2;50813:41;50839:14;50813:9;:21;50823:10;50813:21;;;;;;;;;;;;;;;;:25;;:41;;;;:::i;:::-;:61;;50805:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;50932:12;;;;;;;;;;;50924:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51017:1;51000:14;:18;50992:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;51130:10;;51093:33;51111:14;51093:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;51085:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;50021:2;51204:14;:34;;51196:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51329:9;51296:29;51310:14;49945:17;51296:13;;:29;;;;:::i;:::-;:42;51288:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;51407:41;51433:14;51407:9;:21;51417:10;51407:21;;;;;;;;;;;;;;;;:25;;:41;;;;:::i;:::-;51383:9;:21;51393:10;51383:21;;;;;;;;;;;;;;;:65;;;;51464:6;51459:105;51480:14;51476:1;:18;51459:105;;;51516:36;51526:10;51538:13;:11;:13::i;:::-;51516:9;:36::i;:::-;51496:3;;;;;:::i;:::-;;;;51459:105;;;;50740:831;:::o;31551:100::-;31605:13;31638:5;31631:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31551:100;:::o;32999:221::-;33075:7;33103:16;33111:7;33103;:16::i;:::-;33095:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33188:15;:24;33204:7;33188:24;;;;;;;;;;;;;;;;;;;;;33181:31;;32999:221;;;:::o;32522:411::-;32603:13;32619:23;32634:7;32619:14;:23::i;:::-;32603:39;;32667:5;32661:11;;:2;:11;;;;32653:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32761:5;32745:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32770:37;32787:5;32794:12;:10;:12::i;:::-;32770:16;:37::i;:::-;32745:62;32723:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32904:21;32913:2;32917:7;32904:8;:21::i;:::-;32522:411;;;:::o;44213:113::-;44274:7;44301:10;:17;;;;44294:24;;44213:113;:::o;33889:339::-;34084:41;34103:12;:10;:12::i;:::-;34117:7;34084:18;:41::i;:::-;34076:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34192:28;34202:4;34208:2;34212:7;34192:9;:28::i;:::-;33889:339;;;:::o;43881:256::-;43978:7;44014:23;44031:5;44014:16;:23::i;:::-;44006:5;:31;43998:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44103:12;:19;44116:5;44103:19;;;;;;;;;;;;;;;:26;44123:5;44103:26;;;;;;;;;;;;44096:33;;43881:256;;;;:::o;50030:33::-;;;;:::o;50490:89::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50559:12:::1;;;;;;;;;;;50558:13;50543:12;;:28;;;;;;;;;;;;;;;;;;50490:89::o:0;50587:143::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50635:15:::1;50653:21;50635:39;;50693:10;50685:28;;:37;50714:7;50685:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;28438:1;50587:143::o:0;34299:185::-;34437:39;34454:4;34460:2;34464:7;34437:39;;;;;;;;;;;;:16;:39::i;:::-;34299:185;;;:::o;44403:233::-;44478:7;44514:30;:28;:30::i;:::-;44506:5;:38;44498:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44611:10;44622:5;44611:17;;;;;;;;;;;;;;;;;;;;;;;;44604:24;;44403:233;;;:::o;52059:109::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52152:8:::1;52133:16;:27;;;;;;;;;;;;:::i;:::-;;52059:109:::0;:::o;31245:239::-;31317:7;31337:13;31353:7;:16;31361:7;31353:16;;;;;;;;;;;;;;;;;;;;;31337:32;;31405:1;31388:19;;:5;:19;;;;31380:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31471:5;31464:12;;;31245:239;;;:::o;49909:53::-;49945:17;49909:53;:::o;30975:208::-;31047:7;31092:1;31075:19;;:5;:19;;;;31067:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31159:9;:16;31169:5;31159:16;;;;;;;;;;;;;;;;31152:23;;30975:208;;;:::o;28798:148::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28905:1:::1;28868:40;;28889:6;;;;;;;;;;;28868:40;;;;;;;;;;;;28936:1;28919:6;;:19;;;;;;;;;;;;;;;;;;28798:148::o:0;28147:87::-;28193:7;28220:6;;;;;;;;;;;28213:13;;28147:87;:::o;31720:104::-;31776:13;31809:7;31802:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31720:104;:::o;33292:295::-;33407:12;:10;:12::i;:::-;33395:24;;:8;:24;;;;33387:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33507:8;33462:18;:32;33481:12;:10;:12::i;:::-;33462:32;;;;;;;;;;;;;;;:42;33495:8;33462:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33560:8;33531:48;;33546:12;:10;:12::i;:::-;33531:48;;;33570:8;33531:48;;;;;;:::i;:::-;;;;;;;;33292:295;;:::o;34555:328::-;34730:41;34749:12;:10;:12::i;:::-;34763:7;34730:18;:41::i;:::-;34722:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34836:39;34850:4;34856:2;34860:7;34869:5;34836:13;:39::i;:::-;34555:328;;;;:::o;51579:268::-;50321:6;:20;50328:12;:10;:12::i;:::-;50321:20;;;;;;;;;;;;;;;;;;;;;;;;;50320:21;50312:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50398:4;50375:6;:20;50382:12;:10;:12::i;:::-;50375:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;51645:12:::1;;;;;;;;;;;51637:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51737:10;;51713:20;51731:1;51713:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;:34;;51705:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;51803:36;51813:10;51825:13;:11;:13::i;:::-;51803:9;:36::i;:::-;51579:268::o:0;52176:793::-;52249:13;52283:16;52291:7;52283;:16::i;:::-;52275:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52364:23;52390:10;:19;52401:7;52390:19;;;;;;;;;;;52364:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52420:18;52441:10;:8;:10::i;:::-;52420:31;;52549:1;52533:4;52527:18;:23;52523:72;;;52574:9;52567:16;;;;;;52523:72;52725:1;52705:9;52699:23;:27;52695:108;;;52774:4;52780:9;52757:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52743:48;;;;;;52695:108;52935:4;52941:18;:7;:16;:18::i;:::-;52918:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52904:57;;;;52176:793;;;;:::o;33658:164::-;33755:4;33779:18;:25;33798:5;33779:25;;;;;;;;;;;;;;;:35;33805:8;33779:35;;;;;;;;;;;;;;;;;;;;;;;;;33772:42;;33658:164;;;;:::o;50070:32::-;;;;;;;;;;;;;:::o;29101:244::-;28378:12;:10;:12::i;:::-;28367:23;;:7;:5;:7::i;:::-;:23;;;28359:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29210:1:::1;29190:22;;:8;:22;;;;29182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29300:8;29271:38;;29292:6;;;;;;;;;;;29271:38;;;;;;;;;;;;29329:8;29320:6;;:17;;;;;;;;;;;;;;;;;;29101:244:::0;:::o;30606:305::-;30708:4;30760:25;30745:40;;;:11;:40;;;;:105;;;;30817:33;30802:48;;;:11;:48;;;;30745:105;:158;;;;30867:36;30891:11;30867:23;:36::i;:::-;30745:158;30725:178;;30606:305;;;:::o;2763:98::-;2821:7;2852:1;2848;:5;;;;:::i;:::-;2841:12;;2763:98;;;;:::o;3501:::-;3559:7;3590:1;3586;:5;;;;:::i;:::-;3579:12;;3501:98;;;;:::o;37377:110::-;37453:26;37463:2;37467:7;37453:26;;;;;;;;;;;;:9;:26::i;:::-;37377:110;;:::o;36393:127::-;36458:4;36510:1;36482:30;;:7;:16;36490:7;36482:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36475:37;;36393:127;;;:::o;26765:98::-;26818:7;26845:10;26838:17;;26765:98;:::o;40375:174::-;40477:2;40450:15;:24;40466:7;40450:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40533:7;40529:2;40495:46;;40504:23;40519:7;40504:14;:23::i;:::-;40495:46;;;;;;;;;;;;40375:174;;:::o;36687:348::-;36780:4;36805:16;36813:7;36805;:16::i;:::-;36797:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36881:13;36897:23;36912:7;36897:14;:23::i;:::-;36881:39;;36950:5;36939:16;;:7;:16;;;:51;;;;36983:7;36959:31;;:20;36971:7;36959:11;:20::i;:::-;:31;;;36939:51;:87;;;;36994:32;37011:5;37018:7;36994:16;:32::i;:::-;36939:87;36931:96;;;36687:348;;;;:::o;39679:578::-;39838:4;39811:31;;:23;39826:7;39811:14;:23::i;:::-;:31;;;39803:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39921:1;39907:16;;:2;:16;;;;39899:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39977:39;39998:4;40004:2;40008:7;39977:20;:39::i;:::-;40081:29;40098:1;40102:7;40081:8;:29::i;:::-;40142:1;40123:9;:15;40133:4;40123:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40171:1;40154:9;:13;40164:2;40154:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40202:2;40183:7;:16;40191:7;40183:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40241:7;40237:2;40222:27;;40231:4;40222:27;;;;;;;;;;;;39679:578;;;:::o;35765:315::-;35922:28;35932:4;35938:2;35942:7;35922:9;:28::i;:::-;35969:48;35992:4;35998:2;36002:7;36011:5;35969:22;:48::i;:::-;35961:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35765:315;;;;:::o;51855:117::-;51915:13;51948:16;51941:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51855:117;:::o;7404:723::-;7460:13;7690:1;7681:5;:10;7677:53;;;7708:10;;;;;;;;;;;;;;;;;;;;;7677:53;7740:12;7755:5;7740:20;;7771:14;7796:78;7811:1;7803:4;:9;7796:78;;7829:8;;;;;:::i;:::-;;;;7860:2;7852:10;;;;;:::i;:::-;;;7796:78;;;7884:19;7916:6;7906:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7884:39;;7934:154;7950:1;7941:5;:10;7934:154;;7978:1;7968:11;;;;;:::i;:::-;;;8045:2;8037:5;:10;;;;:::i;:::-;8024:2;:24;;;;:::i;:::-;8011:39;;7994:6;8001;7994:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;8074:2;8065:11;;;;;:::i;:::-;;;7934:154;;;8112:6;8098:21;;;;;7404:723;;;;:::o;19751:157::-;19836:4;19875:25;19860:40;;;:11;:40;;;;19853:47;;19751:157;;;:::o;37714:321::-;37844:18;37850:2;37854:7;37844:5;:18::i;:::-;37895:54;37926:1;37930:2;37934:7;37943:5;37895:22;:54::i;:::-;37873:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37714:321;;;:::o;45249:589::-;45393:45;45420:4;45426:2;45430:7;45393:26;:45::i;:::-;45471:1;45455:18;;:4;:18;;;45451:187;;;45490:40;45522:7;45490:31;:40::i;:::-;45451:187;;;45560:2;45552:10;;:4;:10;;;45548:90;;45579:47;45612:4;45618:7;45579:32;:47::i;:::-;45548:90;45451:187;45666:1;45652:16;;:2;:16;;;45648:183;;;45685:45;45722:7;45685:36;:45::i;:::-;45648:183;;;45758:4;45752:10;;:2;:10;;;45748:83;;45779:40;45807:2;45811:7;45779:27;:40::i;:::-;45748:83;45648:183;45249:589;;;:::o;41114:872::-;41269:4;41290:15;:2;:13;;;:15::i;:::-;41286:693;;;41342:2;41326:36;;;41363:12;:10;:12::i;:::-;41377:4;41383:7;41392:5;41326:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41322:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41589:1;41572:6;:13;:18;41568:341;;;41615:60;;;;;;;;;;:::i;:::-;;;;;;;;41568:341;41859:6;41853:13;41844:6;41840:2;41836:15;41829:38;41322:602;41459:45;;;41449:55;;;:6;:55;;;;41442:62;;;;;41286:693;41963:4;41956:11;;41114:872;;;;;;;:::o;38371:382::-;38465:1;38451:16;;:2;:16;;;;38443:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38524:16;38532:7;38524;:16::i;:::-;38523:17;38515:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38586:45;38615:1;38619:2;38623:7;38586:20;:45::i;:::-;38661:1;38644:9;:13;38654:2;38644:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38692:2;38673:7;:16;38681:7;38673:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38737:7;38733:2;38712:33;;38729:1;38712:33;;;;;;;;;;;;38371:382;;:::o;42599:126::-;;;;:::o;46561:164::-;46665:10;:17;;;;46638:15;:24;46654:7;46638:24;;;;;;;;;;;:44;;;;46693:10;46709:7;46693:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46561:164;:::o;47352:988::-;47618:22;47668:1;47643:22;47660:4;47643:16;:22::i;:::-;:26;;;;:::i;:::-;47618:51;;47680:18;47701:17;:26;47719:7;47701:26;;;;;;;;;;;;47680:47;;47848:14;47834:10;:28;47830:328;;47879:19;47901:12;:18;47914:4;47901:18;;;;;;;;;;;;;;;:34;47920:14;47901:34;;;;;;;;;;;;47879:56;;47985:11;47952:12;:18;47965:4;47952:18;;;;;;;;;;;;;;;:30;47971:10;47952:30;;;;;;;;;;;:44;;;;48102:10;48069:17;:30;48087:11;48069:30;;;;;;;;;;;:43;;;;47830:328;;48254:17;:26;48272:7;48254:26;;;;;;;;;;;48247:33;;;48298:12;:18;48311:4;48298:18;;;;;;;;;;;;;;;:34;48317:14;48298:34;;;;;;;;;;;48291:41;;;47352:988;;;;:::o;48635:1079::-;48888:22;48933:1;48913:10;:17;;;;:21;;;;:::i;:::-;48888:46;;48945:18;48966:15;:24;48982:7;48966:24;;;;;;;;;;;;48945:45;;49317:19;49339:10;49350:14;49339:26;;;;;;;;;;;;;;;;;;;;;;;;49317:48;;49403:11;49378:10;49389;49378:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;49514:10;49483:15;:28;49499:11;49483:28;;;;;;;;;;;:41;;;;49655:15;:24;49671:7;49655:24;;;;;;;;;;;49648:31;;;49690:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48635:1079;;;;:::o;46139:221::-;46224:14;46241:20;46258:2;46241:16;:20::i;:::-;46224:37;;46299:7;46272:12;:16;46285:2;46272:16;;;;;;;;;;;;;;;:24;46289:6;46272:24;;;;;;;;;;;:34;;;;46346:6;46317:17;:26;46335:7;46317:26;;;;;;;;;;;:35;;;;46139:221;;;:::o;9867:444::-;9927:4;10135:12;10259:7;10247:20;10239:28;;10302:1;10295:4;:8;10288:15;;;9867:444;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:366::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9822:220;;;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10194:220;;;:::o;10420:366::-;10562:3;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10659:93;10748:3;10659:93;:::i;:::-;10777:2;10772:3;10768:12;10761:19;;10566:220;;;:::o;10792:366::-;10934:3;10955:67;11019:2;11014:3;10955:67;:::i;:::-;10948:74;;11031:93;11120:3;11031:93;:::i;:::-;11149:2;11144:3;11140:12;11133:19;;10938:220;;;:::o;11164:366::-;11306:3;11327:67;11391:2;11386:3;11327:67;:::i;:::-;11320:74;;11403:93;11492:3;11403:93;:::i;:::-;11521:2;11516:3;11512:12;11505:19;;11310:220;;;:::o;11536:366::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11682:220;;;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;12054:220;;;:::o;12280:366::-;12422:3;12443:67;12507:2;12502:3;12443:67;:::i;:::-;12436:74;;12519:93;12608:3;12519:93;:::i;:::-;12637:2;12632:3;12628:12;12621:19;;12426:220;;;:::o;12652:366::-;12794:3;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12891:93;12980:3;12891:93;:::i;:::-;13009:2;13004:3;13000:12;12993:19;;12798:220;;;:::o;13024:366::-;13166:3;13187:67;13251:2;13246:3;13187:67;:::i;:::-;13180:74;;13263:93;13352:3;13263:93;:::i;:::-;13381:2;13376:3;13372:12;13365:19;;13170:220;;;:::o;13396:366::-;13538:3;13559:67;13623:2;13618:3;13559:67;:::i;:::-;13552:74;;13635:93;13724:3;13635:93;:::i;:::-;13753:2;13748:3;13744:12;13737:19;;13542:220;;;:::o;13768:366::-;13910:3;13931:67;13995:2;13990:3;13931:67;:::i;:::-;13924:74;;14007:93;14096:3;14007:93;:::i;:::-;14125:2;14120:3;14116:12;14109:19;;13914:220;;;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14286:220;;;:::o;14512:366::-;14654:3;14675:67;14739:2;14734:3;14675:67;:::i;:::-;14668:74;;14751:93;14840:3;14751:93;:::i;:::-;14869:2;14864:3;14860:12;14853:19;;14658:220;;;:::o;14884:366::-;15026:3;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15123:93;15212:3;15123:93;:::i;:::-;15241:2;15236:3;15232:12;15225:19;;15030:220;;;:::o;15256:366::-;15398:3;15419:67;15483:2;15478:3;15419:67;:::i;:::-;15412:74;;15495:93;15584:3;15495:93;:::i;:::-;15613:2;15608:3;15604:12;15597:19;;15402:220;;;:::o;15628:366::-;15770:3;15791:67;15855:2;15850:3;15791:67;:::i;:::-;15784:74;;15867:93;15956:3;15867:93;:::i;:::-;15985:2;15980:3;15976:12;15969:19;;15774:220;;;:::o;16000:366::-;16142:3;16163:67;16227:2;16222:3;16163:67;:::i;:::-;16156:74;;16239:93;16328:3;16239:93;:::i;:::-;16357:2;16352:3;16348:12;16341:19;;16146:220;;;:::o;16372:366::-;16514:3;16535:67;16599:2;16594:3;16535:67;:::i;:::-;16528:74;;16611:93;16700:3;16611:93;:::i;:::-;16729:2;16724:3;16720:12;16713:19;;16518:220;;;:::o;16744:118::-;16831:24;16849:5;16831:24;:::i;:::-;16826:3;16819:37;16809:53;;:::o;16868:435::-;17048:3;17070:95;17161:3;17152:6;17070:95;:::i;:::-;17063:102;;17182:95;17273:3;17264:6;17182:95;:::i;:::-;17175:102;;17294:3;17287:10;;17052:251;;;;;:::o;17309:222::-;17402:4;17440:2;17429:9;17425:18;17417:26;;17453:71;17521:1;17510:9;17506:17;17497:6;17453:71;:::i;:::-;17407:124;;;;:::o;17537:640::-;17732:4;17770:3;17759:9;17755:19;17747:27;;17784:71;17852:1;17841:9;17837:17;17828:6;17784:71;:::i;:::-;17865:72;17933:2;17922:9;17918:18;17909:6;17865:72;:::i;:::-;17947;18015:2;18004:9;18000:18;17991:6;17947:72;:::i;:::-;18066:9;18060:4;18056:20;18051:2;18040:9;18036:18;18029:48;18094:76;18165:4;18156:6;18094:76;:::i;:::-;18086:84;;17737:440;;;;;;;:::o;18183:210::-;18270:4;18308:2;18297:9;18293:18;18285:26;;18321:65;18383:1;18372:9;18368:17;18359:6;18321:65;:::i;:::-;18275:118;;;;:::o;18399:313::-;18512:4;18550:2;18539:9;18535:18;18527:26;;18599:9;18593:4;18589:20;18585:1;18574:9;18570:17;18563:47;18627:78;18700:4;18691:6;18627:78;:::i;:::-;18619:86;;18517:195;;;;:::o;18718:419::-;18884:4;18922:2;18911:9;18907:18;18899:26;;18971:9;18965:4;18961:20;18957:1;18946:9;18942:17;18935:47;18999:131;19125:4;18999:131;:::i;:::-;18991:139;;18889:248;;;:::o;19143:419::-;19309:4;19347:2;19336:9;19332:18;19324:26;;19396:9;19390:4;19386:20;19382:1;19371:9;19367:17;19360:47;19424:131;19550:4;19424:131;:::i;:::-;19416:139;;19314:248;;;:::o;19568:419::-;19734:4;19772:2;19761:9;19757:18;19749:26;;19821:9;19815:4;19811:20;19807:1;19796:9;19792:17;19785:47;19849:131;19975:4;19849:131;:::i;:::-;19841:139;;19739:248;;;:::o;19993:419::-;20159:4;20197:2;20186:9;20182:18;20174:26;;20246:9;20240:4;20236:20;20232:1;20221:9;20217:17;20210:47;20274:131;20400:4;20274:131;:::i;:::-;20266:139;;20164:248;;;:::o;20418:419::-;20584:4;20622:2;20611:9;20607:18;20599:26;;20671:9;20665:4;20661:20;20657:1;20646:9;20642:17;20635:47;20699:131;20825:4;20699:131;:::i;:::-;20691:139;;20589:248;;;:::o;20843:419::-;21009:4;21047:2;21036:9;21032:18;21024:26;;21096:9;21090:4;21086:20;21082:1;21071:9;21067:17;21060:47;21124:131;21250:4;21124:131;:::i;:::-;21116:139;;21014:248;;;:::o;21268:419::-;21434:4;21472:2;21461:9;21457:18;21449:26;;21521:9;21515:4;21511:20;21507:1;21496:9;21492:17;21485:47;21549:131;21675:4;21549:131;:::i;:::-;21541:139;;21439:248;;;:::o;21693:419::-;21859:4;21897:2;21886:9;21882:18;21874:26;;21946:9;21940:4;21936:20;21932:1;21921:9;21917:17;21910:47;21974:131;22100:4;21974:131;:::i;:::-;21966:139;;21864:248;;;:::o;22118:419::-;22284:4;22322:2;22311:9;22307:18;22299:26;;22371:9;22365:4;22361:20;22357:1;22346:9;22342:17;22335:47;22399:131;22525:4;22399:131;:::i;:::-;22391:139;;22289:248;;;:::o;22543:419::-;22709:4;22747:2;22736:9;22732:18;22724:26;;22796:9;22790:4;22786:20;22782:1;22771:9;22767:17;22760:47;22824:131;22950:4;22824:131;:::i;:::-;22816:139;;22714:248;;;:::o;22968:419::-;23134:4;23172:2;23161:9;23157:18;23149:26;;23221:9;23215:4;23211:20;23207:1;23196:9;23192:17;23185:47;23249:131;23375:4;23249:131;:::i;:::-;23241:139;;23139:248;;;:::o;23393:419::-;23559:4;23597:2;23586:9;23582:18;23574:26;;23646:9;23640:4;23636:20;23632:1;23621:9;23617:17;23610:47;23674:131;23800:4;23674:131;:::i;:::-;23666:139;;23564:248;;;:::o;23818:419::-;23984:4;24022:2;24011:9;24007:18;23999:26;;24071:9;24065:4;24061:20;24057:1;24046:9;24042:17;24035:47;24099:131;24225:4;24099:131;:::i;:::-;24091:139;;23989:248;;;:::o;24243:419::-;24409:4;24447:2;24436:9;24432:18;24424:26;;24496:9;24490:4;24486:20;24482:1;24471:9;24467:17;24460:47;24524:131;24650:4;24524:131;:::i;:::-;24516:139;;24414:248;;;:::o;24668:419::-;24834:4;24872:2;24861:9;24857:18;24849:26;;24921:9;24915:4;24911:20;24907:1;24896:9;24892:17;24885:47;24949:131;25075:4;24949:131;:::i;:::-;24941:139;;24839:248;;;:::o;25093:419::-;25259:4;25297:2;25286:9;25282:18;25274:26;;25346:9;25340:4;25336:20;25332:1;25321:9;25317:17;25310:47;25374:131;25500:4;25374:131;:::i;:::-;25366:139;;25264:248;;;:::o;25518:419::-;25684:4;25722:2;25711:9;25707:18;25699:26;;25771:9;25765:4;25761:20;25757:1;25746:9;25742:17;25735:47;25799:131;25925:4;25799:131;:::i;:::-;25791:139;;25689:248;;;:::o;25943:419::-;26109:4;26147:2;26136:9;26132:18;26124:26;;26196:9;26190:4;26186:20;26182:1;26171:9;26167:17;26160:47;26224:131;26350:4;26224:131;:::i;:::-;26216:139;;26114:248;;;:::o;26368:419::-;26534:4;26572:2;26561:9;26557:18;26549:26;;26621:9;26615:4;26611:20;26607:1;26596:9;26592:17;26585:47;26649:131;26775:4;26649:131;:::i;:::-;26641:139;;26539:248;;;:::o;26793:419::-;26959:4;26997:2;26986:9;26982:18;26974:26;;27046:9;27040:4;27036:20;27032:1;27021:9;27017:17;27010:47;27074:131;27200:4;27074:131;:::i;:::-;27066:139;;26964:248;;;:::o;27218:419::-;27384:4;27422:2;27411:9;27407:18;27399:26;;27471:9;27465:4;27461:20;27457:1;27446:9;27442:17;27435:47;27499:131;27625:4;27499:131;:::i;:::-;27491:139;;27389:248;;;:::o;27643:419::-;27809:4;27847:2;27836:9;27832:18;27824:26;;27896:9;27890:4;27886:20;27882:1;27871:9;27867:17;27860:47;27924:131;28050:4;27924:131;:::i;:::-;27916:139;;27814:248;;;:::o;28068:419::-;28234:4;28272:2;28261:9;28257:18;28249:26;;28321:9;28315:4;28311:20;28307:1;28296:9;28292:17;28285:47;28349:131;28475:4;28349:131;:::i;:::-;28341:139;;28239:248;;;:::o;28493:419::-;28659:4;28697:2;28686:9;28682:18;28674:26;;28746:9;28740:4;28736:20;28732:1;28721:9;28717:17;28710:47;28774:131;28900:4;28774:131;:::i;:::-;28766:139;;28664:248;;;:::o;28918:419::-;29084:4;29122:2;29111:9;29107:18;29099:26;;29171:9;29165:4;29161:20;29157:1;29146:9;29142:17;29135:47;29199:131;29325:4;29199:131;:::i;:::-;29191:139;;29089:248;;;:::o;29343:222::-;29436:4;29474:2;29463:9;29459:18;29451:26;;29487:71;29555:1;29544:9;29540:17;29531:6;29487:71;:::i;:::-;29441:124;;;;:::o;29571:129::-;29605:6;29632:20;;:::i;:::-;29622:30;;29661:33;29689:4;29681:6;29661:33;:::i;:::-;29612:88;;;:::o;29706:75::-;29739:6;29772:2;29766:9;29756:19;;29746:35;:::o;29787:307::-;29848:4;29938:18;29930:6;29927:30;29924:2;;;29960:18;;:::i;:::-;29924:2;29998:29;30020:6;29998:29;:::i;:::-;29990:37;;30082:4;30076;30072:15;30064:23;;29853:241;;;:::o;30100:308::-;30162:4;30252:18;30244:6;30241:30;30238:2;;;30274:18;;:::i;:::-;30238:2;30312:29;30334:6;30312:29;:::i;:::-;30304:37;;30396:4;30390;30386:15;30378:23;;30167:241;;;:::o;30414:98::-;30465:6;30499:5;30493:12;30483:22;;30472:40;;;:::o;30518:99::-;30570:6;30604:5;30598:12;30588:22;;30577:40;;;:::o;30623:168::-;30706:11;30740:6;30735:3;30728:19;30780:4;30775:3;30771:14;30756:29;;30718:73;;;;:::o;30797:169::-;30881:11;30915:6;30910:3;30903:19;30955:4;30950:3;30946:14;30931:29;;30893:73;;;;:::o;30972:148::-;31074:11;31111:3;31096:18;;31086:34;;;;:::o;31126:305::-;31166:3;31185:20;31203:1;31185:20;:::i;:::-;31180:25;;31219:20;31237:1;31219:20;:::i;:::-;31214:25;;31373:1;31305:66;31301:74;31298:1;31295:81;31292:2;;;31379:18;;:::i;:::-;31292:2;31423:1;31420;31416:9;31409:16;;31170:261;;;;:::o;31437:185::-;31477:1;31494:20;31512:1;31494:20;:::i;:::-;31489:25;;31528:20;31546:1;31528:20;:::i;:::-;31523:25;;31567:1;31557:2;;31572:18;;:::i;:::-;31557:2;31614:1;31611;31607:9;31602:14;;31479:143;;;;:::o;31628:348::-;31668:7;31691:20;31709:1;31691:20;:::i;:::-;31686:25;;31725:20;31743:1;31725:20;:::i;:::-;31720:25;;31913:1;31845:66;31841:74;31838:1;31835:81;31830:1;31823:9;31816:17;31812:105;31809:2;;;31920:18;;:::i;:::-;31809:2;31968:1;31965;31961:9;31950:20;;31676:300;;;;:::o;31982:191::-;32022:4;32042:20;32060:1;32042:20;:::i;:::-;32037:25;;32076:20;32094:1;32076:20;:::i;:::-;32071:25;;32115:1;32112;32109:8;32106:2;;;32120:18;;:::i;:::-;32106:2;32165:1;32162;32158:9;32150:17;;32027:146;;;;:::o;32179:96::-;32216:7;32245:24;32263:5;32245:24;:::i;:::-;32234:35;;32224:51;;;:::o;32281:90::-;32315:7;32358:5;32351:13;32344:21;32333:32;;32323:48;;;:::o;32377:149::-;32413:7;32453:66;32446:5;32442:78;32431:89;;32421:105;;;:::o;32532:126::-;32569:7;32609:42;32602:5;32598:54;32587:65;;32577:81;;;:::o;32664:77::-;32701:7;32730:5;32719:16;;32709:32;;;:::o;32747:154::-;32831:6;32826:3;32821;32808:30;32893:1;32884:6;32879:3;32875:16;32868:27;32798:103;;;:::o;32907:307::-;32975:1;32985:113;32999:6;32996:1;32993:13;32985:113;;;33084:1;33079:3;33075:11;33069:18;33065:1;33060:3;33056:11;33049:39;33021:2;33018:1;33014:10;33009:15;;32985:113;;;33116:6;33113:1;33110:13;33107:2;;;33196:1;33187:6;33182:3;33178:16;33171:27;33107:2;32956:258;;;;:::o;33220:320::-;33264:6;33301:1;33295:4;33291:12;33281:22;;33348:1;33342:4;33338:12;33369:18;33359:2;;33425:4;33417:6;33413:17;33403:27;;33359:2;33487;33479:6;33476:14;33456:18;33453:38;33450:2;;;33506:18;;:::i;:::-;33450:2;33271:269;;;;:::o;33546:281::-;33629:27;33651:4;33629:27;:::i;:::-;33621:6;33617:40;33759:6;33747:10;33744:22;33723:18;33711:10;33708:34;33705:62;33702:2;;;33770:18;;:::i;:::-;33702:2;33810:10;33806:2;33799:22;33589:238;;;:::o;33833:233::-;33872:3;33895:24;33913:5;33895:24;:::i;:::-;33886:33;;33941:66;33934:5;33931:77;33928:2;;;34011:18;;:::i;:::-;33928:2;34058:1;34051:5;34047:13;34040:20;;33876:190;;;:::o;34072:176::-;34104:1;34121:20;34139:1;34121:20;:::i;:::-;34116:25;;34155:20;34173:1;34155:20;:::i;:::-;34150:25;;34194:1;34184:2;;34199:18;;:::i;:::-;34184:2;34240:1;34237;34233:9;34228:14;;34106:142;;;;:::o;34254:180::-;34302:77;34299:1;34292:88;34399:4;34396:1;34389:15;34423:4;34420:1;34413:15;34440:180;34488:77;34485:1;34478:88;34585:4;34582:1;34575:15;34609:4;34606:1;34599:15;34626:180;34674:77;34671:1;34664:88;34771:4;34768:1;34761:15;34795:4;34792:1;34785:15;34812:180;34860:77;34857:1;34850:88;34957:4;34954:1;34947:15;34981:4;34978:1;34971:15;34998:102;35039:6;35090:2;35086:7;35081:2;35074:5;35070:14;35066:28;35056:38;;35046:54;;;:::o;35106:221::-;35246:34;35242:1;35234:6;35230:14;35223:58;35315:4;35310:2;35302:6;35298:15;35291:29;35212:115;:::o;35333:238::-;35473:34;35469:1;35461:6;35457:14;35450:58;35542:21;35537:2;35529:6;35525:15;35518:46;35439:132;:::o;35577:230::-;35717:34;35713:1;35705:6;35701:14;35694:58;35786:13;35781:2;35773:6;35769:15;35762:38;35683:124;:::o;35813:237::-;35953:34;35949:1;35941:6;35937:14;35930:58;36022:20;36017:2;36009:6;36005:15;35998:45;35919:131;:::o;36056:225::-;36196:34;36192:1;36184:6;36180:14;36173:58;36265:8;36260:2;36252:6;36248:15;36241:33;36162:119;:::o;36287:178::-;36427:30;36423:1;36415:6;36411:14;36404:54;36393:72;:::o;36471:223::-;36611:34;36607:1;36599:6;36595:14;36588:58;36680:6;36675:2;36667:6;36663:15;36656:31;36577:117;:::o;36700:175::-;36840:27;36836:1;36828:6;36824:14;36817:51;36806:69;:::o;36881:231::-;37021:34;37017:1;37009:6;37005:14;36998:58;37090:14;37085:2;37077:6;37073:15;37066:39;36987:125;:::o;37118:222::-;37258:34;37254:1;37246:6;37242:14;37235:58;37327:5;37322:2;37314:6;37310:15;37303:30;37224:116;:::o;37346:243::-;37486:34;37482:1;37474:6;37470:14;37463:58;37555:26;37550:2;37542:6;37538:15;37531:51;37452:137;:::o;37595:229::-;37735:34;37731:1;37723:6;37719:14;37712:58;37804:12;37799:2;37791:6;37787:15;37780:37;37701:123;:::o;37830:228::-;37970:34;37966:1;37958:6;37954:14;37947:58;38039:11;38034:2;38026:6;38022:15;38015:36;37936:122;:::o;38064:179::-;38204:31;38200:1;38192:6;38188:14;38181:55;38170:73;:::o;38249:182::-;38389:34;38385:1;38377:6;38373:14;38366:58;38355:76;:::o;38437:231::-;38577:34;38573:1;38565:6;38561:14;38554:58;38646:14;38641:2;38633:6;38629:15;38622:39;38543:125;:::o;38674:182::-;38814:34;38810:1;38802:6;38798:14;38791:58;38780:76;:::o;38862:228::-;39002:34;38998:1;38990:6;38986:14;38979:58;39071:11;39066:2;39058:6;39054:15;39047:36;38968:122;:::o;39096:234::-;39236:34;39232:1;39224:6;39220:14;39213:58;39305:17;39300:2;39292:6;39288:15;39281:42;39202:128;:::o;39336:220::-;39476:34;39472:1;39464:6;39460:14;39453:58;39545:3;39540:2;39532:6;39528:15;39521:28;39442:114;:::o;39562:168::-;39702:20;39698:1;39690:6;39686:14;39679:44;39668:62;:::o;39736:236::-;39876:34;39872:1;39864:6;39860:14;39853:58;39945:19;39940:2;39932:6;39928:15;39921:44;39842:130;:::o;39978:231::-;40118:34;40114:1;40106:6;40102:14;40095:58;40187:14;40182:2;40174:6;40170:15;40163:39;40084:125;:::o;40215:227::-;40355:34;40351:1;40343:6;40339:14;40332:58;40424:10;40419:2;40411:6;40407:15;40400:35;40321:121;:::o;40448:182::-;40588:34;40584:1;40576:6;40572:14;40565:58;40554:76;:::o;40636:122::-;40709:24;40727:5;40709:24;:::i;:::-;40702:5;40699:35;40689:2;;40748:1;40745;40738:12;40689:2;40679:79;:::o;40764:116::-;40834:21;40849:5;40834:21;:::i;:::-;40827:5;40824:32;40814:2;;40870:1;40867;40860:12;40814:2;40804:76;:::o;40886:120::-;40958:23;40975:5;40958:23;:::i;:::-;40951:5;40948:34;40938:2;;40996:1;40993;40986:12;40938:2;40928:78;:::o;41012:122::-;41085:24;41103:5;41085:24;:::i;:::-;41078:5;41075:35;41065:2;;41124:1;41121;41114:12;41065:2;41055:79;:::o

Swarm Source

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