ETH Price: $3,468.63 (+2.29%)
Gas: 7 Gwei

Token

Vegiemon (VGM)
 

Overview

Max Total Supply

9,996 VGM

Holders

1,296

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 VGM
0x0b2C327046b9f66E11752d1220bEd0712B0D0188
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Vegiemon

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-19
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

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


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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

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

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

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

        (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");

        (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");

        (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");

        (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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

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

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

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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. 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 {
                    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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

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

// File: contracts/Vegiemon.sol

pragma solidity ^0.8.6;

contract Vegiemon is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    
    bool public isActive = false;
    uint256 public itemPrice;
    
    uint256 public _reserved = 50; // for giveAway
    string private baseURI;

    // withdraw addresses
    address t1 = 0xc40C2Db69DF9A7480d7d55E13c8DB55b63805DFd;
    address t2 = 0xeFcc0f7892bFe2F70011F422DA65AA431Fe0Be50;
    
    //vegiemon dont need a lots of complicated code ╮ (. ❛ ᴗ ❛.) ╭
    constructor () ERC721("Vegiemon", "VGM") 
    {
        baseURI = "https://needfreetime.me/vegiemon/tokens/";
        itemPrice = 50000000000000000; // 0.05 ETH
        giveAway( t1, 10); //community giveaway       
        giveAway( t2, 10);
    }

	function getItemPrice() public view returns (uint256) 
	{
		return itemPrice;
	}
	
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    /*
    * Mint
    */
    function mint(address player, uint numberOfMints)
        public payable
    {
        require(isActive,                                                   "vegiemon sale hasn't started yet");
        require(_tokenIds.current() + numberOfMints <= 10000 - _reserved,   "Maximum amount already minted.");
        require(msg.value >= itemPrice * numberOfMints,                     "insufficient ETH");
        require(numberOfMints <= 20,                                        "You cant mint more than 20 at a time.");
        require(numberOfMints > 0,                                          "gas fee for nothing, vegiemon don't accept this request."); //(づ ̄ ³ ̄)づ
        
        for(uint i = 0; i < numberOfMints; i++)
        {
            uint256 newItemId = _tokenIds.current();
            _safeMint(player, newItemId);
            _tokenIds.increment();
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) 
    {
        require(tokenId < _tokenIds.current(), "tokenId exceeds upper bound");
        string memory _tokenURI = super.tokenURI(tokenId);
        return _tokenURI;
    }
    
    /*Owner*/
    function setActive(bool val) public onlyOwner 
    {
        isActive = val;
    }
    
    function giveAway(address _to, uint256 _amount) public onlyOwner
    {
        require(_amount <= _reserved,   "exceeds reserved supply");
        require(_amount > 0,            "giveAway nothing.");
        
        for(uint256 i; i < _amount; i++)
        {
            uint256 newItemId = _tokenIds.current();
            _safeMint(_to, newItemId);
            _tokenIds.increment();
        }

        _reserved -= _amount;
    }
     
    function setBaseURI(string memory uri) public onlyOwner 
    {
        baseURI = uri;
    }

    //Just incase something bad happen ʕノ•ᴥ•ʔノ ︵ ┻━┻
    function setItemPrice(uint256 _price) public onlyOwner 
    {
		itemPrice = _price;
	}
    
    function cashOut() public onlyOwner 
    {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }
}

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":"_reserved","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":"cashOut","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":[],"name":"getItemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"},{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setItemPrice","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506032600e5573c40c2db69df9a7480d7d55e13c8db55b63805dfd601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073efcc0f7892bfe2f70011f422da65aa431fe0be50601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000db57600080fd5b506040518060400160405280600881526020017f56656769656d6f6e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f56474d000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016092919062000ef4565b5080600190805190602001906200017992919062000ef4565b5050506200019c620001906200024c60201b60201c565b6200025460201b60201c565b60405180606001604052806028815260200162005b8060289139600f9080519060200190620001cd92919062000ef4565b5066b1a2bc2ec50000600d8190555062000211601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a6200031a60201b60201c565b62000246601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a6200031a60201b60201c565b620016e3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200032a6200024c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000350620004be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a0906200125f565b60405180910390fd5b600e54811115620003f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e890620011d7565b60405180910390fd5b6000811162000437576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042e9062001281565b60405180910390fd5b60005b818110156200049e5760006200045c600b620004e860201b620019101760201c565b9050620004708482620004f660201b60201c565b62000487600b6200051c60201b6200191e1760201c565b50808062000495906200143e565b9150506200043a565b5080600e6000828254620004b391906200132d565b925050819055505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081600001549050919050565b620005188282604051806020016040528060008152506200053260201b60201c565b5050565b6001816000016000828254019250508190555050565b620005448383620005a060201b60201c565b6200055960008484846200078660201b60201c565b6200059b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059290620011b5565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000613576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060a906200123d565b60405180910390fd5b62000624816200094060201b60201c565b1562000667576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065e90620011f9565b60405180910390fd5b6200067b60008383620009ac60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006cd9190620012d0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007b48473ffffffffffffffffffffffffffffffffffffffff1662000af360201b620019341760201c565b1562000933578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007e66200024c60201b60201c565b8786866040518563ffffffff1660e01b81526004016200080a949392919062001161565b602060405180830381600087803b1580156200082557600080fd5b505af19250505080156200085957506040513d601f19601f8201168201806040525081019062000856919062000fbb565b60015b620008e2573d80600081146200088c576040519150601f19603f3d011682016040523d82523d6000602084013e62000891565b606091505b50600081511415620008da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d190620011b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000938565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620009c483838362000b0660201b620019471760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000a115762000a0b8162000b0b60201b60201c565b62000a59565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a585762000a57838262000b5460201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000aa65762000aa08162000cd160201b60201c565b62000aee565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000aed5762000aec828262000dad60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b6e8462000e3960201b62000f6a1760201c565b62000b7a91906200132d565b905060006007600084815260200190815260200160002054905081811462000c60576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000ce791906200132d565b905060006009600084815260200190815260200160002054905060006008838154811062000d1a5762000d1962001519565b5b90600052602060002001549050806008838154811062000d3f5762000d3e62001519565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d915762000d90620014ea565b5b6001900381819060005260206000200160009055905550505050565b600062000dc58362000e3960201b62000f6a1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ead576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ea4906200121b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000f029062001408565b90600052602060002090601f01602090048101928262000f26576000855562000f72565b82601f1062000f4157805160ff191683800117855562000f72565b8280016001018555821562000f72579182015b8281111562000f7157825182559160200191906001019062000f54565b5b50905062000f81919062000f85565b5090565b5b8082111562000fa057600081600090555060010162000f86565b5090565b60008151905062000fb581620016c9565b92915050565b60006020828403121562000fd45762000fd362001548565b5b600062000fe48482850162000fa4565b91505092915050565b62000ff88162001368565b82525050565b60006200100b82620012a3565b620010178185620012ae565b935062001029818560208601620013d2565b62001034816200154d565b840191505092915050565b60006200104e603283620012bf565b91506200105b826200155e565b604082019050919050565b600062001075601783620012bf565b91506200108282620015ad565b602082019050919050565b60006200109c601c83620012bf565b9150620010a982620015d6565b602082019050919050565b6000620010c3602a83620012bf565b9150620010d082620015ff565b604082019050919050565b6000620010ea602083620012bf565b9150620010f7826200164e565b602082019050919050565b600062001111602083620012bf565b91506200111e8262001677565b602082019050919050565b600062001138601183620012bf565b91506200114582620016a0565b602082019050919050565b6200115b81620013c8565b82525050565b600060808201905062001178600083018762000fed565b62001187602083018662000fed565b62001196604083018562001150565b8181036060830152620011aa818462000ffe565b905095945050505050565b60006020820190508181036000830152620011d0816200103f565b9050919050565b60006020820190508181036000830152620011f28162001066565b9050919050565b6000602082019050818103600083015262001214816200108d565b9050919050565b600060208201905081810360008301526200123681620010b4565b9050919050565b600060208201905081810360008301526200125881620010db565b9050919050565b600060208201905081810360008301526200127a8162001102565b9050919050565b600060208201905081810360008301526200129c8162001129565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620012dd82620013c8565b9150620012ea83620013c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200132257620013216200148c565b5b828201905092915050565b60006200133a82620013c8565b91506200134783620013c8565b9250828210156200135d576200135c6200148c565b5b828203905092915050565b60006200137582620013a8565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620013f2578082015181840152602081019050620013d5565b8381111562001402576000848401525b50505050565b600060028204905060018216806200142157607f821691505b60208210811415620014385762001437620014bb565b5b50919050565b60006200144b82620013c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200148157620014806200148c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6578636565647320726573657276656420737570706c79000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6769766541776179206e6f7468696e672e000000000000000000000000000000600082015250565b620016d4816200137c565b8114620016e057600080fd5b50565b61448d80620016f36000396000f3fe6080604052600436106101cd5760003560e01c80636aaa571d116100f7578063a22cb46511610095578063ca80014411610064578063ca80014414610679578063dac6db1c146106a2578063e985e9c5146106cd578063f2fde38b1461070a576101cd565b8063a22cb465146105c1578063acec338a146105ea578063b88d4fde14610613578063c87b56dd1461063c576101cd565b8063793cd71e116100d1578063793cd71e1461052b5780638da5cb5b1461054257806395d89b411461056d57806398ca779514610598576101cd565b80636aaa571d146104ac57806370a08231146104d7578063715018a614610514576101cd565b806323b872dd1161016f578063438b63001161013e578063438b6300146103cc5780634f6ccce71461040957806355f804b3146104465780636352211e1461046f576101cd565b806323b872dd146103215780632f745c591461034a57806340c10f191461038757806342842e0e146103a3576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780632083ad82146102cb57806322f3e2d4146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e8f565b610733565b60405161020691906134ef565b60405180910390f35b34801561021b57600080fd5b506102246107ad565b604051610231919061350a565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f32565b61083f565b60405161026e9190613466565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e22565b6108c4565b005b3480156102ac57600080fd5b506102b56109dc565b6040516102c2919061386c565b60405180910390f35b3480156102d757600080fd5b506102e06109e9565b6040516102ed919061386c565b60405180910390f35b34801561030257600080fd5b5061030b6109f3565b60405161031891906134ef565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612d0c565b610a06565b005b34801561035657600080fd5b50610371600480360381019061036c9190612e22565b610a66565b60405161037e919061386c565b60405180910390f35b6103a1600480360381019061039c9190612e22565b610b0b565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612d0c565b610cdd565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612c9f565b610cfd565b60405161040091906134cd565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612f32565b610dab565b60405161043d919061386c565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612ee9565b610e1c565b005b34801561047b57600080fd5b5061049660048036038101906104919190612f32565b610eb2565b6040516104a39190613466565b60405180910390f35b3480156104b857600080fd5b506104c1610f64565b6040516104ce919061386c565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612c9f565b610f6a565b60405161050b919061386c565b60405180910390f35b34801561052057600080fd5b50610529611022565b005b34801561053757600080fd5b506105406110aa565b005b34801561054e57600080fd5b506105576111fa565b6040516105649190613466565b60405180910390f35b34801561057957600080fd5b50610582611224565b60405161058f919061350a565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612f32565b6112b6565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190612de2565b61133c565b005b3480156105f657600080fd5b50610611600480360381019061060c9190612e62565b6114bd565b005b34801561061f57600080fd5b5061063a60048036038101906106359190612d5f565b611556565b005b34801561064857600080fd5b50610663600480360381019061065e9190612f32565b6115b8565b604051610670919061350a565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190612e22565b61161b565b005b3480156106ae57600080fd5b506106b761177e565b6040516106c4919061386c565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612ccc565b611784565b60405161070191906134ef565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190612c9f565b611818565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657506107a58261194c565b5b9050919050565b6060600080546107bc90613b55565b80601f01602080910402602001604051908101604052809291908181526020018280546107e890613b55565b80156108355780601f1061080a57610100808354040283529160200191610835565b820191906000526020600020905b81548152906001019060200180831161081857829003601f168201915b5050505050905090565b600061084a82611a2e565b610889576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610880906136cc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cf82610eb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610940576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109379061378c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095f611a9a565b73ffffffffffffffffffffffffffffffffffffffff16148061098e575061098d81610988611a9a565b611784565b5b6109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c49061364c565b60405180910390fd5b6109d78383611aa2565b505050565b6000600880549050905090565b6000600d54905090565b600c60009054906101000a900460ff1681565b610a17610a11611a9a565b82611b5b565b610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d906137ac565b60405180910390fd5b610a61838383611c39565b505050565b6000610a7183610f6a565b8210610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa99061352c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c60009054906101000a900460ff16610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b519061382c565b60405180910390fd5b600e54612710610b6a9190613a6b565b81610b75600b611910565b610b7f919061398a565b1115610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb79061362c565b60405180910390fd5b80600d54610bce9190613a11565b341015610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c079061374c565b60405180910390fd5b6014811115610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b9061384c565b60405180910390fd5b60008111610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e9061370c565b60405180910390fd5b60005b81811015610cd8576000610cae600b611910565b9050610cba8482611e95565b610cc4600b61191e565b508080610cd090613bb8565b915050610c9a565b505050565b610cf883838360405180602001604052806000815250611556565b505050565b60606000610d0a83610f6a565b905060008167ffffffffffffffff811115610d2857610d27613d1d565b5b604051908082528060200260200182016040528015610d565781602001602082028036833780820191505090505b50905060005b82811015610da057610d6e8582610a66565b828281518110610d8157610d80613cee565b5b6020026020010181815250508080610d9890613bb8565b915050610d5c565b508092505050919050565b6000610db56109dc565b8210610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906137ec565b60405180910390fd5b60088281548110610e0a57610e09613cee565b5b90600052602060002001549050919050565b610e24611a9a565b73ffffffffffffffffffffffffffffffffffffffff16610e426111fa565b73ffffffffffffffffffffffffffffffffffffffff1614610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f906136ec565b60405180910390fd5b80600f9080519060200190610eae929190612ab3565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061368c565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061366c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61102a611a9a565b73ffffffffffffffffffffffffffffffffffffffff166110486111fa565b73ffffffffffffffffffffffffffffffffffffffff161461109e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611095906136ec565b60405180910390fd5b6110a86000611eb3565b565b6110b2611a9a565b73ffffffffffffffffffffffffffffffffffffffff166110d06111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d906136ec565b60405180910390fd5b600060024761113591906139e0565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061119757600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111f757600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461123390613b55565b80601f016020809104026020016040519081016040528092919081815260200182805461125f90613b55565b80156112ac5780601f10611281576101008083540402835291602001916112ac565b820191906000526020600020905b81548152906001019060200180831161128f57829003601f168201915b5050505050905090565b6112be611a9a565b73ffffffffffffffffffffffffffffffffffffffff166112dc6111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611329906136ec565b60405180910390fd5b80600d8190555050565b611344611a9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906135ec565b60405180910390fd5b80600560006113bf611a9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146c611a9a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b191906134ef565b60405180910390a35050565b6114c5611a9a565b73ffffffffffffffffffffffffffffffffffffffff166114e36111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906136ec565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611567611561611a9a565b83611b5b565b6115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906137ac565b60405180910390fd5b6115b284848484611f79565b50505050565b60606115c4600b611910565b8210611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc9061380c565b60405180910390fd5b600061161083611fd5565b905080915050919050565b611623611a9a565b73ffffffffffffffffffffffffffffffffffffffff166116416111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906136ec565b60405180910390fd5b600e548111156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d39061358c565b60405180910390fd5b6000811161171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906137cc565b60405180910390fd5b60005b81811015611760576000611736600b611910565b90506117428482611e95565b61174c600b61191e565b50808061175890613bb8565b915050611722565b5080600e60008282546117739190613a6b565b925050819055505050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611820611a9a565b73ffffffffffffffffffffffffffffffffffffffff1661183e6111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906136ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb9061356c565b60405180910390fd5b61190d81611eb3565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a1757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a275750611a268261207c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1583610eb2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6682611a2e565b611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c9061360c565b60405180910390fd5b6000611bb083610eb2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1f57508373ffffffffffffffffffffffffffffffffffffffff16611c078461083f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c305750611c2f8185611784565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5982610eb2565b73ffffffffffffffffffffffffffffffffffffffff1614611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca69061372c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d16906135cc565b60405180910390fd5b611d2a8383836120e6565b611d35600082611aa2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d859190613a6b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ddc919061398a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611eaf8282604051806020016040528060008152506121fa565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f84848484611c39565b611f9084848484612255565b611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc69061354c565b60405180910390fd5b50505050565b6060611fe082611a2e565b61201f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120169061376c565b60405180910390fd5b60006120296123ec565b905060008151116120495760405180602001604052806000815250612074565b806120538461247e565b604051602001612064929190613442565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120f1838383611947565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121345761212f816125df565b612173565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612172576121718382612628565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b6576121b181612795565b6121f5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121f4576121f38282612866565b5b5b505050565b61220483836128e5565b6122116000848484612255565b612250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122479061354c565b60405180910390fd5b505050565b60006122768473ffffffffffffffffffffffffffffffffffffffff16611934565b156123df578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229f611a9a565b8786866040518563ffffffff1660e01b81526004016122c19493929190613481565b602060405180830381600087803b1580156122db57600080fd5b505af192505050801561230c57506040513d601f19601f820116820180604052508101906123099190612ebc565b60015b61238f573d806000811461233c576040519150601f19603f3d011682016040523d82523d6000602084013e612341565b606091505b50600081511415612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e9061354c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123e4565b600190505b949350505050565b6060600f80546123fb90613b55565b80601f016020809104026020016040519081016040528092919081815260200182805461242790613b55565b80156124745780601f1061244957610100808354040283529160200191612474565b820191906000526020600020905b81548152906001019060200180831161245757829003601f168201915b5050505050905090565b606060008214156124c6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125da565b600082905060005b600082146124f85780806124e190613bb8565b915050600a826124f191906139e0565b91506124ce565b60008167ffffffffffffffff81111561251457612513613d1d565b5b6040519080825280601f01601f1916602001820160405280156125465781602001600182028036833780820191505090505b5090505b600085146125d35760018261255f9190613a6b565b9150600a8561256e9190613c01565b603061257a919061398a565b60f81b8183815181106125905761258f613cee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125cc91906139e0565b945061254a565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161263584610f6a565b61263f9190613a6b565b9050600060076000848152602001908152602001600020549050818114612724576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127a99190613a6b565b90506000600960008481526020019081526020016000205490506000600883815481106127d9576127d8613cee565b5b9060005260206000200154905080600883815481106127fb576127fa613cee565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061284a57612849613cbf565b5b6001900381819060005260206000200160009055905550505050565b600061287183610f6a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c906136ac565b60405180910390fd5b61295e81611a2e565b1561299e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612995906135ac565b60405180910390fd5b6129aa600083836120e6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fa919061398a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612abf90613b55565b90600052602060002090601f016020900481019282612ae15760008555612b28565b82601f10612afa57805160ff1916838001178555612b28565b82800160010185558215612b28579182015b82811115612b27578251825591602001919060010190612b0c565b5b509050612b359190612b39565b5090565b5b80821115612b52576000816000905550600101612b3a565b5090565b6000612b69612b64846138ac565b613887565b905082815260208101848484011115612b8557612b84613d51565b5b612b90848285613b13565b509392505050565b6000612bab612ba6846138dd565b613887565b905082815260208101848484011115612bc757612bc6613d51565b5b612bd2848285613b13565b509392505050565b600081359050612be9816143fb565b92915050565b600081359050612bfe81614412565b92915050565b600081359050612c1381614429565b92915050565b600081519050612c2881614429565b92915050565b600082601f830112612c4357612c42613d4c565b5b8135612c53848260208601612b56565b91505092915050565b600082601f830112612c7157612c70613d4c565b5b8135612c81848260208601612b98565b91505092915050565b600081359050612c9981614440565b92915050565b600060208284031215612cb557612cb4613d5b565b5b6000612cc384828501612bda565b91505092915050565b60008060408385031215612ce357612ce2613d5b565b5b6000612cf185828601612bda565b9250506020612d0285828601612bda565b9150509250929050565b600080600060608486031215612d2557612d24613d5b565b5b6000612d3386828701612bda565b9350506020612d4486828701612bda565b9250506040612d5586828701612c8a565b9150509250925092565b60008060008060808587031215612d7957612d78613d5b565b5b6000612d8787828801612bda565b9450506020612d9887828801612bda565b9350506040612da987828801612c8a565b925050606085013567ffffffffffffffff811115612dca57612dc9613d56565b5b612dd687828801612c2e565b91505092959194509250565b60008060408385031215612df957612df8613d5b565b5b6000612e0785828601612bda565b9250506020612e1885828601612bef565b9150509250929050565b60008060408385031215612e3957612e38613d5b565b5b6000612e4785828601612bda565b9250506020612e5885828601612c8a565b9150509250929050565b600060208284031215612e7857612e77613d5b565b5b6000612e8684828501612bef565b91505092915050565b600060208284031215612ea557612ea4613d5b565b5b6000612eb384828501612c04565b91505092915050565b600060208284031215612ed257612ed1613d5b565b5b6000612ee084828501612c19565b91505092915050565b600060208284031215612eff57612efe613d5b565b5b600082013567ffffffffffffffff811115612f1d57612f1c613d56565b5b612f2984828501612c5c565b91505092915050565b600060208284031215612f4857612f47613d5b565b5b6000612f5684828501612c8a565b91505092915050565b6000612f6b8383613424565b60208301905092915050565b612f8081613a9f565b82525050565b6000612f918261391e565b612f9b818561394c565b9350612fa68361390e565b8060005b83811015612fd7578151612fbe8882612f5f565b9750612fc98361393f565b925050600181019050612faa565b5085935050505092915050565b612fed81613ab1565b82525050565b6000612ffe82613929565b613008818561395d565b9350613018818560208601613b22565b61302181613d60565b840191505092915050565b600061303782613934565b613041818561396e565b9350613051818560208601613b22565b61305a81613d60565b840191505092915050565b600061307082613934565b61307a818561397f565b935061308a818560208601613b22565b80840191505092915050565b60006130a3602b8361396e565b91506130ae82613d71565b604082019050919050565b60006130c660328361396e565b91506130d182613dc0565b604082019050919050565b60006130e960268361396e565b91506130f482613e0f565b604082019050919050565b600061310c60178361396e565b915061311782613e5e565b602082019050919050565b600061312f601c8361396e565b915061313a82613e87565b602082019050919050565b600061315260248361396e565b915061315d82613eb0565b604082019050919050565b600061317560198361396e565b915061318082613eff565b602082019050919050565b6000613198602c8361396e565b91506131a382613f28565b604082019050919050565b60006131bb601e8361396e565b91506131c682613f77565b602082019050919050565b60006131de60388361396e565b91506131e982613fa0565b604082019050919050565b6000613201602a8361396e565b915061320c82613fef565b604082019050919050565b600061322460298361396e565b915061322f8261403e565b604082019050919050565b600061324760208361396e565b91506132528261408d565b602082019050919050565b600061326a602c8361396e565b9150613275826140b6565b604082019050919050565b600061328d60208361396e565b915061329882614105565b602082019050919050565b60006132b060388361396e565b91506132bb8261412e565b604082019050919050565b60006132d360298361396e565b91506132de8261417d565b604082019050919050565b60006132f660108361396e565b9150613301826141cc565b602082019050919050565b6000613319602f8361396e565b9150613324826141f5565b604082019050919050565b600061333c60218361396e565b915061334782614244565b604082019050919050565b600061335f60318361396e565b915061336a82614293565b604082019050919050565b600061338260118361396e565b915061338d826142e2565b602082019050919050565b60006133a5602c8361396e565b91506133b08261430b565b604082019050919050565b60006133c8601b8361396e565b91506133d38261435a565b602082019050919050565b60006133eb60208361396e565b91506133f682614383565b602082019050919050565b600061340e60258361396e565b9150613419826143ac565b604082019050919050565b61342d81613b09565b82525050565b61343c81613b09565b82525050565b600061344e8285613065565b915061345a8284613065565b91508190509392505050565b600060208201905061347b6000830184612f77565b92915050565b60006080820190506134966000830187612f77565b6134a36020830186612f77565b6134b06040830185613433565b81810360608301526134c28184612ff3565b905095945050505050565b600060208201905081810360008301526134e78184612f86565b905092915050565b60006020820190506135046000830184612fe4565b92915050565b60006020820190508181036000830152613524818461302c565b905092915050565b6000602082019050818103600083015261354581613096565b9050919050565b60006020820190508181036000830152613565816130b9565b9050919050565b60006020820190508181036000830152613585816130dc565b9050919050565b600060208201905081810360008301526135a5816130ff565b9050919050565b600060208201905081810360008301526135c581613122565b9050919050565b600060208201905081810360008301526135e581613145565b9050919050565b6000602082019050818103600083015261360581613168565b9050919050565b600060208201905081810360008301526136258161318b565b9050919050565b60006020820190508181036000830152613645816131ae565b9050919050565b60006020820190508181036000830152613665816131d1565b9050919050565b60006020820190508181036000830152613685816131f4565b9050919050565b600060208201905081810360008301526136a581613217565b9050919050565b600060208201905081810360008301526136c58161323a565b9050919050565b600060208201905081810360008301526136e58161325d565b9050919050565b6000602082019050818103600083015261370581613280565b9050919050565b60006020820190508181036000830152613725816132a3565b9050919050565b60006020820190508181036000830152613745816132c6565b9050919050565b60006020820190508181036000830152613765816132e9565b9050919050565b600060208201905081810360008301526137858161330c565b9050919050565b600060208201905081810360008301526137a58161332f565b9050919050565b600060208201905081810360008301526137c581613352565b9050919050565b600060208201905081810360008301526137e581613375565b9050919050565b6000602082019050818103600083015261380581613398565b9050919050565b60006020820190508181036000830152613825816133bb565b9050919050565b60006020820190508181036000830152613845816133de565b9050919050565b6000602082019050818103600083015261386581613401565b9050919050565b60006020820190506138816000830184613433565b92915050565b60006138916138a2565b905061389d8282613b87565b919050565b6000604051905090565b600067ffffffffffffffff8211156138c7576138c6613d1d565b5b6138d082613d60565b9050602081019050919050565b600067ffffffffffffffff8211156138f8576138f7613d1d565b5b61390182613d60565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061399582613b09565b91506139a083613b09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139d5576139d4613c32565b5b828201905092915050565b60006139eb82613b09565b91506139f683613b09565b925082613a0657613a05613c61565b5b828204905092915050565b6000613a1c82613b09565b9150613a2783613b09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6057613a5f613c32565b5b828202905092915050565b6000613a7682613b09565b9150613a8183613b09565b925082821015613a9457613a93613c32565b5b828203905092915050565b6000613aaa82613ae9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b40578082015181840152602081019050613b25565b83811115613b4f576000848401525b50505050565b60006002820490506001821680613b6d57607f821691505b60208210811415613b8157613b80613c90565b5b50919050565b613b9082613d60565b810181811067ffffffffffffffff82111715613baf57613bae613d1d565b5b80604052505050565b6000613bc382613b09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bf657613bf5613c32565b5b600182019050919050565b6000613c0c82613b09565b9150613c1783613b09565b925082613c2757613c26613c61565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6578636565647320726573657276656420737570706c79000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20616d6f756e7420616c7265616479206d696e7465642e0000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6761732066656520666f72206e6f7468696e672c2076656769656d6f6e20646f60008201527f6e277420616363657074207468697320726571756573742e0000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6769766541776179206e6f7468696e672e000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f746f6b656e4964206578636565647320757070657220626f756e640000000000600082015250565b7f76656769656d6f6e2073616c65206861736e2774207374617274656420796574600082015250565b7f596f752063616e74206d696e74206d6f7265207468616e20323020617420612060008201527f74696d652e000000000000000000000000000000000000000000000000000000602082015250565b61440481613a9f565b811461440f57600080fd5b50565b61441b81613ab1565b811461442657600080fd5b50565b61443281613abd565b811461443d57600080fd5b50565b61444981613b09565b811461445457600080fd5b5056fea2646970667358221220c8a60e20cac716b8df3839ab53077b5ec610dc4d7b9cf609cfe1136c0fdf850b64736f6c6343000806003368747470733a2f2f6e6565646672656574696d652e6d652f76656769656d6f6e2f746f6b656e732f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636aaa571d116100f7578063a22cb46511610095578063ca80014411610064578063ca80014414610679578063dac6db1c146106a2578063e985e9c5146106cd578063f2fde38b1461070a576101cd565b8063a22cb465146105c1578063acec338a146105ea578063b88d4fde14610613578063c87b56dd1461063c576101cd565b8063793cd71e116100d1578063793cd71e1461052b5780638da5cb5b1461054257806395d89b411461056d57806398ca779514610598576101cd565b80636aaa571d146104ac57806370a08231146104d7578063715018a614610514576101cd565b806323b872dd1161016f578063438b63001161013e578063438b6300146103cc5780634f6ccce71461040957806355f804b3146104465780636352211e1461046f576101cd565b806323b872dd146103215780632f745c591461034a57806340c10f191461038757806342842e0e146103a3576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780632083ad82146102cb57806322f3e2d4146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e8f565b610733565b60405161020691906134ef565b60405180910390f35b34801561021b57600080fd5b506102246107ad565b604051610231919061350a565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612f32565b61083f565b60405161026e9190613466565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e22565b6108c4565b005b3480156102ac57600080fd5b506102b56109dc565b6040516102c2919061386c565b60405180910390f35b3480156102d757600080fd5b506102e06109e9565b6040516102ed919061386c565b60405180910390f35b34801561030257600080fd5b5061030b6109f3565b60405161031891906134ef565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612d0c565b610a06565b005b34801561035657600080fd5b50610371600480360381019061036c9190612e22565b610a66565b60405161037e919061386c565b60405180910390f35b6103a1600480360381019061039c9190612e22565b610b0b565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612d0c565b610cdd565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612c9f565b610cfd565b60405161040091906134cd565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612f32565b610dab565b60405161043d919061386c565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612ee9565b610e1c565b005b34801561047b57600080fd5b5061049660048036038101906104919190612f32565b610eb2565b6040516104a39190613466565b60405180910390f35b3480156104b857600080fd5b506104c1610f64565b6040516104ce919061386c565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612c9f565b610f6a565b60405161050b919061386c565b60405180910390f35b34801561052057600080fd5b50610529611022565b005b34801561053757600080fd5b506105406110aa565b005b34801561054e57600080fd5b506105576111fa565b6040516105649190613466565b60405180910390f35b34801561057957600080fd5b50610582611224565b60405161058f919061350a565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612f32565b6112b6565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190612de2565b61133c565b005b3480156105f657600080fd5b50610611600480360381019061060c9190612e62565b6114bd565b005b34801561061f57600080fd5b5061063a60048036038101906106359190612d5f565b611556565b005b34801561064857600080fd5b50610663600480360381019061065e9190612f32565b6115b8565b604051610670919061350a565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190612e22565b61161b565b005b3480156106ae57600080fd5b506106b761177e565b6040516106c4919061386c565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190612ccc565b611784565b60405161070191906134ef565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190612c9f565b611818565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657506107a58261194c565b5b9050919050565b6060600080546107bc90613b55565b80601f01602080910402602001604051908101604052809291908181526020018280546107e890613b55565b80156108355780601f1061080a57610100808354040283529160200191610835565b820191906000526020600020905b81548152906001019060200180831161081857829003601f168201915b5050505050905090565b600061084a82611a2e565b610889576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610880906136cc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cf82610eb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610940576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109379061378c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095f611a9a565b73ffffffffffffffffffffffffffffffffffffffff16148061098e575061098d81610988611a9a565b611784565b5b6109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c49061364c565b60405180910390fd5b6109d78383611aa2565b505050565b6000600880549050905090565b6000600d54905090565b600c60009054906101000a900460ff1681565b610a17610a11611a9a565b82611b5b565b610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d906137ac565b60405180910390fd5b610a61838383611c39565b505050565b6000610a7183610f6a565b8210610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa99061352c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c60009054906101000a900460ff16610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b519061382c565b60405180910390fd5b600e54612710610b6a9190613a6b565b81610b75600b611910565b610b7f919061398a565b1115610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb79061362c565b60405180910390fd5b80600d54610bce9190613a11565b341015610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c079061374c565b60405180910390fd5b6014811115610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b9061384c565b60405180910390fd5b60008111610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e9061370c565b60405180910390fd5b60005b81811015610cd8576000610cae600b611910565b9050610cba8482611e95565b610cc4600b61191e565b508080610cd090613bb8565b915050610c9a565b505050565b610cf883838360405180602001604052806000815250611556565b505050565b60606000610d0a83610f6a565b905060008167ffffffffffffffff811115610d2857610d27613d1d565b5b604051908082528060200260200182016040528015610d565781602001602082028036833780820191505090505b50905060005b82811015610da057610d6e8582610a66565b828281518110610d8157610d80613cee565b5b6020026020010181815250508080610d9890613bb8565b915050610d5c565b508092505050919050565b6000610db56109dc565b8210610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906137ec565b60405180910390fd5b60088281548110610e0a57610e09613cee565b5b90600052602060002001549050919050565b610e24611a9a565b73ffffffffffffffffffffffffffffffffffffffff16610e426111fa565b73ffffffffffffffffffffffffffffffffffffffff1614610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f906136ec565b60405180910390fd5b80600f9080519060200190610eae929190612ab3565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061368c565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061366c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61102a611a9a565b73ffffffffffffffffffffffffffffffffffffffff166110486111fa565b73ffffffffffffffffffffffffffffffffffffffff161461109e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611095906136ec565b60405180910390fd5b6110a86000611eb3565b565b6110b2611a9a565b73ffffffffffffffffffffffffffffffffffffffff166110d06111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d906136ec565b60405180910390fd5b600060024761113591906139e0565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061119757600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111f757600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461123390613b55565b80601f016020809104026020016040519081016040528092919081815260200182805461125f90613b55565b80156112ac5780601f10611281576101008083540402835291602001916112ac565b820191906000526020600020905b81548152906001019060200180831161128f57829003601f168201915b5050505050905090565b6112be611a9a565b73ffffffffffffffffffffffffffffffffffffffff166112dc6111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611329906136ec565b60405180910390fd5b80600d8190555050565b611344611a9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906135ec565b60405180910390fd5b80600560006113bf611a9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146c611a9a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b191906134ef565b60405180910390a35050565b6114c5611a9a565b73ffffffffffffffffffffffffffffffffffffffff166114e36111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906136ec565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611567611561611a9a565b83611b5b565b6115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906137ac565b60405180910390fd5b6115b284848484611f79565b50505050565b60606115c4600b611910565b8210611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc9061380c565b60405180910390fd5b600061161083611fd5565b905080915050919050565b611623611a9a565b73ffffffffffffffffffffffffffffffffffffffff166116416111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906136ec565b60405180910390fd5b600e548111156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d39061358c565b60405180910390fd5b6000811161171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906137cc565b60405180910390fd5b60005b81811015611760576000611736600b611910565b90506117428482611e95565b61174c600b61191e565b50808061175890613bb8565b915050611722565b5080600e60008282546117739190613a6b565b925050819055505050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611820611a9a565b73ffffffffffffffffffffffffffffffffffffffff1661183e6111fa565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906136ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb9061356c565b60405180910390fd5b61190d81611eb3565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a1757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a275750611a268261207c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1583610eb2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6682611a2e565b611ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9c9061360c565b60405180910390fd5b6000611bb083610eb2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1f57508373ffffffffffffffffffffffffffffffffffffffff16611c078461083f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c305750611c2f8185611784565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5982610eb2565b73ffffffffffffffffffffffffffffffffffffffff1614611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca69061372c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d16906135cc565b60405180910390fd5b611d2a8383836120e6565b611d35600082611aa2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d859190613a6b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ddc919061398a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611eaf8282604051806020016040528060008152506121fa565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f84848484611c39565b611f9084848484612255565b611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc69061354c565b60405180910390fd5b50505050565b6060611fe082611a2e565b61201f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120169061376c565b60405180910390fd5b60006120296123ec565b905060008151116120495760405180602001604052806000815250612074565b806120538461247e565b604051602001612064929190613442565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120f1838383611947565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121345761212f816125df565b612173565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612172576121718382612628565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b6576121b181612795565b6121f5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121f4576121f38282612866565b5b5b505050565b61220483836128e5565b6122116000848484612255565b612250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122479061354c565b60405180910390fd5b505050565b60006122768473ffffffffffffffffffffffffffffffffffffffff16611934565b156123df578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229f611a9a565b8786866040518563ffffffff1660e01b81526004016122c19493929190613481565b602060405180830381600087803b1580156122db57600080fd5b505af192505050801561230c57506040513d601f19601f820116820180604052508101906123099190612ebc565b60015b61238f573d806000811461233c576040519150601f19603f3d011682016040523d82523d6000602084013e612341565b606091505b50600081511415612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e9061354c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123e4565b600190505b949350505050565b6060600f80546123fb90613b55565b80601f016020809104026020016040519081016040528092919081815260200182805461242790613b55565b80156124745780601f1061244957610100808354040283529160200191612474565b820191906000526020600020905b81548152906001019060200180831161245757829003601f168201915b5050505050905090565b606060008214156124c6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125da565b600082905060005b600082146124f85780806124e190613bb8565b915050600a826124f191906139e0565b91506124ce565b60008167ffffffffffffffff81111561251457612513613d1d565b5b6040519080825280601f01601f1916602001820160405280156125465781602001600182028036833780820191505090505b5090505b600085146125d35760018261255f9190613a6b565b9150600a8561256e9190613c01565b603061257a919061398a565b60f81b8183815181106125905761258f613cee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125cc91906139e0565b945061254a565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161263584610f6a565b61263f9190613a6b565b9050600060076000848152602001908152602001600020549050818114612724576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127a99190613a6b565b90506000600960008481526020019081526020016000205490506000600883815481106127d9576127d8613cee565b5b9060005260206000200154905080600883815481106127fb576127fa613cee565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061284a57612849613cbf565b5b6001900381819060005260206000200160009055905550505050565b600061287183610f6a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294c906136ac565b60405180910390fd5b61295e81611a2e565b1561299e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612995906135ac565b60405180910390fd5b6129aa600083836120e6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fa919061398a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612abf90613b55565b90600052602060002090601f016020900481019282612ae15760008555612b28565b82601f10612afa57805160ff1916838001178555612b28565b82800160010185558215612b28579182015b82811115612b27578251825591602001919060010190612b0c565b5b509050612b359190612b39565b5090565b5b80821115612b52576000816000905550600101612b3a565b5090565b6000612b69612b64846138ac565b613887565b905082815260208101848484011115612b8557612b84613d51565b5b612b90848285613b13565b509392505050565b6000612bab612ba6846138dd565b613887565b905082815260208101848484011115612bc757612bc6613d51565b5b612bd2848285613b13565b509392505050565b600081359050612be9816143fb565b92915050565b600081359050612bfe81614412565b92915050565b600081359050612c1381614429565b92915050565b600081519050612c2881614429565b92915050565b600082601f830112612c4357612c42613d4c565b5b8135612c53848260208601612b56565b91505092915050565b600082601f830112612c7157612c70613d4c565b5b8135612c81848260208601612b98565b91505092915050565b600081359050612c9981614440565b92915050565b600060208284031215612cb557612cb4613d5b565b5b6000612cc384828501612bda565b91505092915050565b60008060408385031215612ce357612ce2613d5b565b5b6000612cf185828601612bda565b9250506020612d0285828601612bda565b9150509250929050565b600080600060608486031215612d2557612d24613d5b565b5b6000612d3386828701612bda565b9350506020612d4486828701612bda565b9250506040612d5586828701612c8a565b9150509250925092565b60008060008060808587031215612d7957612d78613d5b565b5b6000612d8787828801612bda565b9450506020612d9887828801612bda565b9350506040612da987828801612c8a565b925050606085013567ffffffffffffffff811115612dca57612dc9613d56565b5b612dd687828801612c2e565b91505092959194509250565b60008060408385031215612df957612df8613d5b565b5b6000612e0785828601612bda565b9250506020612e1885828601612bef565b9150509250929050565b60008060408385031215612e3957612e38613d5b565b5b6000612e4785828601612bda565b9250506020612e5885828601612c8a565b9150509250929050565b600060208284031215612e7857612e77613d5b565b5b6000612e8684828501612bef565b91505092915050565b600060208284031215612ea557612ea4613d5b565b5b6000612eb384828501612c04565b91505092915050565b600060208284031215612ed257612ed1613d5b565b5b6000612ee084828501612c19565b91505092915050565b600060208284031215612eff57612efe613d5b565b5b600082013567ffffffffffffffff811115612f1d57612f1c613d56565b5b612f2984828501612c5c565b91505092915050565b600060208284031215612f4857612f47613d5b565b5b6000612f5684828501612c8a565b91505092915050565b6000612f6b8383613424565b60208301905092915050565b612f8081613a9f565b82525050565b6000612f918261391e565b612f9b818561394c565b9350612fa68361390e565b8060005b83811015612fd7578151612fbe8882612f5f565b9750612fc98361393f565b925050600181019050612faa565b5085935050505092915050565b612fed81613ab1565b82525050565b6000612ffe82613929565b613008818561395d565b9350613018818560208601613b22565b61302181613d60565b840191505092915050565b600061303782613934565b613041818561396e565b9350613051818560208601613b22565b61305a81613d60565b840191505092915050565b600061307082613934565b61307a818561397f565b935061308a818560208601613b22565b80840191505092915050565b60006130a3602b8361396e565b91506130ae82613d71565b604082019050919050565b60006130c660328361396e565b91506130d182613dc0565b604082019050919050565b60006130e960268361396e565b91506130f482613e0f565b604082019050919050565b600061310c60178361396e565b915061311782613e5e565b602082019050919050565b600061312f601c8361396e565b915061313a82613e87565b602082019050919050565b600061315260248361396e565b915061315d82613eb0565b604082019050919050565b600061317560198361396e565b915061318082613eff565b602082019050919050565b6000613198602c8361396e565b91506131a382613f28565b604082019050919050565b60006131bb601e8361396e565b91506131c682613f77565b602082019050919050565b60006131de60388361396e565b91506131e982613fa0565b604082019050919050565b6000613201602a8361396e565b915061320c82613fef565b604082019050919050565b600061322460298361396e565b915061322f8261403e565b604082019050919050565b600061324760208361396e565b91506132528261408d565b602082019050919050565b600061326a602c8361396e565b9150613275826140b6565b604082019050919050565b600061328d60208361396e565b915061329882614105565b602082019050919050565b60006132b060388361396e565b91506132bb8261412e565b604082019050919050565b60006132d360298361396e565b91506132de8261417d565b604082019050919050565b60006132f660108361396e565b9150613301826141cc565b602082019050919050565b6000613319602f8361396e565b9150613324826141f5565b604082019050919050565b600061333c60218361396e565b915061334782614244565b604082019050919050565b600061335f60318361396e565b915061336a82614293565b604082019050919050565b600061338260118361396e565b915061338d826142e2565b602082019050919050565b60006133a5602c8361396e565b91506133b08261430b565b604082019050919050565b60006133c8601b8361396e565b91506133d38261435a565b602082019050919050565b60006133eb60208361396e565b91506133f682614383565b602082019050919050565b600061340e60258361396e565b9150613419826143ac565b604082019050919050565b61342d81613b09565b82525050565b61343c81613b09565b82525050565b600061344e8285613065565b915061345a8284613065565b91508190509392505050565b600060208201905061347b6000830184612f77565b92915050565b60006080820190506134966000830187612f77565b6134a36020830186612f77565b6134b06040830185613433565b81810360608301526134c28184612ff3565b905095945050505050565b600060208201905081810360008301526134e78184612f86565b905092915050565b60006020820190506135046000830184612fe4565b92915050565b60006020820190508181036000830152613524818461302c565b905092915050565b6000602082019050818103600083015261354581613096565b9050919050565b60006020820190508181036000830152613565816130b9565b9050919050565b60006020820190508181036000830152613585816130dc565b9050919050565b600060208201905081810360008301526135a5816130ff565b9050919050565b600060208201905081810360008301526135c581613122565b9050919050565b600060208201905081810360008301526135e581613145565b9050919050565b6000602082019050818103600083015261360581613168565b9050919050565b600060208201905081810360008301526136258161318b565b9050919050565b60006020820190508181036000830152613645816131ae565b9050919050565b60006020820190508181036000830152613665816131d1565b9050919050565b60006020820190508181036000830152613685816131f4565b9050919050565b600060208201905081810360008301526136a581613217565b9050919050565b600060208201905081810360008301526136c58161323a565b9050919050565b600060208201905081810360008301526136e58161325d565b9050919050565b6000602082019050818103600083015261370581613280565b9050919050565b60006020820190508181036000830152613725816132a3565b9050919050565b60006020820190508181036000830152613745816132c6565b9050919050565b60006020820190508181036000830152613765816132e9565b9050919050565b600060208201905081810360008301526137858161330c565b9050919050565b600060208201905081810360008301526137a58161332f565b9050919050565b600060208201905081810360008301526137c581613352565b9050919050565b600060208201905081810360008301526137e581613375565b9050919050565b6000602082019050818103600083015261380581613398565b9050919050565b60006020820190508181036000830152613825816133bb565b9050919050565b60006020820190508181036000830152613845816133de565b9050919050565b6000602082019050818103600083015261386581613401565b9050919050565b60006020820190506138816000830184613433565b92915050565b60006138916138a2565b905061389d8282613b87565b919050565b6000604051905090565b600067ffffffffffffffff8211156138c7576138c6613d1d565b5b6138d082613d60565b9050602081019050919050565b600067ffffffffffffffff8211156138f8576138f7613d1d565b5b61390182613d60565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061399582613b09565b91506139a083613b09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139d5576139d4613c32565b5b828201905092915050565b60006139eb82613b09565b91506139f683613b09565b925082613a0657613a05613c61565b5b828204905092915050565b6000613a1c82613b09565b9150613a2783613b09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6057613a5f613c32565b5b828202905092915050565b6000613a7682613b09565b9150613a8183613b09565b925082821015613a9457613a93613c32565b5b828203905092915050565b6000613aaa82613ae9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b40578082015181840152602081019050613b25565b83811115613b4f576000848401525b50505050565b60006002820490506001821680613b6d57607f821691505b60208210811415613b8157613b80613c90565b5b50919050565b613b9082613d60565b810181811067ffffffffffffffff82111715613baf57613bae613d1d565b5b80604052505050565b6000613bc382613b09565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bf657613bf5613c32565b5b600182019050919050565b6000613c0c82613b09565b9150613c1783613b09565b925082613c2757613c26613c61565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6578636565647320726573657276656420737570706c79000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20616d6f756e7420616c7265616479206d696e7465642e0000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6761732066656520666f72206e6f7468696e672c2076656769656d6f6e20646f60008201527f6e277420616363657074207468697320726571756573742e0000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6769766541776179206e6f7468696e672e000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f746f6b656e4964206578636565647320757070657220626f756e640000000000600082015250565b7f76656769656d6f6e2073616c65206861736e2774207374617274656420796574600082015250565b7f596f752063616e74206d696e74206d6f7265207468616e20323020617420612060008201527f74696d652e000000000000000000000000000000000000000000000000000000602082015250565b61440481613a9f565b811461440f57600080fd5b50565b61441b81613ab1565b811461442657600080fd5b50565b61443281613abd565b811461443d57600080fd5b50565b61444981613b09565b811461445457600080fd5b5056fea2646970667358221220c8a60e20cac716b8df3839ab53077b5ec610dc4d7b9cf609cfe1136c0fdf850b64736f6c63430008060033

Deployed Bytecode Sourcemap

44338:3611:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38128:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26024:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27583:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27106:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38768:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45130:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44481:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28473:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38436:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45604:902;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28883:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45222:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38958:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47481:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25718:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44553:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25448:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3922:94;;;;;;;;;;;;;:::i;:::-;;47758:188;;;;;;;;;;;;;:::i;:::-;;3271:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26193:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47657:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27876:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46924:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29139:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46628:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47021:447;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44516:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28242:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4171:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38128:224;38230:4;38269:35;38254:50;;;:11;:50;;;;:90;;;;38308:36;38332:11;38308:23;:36::i;:::-;38254:90;38247:97;;38128:224;;;:::o;26024:100::-;26078:13;26111:5;26104:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26024:100;:::o;27583:221::-;27659:7;27687:16;27695:7;27687;:16::i;:::-;27679:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27772:15;:24;27788:7;27772:24;;;;;;;;;;;;;;;;;;;;;27765:31;;27583:221;;;:::o;27106:411::-;27187:13;27203:23;27218:7;27203:14;:23::i;:::-;27187:39;;27251:5;27245:11;;:2;:11;;;;27237:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27345:5;27329:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27354:37;27371:5;27378:12;:10;:12::i;:::-;27354:16;:37::i;:::-;27329:62;27307:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27488:21;27497:2;27501:7;27488:8;:21::i;:::-;27176:341;27106:411;;:::o;38768:113::-;38829:7;38856:10;:17;;;;38849:24;;38768:113;:::o;45130:83::-;45175:7;45199:9;;45192:16;;45130:83;:::o;44481:28::-;;;;;;;;;;;;;:::o;28473:339::-;28668:41;28687:12;:10;:12::i;:::-;28701:7;28668:18;:41::i;:::-;28660:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28776:28;28786:4;28792:2;28796:7;28776:9;:28::i;:::-;28473:339;;;:::o;38436:256::-;38533:7;38569:23;38586:5;38569:16;:23::i;:::-;38561:5;:31;38553:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38658:12;:19;38671:5;38658:19;;;;;;;;;;;;;;;:26;38678:5;38658:26;;;;;;;;;;;;38651:33;;38436:256;;;;:::o;45604:902::-;45702:8;;;;;;;;;;;45694:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;45863:9;;45855:5;:17;;;;:::i;:::-;45838:13;45816:19;:9;:17;:19::i;:::-;:35;;;;:::i;:::-;:56;;45808:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45953:13;45941:9;;:25;;;;:::i;:::-;45928:9;:38;;45920:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;46043:2;46026:13;:19;;46018:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;46161:1;46145:13;:17;46137:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;46309:6;46305:194;46325:13;46321:1;:17;46305:194;;;46369:17;46389:19;:9;:17;:19::i;:::-;46369:39;;46423:28;46433:6;46441:9;46423;:28::i;:::-;46466:21;:9;:19;:21::i;:::-;46354:145;46340:3;;;;;:::i;:::-;;;;46305:194;;;;45604:902;;:::o;28883:185::-;29021:39;29038:4;29044:2;29048:7;29021:39;;;;;;;;;;;;:16;:39::i;:::-;28883:185;;;:::o;45222:342::-;45281:16;45310:18;45331:17;45341:6;45331:9;:17::i;:::-;45310:38;;45361:25;45403:10;45389:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45361:53;;45429:9;45425:106;45444:10;45440:1;:14;45425:106;;;45489:30;45509:6;45517:1;45489:19;:30::i;:::-;45475:8;45484:1;45475:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;45456:3;;;;;:::i;:::-;;;;45425:106;;;;45548:8;45541:15;;;;45222:342;;;:::o;38958:233::-;39033:7;39069:30;:28;:30::i;:::-;39061:5;:38;39053:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39166:10;39177:5;39166:17;;;;;;;;:::i;:::-;;;;;;;;;;39159:24;;38958:233;;;:::o;47481:94::-;3502:12;:10;:12::i;:::-;3491:23;;:7;:5;:7::i;:::-;:23;;;3483:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47564:3:::1;47554:7;:13;;;;;;;;;;;;:::i;:::-;;47481:94:::0;:::o;25718:239::-;25790:7;25810:13;25826:7;:16;25834:7;25826:16;;;;;;;;;;;;;;;;;;;;;25810:32;;25878:1;25861:19;;:5;:19;;;;25853:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25944:5;25937:12;;;25718:239;;;:::o;44553:29::-;;;;:::o;25448:208::-;25520:7;25565:1;25548:19;;:5;:19;;;;25540:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25632:9;:16;25642:5;25632:16;;;;;;;;;;;;;;;;25625:23;;25448:208;;;:::o;3922:94::-;3502:12;:10;:12::i;:::-;3491:23;;:7;:5;:7::i;:::-;:23;;;3483:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3987:21:::1;4005:1;3987:9;:21::i;:::-;3922:94::o:0;47758:188::-;3502:12;:10;:12::i;:::-;3491:23;;:7;:5;:7::i;:::-;:23;;;3483:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47811:13:::1;47851:1;47827:21;:25;;;;:::i;:::-;47811:41;;47879:2;;;;;;;;;;;47871:16;;:23;47888:5;47871:23;;;;;;;;;;;;;;;;;;;;;;;47863:32;;;::::0;::::1;;47922:2;;;;;;;;;;;47914:16;;:23;47931:5;47914:23;;;;;;;;;;;;;;;;;;;;;;;47906:32;;;::::0;::::1;;47800:146;47758:188::o:0;3271:87::-;3317:7;3344:6;;;;;;;;;;;3337:13;;3271:87;:::o;26193:104::-;26249:13;26282:7;26275:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26193:104;:::o;47657:89::-;3502:12;:10;:12::i;:::-;3491:23;;:7;:5;:7::i;:::-;:23;;;3483:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47735:6:::1;47723:9;:18;;;;47657:89:::0;:::o;27876:295::-;27991:12;:10;:12::i;:::-;27979:24;;:8;:24;;;;27971:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28091:8;28046:18;:32;28065:12;:10;:12::i;:::-;28046:32;;;;;;;;;;;;;;;:42;28079:8;28046:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28144:8;28115:48;;28130:12;:10;:12::i;:::-;28115:48;;;28154:8;28115:48;;;;;;:::i;:::-;;;;;;;;27876:295;;:::o;46924:85::-;3502:12;:10;:12::i;:::-;3491:23;;:7;:5;:7::i;:::-;:23;;;3483:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46998:3:::1;46987:8;;:14;;;;;;;;;;;;;;;;;;46924:85:::0;:::o;29139:328::-;29314:41;29333:12;:10;:12::i;:::-;29347:7;29314:18;:41::i;:::-;29306:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29420:39;29434:4;29440:2;29444:7;29453:5;29420:13;:39::i;:::-;29139:328;;;;:::o;46628:269::-;46701:13;46751:19;:9;:17;:19::i;:::-;46741:7;:29;46733:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46813:23;46839;46854:7;46839:14;:23::i;:::-;46813:49;;46880:9;46873:16;;;46628:269;;;:::o;47021:447::-;3502:12;:10;:12::i;:::-;3491:23;;:7;:5;:7::i;:::-;:23;;;3483:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47121:9:::1;;47110:7;:20;;47102:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47189:1;47179:7;:11;47171:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47248:9;47244:184;47263:7;47259:1;:11;47244:184;;;47301:17;47321:19;:9;:17;:19::i;:::-;47301:39;;47355:25;47365:3;47370:9;47355;:25::i;:::-;47395:21;:9;:19;:21::i;:::-;47286:142;47272:3;;;;;:::i;:::-;;;;47244:184;;;;47453:7;47440:9;;:20;;;;;;;:::i;:::-;;;;;;;;47021:447:::0;;:::o;44516:24::-;;;;:::o;28242:164::-;28339:4;28363:18;:25;28382:5;28363:25;;;;;;;;;;;;;;;:35;28389:8;28363:35;;;;;;;;;;;;;;;;;;;;;;;;;28356:42;;28242:164;;;;:::o;4171:192::-;3502:12;:10;:12::i;:::-;3491:23;;:7;:5;:7::i;:::-;:23;;;3483:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4280:1:::1;4260:22;;:8;:22;;;;4252:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4336:19;4346:8;4336:9;:19::i;:::-;4171:192:::0;:::o;848:114::-;913:7;940;:14;;;933:21;;848:114;;;:::o;970:127::-;1077:1;1059:7;:14;;;:19;;;;;;;;;;;970:127;:::o;14964:387::-;15024:4;15232:12;15299:7;15287:20;15279:28;;15342:1;15335:4;:8;15328:15;;;14964:387;;;:::o;37073:126::-;;;;:::o;25079:305::-;25181:4;25233:25;25218:40;;;:11;:40;;;;:105;;;;25290:33;25275:48;;;:11;:48;;;;25218:105;:158;;;;25340:36;25364:11;25340:23;:36::i;:::-;25218:158;25198:178;;25079:305;;;:::o;30977:127::-;31042:4;31094:1;31066:30;;:7;:16;31074:7;31066:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31059:37;;30977:127;;;:::o;2061:98::-;2114:7;2141:10;2134:17;;2061:98;:::o;34959:174::-;35061:2;35034:15;:24;35050:7;35034:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35117:7;35113:2;35079:46;;35088:23;35103:7;35088:14;:23::i;:::-;35079:46;;;;;;;;;;;;34959:174;;:::o;31271:348::-;31364:4;31389:16;31397:7;31389;:16::i;:::-;31381:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31465:13;31481:23;31496:7;31481:14;:23::i;:::-;31465:39;;31534:5;31523:16;;:7;:16;;;:51;;;;31567:7;31543:31;;:20;31555:7;31543:11;:20::i;:::-;:31;;;31523:51;:87;;;;31578:32;31595:5;31602:7;31578:16;:32::i;:::-;31523:87;31515:96;;;31271:348;;;;:::o;34263:578::-;34422:4;34395:31;;:23;34410:7;34395:14;:23::i;:::-;:31;;;34387:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34505:1;34491:16;;:2;:16;;;;34483:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34561:39;34582:4;34588:2;34592:7;34561:20;:39::i;:::-;34665:29;34682:1;34686:7;34665:8;:29::i;:::-;34726:1;34707:9;:15;34717:4;34707:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34755:1;34738:9;:13;34748:2;34738:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34786:2;34767:7;:16;34775:7;34767:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34825:7;34821:2;34806:27;;34815:4;34806:27;;;;;;;;;;;;34263:578;;;:::o;31961:110::-;32037:26;32047:2;32051:7;32037:26;;;;;;;;;;;;:9;:26::i;:::-;31961:110;;:::o;4371:173::-;4427:16;4446:6;;;;;;;;;;;4427:25;;4472:8;4463:6;;:17;;;;;;;;;;;;;;;;;;4527:8;4496:40;;4517:8;4496:40;;;;;;;;;;;;4416:128;4371:173;:::o;30349:315::-;30506:28;30516:4;30522:2;30526:7;30506:9;:28::i;:::-;30553:48;30576:4;30582:2;30586:7;30595:5;30553:22;:48::i;:::-;30545:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30349:315;;;;:::o;26368:334::-;26441:13;26475:16;26483:7;26475;:16::i;:::-;26467:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26556:21;26580:10;:8;:10::i;:::-;26556:34;;26632:1;26614:7;26608:21;:25;:86;;;;;;;;;;;;;;;;;26660:7;26669:18;:7;:16;:18::i;:::-;26643:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26608:86;26601:93;;;26368:334;;;:::o;11972:157::-;12057:4;12096:25;12081:40;;;:11;:40;;;;12074:47;;11972:157;;;:::o;39804:589::-;39948:45;39975:4;39981:2;39985:7;39948:26;:45::i;:::-;40026:1;40010:18;;:4;:18;;;40006:187;;;40045:40;40077:7;40045:31;:40::i;:::-;40006:187;;;40115:2;40107:10;;:4;:10;;;40103:90;;40134:47;40167:4;40173:7;40134:32;:47::i;:::-;40103:90;40006:187;40221:1;40207:16;;:2;:16;;;40203:183;;;40240:45;40277:7;40240:36;:45::i;:::-;40203:183;;;40313:4;40307:10;;:2;:10;;;40303:83;;40334:40;40362:2;40366:7;40334:27;:40::i;:::-;40303:83;40203:183;39804:589;;;:::o;32298:321::-;32428:18;32434:2;32438:7;32428:5;:18::i;:::-;32479:54;32510:1;32514:2;32518:7;32527:5;32479:22;:54::i;:::-;32457:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32298:321;;;:::o;35698:803::-;35853:4;35874:15;:2;:13;;;:15::i;:::-;35870:624;;;35926:2;35910:36;;;35947:12;:10;:12::i;:::-;35961:4;35967:7;35976:5;35910:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35906:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36173:1;36156:6;:13;:18;36152:272;;;36199:60;;;;;;;;;;:::i;:::-;;;;;;;;36152:272;36374:6;36368:13;36359:6;36355:2;36351:15;36344:38;35906:533;36043:45;;;36033:55;;;:6;:55;;;;36026:62;;;;;35870:624;36478:4;36471:11;;35698:803;;;;;;;:::o;46514:106::-;46566:13;46605:7;46598:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46514:106;:::o;12443:723::-;12499:13;12729:1;12720:5;:10;12716:53;;;12747:10;;;;;;;;;;;;;;;;;;;;;12716:53;12779:12;12794:5;12779:20;;12810:14;12835:78;12850:1;12842:4;:9;12835:78;;12868:8;;;;;:::i;:::-;;;;12899:2;12891:10;;;;;:::i;:::-;;;12835:78;;;12923:19;12955:6;12945:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12923:39;;12973:154;12989:1;12980:5;:10;12973:154;;13017:1;13007:11;;;;;:::i;:::-;;;13084:2;13076:5;:10;;;;:::i;:::-;13063:2;:24;;;;:::i;:::-;13050:39;;13033:6;13040;13033:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13113:2;13104:11;;;;;:::i;:::-;;;12973:154;;;13151:6;13137:21;;;;;12443:723;;;;:::o;41116:164::-;41220:10;:17;;;;41193:15;:24;41209:7;41193:24;;;;;;;;;;;:44;;;;41248:10;41264:7;41248:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41116:164;:::o;41907:988::-;42173:22;42223:1;42198:22;42215:4;42198:16;:22::i;:::-;:26;;;;:::i;:::-;42173:51;;42235:18;42256:17;:26;42274:7;42256:26;;;;;;;;;;;;42235:47;;42403:14;42389:10;:28;42385:328;;42434:19;42456:12;:18;42469:4;42456:18;;;;;;;;;;;;;;;:34;42475:14;42456:34;;;;;;;;;;;;42434:56;;42540:11;42507:12;:18;42520:4;42507:18;;;;;;;;;;;;;;;:30;42526:10;42507:30;;;;;;;;;;;:44;;;;42657:10;42624:17;:30;42642:11;42624:30;;;;;;;;;;;:43;;;;42419:294;42385:328;42809:17;:26;42827:7;42809:26;;;;;;;;;;;42802:33;;;42853:12;:18;42866:4;42853:18;;;;;;;;;;;;;;;:34;42872:14;42853:34;;;;;;;;;;;42846:41;;;41988:907;;41907:988;;:::o;43190:1079::-;43443:22;43488:1;43468:10;:17;;;;:21;;;;:::i;:::-;43443:46;;43500:18;43521:15;:24;43537:7;43521:24;;;;;;;;;;;;43500:45;;43872:19;43894:10;43905:14;43894:26;;;;;;;;:::i;:::-;;;;;;;;;;43872:48;;43958:11;43933:10;43944;43933:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44069:10;44038:15;:28;44054:11;44038:28;;;;;;;;;;;:41;;;;44210:15;:24;44226:7;44210:24;;;;;;;;;;;44203:31;;;44245:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43261:1008;;;43190:1079;:::o;40694:221::-;40779:14;40796:20;40813:2;40796:16;:20::i;:::-;40779:37;;40854:7;40827:12;:16;40840:2;40827:16;;;;;;;;;;;;;;;:24;40844:6;40827:24;;;;;;;;;;;:34;;;;40901:6;40872:17;:26;40890:7;40872:26;;;;;;;;;;;:35;;;;40768:147;40694:221;;:::o;32955:382::-;33049:1;33035:16;;:2;:16;;;;33027:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33108:16;33116:7;33108;:16::i;:::-;33107:17;33099:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33170:45;33199:1;33203:2;33207:7;33170:20;:45::i;:::-;33245:1;33228:9;:13;33238:2;33228:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33276:2;33257:7;:16;33265:7;33257:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33321:7;33317:2;33296:33;;33313:1;33296:33;;;;;;;;;;;;32955:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410: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;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;1035:84;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1176:86;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1330:79;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:2;;1540:79;;:::i;:::-;1499:2;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:2;;1899:79;;:::i;:::-;1858:2;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2184:87;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2391:79;;:::i;:::-;2353:2;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2343:263;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:2;;;2743:79;;:::i;:::-;2705:2;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2695:391;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:2;;;3240:79;;:::i;:::-;3202:2;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3192:519;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:2;;;3892:79;;:::i;:::-;3853:2;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:2;;;4476:79;;:::i;:::-;4440:2;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3843:817;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:2;;;4794:79;;:::i;:::-;4756:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4746:388;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5271:79;;:::i;:::-;5233:2;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5223:391;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:2;;;5731:79;;:::i;:::-;5693:2;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5683:260;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:2;;;6062:79;;:::i;:::-;6024:2;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;6014:262;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:2;;;6406:79;;:::i;:::-;6368:2;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6358:273;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:2;;;6761:79;;:::i;:::-;6723:2;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:2;;;6961:79;;:::i;:::-;6925:2;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6713:433;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:2;;;7266:79;;:::i;:::-;7228:2;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7218:263;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7567:99;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7737:53;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8623:50;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;;;;;:::o;9798:366::-;9940:3;9961:67;10025:2;10020:3;9961:67;:::i;:::-;9954:74;;10037:93;10126:3;10037:93;:::i;:::-;10155:2;10150:3;10146:12;10139:19;;9944:220;;;:::o;10170:366::-;10312:3;10333:67;10397:2;10392:3;10333:67;:::i;:::-;10326:74;;10409:93;10498:3;10409:93;:::i;:::-;10527:2;10522:3;10518:12;10511:19;;10316:220;;;:::o;10542:366::-;10684:3;10705:67;10769:2;10764:3;10705:67;:::i;:::-;10698:74;;10781:93;10870:3;10781:93;:::i;:::-;10899:2;10894:3;10890:12;10883:19;;10688:220;;;:::o;10914:366::-;11056:3;11077:67;11141:2;11136:3;11077:67;:::i;:::-;11070:74;;11153:93;11242:3;11153:93;:::i;:::-;11271:2;11266:3;11262:12;11255:19;;11060:220;;;:::o;11286:366::-;11428:3;11449:67;11513:2;11508:3;11449:67;:::i;:::-;11442:74;;11525:93;11614:3;11525:93;:::i;:::-;11643:2;11638:3;11634:12;11627:19;;11432:220;;;:::o;11658:366::-;11800:3;11821:67;11885:2;11880:3;11821:67;:::i;:::-;11814:74;;11897:93;11986:3;11897:93;:::i;:::-;12015:2;12010:3;12006:12;11999:19;;11804:220;;;:::o;12030:366::-;12172:3;12193:67;12257:2;12252:3;12193:67;:::i;:::-;12186:74;;12269:93;12358:3;12269:93;:::i;:::-;12387:2;12382:3;12378:12;12371:19;;12176:220;;;:::o;12402:366::-;12544:3;12565:67;12629:2;12624:3;12565:67;:::i;:::-;12558:74;;12641:93;12730:3;12641:93;:::i;:::-;12759:2;12754:3;12750:12;12743:19;;12548:220;;;:::o;12774:366::-;12916:3;12937:67;13001:2;12996:3;12937:67;:::i;:::-;12930:74;;13013:93;13102:3;13013:93;:::i;:::-;13131:2;13126:3;13122:12;13115:19;;12920:220;;;:::o;13146:366::-;13288:3;13309:67;13373:2;13368:3;13309:67;:::i;:::-;13302:74;;13385:93;13474:3;13385:93;:::i;:::-;13503:2;13498:3;13494:12;13487:19;;13292:220;;;:::o;13518:366::-;13660:3;13681:67;13745:2;13740:3;13681:67;:::i;:::-;13674:74;;13757:93;13846:3;13757:93;:::i;:::-;13875:2;13870:3;13866:12;13859:19;;13664:220;;;:::o;13890:366::-;14032:3;14053:67;14117:2;14112:3;14053:67;:::i;:::-;14046:74;;14129:93;14218:3;14129:93;:::i;:::-;14247:2;14242:3;14238:12;14231:19;;14036:220;;;:::o;14262:366::-;14404:3;14425:67;14489:2;14484:3;14425:67;:::i;:::-;14418:74;;14501:93;14590:3;14501:93;:::i;:::-;14619:2;14614:3;14610:12;14603:19;;14408:220;;;:::o;14634:366::-;14776:3;14797:67;14861:2;14856:3;14797:67;:::i;:::-;14790:74;;14873:93;14962:3;14873:93;:::i;:::-;14991:2;14986:3;14982:12;14975:19;;14780:220;;;:::o;15006:366::-;15148:3;15169:67;15233:2;15228:3;15169:67;:::i;:::-;15162:74;;15245:93;15334:3;15245:93;:::i;:::-;15363:2;15358:3;15354:12;15347:19;;15152:220;;;:::o;15378:366::-;15520:3;15541:67;15605:2;15600:3;15541:67;:::i;:::-;15534:74;;15617:93;15706:3;15617:93;:::i;:::-;15735:2;15730:3;15726:12;15719:19;;15524:220;;;:::o;15750:366::-;15892:3;15913:67;15977:2;15972:3;15913:67;:::i;:::-;15906:74;;15989:93;16078:3;15989:93;:::i;:::-;16107:2;16102:3;16098:12;16091:19;;15896:220;;;:::o;16122:366::-;16264:3;16285:67;16349:2;16344:3;16285:67;:::i;:::-;16278:74;;16361:93;16450:3;16361:93;:::i;:::-;16479:2;16474:3;16470:12;16463:19;;16268:220;;;:::o;16494:366::-;16636:3;16657:67;16721:2;16716:3;16657:67;:::i;:::-;16650:74;;16733:93;16822:3;16733:93;:::i;:::-;16851:2;16846:3;16842:12;16835:19;;16640:220;;;:::o;16866:366::-;17008:3;17029:67;17093:2;17088:3;17029:67;:::i;:::-;17022:74;;17105:93;17194:3;17105:93;:::i;:::-;17223:2;17218:3;17214:12;17207:19;;17012:220;;;:::o;17238:366::-;17380:3;17401:67;17465:2;17460:3;17401:67;:::i;:::-;17394:74;;17477:93;17566:3;17477:93;:::i;:::-;17595:2;17590:3;17586:12;17579:19;;17384:220;;;:::o;17610:366::-;17752:3;17773:67;17837:2;17832:3;17773:67;:::i;:::-;17766:74;;17849:93;17938:3;17849:93;:::i;:::-;17967:2;17962:3;17958:12;17951:19;;17756:220;;;:::o;17982:366::-;18124:3;18145:67;18209:2;18204:3;18145:67;:::i;:::-;18138:74;;18221:93;18310:3;18221:93;:::i;:::-;18339:2;18334:3;18330:12;18323:19;;18128:220;;;:::o;18354:366::-;18496:3;18517:67;18581:2;18576:3;18517:67;:::i;:::-;18510:74;;18593:93;18682:3;18593:93;:::i;:::-;18711:2;18706:3;18702:12;18695:19;;18500:220;;;:::o;18726:366::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18872:220;;;:::o;19098:366::-;19240:3;19261:67;19325:2;19320:3;19261:67;:::i;:::-;19254:74;;19337:93;19426:3;19337:93;:::i;:::-;19455:2;19450:3;19446:12;19439:19;;19244:220;;;:::o;19470:108::-;19547:24;19565:5;19547:24;:::i;:::-;19542:3;19535:37;19525:53;;:::o;19584:118::-;19671:24;19689:5;19671:24;:::i;:::-;19666:3;19659:37;19649:53;;:::o;19708:435::-;19888:3;19910:95;20001:3;19992:6;19910:95;:::i;:::-;19903:102;;20022:95;20113:3;20104:6;20022:95;:::i;:::-;20015:102;;20134:3;20127:10;;19892:251;;;;;:::o;20149:222::-;20242:4;20280:2;20269:9;20265:18;20257:26;;20293:71;20361:1;20350:9;20346:17;20337:6;20293:71;:::i;:::-;20247:124;;;;:::o;20377:640::-;20572:4;20610:3;20599:9;20595:19;20587:27;;20624:71;20692:1;20681:9;20677:17;20668:6;20624:71;:::i;:::-;20705:72;20773:2;20762:9;20758:18;20749:6;20705:72;:::i;:::-;20787;20855:2;20844:9;20840:18;20831:6;20787:72;:::i;:::-;20906:9;20900:4;20896:20;20891:2;20880:9;20876:18;20869:48;20934:76;21005:4;20996:6;20934:76;:::i;:::-;20926:84;;20577:440;;;;;;;:::o;21023:373::-;21166:4;21204:2;21193:9;21189:18;21181:26;;21253:9;21247:4;21243:20;21239:1;21228:9;21224:17;21217:47;21281:108;21384:4;21375:6;21281:108;:::i;:::-;21273:116;;21171:225;;;;:::o;21402:210::-;21489:4;21527:2;21516:9;21512:18;21504:26;;21540:65;21602:1;21591:9;21587:17;21578:6;21540:65;:::i;:::-;21494:118;;;;:::o;21618:313::-;21731:4;21769:2;21758:9;21754:18;21746:26;;21818:9;21812:4;21808:20;21804:1;21793:9;21789:17;21782:47;21846:78;21919:4;21910:6;21846:78;:::i;:::-;21838:86;;21736:195;;;;:::o;21937:419::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;22108:248;;;:::o;22362:419::-;22528:4;22566:2;22555:9;22551:18;22543:26;;22615:9;22609:4;22605:20;22601:1;22590:9;22586:17;22579:47;22643:131;22769:4;22643:131;:::i;:::-;22635:139;;22533:248;;;:::o;22787:419::-;22953:4;22991:2;22980:9;22976:18;22968:26;;23040:9;23034:4;23030:20;23026:1;23015:9;23011:17;23004:47;23068:131;23194:4;23068:131;:::i;:::-;23060:139;;22958:248;;;:::o;23212:419::-;23378:4;23416:2;23405:9;23401:18;23393:26;;23465:9;23459:4;23455:20;23451:1;23440:9;23436:17;23429:47;23493:131;23619:4;23493:131;:::i;:::-;23485:139;;23383:248;;;:::o;23637:419::-;23803:4;23841:2;23830:9;23826:18;23818:26;;23890:9;23884:4;23880:20;23876:1;23865:9;23861:17;23854:47;23918:131;24044:4;23918:131;:::i;:::-;23910:139;;23808:248;;;:::o;24062:419::-;24228:4;24266:2;24255:9;24251:18;24243:26;;24315:9;24309:4;24305:20;24301:1;24290:9;24286:17;24279:47;24343:131;24469:4;24343:131;:::i;:::-;24335:139;;24233:248;;;:::o;24487:419::-;24653:4;24691:2;24680:9;24676:18;24668:26;;24740:9;24734:4;24730:20;24726:1;24715:9;24711:17;24704:47;24768:131;24894:4;24768:131;:::i;:::-;24760:139;;24658:248;;;:::o;24912:419::-;25078:4;25116:2;25105:9;25101:18;25093:26;;25165:9;25159:4;25155:20;25151:1;25140:9;25136:17;25129:47;25193:131;25319:4;25193:131;:::i;:::-;25185:139;;25083:248;;;:::o;25337:419::-;25503:4;25541:2;25530:9;25526:18;25518:26;;25590:9;25584:4;25580:20;25576:1;25565:9;25561:17;25554:47;25618:131;25744:4;25618:131;:::i;:::-;25610:139;;25508:248;;;:::o;25762:419::-;25928:4;25966:2;25955:9;25951:18;25943:26;;26015:9;26009:4;26005:20;26001:1;25990:9;25986:17;25979:47;26043:131;26169:4;26043:131;:::i;:::-;26035:139;;25933:248;;;:::o;26187:419::-;26353:4;26391:2;26380:9;26376:18;26368:26;;26440:9;26434:4;26430:20;26426:1;26415:9;26411:17;26404:47;26468:131;26594:4;26468:131;:::i;:::-;26460:139;;26358:248;;;:::o;26612:419::-;26778:4;26816:2;26805:9;26801:18;26793:26;;26865:9;26859:4;26855:20;26851:1;26840:9;26836:17;26829:47;26893:131;27019:4;26893:131;:::i;:::-;26885:139;;26783:248;;;:::o;27037:419::-;27203:4;27241:2;27230:9;27226:18;27218:26;;27290:9;27284:4;27280:20;27276:1;27265:9;27261:17;27254:47;27318:131;27444:4;27318:131;:::i;:::-;27310:139;;27208:248;;;:::o;27462:419::-;27628:4;27666:2;27655:9;27651:18;27643:26;;27715:9;27709:4;27705:20;27701:1;27690:9;27686:17;27679:47;27743:131;27869:4;27743:131;:::i;:::-;27735:139;;27633:248;;;:::o;27887:419::-;28053:4;28091:2;28080:9;28076:18;28068:26;;28140:9;28134:4;28130:20;28126:1;28115:9;28111:17;28104:47;28168:131;28294:4;28168:131;:::i;:::-;28160:139;;28058:248;;;:::o;28312:419::-;28478:4;28516:2;28505:9;28501:18;28493:26;;28565:9;28559:4;28555:20;28551:1;28540:9;28536:17;28529:47;28593:131;28719:4;28593:131;:::i;:::-;28585:139;;28483:248;;;:::o;28737:419::-;28903:4;28941:2;28930:9;28926:18;28918:26;;28990:9;28984:4;28980:20;28976:1;28965:9;28961:17;28954:47;29018:131;29144:4;29018:131;:::i;:::-;29010:139;;28908:248;;;:::o;29162:419::-;29328:4;29366:2;29355:9;29351:18;29343:26;;29415:9;29409:4;29405:20;29401:1;29390:9;29386:17;29379:47;29443:131;29569:4;29443:131;:::i;:::-;29435:139;;29333:248;;;:::o;29587:419::-;29753:4;29791:2;29780:9;29776:18;29768:26;;29840:9;29834:4;29830:20;29826:1;29815:9;29811:17;29804:47;29868:131;29994:4;29868:131;:::i;:::-;29860:139;;29758:248;;;:::o;30012:419::-;30178:4;30216:2;30205:9;30201:18;30193:26;;30265:9;30259:4;30255:20;30251:1;30240:9;30236:17;30229:47;30293:131;30419:4;30293:131;:::i;:::-;30285:139;;30183:248;;;:::o;30437:419::-;30603:4;30641:2;30630:9;30626:18;30618:26;;30690:9;30684:4;30680:20;30676:1;30665:9;30661:17;30654:47;30718:131;30844:4;30718:131;:::i;:::-;30710:139;;30608:248;;;:::o;30862:419::-;31028:4;31066:2;31055:9;31051:18;31043:26;;31115:9;31109:4;31105:20;31101:1;31090:9;31086:17;31079:47;31143:131;31269:4;31143:131;:::i;:::-;31135:139;;31033:248;;;:::o;31287:419::-;31453:4;31491:2;31480:9;31476:18;31468:26;;31540:9;31534:4;31530:20;31526:1;31515:9;31511:17;31504:47;31568:131;31694:4;31568:131;:::i;:::-;31560:139;;31458:248;;;:::o;31712:419::-;31878:4;31916:2;31905:9;31901:18;31893:26;;31965:9;31959:4;31955:20;31951:1;31940:9;31936:17;31929:47;31993:131;32119:4;31993:131;:::i;:::-;31985:139;;31883:248;;;:::o;32137:419::-;32303:4;32341:2;32330:9;32326:18;32318:26;;32390:9;32384:4;32380:20;32376:1;32365:9;32361:17;32354:47;32418:131;32544:4;32418:131;:::i;:::-;32410:139;;32308:248;;;:::o;32562:419::-;32728:4;32766:2;32755:9;32751:18;32743:26;;32815:9;32809:4;32805:20;32801:1;32790:9;32786:17;32779:47;32843:131;32969:4;32843:131;:::i;:::-;32835:139;;32733:248;;;:::o;32987:222::-;33080:4;33118:2;33107:9;33103:18;33095:26;;33131:71;33199:1;33188:9;33184:17;33175:6;33131:71;:::i;:::-;33085:124;;;;:::o;33215:129::-;33249:6;33276:20;;:::i;:::-;33266:30;;33305:33;33333:4;33325:6;33305:33;:::i;:::-;33256:88;;;:::o;33350:75::-;33383:6;33416:2;33410:9;33400:19;;33390:35;:::o;33431:307::-;33492:4;33582:18;33574:6;33571:30;33568:2;;;33604:18;;:::i;:::-;33568:2;33642:29;33664:6;33642:29;:::i;:::-;33634:37;;33726:4;33720;33716:15;33708:23;;33497:241;;;:::o;33744:308::-;33806:4;33896:18;33888:6;33885:30;33882:2;;;33918:18;;:::i;:::-;33882:2;33956:29;33978:6;33956:29;:::i;:::-;33948:37;;34040:4;34034;34030:15;34022:23;;33811:241;;;:::o;34058:132::-;34125:4;34148:3;34140:11;;34178:4;34173:3;34169:14;34161:22;;34130:60;;;:::o;34196:114::-;34263:6;34297:5;34291:12;34281:22;;34270:40;;;:::o;34316:98::-;34367:6;34401:5;34395:12;34385:22;;34374:40;;;:::o;34420:99::-;34472:6;34506:5;34500:12;34490:22;;34479:40;;;:::o;34525:113::-;34595:4;34627;34622:3;34618:14;34610:22;;34600:38;;;:::o;34644:184::-;34743:11;34777:6;34772:3;34765:19;34817:4;34812:3;34808:14;34793:29;;34755:73;;;;:::o;34834:168::-;34917:11;34951:6;34946:3;34939:19;34991:4;34986:3;34982:14;34967:29;;34929:73;;;;:::o;35008:169::-;35092:11;35126:6;35121:3;35114:19;35166:4;35161:3;35157:14;35142:29;;35104:73;;;;:::o;35183:148::-;35285:11;35322:3;35307:18;;35297:34;;;;:::o;35337:305::-;35377:3;35396:20;35414:1;35396:20;:::i;:::-;35391:25;;35430:20;35448:1;35430:20;:::i;:::-;35425:25;;35584:1;35516:66;35512:74;35509:1;35506:81;35503:2;;;35590:18;;:::i;:::-;35503:2;35634:1;35631;35627:9;35620:16;;35381:261;;;;:::o;35648:185::-;35688:1;35705:20;35723:1;35705:20;:::i;:::-;35700:25;;35739:20;35757:1;35739:20;:::i;:::-;35734:25;;35778:1;35768:2;;35783:18;;:::i;:::-;35768:2;35825:1;35822;35818:9;35813:14;;35690:143;;;;:::o;35839:348::-;35879:7;35902:20;35920:1;35902:20;:::i;:::-;35897:25;;35936:20;35954:1;35936:20;:::i;:::-;35931:25;;36124:1;36056:66;36052:74;36049:1;36046:81;36041:1;36034:9;36027:17;36023:105;36020:2;;;36131:18;;:::i;:::-;36020:2;36179:1;36176;36172:9;36161:20;;35887:300;;;;:::o;36193:191::-;36233:4;36253:20;36271:1;36253:20;:::i;:::-;36248:25;;36287:20;36305:1;36287:20;:::i;:::-;36282:25;;36326:1;36323;36320:8;36317:2;;;36331:18;;:::i;:::-;36317:2;36376:1;36373;36369:9;36361:17;;36238:146;;;;:::o;36390:96::-;36427:7;36456:24;36474:5;36456:24;:::i;:::-;36445:35;;36435:51;;;:::o;36492:90::-;36526:7;36569:5;36562:13;36555:21;36544:32;;36534:48;;;:::o;36588:149::-;36624:7;36664:66;36657:5;36653:78;36642:89;;36632:105;;;:::o;36743:126::-;36780:7;36820:42;36813:5;36809:54;36798:65;;36788:81;;;:::o;36875:77::-;36912:7;36941:5;36930:16;;36920:32;;;:::o;36958:154::-;37042:6;37037:3;37032;37019:30;37104:1;37095:6;37090:3;37086:16;37079:27;37009:103;;;:::o;37118:307::-;37186:1;37196:113;37210:6;37207:1;37204:13;37196:113;;;37295:1;37290:3;37286:11;37280:18;37276:1;37271:3;37267:11;37260:39;37232:2;37229:1;37225:10;37220:15;;37196:113;;;37327:6;37324:1;37321:13;37318:2;;;37407:1;37398:6;37393:3;37389:16;37382:27;37318:2;37167:258;;;;:::o;37431:320::-;37475:6;37512:1;37506:4;37502:12;37492:22;;37559:1;37553:4;37549:12;37580:18;37570:2;;37636:4;37628:6;37624:17;37614:27;;37570:2;37698;37690:6;37687:14;37667:18;37664:38;37661:2;;;37717:18;;:::i;:::-;37661:2;37482:269;;;;:::o;37757:281::-;37840:27;37862:4;37840:27;:::i;:::-;37832:6;37828:40;37970:6;37958:10;37955:22;37934:18;37922:10;37919:34;37916:62;37913:2;;;37981:18;;:::i;:::-;37913:2;38021:10;38017:2;38010:22;37800:238;;;:::o;38044:233::-;38083:3;38106:24;38124:5;38106:24;:::i;:::-;38097:33;;38152:66;38145:5;38142:77;38139:2;;;38222:18;;:::i;:::-;38139:2;38269:1;38262:5;38258:13;38251:20;;38087:190;;;:::o;38283:176::-;38315:1;38332:20;38350:1;38332:20;:::i;:::-;38327:25;;38366:20;38384:1;38366:20;:::i;:::-;38361:25;;38405:1;38395:2;;38410:18;;:::i;:::-;38395:2;38451:1;38448;38444:9;38439:14;;38317:142;;;;:::o;38465:180::-;38513:77;38510:1;38503:88;38610:4;38607:1;38600:15;38634:4;38631:1;38624:15;38651:180;38699:77;38696:1;38689:88;38796:4;38793:1;38786:15;38820:4;38817:1;38810:15;38837:180;38885:77;38882:1;38875:88;38982:4;38979:1;38972:15;39006:4;39003:1;38996:15;39023:180;39071:77;39068:1;39061:88;39168:4;39165:1;39158:15;39192:4;39189:1;39182:15;39209:180;39257:77;39254:1;39247:88;39354:4;39351:1;39344:15;39378:4;39375:1;39368:15;39395:180;39443:77;39440:1;39433:88;39540:4;39537:1;39530:15;39564:4;39561:1;39554:15;39581:117;39690:1;39687;39680:12;39704:117;39813:1;39810;39803:12;39827:117;39936:1;39933;39926:12;39950:117;40059:1;40056;40049:12;40073:102;40114:6;40165:2;40161:7;40156:2;40149:5;40145:14;40141:28;40131:38;;40121:54;;;:::o;40181:230::-;40321:34;40317:1;40309:6;40305:14;40298:58;40390:13;40385:2;40377:6;40373:15;40366:38;40287:124;:::o;40417:237::-;40557:34;40553:1;40545:6;40541:14;40534:58;40626:20;40621:2;40613:6;40609:15;40602:45;40523:131;:::o;40660:225::-;40800:34;40796:1;40788:6;40784:14;40777:58;40869:8;40864:2;40856:6;40852:15;40845:33;40766:119;:::o;40891:173::-;41031:25;41027:1;41019:6;41015:14;41008:49;40997:67;:::o;41070:178::-;41210:30;41206:1;41198:6;41194:14;41187:54;41176:72;:::o;41254:223::-;41394:34;41390:1;41382:6;41378:14;41371:58;41463:6;41458:2;41450:6;41446:15;41439:31;41360:117;:::o;41483:175::-;41623:27;41619:1;41611:6;41607:14;41600:51;41589:69;:::o;41664:231::-;41804:34;41800:1;41792:6;41788:14;41781:58;41873:14;41868:2;41860:6;41856:15;41849:39;41770:125;:::o;41901:180::-;42041:32;42037:1;42029:6;42025:14;42018:56;42007:74;:::o;42087:243::-;42227:34;42223:1;42215:6;42211:14;42204:58;42296:26;42291:2;42283:6;42279:15;42272:51;42193:137;:::o;42336:229::-;42476:34;42472:1;42464:6;42460:14;42453:58;42545:12;42540:2;42532:6;42528:15;42521:37;42442:123;:::o;42571:228::-;42711:34;42707:1;42699:6;42695:14;42688:58;42780:11;42775:2;42767:6;42763:15;42756:36;42677:122;:::o;42805:182::-;42945:34;42941:1;42933:6;42929:14;42922:58;42911:76;:::o;42993:231::-;43133:34;43129:1;43121:6;43117:14;43110:58;43202:14;43197:2;43189:6;43185:15;43178:39;43099:125;:::o;43230:182::-;43370:34;43366:1;43358:6;43354:14;43347:58;43336:76;:::o;43418:243::-;43558:34;43554:1;43546:6;43542:14;43535:58;43627:26;43622:2;43614:6;43610:15;43603:51;43524:137;:::o;43667:228::-;43807:34;43803:1;43795:6;43791:14;43784:58;43876:11;43871:2;43863:6;43859:15;43852:36;43773:122;:::o;43901:166::-;44041:18;44037:1;44029:6;44025:14;44018:42;44007:60;:::o;44073:234::-;44213:34;44209:1;44201:6;44197:14;44190:58;44282:17;44277:2;44269:6;44265:15;44258:42;44179:128;:::o;44313:220::-;44453:34;44449:1;44441:6;44437:14;44430:58;44522:3;44517:2;44509:6;44505:15;44498:28;44419:114;:::o;44539:236::-;44679:34;44675:1;44667:6;44663:14;44656:58;44748:19;44743:2;44735:6;44731:15;44724:44;44645:130;:::o;44781:167::-;44921:19;44917:1;44909:6;44905:14;44898:43;44887:61;:::o;44954:231::-;45094:34;45090:1;45082:6;45078:14;45071:58;45163:14;45158:2;45150:6;45146:15;45139:39;45060:125;:::o;45191:177::-;45331:29;45327:1;45319:6;45315:14;45308:53;45297:71;:::o;45374:182::-;45514:34;45510:1;45502:6;45498:14;45491:58;45480:76;:::o;45562:224::-;45702:34;45698:1;45690:6;45686:14;45679:58;45771:7;45766:2;45758:6;45754:15;45747:32;45668:118;:::o;45792:122::-;45865:24;45883:5;45865:24;:::i;:::-;45858:5;45855:35;45845:2;;45904:1;45901;45894:12;45845:2;45835:79;:::o;45920:116::-;45990:21;46005:5;45990:21;:::i;:::-;45983:5;45980:32;45970:2;;46026:1;46023;46016:12;45970:2;45960:76;:::o;46042:120::-;46114:23;46131:5;46114:23;:::i;:::-;46107:5;46104:34;46094:2;;46152:1;46149;46142:12;46094:2;46084:78;:::o;46168:122::-;46241:24;46259:5;46241:24;:::i;:::-;46234:5;46231:35;46221:2;;46280:1;46277;46270:12;46221:2;46211:79;:::o

Swarm Source

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