ETH Price: $2,346.28 (-1.81%)

Token

CryptoPugs (CPUGS)
 

Overview

Max Total Supply

753 CPUGS

Holders

358

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
derox.eth
Balance
5 CPUGS
0xbB12b3108C8dcFD95B1b7432958E3a894a7D0c7f
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:
PogPunks

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-15
*/

// SPDX-License-Identifier: GPL-3.0
// 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/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/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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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/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/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/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/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/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/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.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/PogPunks.sol



pragma solidity ^0.8.0;



contract PogPunks is ERC721Enumerable, Ownable {
  using Strings for uint256;
  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = .065 ether;
  uint256 public maxSupply = 3500;
  uint256 public maxMintAmount = 10;
  uint256 public privateMaxMint = 5;
  bool public paused = false;

  mapping(address => uint) public minted;

  uint public startDate = 1636979400;
  uint public privateDate = 1636725201;

  constructor() ERC721("CryptoPugs", "CPUGS") {
      
    setBaseURI("https://gateway.pinata.cloud/ipfs/QmSxXtEEdhdMcX2VCzNNhsdq7cfV4M8EnEwbFKcwQxLUiE/");
    
    for (uint i = 0; i < 50; i++) {
      _safeMint(0xDc1AAf2CB6080743786A8475dFaD461Fa523760c, totalSupply()+1);
    }
    
    transferOwnership(0xD2898C5927eDC339B1E3a1771f0070032fd53E83);

  }

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

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    require(!paused);
    require(_mintAmount > 0);
    require(totalSupply() + _mintAmount <= maxSupply);
    require(block.timestamp >= privateDate, "Minting has not started yet");
    
    if (block.timestamp < startDate) {
        require(minted[msg.sender] + _mintAmount <= privateMaxMint, "You have minted the max for private sale");
        minted[msg.sender] += _mintAmount;
    } else {
        require(_mintAmount <= maxMintAmount, "You have reached the max mint per transaction");
    }
    
    require(msg.value >= cost * _mintAmount);
    payable(owner()).transfer(msg.value);

    for (uint256 i = 0; i < _mintAmount; i++) {
      _safeMint(_to, totalSupply()+1);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  // only owner
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }

  function setStartDate(uint _newDate) public onlyOwner() {
    startDate = _newDate;
  }
  
  function setPrivateStartDate(uint _newDate) public onlyOwner() {
    privateDate = _newDate;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
}

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":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDate","type":"uint256"}],"name":"setPrivateStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDate","type":"uint256"}],"name":"setStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000f3c565b5066e6ed27d6668000600d55610dac600e55600a600f5560056010556000601160006101000a81548160ff02191690831515021790555063619252c860135563618e71d1601455348015620000a557600080fd5b506040518060400160405280600a81526020017f43727970746f50756773000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f435055475300000000000000000000000000000000000000000000000000000081525081600090805190602001906200012a92919062000f3c565b5080600190805190602001906200014392919062000f3c565b505050620001666200015a6200022260201b60201c565b6200022a60201b60201c565b6200019060405180608001604052806051815260200162005b3b60519139620002f060201b60201c565b60005b6032811015620001f657620001e073dc1aaf2cb6080743786a8475dfad461fa523760c6001620001c86200039b60201b60201c565b620001d49190620013dd565b620003a860201b60201c565b8080620001ed906200154b565b91505062000193565b506200021c73d2898c5927edc339b1e3a1771f0070032fd53e83620003ce60201b60201c565b62001622565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003006200022260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000326620004e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000376906200138e565b60405180910390fd5b80600b90805190602001906200039792919062000f3c565b5050565b6000600880549050905090565b620003ca8282604051806020016040528060008152506200050e60201b60201c565b5050565b620003de6200022260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000404620004e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200045d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000454906200138e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620004d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c79062001306565b60405180910390fd5b620004e1816200022a60201b60201c565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200052083836200057c60201b60201c565b6200053560008484846200076260201b60201c565b62000577576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200056e90620012e4565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e6906200136c565b60405180910390fd5b62000600816200091c60201b60201c565b1562000643576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063a9062001328565b60405180910390fd5b62000657600083836200098860201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006a99190620013dd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007908473ffffffffffffffffffffffffffffffffffffffff1662000acf60201b62001ced1760201c565b156200090f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007c26200022260201b60201c565b8786866040518563ffffffff1660e01b8152600401620007e6949392919062001290565b602060405180830381600087803b1580156200080157600080fd5b505af19250505080156200083557506040513d601f19601f8201168201806040525081019062000832919062001003565b60015b620008be573d806000811462000868576040519150601f19603f3d011682016040523d82523d6000602084013e6200086d565b606091505b50600081511415620008b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ad90620012e4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000914565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620009a083838362000ae260201b62001d001760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009ed57620009e78162000ae760201b60201c565b62000a35565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a345762000a33838262000b3060201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a825762000a7c8162000cad60201b60201c565b62000aca565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000ac95762000ac8828262000df560201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b4a8462000e8160201b620014a21760201c565b62000b5691906200143a565b905060006007600084815260200190815260200160002054905081811462000c3c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000cc391906200143a565b905060006009600084815260200190815260200160002054905060006008838154811062000d1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000d63577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000dd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000e0d8362000e8160201b620014a21760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ef5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000eec906200134a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000f4a9062001515565b90600052602060002090601f01602090048101928262000f6e576000855562000fba565b82601f1062000f8957805160ff191683800117855562000fba565b8280016001018555821562000fba579182015b8281111562000fb957825182559160200191906001019062000f9c565b5b50905062000fc9919062000fcd565b5090565b5b8082111562000fe857600081600090555060010162000fce565b5090565b60008151905062000ffd8162001608565b92915050565b6000602082840312156200101657600080fd5b6000620010268482850162000fec565b91505092915050565b6200103a8162001475565b82525050565b60006200104d82620013b0565b620010598185620013bb565b93506200106b818560208601620014df565b6200107681620015f7565b840191505092915050565b600062001090603283620013cc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000620010f8602683620013cc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062001160601c83620013cc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000620011a2602a83620013cc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006200120a602083620013cc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006200124c602083620013cc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6200128a81620014d5565b82525050565b6000608082019050620012a760008301876200102f565b620012b660208301866200102f565b620012c560408301856200127f565b8181036060830152620012d9818462001040565b905095945050505050565b60006020820190508181036000830152620012ff8162001081565b9050919050565b600060208201905081810360008301526200132181620010e9565b9050919050565b60006020820190508181036000830152620013438162001151565b9050919050565b60006020820190508181036000830152620013658162001193565b9050919050565b600060208201905081810360008301526200138781620011fb565b9050919050565b60006020820190508181036000830152620013a9816200123d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620013ea82620014d5565b9150620013f783620014d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200142f576200142e62001599565b5b828201905092915050565b60006200144782620014d5565b91506200145483620014d5565b9250828210156200146a576200146962001599565b5b828203905092915050565b60006200148282620014b5565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620014ff578082015181840152602081019050620014e2565b838111156200150f576000848401525b50505050565b600060028204905060018216806200152e57607f821691505b60208210811415620015455762001544620015c8565b5b50919050565b60006200155882620014d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200158e576200158d62001599565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b620016138162001489565b81146200161f57600080fd5b50565b61450980620016326000396000f3fe6080604052600436106102255760003560e01c80634f6ccce7116101235780638da5cb5b116100ab578063c87b56dd1161006f578063c87b56dd1461080c578063d5abeb0114610849578063da3ef23f14610874578063e985e9c51461089d578063f2fde38b146108da57610225565b80638da5cb5b1461073957806395d89b4114610764578063a22cb4651461078f578063b88d4fde146107b8578063c6682862146107e157610225565b80636c0360eb116100f25780636c0360eb1461066857806370a0823114610693578063715018a6146106d05780637f00c7a6146106e757806382d95df51461071057610225565b80634f6ccce71461059a57806355f804b3146105d75780635c975abb146106005780636352211e1461062b57610225565b8063239c70ae116101b157806340c10f191161017557806340c10f19146104c457806342842e0e146104e0578063438b63001461050957806344a0d68a146105465780634d2e31b11461056f57610225565b8063239c70ae146103df57806323b872dd1461040a5780632f745c591461043357806335716430146104705780633aaf87f81461049b57610225565b8063095ea7b3116101f8578063095ea7b3146102f85780630b97bc861461032157806313faede61461034c57806318160ddd146103775780631e7269c5146103a257610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061322f565b610903565b60405161025e9190613d19565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613206565b61097d565b005b34801561029c57600080fd5b506102a5610a16565b6040516102b29190613d34565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906132c2565b610aa8565b6040516102ef9190613c90565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906131ca565b610b2d565b005b34801561032d57600080fd5b50610336610c45565b6040516103439190613ff6565b60405180910390f35b34801561035857600080fd5b50610361610c4b565b60405161036e9190613ff6565b60405180910390f35b34801561038357600080fd5b5061038c610c51565b6040516103999190613ff6565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061305f565b610c5e565b6040516103d69190613ff6565b60405180910390f35b3480156103eb57600080fd5b506103f4610c76565b6040516104019190613ff6565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906130c4565b610c7c565b005b34801561043f57600080fd5b5061045a600480360381019061045591906131ca565b610cdc565b6040516104679190613ff6565b60405180910390f35b34801561047c57600080fd5b50610485610d81565b6040516104929190613ff6565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd91906132c2565b610d87565b005b6104de60048036038101906104d991906131ca565b610e0d565b005b3480156104ec57600080fd5b50610507600480360381019061050291906130c4565b61107c565b005b34801561051557600080fd5b50610530600480360381019061052b919061305f565b61109c565b60405161053d9190613cf7565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906132c2565b611196565b005b34801561057b57600080fd5b5061058461121c565b6040516105919190613ff6565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906132c2565b611222565b6040516105ce9190613ff6565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190613281565b6112b9565b005b34801561060c57600080fd5b5061061561134f565b6040516106229190613d19565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906132c2565b611362565b60405161065f9190613c90565b60405180910390f35b34801561067457600080fd5b5061067d611414565b60405161068a9190613d34565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b5919061305f565b6114a2565b6040516106c79190613ff6565b60405180910390f35b3480156106dc57600080fd5b506106e561155a565b005b3480156106f357600080fd5b5061070e600480360381019061070991906132c2565b6115e2565b005b34801561071c57600080fd5b50610737600480360381019061073291906132c2565b611668565b005b34801561074557600080fd5b5061074e6116ee565b60405161075b9190613c90565b60405180910390f35b34801561077057600080fd5b50610779611718565b6040516107869190613d34565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b1919061318e565b6117aa565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613113565b61192b565b005b3480156107ed57600080fd5b506107f661198d565b6040516108039190613d34565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e91906132c2565b611a1b565b6040516108409190613d34565b60405180910390f35b34801561085557600080fd5b5061085e611ac5565b60405161086b9190613ff6565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613281565b611acb565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613088565b611b61565b6040516108d19190613d19565b60405180910390f35b3480156108e657600080fd5b5061090160048036038101906108fc919061305f565b611bf5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610976575061097582611d05565b5b9050919050565b610985611de7565b73ffffffffffffffffffffffffffffffffffffffff166109a36116ee565b73ffffffffffffffffffffffffffffffffffffffff16146109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090613f16565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610a25906142fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a51906142fe565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000610ab382611def565b610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613ef6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3882611362565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613f96565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc8611de7565b73ffffffffffffffffffffffffffffffffffffffff161480610bf75750610bf681610bf1611de7565b611b61565b5b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90613e76565b60405180910390fd5b610c408383611e5b565b505050565b60135481565b600d5481565b6000600880549050905090565b60126020528060005260406000206000915090505481565b600f5481565b610c8d610c87611de7565b82611f14565b610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390613fb6565b60405180910390fd5b610cd7838383611ff2565b505050565b6000610ce7836114a2565b8210610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90613d76565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b610d8f611de7565b73ffffffffffffffffffffffffffffffffffffffff16610dad6116ee565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90613f16565b60405180910390fd5b8060148190555050565b601160009054906101000a900460ff1615610e2757600080fd5b60008111610e3457600080fd5b600e5481610e40610c51565b610e4a9190614133565b1115610e5557600080fd5b601454421015610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613d56565b60405180910390fd5b601354421015610f8e5760105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ef29190614133565b1115610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90613db6565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f829190614133565b92505081905550610fd4565b600f54811115610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90613f36565b60405180910390fd5b5b80600d54610fe291906141ba565b341015610fee57600080fd5b610ff66116ee565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561103b573d6000803e3d6000fd5b5060005b8181101561107757611064836001611055610c51565b61105f9190614133565b61224e565b808061106f90614330565b91505061103f565b505050565b6110978383836040518060200160405280600081525061192b565b505050565b606060006110a9836114a2565b905060008167ffffffffffffffff8111156110ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561111b5781602001602082028036833780820191505090505b50905060005b8281101561118b576111338582610cdc565b82828151811061116c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061118390614330565b915050611121565b508092505050919050565b61119e611de7565b73ffffffffffffffffffffffffffffffffffffffff166111bc6116ee565b73ffffffffffffffffffffffffffffffffffffffff1614611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990613f16565b60405180910390fd5b80600d8190555050565b60145481565b600061122c610c51565b821061126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490613fd6565b60405180910390fd5b600882815481106112a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6112c1611de7565b73ffffffffffffffffffffffffffffffffffffffff166112df6116ee565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613f16565b60405180910390fd5b80600b908051906020019061134b929190612e83565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613eb6565b60405180910390fd5b80915050919050565b600b8054611421906142fe565b80601f016020809104026020016040519081016040528092919081815260200182805461144d906142fe565b801561149a5780601f1061146f5761010080835404028352916020019161149a565b820191906000526020600020905b81548152906001019060200180831161147d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90613e96565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611562611de7565b73ffffffffffffffffffffffffffffffffffffffff166115806116ee565b73ffffffffffffffffffffffffffffffffffffffff16146115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90613f16565b60405180910390fd5b6115e0600061226c565b565b6115ea611de7565b73ffffffffffffffffffffffffffffffffffffffff166116086116ee565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590613f16565b60405180910390fd5b80600f8190555050565b611670611de7565b73ffffffffffffffffffffffffffffffffffffffff1661168e6116ee565b73ffffffffffffffffffffffffffffffffffffffff16146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613f16565b60405180910390fd5b8060138190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611727906142fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611753906142fe565b80156117a05780601f10611775576101008083540402835291602001916117a0565b820191906000526020600020905b81548152906001019060200180831161178357829003601f168201915b5050505050905090565b6117b2611de7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613e36565b60405180910390fd5b806005600061182d611de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118da611de7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191f9190613d19565b60405180910390a35050565b61193c611936611de7565b83611f14565b61197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290613fb6565b60405180910390fd5b61198784848484612332565b50505050565b600c805461199a906142fe565b80601f01602080910402602001604051908101604052809291908181526020018280546119c6906142fe565b8015611a135780601f106119e857610100808354040283529160200191611a13565b820191906000526020600020905b8154815290600101906020018083116119f657829003601f168201915b505050505081565b6060611a2682611def565b611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613f76565b60405180910390fd5b6000611a6f61238e565b90506000815111611a8f5760405180602001604052806000815250611abd565b80611a9984612420565b600c604051602001611aad93929190613c5f565b6040516020818303038152906040525b915050919050565b600e5481565b611ad3611de7565b73ffffffffffffffffffffffffffffffffffffffff16611af16116ee565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613f16565b60405180910390fd5b80600c9080519060200190611b5d929190612e83565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfd611de7565b73ffffffffffffffffffffffffffffffffffffffff16611c1b6116ee565b73ffffffffffffffffffffffffffffffffffffffff1614611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613f16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890613dd6565b60405180910390fd5b611cea8161226c565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dd057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611de05750611ddf826125cd565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ece83611362565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f1f82611def565b611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590613e56565b60405180910390fd5b6000611f6983611362565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd857508373ffffffffffffffffffffffffffffffffffffffff16611fc084610aa8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe95750611fe88185611b61565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661201282611362565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90613f56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90613e16565b60405180910390fd5b6120e3838383612637565b6120ee600082611e5b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213e9190614214565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121959190614133565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61226882826040518060200160405280600081525061274b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61233d848484611ff2565b612349848484846127a6565b612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f90613d96565b60405180910390fd5b50505050565b6060600b805461239d906142fe565b80601f01602080910402602001604051908101604052809291908181526020018280546123c9906142fe565b80156124165780601f106123eb57610100808354040283529160200191612416565b820191906000526020600020905b8154815290600101906020018083116123f957829003601f168201915b5050505050905090565b60606000821415612468576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125c8565b600082905060005b6000821461249a57808061248390614330565b915050600a826124939190614189565b9150612470565b60008167ffffffffffffffff8111156124dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561250e5781602001600182028036833780820191505090505b5090505b600085146125c1576001826125279190614214565b9150600a856125369190614379565b60306125429190614133565b60f81b81838151811061257e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ba9190614189565b9450612512565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612642838383611d00565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612685576126808161293d565b6126c4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126c3576126c28382612986565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127075761270281612af3565b612746565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612745576127448282612c36565b5b5b505050565b6127558383612cb5565b61276260008484846127a6565b6127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890613d96565b60405180910390fd5b505050565b60006127c78473ffffffffffffffffffffffffffffffffffffffff16611ced565b15612930578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f0611de7565b8786866040518563ffffffff1660e01b81526004016128129493929190613cab565b602060405180830381600087803b15801561282c57600080fd5b505af192505050801561285d57506040513d601f19601f8201168201806040525081019061285a9190613258565b60015b6128e0573d806000811461288d576040519150601f19603f3d011682016040523d82523d6000602084013e612892565b606091505b506000815114156128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf90613d96565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612935565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612993846114a2565b61299d9190614214565b9050600060076000848152602001908152602001600020549050818114612a82576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b079190614214565b9050600060096000848152602001908152602001600020549050600060088381548110612b5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ba5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c41836114a2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90613ed6565b60405180910390fd5b612d2e81611def565b15612d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6590613df6565b60405180910390fd5b612d7a60008383612637565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dca9190614133565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e8f906142fe565b90600052602060002090601f016020900481019282612eb15760008555612ef8565b82601f10612eca57805160ff1916838001178555612ef8565b82800160010185558215612ef8579182015b82811115612ef7578251825591602001919060010190612edc565b5b509050612f059190612f09565b5090565b5b80821115612f22576000816000905550600101612f0a565b5090565b6000612f39612f3484614042565b614011565b905082815260208101848484011115612f5157600080fd5b612f5c8482856142bc565b509392505050565b6000612f77612f7284614072565b614011565b905082815260208101848484011115612f8f57600080fd5b612f9a8482856142bc565b509392505050565b600081359050612fb181614477565b92915050565b600081359050612fc68161448e565b92915050565b600081359050612fdb816144a5565b92915050565b600081519050612ff0816144a5565b92915050565b600082601f83011261300757600080fd5b8135613017848260208601612f26565b91505092915050565b600082601f83011261303157600080fd5b8135613041848260208601612f64565b91505092915050565b600081359050613059816144bc565b92915050565b60006020828403121561307157600080fd5b600061307f84828501612fa2565b91505092915050565b6000806040838503121561309b57600080fd5b60006130a985828601612fa2565b92505060206130ba85828601612fa2565b9150509250929050565b6000806000606084860312156130d957600080fd5b60006130e786828701612fa2565b93505060206130f886828701612fa2565b92505060406131098682870161304a565b9150509250925092565b6000806000806080858703121561312957600080fd5b600061313787828801612fa2565b945050602061314887828801612fa2565b93505060406131598782880161304a565b925050606085013567ffffffffffffffff81111561317657600080fd5b61318287828801612ff6565b91505092959194509250565b600080604083850312156131a157600080fd5b60006131af85828601612fa2565b92505060206131c085828601612fb7565b9150509250929050565b600080604083850312156131dd57600080fd5b60006131eb85828601612fa2565b92505060206131fc8582860161304a565b9150509250929050565b60006020828403121561321857600080fd5b600061322684828501612fb7565b91505092915050565b60006020828403121561324157600080fd5b600061324f84828501612fcc565b91505092915050565b60006020828403121561326a57600080fd5b600061327884828501612fe1565b91505092915050565b60006020828403121561329357600080fd5b600082013567ffffffffffffffff8111156132ad57600080fd5b6132b984828501613020565b91505092915050565b6000602082840312156132d457600080fd5b60006132e28482850161304a565b91505092915050565b60006132f78383613c41565b60208301905092915050565b61330c81614248565b82525050565b600061331d826140c7565b61332781856140f5565b9350613332836140a2565b8060005b8381101561336357815161334a88826132eb565b9750613355836140e8565b925050600181019050613336565b5085935050505092915050565b6133798161425a565b82525050565b600061338a826140d2565b6133948185614106565b93506133a48185602086016142cb565b6133ad81614466565b840191505092915050565b60006133c3826140dd565b6133cd8185614117565b93506133dd8185602086016142cb565b6133e681614466565b840191505092915050565b60006133fc826140dd565b6134068185614128565b93506134168185602086016142cb565b80840191505092915050565b6000815461342f816142fe565b6134398186614128565b94506001821660008114613454576001811461346557613498565b60ff19831686528186019350613498565b61346e856140b2565b60005b8381101561349057815481890152600182019150602081019050613471565b838801955050505b50505092915050565b60006134ae601b83614117565b91507f4d696e74696e6720686173206e6f7420737461727465642079657400000000006000830152602082019050919050565b60006134ee602b83614117565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613554603283614117565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006135ba602883614117565b91507f596f752068617665206d696e74656420746865206d617820666f72207072697660008301527f6174652073616c650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613620602683614117565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613686601c83614117565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006136c6602483614117565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061372c601983614117565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061376c602c83614117565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006137d2603883614117565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613838602a83614117565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061389e602983614117565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613904602083614117565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613944602c83614117565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139aa602083614117565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139ea602d83614117565b91507f596f752068617665207265616368656420746865206d6178206d696e7420706560008301527f72207472616e73616374696f6e000000000000000000000000000000000000006020830152604082019050919050565b6000613a50602983614117565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ab6602f83614117565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b1c602183614117565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b82603183614117565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613be8602c83614117565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b613c4a816142b2565b82525050565b613c59816142b2565b82525050565b6000613c6b82866133f1565b9150613c7782856133f1565b9150613c838284613422565b9150819050949350505050565b6000602082019050613ca56000830184613303565b92915050565b6000608082019050613cc06000830187613303565b613ccd6020830186613303565b613cda6040830185613c50565b8181036060830152613cec818461337f565b905095945050505050565b60006020820190508181036000830152613d118184613312565b905092915050565b6000602082019050613d2e6000830184613370565b92915050565b60006020820190508181036000830152613d4e81846133b8565b905092915050565b60006020820190508181036000830152613d6f816134a1565b9050919050565b60006020820190508181036000830152613d8f816134e1565b9050919050565b60006020820190508181036000830152613daf81613547565b9050919050565b60006020820190508181036000830152613dcf816135ad565b9050919050565b60006020820190508181036000830152613def81613613565b9050919050565b60006020820190508181036000830152613e0f81613679565b9050919050565b60006020820190508181036000830152613e2f816136b9565b9050919050565b60006020820190508181036000830152613e4f8161371f565b9050919050565b60006020820190508181036000830152613e6f8161375f565b9050919050565b60006020820190508181036000830152613e8f816137c5565b9050919050565b60006020820190508181036000830152613eaf8161382b565b9050919050565b60006020820190508181036000830152613ecf81613891565b9050919050565b60006020820190508181036000830152613eef816138f7565b9050919050565b60006020820190508181036000830152613f0f81613937565b9050919050565b60006020820190508181036000830152613f2f8161399d565b9050919050565b60006020820190508181036000830152613f4f816139dd565b9050919050565b60006020820190508181036000830152613f6f81613a43565b9050919050565b60006020820190508181036000830152613f8f81613aa9565b9050919050565b60006020820190508181036000830152613faf81613b0f565b9050919050565b60006020820190508181036000830152613fcf81613b75565b9050919050565b60006020820190508181036000830152613fef81613bdb565b9050919050565b600060208201905061400b6000830184613c50565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561403857614037614437565b5b8060405250919050565b600067ffffffffffffffff82111561405d5761405c614437565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561408d5761408c614437565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061413e826142b2565b9150614149836142b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561417e5761417d6143aa565b5b828201905092915050565b6000614194826142b2565b915061419f836142b2565b9250826141af576141ae6143d9565b5b828204905092915050565b60006141c5826142b2565b91506141d0836142b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614209576142086143aa565b5b828202905092915050565b600061421f826142b2565b915061422a836142b2565b92508282101561423d5761423c6143aa565b5b828203905092915050565b600061425382614292565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142e95780820151818401526020810190506142ce565b838111156142f8576000848401525b50505050565b6000600282049050600182168061431657607f821691505b6020821081141561432a57614329614408565b5b50919050565b600061433b826142b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561436e5761436d6143aa565b5b600182019050919050565b6000614384826142b2565b915061438f836142b2565b92508261439f5761439e6143d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61448081614248565b811461448b57600080fd5b50565b6144978161425a565b81146144a257600080fd5b50565b6144ae81614266565b81146144b957600080fd5b50565b6144c5816142b2565b81146144d057600080fd5b5056fea26469706673582212200c332565e581c67209c0d0b8b0bb63ea22b1eb2422581961f9336040f580500e64736f6c6343000800003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5378587445456468644d63583256437a4e4e6873647137636656344d38456e457762464b637751784c5569452f

Deployed Bytecode

0x6080604052600436106102255760003560e01c80634f6ccce7116101235780638da5cb5b116100ab578063c87b56dd1161006f578063c87b56dd1461080c578063d5abeb0114610849578063da3ef23f14610874578063e985e9c51461089d578063f2fde38b146108da57610225565b80638da5cb5b1461073957806395d89b4114610764578063a22cb4651461078f578063b88d4fde146107b8578063c6682862146107e157610225565b80636c0360eb116100f25780636c0360eb1461066857806370a0823114610693578063715018a6146106d05780637f00c7a6146106e757806382d95df51461071057610225565b80634f6ccce71461059a57806355f804b3146105d75780635c975abb146106005780636352211e1461062b57610225565b8063239c70ae116101b157806340c10f191161017557806340c10f19146104c457806342842e0e146104e0578063438b63001461050957806344a0d68a146105465780634d2e31b11461056f57610225565b8063239c70ae146103df57806323b872dd1461040a5780632f745c591461043357806335716430146104705780633aaf87f81461049b57610225565b8063095ea7b3116101f8578063095ea7b3146102f85780630b97bc861461032157806313faede61461034c57806318160ddd146103775780631e7269c5146103a257610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061322f565b610903565b60405161025e9190613d19565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613206565b61097d565b005b34801561029c57600080fd5b506102a5610a16565b6040516102b29190613d34565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906132c2565b610aa8565b6040516102ef9190613c90565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906131ca565b610b2d565b005b34801561032d57600080fd5b50610336610c45565b6040516103439190613ff6565b60405180910390f35b34801561035857600080fd5b50610361610c4b565b60405161036e9190613ff6565b60405180910390f35b34801561038357600080fd5b5061038c610c51565b6040516103999190613ff6565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061305f565b610c5e565b6040516103d69190613ff6565b60405180910390f35b3480156103eb57600080fd5b506103f4610c76565b6040516104019190613ff6565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906130c4565b610c7c565b005b34801561043f57600080fd5b5061045a600480360381019061045591906131ca565b610cdc565b6040516104679190613ff6565b60405180910390f35b34801561047c57600080fd5b50610485610d81565b6040516104929190613ff6565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd91906132c2565b610d87565b005b6104de60048036038101906104d991906131ca565b610e0d565b005b3480156104ec57600080fd5b50610507600480360381019061050291906130c4565b61107c565b005b34801561051557600080fd5b50610530600480360381019061052b919061305f565b61109c565b60405161053d9190613cf7565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906132c2565b611196565b005b34801561057b57600080fd5b5061058461121c565b6040516105919190613ff6565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906132c2565b611222565b6040516105ce9190613ff6565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190613281565b6112b9565b005b34801561060c57600080fd5b5061061561134f565b6040516106229190613d19565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906132c2565b611362565b60405161065f9190613c90565b60405180910390f35b34801561067457600080fd5b5061067d611414565b60405161068a9190613d34565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b5919061305f565b6114a2565b6040516106c79190613ff6565b60405180910390f35b3480156106dc57600080fd5b506106e561155a565b005b3480156106f357600080fd5b5061070e600480360381019061070991906132c2565b6115e2565b005b34801561071c57600080fd5b50610737600480360381019061073291906132c2565b611668565b005b34801561074557600080fd5b5061074e6116ee565b60405161075b9190613c90565b60405180910390f35b34801561077057600080fd5b50610779611718565b6040516107869190613d34565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b1919061318e565b6117aa565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613113565b61192b565b005b3480156107ed57600080fd5b506107f661198d565b6040516108039190613d34565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e91906132c2565b611a1b565b6040516108409190613d34565b60405180910390f35b34801561085557600080fd5b5061085e611ac5565b60405161086b9190613ff6565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613281565b611acb565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613088565b611b61565b6040516108d19190613d19565b60405180910390f35b3480156108e657600080fd5b5061090160048036038101906108fc919061305f565b611bf5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610976575061097582611d05565b5b9050919050565b610985611de7565b73ffffffffffffffffffffffffffffffffffffffff166109a36116ee565b73ffffffffffffffffffffffffffffffffffffffff16146109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090613f16565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610a25906142fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a51906142fe565b8015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b5050505050905090565b6000610ab382611def565b610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae990613ef6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3882611362565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613f96565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc8611de7565b73ffffffffffffffffffffffffffffffffffffffff161480610bf75750610bf681610bf1611de7565b611b61565b5b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d90613e76565b60405180910390fd5b610c408383611e5b565b505050565b60135481565b600d5481565b6000600880549050905090565b60126020528060005260406000206000915090505481565b600f5481565b610c8d610c87611de7565b82611f14565b610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390613fb6565b60405180910390fd5b610cd7838383611ff2565b505050565b6000610ce7836114a2565b8210610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90613d76565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b610d8f611de7565b73ffffffffffffffffffffffffffffffffffffffff16610dad6116ee565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90613f16565b60405180910390fd5b8060148190555050565b601160009054906101000a900460ff1615610e2757600080fd5b60008111610e3457600080fd5b600e5481610e40610c51565b610e4a9190614133565b1115610e5557600080fd5b601454421015610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613d56565b60405180910390fd5b601354421015610f8e5760105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ef29190614133565b1115610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90613db6565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f829190614133565b92505081905550610fd4565b600f54811115610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90613f36565b60405180910390fd5b5b80600d54610fe291906141ba565b341015610fee57600080fd5b610ff66116ee565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561103b573d6000803e3d6000fd5b5060005b8181101561107757611064836001611055610c51565b61105f9190614133565b61224e565b808061106f90614330565b91505061103f565b505050565b6110978383836040518060200160405280600081525061192b565b505050565b606060006110a9836114a2565b905060008167ffffffffffffffff8111156110ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561111b5781602001602082028036833780820191505090505b50905060005b8281101561118b576111338582610cdc565b82828151811061116c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061118390614330565b915050611121565b508092505050919050565b61119e611de7565b73ffffffffffffffffffffffffffffffffffffffff166111bc6116ee565b73ffffffffffffffffffffffffffffffffffffffff1614611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990613f16565b60405180910390fd5b80600d8190555050565b60145481565b600061122c610c51565b821061126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490613fd6565b60405180910390fd5b600882815481106112a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6112c1611de7565b73ffffffffffffffffffffffffffffffffffffffff166112df6116ee565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90613f16565b60405180910390fd5b80600b908051906020019061134b929190612e83565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613eb6565b60405180910390fd5b80915050919050565b600b8054611421906142fe565b80601f016020809104026020016040519081016040528092919081815260200182805461144d906142fe565b801561149a5780601f1061146f5761010080835404028352916020019161149a565b820191906000526020600020905b81548152906001019060200180831161147d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90613e96565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611562611de7565b73ffffffffffffffffffffffffffffffffffffffff166115806116ee565b73ffffffffffffffffffffffffffffffffffffffff16146115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90613f16565b60405180910390fd5b6115e0600061226c565b565b6115ea611de7565b73ffffffffffffffffffffffffffffffffffffffff166116086116ee565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590613f16565b60405180910390fd5b80600f8190555050565b611670611de7565b73ffffffffffffffffffffffffffffffffffffffff1661168e6116ee565b73ffffffffffffffffffffffffffffffffffffffff16146116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90613f16565b60405180910390fd5b8060138190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611727906142fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611753906142fe565b80156117a05780601f10611775576101008083540402835291602001916117a0565b820191906000526020600020905b81548152906001019060200180831161178357829003601f168201915b5050505050905090565b6117b2611de7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613e36565b60405180910390fd5b806005600061182d611de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118da611de7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191f9190613d19565b60405180910390a35050565b61193c611936611de7565b83611f14565b61197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290613fb6565b60405180910390fd5b61198784848484612332565b50505050565b600c805461199a906142fe565b80601f01602080910402602001604051908101604052809291908181526020018280546119c6906142fe565b8015611a135780601f106119e857610100808354040283529160200191611a13565b820191906000526020600020905b8154815290600101906020018083116119f657829003601f168201915b505050505081565b6060611a2682611def565b611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613f76565b60405180910390fd5b6000611a6f61238e565b90506000815111611a8f5760405180602001604052806000815250611abd565b80611a9984612420565b600c604051602001611aad93929190613c5f565b6040516020818303038152906040525b915050919050565b600e5481565b611ad3611de7565b73ffffffffffffffffffffffffffffffffffffffff16611af16116ee565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613f16565b60405180910390fd5b80600c9080519060200190611b5d929190612e83565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfd611de7565b73ffffffffffffffffffffffffffffffffffffffff16611c1b6116ee565b73ffffffffffffffffffffffffffffffffffffffff1614611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613f16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890613dd6565b60405180910390fd5b611cea8161226c565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dd057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611de05750611ddf826125cd565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ece83611362565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f1f82611def565b611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590613e56565b60405180910390fd5b6000611f6983611362565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd857508373ffffffffffffffffffffffffffffffffffffffff16611fc084610aa8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe95750611fe88185611b61565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661201282611362565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90613f56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90613e16565b60405180910390fd5b6120e3838383612637565b6120ee600082611e5b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213e9190614214565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121959190614133565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61226882826040518060200160405280600081525061274b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61233d848484611ff2565b612349848484846127a6565b612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f90613d96565b60405180910390fd5b50505050565b6060600b805461239d906142fe565b80601f01602080910402602001604051908101604052809291908181526020018280546123c9906142fe565b80156124165780601f106123eb57610100808354040283529160200191612416565b820191906000526020600020905b8154815290600101906020018083116123f957829003601f168201915b5050505050905090565b60606000821415612468576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125c8565b600082905060005b6000821461249a57808061248390614330565b915050600a826124939190614189565b9150612470565b60008167ffffffffffffffff8111156124dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561250e5781602001600182028036833780820191505090505b5090505b600085146125c1576001826125279190614214565b9150600a856125369190614379565b60306125429190614133565b60f81b81838151811061257e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ba9190614189565b9450612512565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612642838383611d00565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612685576126808161293d565b6126c4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126c3576126c28382612986565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127075761270281612af3565b612746565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612745576127448282612c36565b5b5b505050565b6127558383612cb5565b61276260008484846127a6565b6127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890613d96565b60405180910390fd5b505050565b60006127c78473ffffffffffffffffffffffffffffffffffffffff16611ced565b15612930578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127f0611de7565b8786866040518563ffffffff1660e01b81526004016128129493929190613cab565b602060405180830381600087803b15801561282c57600080fd5b505af192505050801561285d57506040513d601f19601f8201168201806040525081019061285a9190613258565b60015b6128e0573d806000811461288d576040519150601f19603f3d011682016040523d82523d6000602084013e612892565b606091505b506000815114156128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf90613d96565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612935565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612993846114a2565b61299d9190614214565b9050600060076000848152602001908152602001600020549050818114612a82576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b079190614214565b9050600060096000848152602001908152602001600020549050600060088381548110612b5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ba5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c41836114a2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90613ed6565b60405180910390fd5b612d2e81611def565b15612d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6590613df6565b60405180910390fd5b612d7a60008383612637565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dca9190614133565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e8f906142fe565b90600052602060002090601f016020900481019282612eb15760008555612ef8565b82601f10612eca57805160ff1916838001178555612ef8565b82800160010185558215612ef8579182015b82811115612ef7578251825591602001919060010190612edc565b5b509050612f059190612f09565b5090565b5b80821115612f22576000816000905550600101612f0a565b5090565b6000612f39612f3484614042565b614011565b905082815260208101848484011115612f5157600080fd5b612f5c8482856142bc565b509392505050565b6000612f77612f7284614072565b614011565b905082815260208101848484011115612f8f57600080fd5b612f9a8482856142bc565b509392505050565b600081359050612fb181614477565b92915050565b600081359050612fc68161448e565b92915050565b600081359050612fdb816144a5565b92915050565b600081519050612ff0816144a5565b92915050565b600082601f83011261300757600080fd5b8135613017848260208601612f26565b91505092915050565b600082601f83011261303157600080fd5b8135613041848260208601612f64565b91505092915050565b600081359050613059816144bc565b92915050565b60006020828403121561307157600080fd5b600061307f84828501612fa2565b91505092915050565b6000806040838503121561309b57600080fd5b60006130a985828601612fa2565b92505060206130ba85828601612fa2565b9150509250929050565b6000806000606084860312156130d957600080fd5b60006130e786828701612fa2565b93505060206130f886828701612fa2565b92505060406131098682870161304a565b9150509250925092565b6000806000806080858703121561312957600080fd5b600061313787828801612fa2565b945050602061314887828801612fa2565b93505060406131598782880161304a565b925050606085013567ffffffffffffffff81111561317657600080fd5b61318287828801612ff6565b91505092959194509250565b600080604083850312156131a157600080fd5b60006131af85828601612fa2565b92505060206131c085828601612fb7565b9150509250929050565b600080604083850312156131dd57600080fd5b60006131eb85828601612fa2565b92505060206131fc8582860161304a565b9150509250929050565b60006020828403121561321857600080fd5b600061322684828501612fb7565b91505092915050565b60006020828403121561324157600080fd5b600061324f84828501612fcc565b91505092915050565b60006020828403121561326a57600080fd5b600061327884828501612fe1565b91505092915050565b60006020828403121561329357600080fd5b600082013567ffffffffffffffff8111156132ad57600080fd5b6132b984828501613020565b91505092915050565b6000602082840312156132d457600080fd5b60006132e28482850161304a565b91505092915050565b60006132f78383613c41565b60208301905092915050565b61330c81614248565b82525050565b600061331d826140c7565b61332781856140f5565b9350613332836140a2565b8060005b8381101561336357815161334a88826132eb565b9750613355836140e8565b925050600181019050613336565b5085935050505092915050565b6133798161425a565b82525050565b600061338a826140d2565b6133948185614106565b93506133a48185602086016142cb565b6133ad81614466565b840191505092915050565b60006133c3826140dd565b6133cd8185614117565b93506133dd8185602086016142cb565b6133e681614466565b840191505092915050565b60006133fc826140dd565b6134068185614128565b93506134168185602086016142cb565b80840191505092915050565b6000815461342f816142fe565b6134398186614128565b94506001821660008114613454576001811461346557613498565b60ff19831686528186019350613498565b61346e856140b2565b60005b8381101561349057815481890152600182019150602081019050613471565b838801955050505b50505092915050565b60006134ae601b83614117565b91507f4d696e74696e6720686173206e6f7420737461727465642079657400000000006000830152602082019050919050565b60006134ee602b83614117565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613554603283614117565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006135ba602883614117565b91507f596f752068617665206d696e74656420746865206d617820666f72207072697660008301527f6174652073616c650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613620602683614117565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613686601c83614117565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006136c6602483614117565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061372c601983614117565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061376c602c83614117565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006137d2603883614117565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613838602a83614117565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061389e602983614117565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613904602083614117565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613944602c83614117565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139aa602083614117565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006139ea602d83614117565b91507f596f752068617665207265616368656420746865206d6178206d696e7420706560008301527f72207472616e73616374696f6e000000000000000000000000000000000000006020830152604082019050919050565b6000613a50602983614117565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ab6602f83614117565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b1c602183614117565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b82603183614117565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613be8602c83614117565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b613c4a816142b2565b82525050565b613c59816142b2565b82525050565b6000613c6b82866133f1565b9150613c7782856133f1565b9150613c838284613422565b9150819050949350505050565b6000602082019050613ca56000830184613303565b92915050565b6000608082019050613cc06000830187613303565b613ccd6020830186613303565b613cda6040830185613c50565b8181036060830152613cec818461337f565b905095945050505050565b60006020820190508181036000830152613d118184613312565b905092915050565b6000602082019050613d2e6000830184613370565b92915050565b60006020820190508181036000830152613d4e81846133b8565b905092915050565b60006020820190508181036000830152613d6f816134a1565b9050919050565b60006020820190508181036000830152613d8f816134e1565b9050919050565b60006020820190508181036000830152613daf81613547565b9050919050565b60006020820190508181036000830152613dcf816135ad565b9050919050565b60006020820190508181036000830152613def81613613565b9050919050565b60006020820190508181036000830152613e0f81613679565b9050919050565b60006020820190508181036000830152613e2f816136b9565b9050919050565b60006020820190508181036000830152613e4f8161371f565b9050919050565b60006020820190508181036000830152613e6f8161375f565b9050919050565b60006020820190508181036000830152613e8f816137c5565b9050919050565b60006020820190508181036000830152613eaf8161382b565b9050919050565b60006020820190508181036000830152613ecf81613891565b9050919050565b60006020820190508181036000830152613eef816138f7565b9050919050565b60006020820190508181036000830152613f0f81613937565b9050919050565b60006020820190508181036000830152613f2f8161399d565b9050919050565b60006020820190508181036000830152613f4f816139dd565b9050919050565b60006020820190508181036000830152613f6f81613a43565b9050919050565b60006020820190508181036000830152613f8f81613aa9565b9050919050565b60006020820190508181036000830152613faf81613b0f565b9050919050565b60006020820190508181036000830152613fcf81613b75565b9050919050565b60006020820190508181036000830152613fef81613bdb565b9050919050565b600060208201905061400b6000830184613c50565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561403857614037614437565b5b8060405250919050565b600067ffffffffffffffff82111561405d5761405c614437565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561408d5761408c614437565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061413e826142b2565b9150614149836142b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561417e5761417d6143aa565b5b828201905092915050565b6000614194826142b2565b915061419f836142b2565b9250826141af576141ae6143d9565b5b828204905092915050565b60006141c5826142b2565b91506141d0836142b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614209576142086143aa565b5b828202905092915050565b600061421f826142b2565b915061422a836142b2565b92508282101561423d5761423c6143aa565b5b828203905092915050565b600061425382614292565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142e95780820151818401526020810190506142ce565b838111156142f8576000848401525b50505050565b6000600282049050600182168061431657607f821691505b6020821081141561432a57614329614408565b5b50919050565b600061433b826142b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561436e5761436d6143aa565b5b600182019050919050565b6000614384826142b2565b915061438f836142b2565b92508261439f5761439e6143d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61448081614248565b811461448b57600080fd5b50565b6144978161425a565b81146144a257600080fd5b50565b6144ae81614266565b81146144b957600080fd5b50565b6144c5816142b2565b81146144d057600080fd5b5056fea26469706673582212200c332565e581c67209c0d0b8b0bb63ea22b1eb2422581961f9336040f580500e64736f6c63430008000033

Deployed Bytecode Sourcemap

43218:3265:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46407:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24892:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26451:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25974:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43595:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43368:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37640:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43550:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43441:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27341:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37308:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43479:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45947:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44184:772;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27751:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44962:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45762:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43634:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37830:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46175:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43517:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24586:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43300:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24316:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4591:94;;;;;;;;;;;;;:::i;:::-;;46051:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45850:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3940:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25061:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26744:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28007:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43326:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45316:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43405:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46279:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27110:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4840:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37000:224;37102:4;37141:35;37126:50;;;:11;:50;;;;:90;;;;37180:36;37204:11;37180:23;:36::i;:::-;37126:90;37119:97;;37000:224;;;:::o;46407:73::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46468:6:::1;46459;;:15;;;;;;;;;;;;;;;;;;46407:73:::0;:::o;24892:100::-;24946:13;24979:5;24972:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24892:100;:::o;26451:221::-;26527:7;26555:16;26563:7;26555;:16::i;:::-;26547:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26640:15;:24;26656:7;26640:24;;;;;;;;;;;;;;;;;;;;;26633:31;;26451:221;;;:::o;25974:411::-;26055:13;26071:23;26086:7;26071:14;:23::i;:::-;26055:39;;26119:5;26113:11;;:2;:11;;;;26105:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26213:5;26197:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26222:37;26239:5;26246:12;:10;:12::i;:::-;26222:16;:37::i;:::-;26197:62;26175:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26356:21;26365:2;26369:7;26356:8;:21::i;:::-;25974:411;;;:::o;43595:34::-;;;;:::o;43368:32::-;;;;:::o;37640:113::-;37701:7;37728:10;:17;;;;37721:24;;37640:113;:::o;43550:38::-;;;;;;;;;;;;;;;;;:::o;43441:33::-;;;;:::o;27341:339::-;27536:41;27555:12;:10;:12::i;:::-;27569:7;27536:18;:41::i;:::-;27528:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27644:28;27654:4;27660:2;27664:7;27644:9;:28::i;:::-;27341:339;;;:::o;37308:256::-;37405:7;37441:23;37458:5;37441:16;:23::i;:::-;37433:5;:31;37425:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37530:12;:19;37543:5;37530:19;;;;;;;;;;;;;;;:26;37550:5;37530:26;;;;;;;;;;;;37523:33;;37308:256;;;;:::o;43479:33::-;;;;:::o;45947:98::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46031:8:::1;46017:11;:22;;;;45947:98:::0;:::o;44184:772::-;44263:6;;;;;;;;;;;44262:7;44254:16;;;;;;44299:1;44285:11;:15;44277:24;;;;;;44347:9;;44332:11;44316:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;44308:49;;;;;;44391:11;;44372:15;:30;;44364:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44469:9;;44451:15;:27;44447:310;;;44535:14;;44520:11;44499:6;:18;44506:10;44499:18;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:50;;44491:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;44627:11;44605:6;:18;44612:10;44605:18;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;44447:310;;;44686:13;;44671:11;:28;;44663:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;44447:310;44797:11;44790:4;;:18;;;;:::i;:::-;44777:9;:31;;44769:40;;;;;;44824:7;:5;:7::i;:::-;44816:25;;:36;44842:9;44816:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44866:9;44861:90;44885:11;44881:1;:15;44861:90;;;44912:31;44922:3;44941:1;44927:13;:11;:13::i;:::-;:15;;;;:::i;:::-;44912:9;:31::i;:::-;44898:3;;;;;:::i;:::-;;;;44861:90;;;;44184:772;;:::o;27751:185::-;27889:39;27906:4;27912:2;27916:7;27889:39;;;;;;;;;;;;:16;:39::i;:::-;27751:185;;;:::o;44962:348::-;45037:16;45065:23;45091:17;45101:6;45091:9;:17::i;:::-;45065:43;;45115:25;45157:15;45143:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45115:58;;45185:9;45180:103;45200:15;45196:1;:19;45180:103;;;45245:30;45265:6;45273:1;45245:19;:30::i;:::-;45231:8;45240:1;45231:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;45217:3;;;;;:::i;:::-;;;;45180:103;;;;45296:8;45289:15;;;;44962:348;;;:::o;45762:82::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45830:8:::1;45823:4;:15;;;;45762:82:::0;:::o;43634:36::-;;;;:::o;37830:233::-;37905:7;37941:30;:28;:30::i;:::-;37933:5;:38;37925:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38038:10;38049:5;38038:17;;;;;;;;;;;;;;;;;;;;;;;;38031:24;;37830:233;;;:::o;46175:98::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46256:11:::1;46246:7;:21;;;;;;;;;;;;:::i;:::-;;46175:98:::0;:::o;43517:26::-;;;;;;;;;;;;;:::o;24586:239::-;24658:7;24678:13;24694:7;:16;24702:7;24694:16;;;;;;;;;;;;;;;;;;;;;24678:32;;24746:1;24729:19;;:5;:19;;;;24721:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24812:5;24805:12;;;24586:239;;;:::o;43300:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24316:208::-;24388:7;24433:1;24416:19;;:5;:19;;;;24408:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24500:9;:16;24510:5;24500:16;;;;;;;;;;;;;;;;24493:23;;24316:208;;;:::o;4591:94::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4656:21:::1;4674:1;4656:9;:21::i;:::-;4591:94::o:0;46051:118::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46146:17:::1;46130:13;:33;;;;46051:118:::0;:::o;45850:89::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45925:8:::1;45913:9;:20;;;;45850:89:::0;:::o;3940:87::-;3986:7;4013:6;;;;;;;;;;;4006:13;;3940:87;:::o;25061:104::-;25117:13;25150:7;25143:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25061:104;:::o;26744:295::-;26859:12;:10;:12::i;:::-;26847:24;;:8;:24;;;;26839:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26959:8;26914:18;:32;26933:12;:10;:12::i;:::-;26914:32;;;;;;;;;;;;;;;:42;26947:8;26914:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27012:8;26983:48;;26998:12;:10;:12::i;:::-;26983:48;;;27022:8;26983:48;;;;;;:::i;:::-;;;;;;;;26744:295;;:::o;28007:328::-;28182:41;28201:12;:10;:12::i;:::-;28215:7;28182:18;:41::i;:::-;28174:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28288:39;28302:4;28308:2;28312:7;28321:5;28288:13;:39::i;:::-;28007:328;;;;:::o;43326:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45316:423::-;45414:13;45455:16;45463:7;45455;:16::i;:::-;45439:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;45545:28;45576:10;:8;:10::i;:::-;45545:41;;45631:1;45606:14;45600:28;:32;:133;;;;;;;;;;;;;;;;;45668:14;45684:18;:7;:16;:18::i;:::-;45704:13;45651:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45600:133;45593:140;;;45316:423;;;:::o;43405:31::-;;;;:::o;46279:122::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46378:17:::1;46362:13;:33;;;;;;;;;;;;:::i;:::-;;46279:122:::0;:::o;27110:164::-;27207:4;27231:18;:25;27250:5;27231:25;;;;;;;;;;;;;;;:35;27257:8;27231:35;;;;;;;;;;;;;;;;;;;;;;;;;27224:42;;27110:164;;;;:::o;4840:192::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4949:1:::1;4929:22;;:8;:22;;;;4921:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5005:19;5015:8;5005:9;:19::i;:::-;4840:192:::0;:::o;5986:387::-;6046:4;6254:12;6321:7;6309:20;6301:28;;6364:1;6357:4;:8;6350:15;;;5986:387;;;:::o;35937:126::-;;;;:::o;23947:305::-;24049:4;24101:25;24086:40;;;:11;:40;;;;:105;;;;24158:33;24143:48;;;:11;:48;;;;24086:105;:158;;;;24208:36;24232:11;24208:23;:36::i;:::-;24086:158;24066:178;;23947:305;;;:::o;2728:98::-;2781:7;2808:10;2801:17;;2728:98;:::o;29845:127::-;29910:4;29962:1;29934:30;;:7;:16;29942:7;29934:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29927:37;;29845:127;;;:::o;33827:174::-;33929:2;33902:15;:24;33918:7;33902:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33985:7;33981:2;33947:46;;33956:23;33971:7;33956:14;:23::i;:::-;33947:46;;;;;;;;;;;;33827:174;;:::o;30139:348::-;30232:4;30257:16;30265:7;30257;:16::i;:::-;30249:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30333:13;30349:23;30364:7;30349:14;:23::i;:::-;30333:39;;30402:5;30391:16;;:7;:16;;;:51;;;;30435:7;30411:31;;:20;30423:7;30411:11;:20::i;:::-;:31;;;30391:51;:87;;;;30446:32;30463:5;30470:7;30446:16;:32::i;:::-;30391:87;30383:96;;;30139:348;;;;:::o;33131:578::-;33290:4;33263:31;;:23;33278:7;33263:14;:23::i;:::-;:31;;;33255:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33373:1;33359:16;;:2;:16;;;;33351:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33429:39;33450:4;33456:2;33460:7;33429:20;:39::i;:::-;33533:29;33550:1;33554:7;33533:8;:29::i;:::-;33594:1;33575:9;:15;33585:4;33575:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33623:1;33606:9;:13;33616:2;33606:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33654:2;33635:7;:16;33643:7;33635:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33693:7;33689:2;33674:27;;33683:4;33674:27;;;;;;;;;;;;33131:578;;;:::o;30829:110::-;30905:26;30915:2;30919:7;30905:26;;;;;;;;;;;;:9;:26::i;:::-;30829:110;;:::o;5040:173::-;5096:16;5115:6;;;;;;;;;;;5096:25;;5141:8;5132:6;;:17;;;;;;;;;;;;;;;;;;5196:8;5165:40;;5186:8;5165:40;;;;;;;;;;;;5040:173;;:::o;29217:315::-;29374:28;29384:4;29390:2;29394:7;29374:9;:28::i;:::-;29421:48;29444:4;29450:2;29454:7;29463:5;29421:22;:48::i;:::-;29413:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29217:315;;;;:::o;44063:102::-;44123:13;44152:7;44145:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44063:102;:::o;344:723::-;400:13;630:1;621:5;:10;617:53;;;648:10;;;;;;;;;;;;;;;;;;;;;617:53;680:12;695:5;680:20;;711:14;736:78;751:1;743:4;:9;736:78;;769:8;;;;;:::i;:::-;;;;800:2;792:10;;;;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824:39;;874:154;890:1;881:5;:10;874:154;;918:1;908:11;;;;;:::i;:::-;;;985:2;977:5;:10;;;;:::i;:::-;964:2;:24;;;;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1014:2;1005:11;;;;;:::i;:::-;;;874:154;;;1052:6;1038:21;;;;;344:723;;;;:::o;15926:157::-;16011:4;16050:25;16035:40;;;:11;:40;;;;16028:47;;15926:157;;;:::o;38676:589::-;38820:45;38847:4;38853:2;38857:7;38820:26;:45::i;:::-;38898:1;38882:18;;:4;:18;;;38878:187;;;38917:40;38949:7;38917:31;:40::i;:::-;38878:187;;;38987:2;38979:10;;:4;:10;;;38975:90;;39006:47;39039:4;39045:7;39006:32;:47::i;:::-;38975:90;38878:187;39093:1;39079:16;;:2;:16;;;39075:183;;;39112:45;39149:7;39112:36;:45::i;:::-;39075:183;;;39185:4;39179:10;;:2;:10;;;39175:83;;39206:40;39234:2;39238:7;39206:27;:40::i;:::-;39175:83;39075:183;38676:589;;;:::o;31166:321::-;31296:18;31302:2;31306:7;31296:5;:18::i;:::-;31347:54;31378:1;31382:2;31386:7;31395:5;31347:22;:54::i;:::-;31325:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31166:321;;;:::o;34566:799::-;34721:4;34742:15;:2;:13;;;:15::i;:::-;34738:620;;;34794:2;34778:36;;;34815:12;:10;:12::i;:::-;34829:4;34835:7;34844:5;34778:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34774:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35037:1;35020:6;:13;:18;35016:272;;;35063:60;;;;;;;;;;:::i;:::-;;;;;;;;35016:272;35238:6;35232:13;35223:6;35219:2;35215:15;35208:38;34774:529;34911:41;;;34901:51;;;:6;:51;;;;34894:58;;;;;34738:620;35342:4;35335:11;;34566:799;;;;;;;:::o;39988:164::-;40092:10;:17;;;;40065:15;:24;40081:7;40065:24;;;;;;;;;;;:44;;;;40120:10;40136:7;40120:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39988:164;:::o;40779:988::-;41045:22;41095:1;41070:22;41087:4;41070:16;:22::i;:::-;:26;;;;:::i;:::-;41045:51;;41107:18;41128:17;:26;41146:7;41128:26;;;;;;;;;;;;41107:47;;41275:14;41261:10;:28;41257:328;;41306:19;41328:12;:18;41341:4;41328:18;;;;;;;;;;;;;;;:34;41347:14;41328:34;;;;;;;;;;;;41306:56;;41412:11;41379:12;:18;41392:4;41379:18;;;;;;;;;;;;;;;:30;41398:10;41379:30;;;;;;;;;;;:44;;;;41529:10;41496:17;:30;41514:11;41496:30;;;;;;;;;;;:43;;;;41257:328;;41681:17;:26;41699:7;41681:26;;;;;;;;;;;41674:33;;;41725:12;:18;41738:4;41725:18;;;;;;;;;;;;;;;:34;41744:14;41725:34;;;;;;;;;;;41718:41;;;40779:988;;;;:::o;42062:1079::-;42315:22;42360:1;42340:10;:17;;;;:21;;;;:::i;:::-;42315:46;;42372:18;42393:15;:24;42409:7;42393:24;;;;;;;;;;;;42372:45;;42744:19;42766:10;42777:14;42766:26;;;;;;;;;;;;;;;;;;;;;;;;42744:48;;42830:11;42805:10;42816;42805:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;42941:10;42910:15;:28;42926:11;42910:28;;;;;;;;;;;:41;;;;43082:15;:24;43098:7;43082:24;;;;;;;;;;;43075:31;;;43117:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42062:1079;;;;:::o;39566:221::-;39651:14;39668:20;39685:2;39668:16;:20::i;:::-;39651:37;;39726:7;39699:12;:16;39712:2;39699:16;;;;;;;;;;;;;;;:24;39716:6;39699:24;;;;;;;;;;;:34;;;;39773:6;39744:17;:26;39762:7;39744:26;;;;;;;;;;;:35;;;;39566:221;;;:::o;31823:382::-;31917:1;31903:16;;:2;:16;;;;31895:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31976:16;31984:7;31976;:16::i;:::-;31975:17;31967:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32038:45;32067:1;32071:2;32075:7;32038:20;:45::i;:::-;32113:1;32096:9;:13;32106:2;32096:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32144:2;32125:7;:16;32133:7;32125:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32189:7;32185:2;32164:33;;32181:1;32164:33;;;;;;;;;;;;31823:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:179::-;;6436:46;6478:3;6470:6;6436:46;:::i;:::-;6514:4;6509:3;6505:14;6491:28;;6426:99;;;;:::o;6531:118::-;6618:24;6636:5;6618:24;:::i;:::-;6613:3;6606:37;6596:53;;:::o;6685:732::-;;6833:54;6881:5;6833:54;:::i;:::-;6903:86;6982:6;6977:3;6903:86;:::i;:::-;6896:93;;7013:56;7063:5;7013:56;:::i;:::-;7092:7;7123:1;7108:284;7133:6;7130:1;7127:13;7108:284;;;7209:6;7203:13;7236:63;7295:3;7280:13;7236:63;:::i;:::-;7229:70;;7322:60;7375:6;7322:60;:::i;:::-;7312:70;;7168:224;7155:1;7152;7148:9;7143:14;;7108:284;;;7112:14;7408:3;7401:10;;6809:608;;;;;;;:::o;7423:109::-;7504:21;7519:5;7504:21;:::i;:::-;7499:3;7492:34;7482:50;;:::o;7538:360::-;;7652:38;7684:5;7652:38;:::i;:::-;7706:70;7769:6;7764:3;7706:70;:::i;:::-;7699:77;;7785:52;7830:6;7825:3;7818:4;7811:5;7807:16;7785:52;:::i;:::-;7862:29;7884:6;7862:29;:::i;:::-;7857:3;7853:39;7846:46;;7628:270;;;;;:::o;7904:364::-;;8020:39;8053:5;8020:39;:::i;:::-;8075:71;8139:6;8134:3;8075:71;:::i;:::-;8068:78;;8155:52;8200:6;8195:3;8188:4;8181:5;8177:16;8155:52;:::i;:::-;8232:29;8254:6;8232:29;:::i;:::-;8227:3;8223:39;8216:46;;7996:272;;;;;:::o;8274:377::-;;8408:39;8441:5;8408:39;:::i;:::-;8463:89;8545:6;8540:3;8463:89;:::i;:::-;8456:96;;8561:52;8606:6;8601:3;8594:4;8587:5;8583:16;8561:52;:::i;:::-;8638:6;8633:3;8629:16;8622:23;;8384:267;;;;;:::o;8681:845::-;;8821:5;8815:12;8850:36;8876:9;8850:36;:::i;:::-;8902:89;8984:6;8979:3;8902:89;:::i;:::-;8895:96;;9022:1;9011:9;9007:17;9038:1;9033:137;;;;9184:1;9179:341;;;;9000:520;;9033:137;9117:4;9113:9;9102;9098:25;9093:3;9086:38;9153:6;9148:3;9144:16;9137:23;;9033:137;;9179:341;9246:38;9278:5;9246:38;:::i;:::-;9306:1;9320:154;9334:6;9331:1;9328:13;9320:154;;;9408:7;9402:14;9398:1;9393:3;9389:11;9382:35;9458:1;9449:7;9445:15;9434:26;;9356:4;9353:1;9349:12;9344:17;;9320:154;;;9503:6;9498:3;9494:16;9487:23;;9186:334;;9000:520;;8788:738;;;;;;:::o;9532:325::-;;9695:67;9759:2;9754:3;9695:67;:::i;:::-;9688:74;;9792:29;9788:1;9783:3;9779:11;9772:50;9848:2;9843:3;9839:12;9832:19;;9678:179;;;:::o;9863:375::-;;10026:67;10090:2;10085:3;10026:67;:::i;:::-;10019:74;;10123:34;10119:1;10114:3;10110:11;10103:55;10189:13;10184:2;10179:3;10175:12;10168:35;10229:2;10224:3;10220:12;10213:19;;10009:229;;;:::o;10244:382::-;;10407:67;10471:2;10466:3;10407:67;:::i;:::-;10400:74;;10504:34;10500:1;10495:3;10491:11;10484:55;10570:20;10565:2;10560:3;10556:12;10549:42;10617:2;10612:3;10608:12;10601:19;;10390:236;;;:::o;10632:372::-;;10795:67;10859:2;10854:3;10795:67;:::i;:::-;10788:74;;10892:34;10888:1;10883:3;10879:11;10872:55;10958:10;10953:2;10948:3;10944:12;10937:32;10995:2;10990:3;10986:12;10979:19;;10778:226;;;:::o;11010:370::-;;11173:67;11237:2;11232:3;11173:67;:::i;:::-;11166:74;;11270:34;11266:1;11261:3;11257:11;11250:55;11336:8;11331:2;11326:3;11322:12;11315:30;11371:2;11366:3;11362:12;11355:19;;11156:224;;;:::o;11386:326::-;;11549:67;11613:2;11608:3;11549:67;:::i;:::-;11542:74;;11646:30;11642:1;11637:3;11633:11;11626:51;11703:2;11698:3;11694:12;11687:19;;11532:180;;;:::o;11718:368::-;;11881:67;11945:2;11940:3;11881:67;:::i;:::-;11874:74;;11978:34;11974:1;11969:3;11965:11;11958:55;12044:6;12039:2;12034:3;12030:12;12023:28;12077:2;12072:3;12068:12;12061:19;;11864:222;;;:::o;12092:323::-;;12255:67;12319:2;12314:3;12255:67;:::i;:::-;12248:74;;12352:27;12348:1;12343:3;12339:11;12332:48;12406:2;12401:3;12397:12;12390:19;;12238:177;;;:::o;12421:376::-;;12584:67;12648:2;12643:3;12584:67;:::i;:::-;12577:74;;12681:34;12677:1;12672:3;12668:11;12661:55;12747:14;12742:2;12737:3;12733:12;12726:36;12788:2;12783:3;12779:12;12772:19;;12567:230;;;:::o;12803:388::-;;12966:67;13030:2;13025:3;12966:67;:::i;:::-;12959:74;;13063:34;13059:1;13054:3;13050:11;13043:55;13129:26;13124:2;13119:3;13115:12;13108:48;13182:2;13177:3;13173:12;13166:19;;12949:242;;;:::o;13197:374::-;;13360:67;13424:2;13419:3;13360:67;:::i;:::-;13353:74;;13457:34;13453:1;13448:3;13444:11;13437:55;13523:12;13518:2;13513:3;13509:12;13502:34;13562:2;13557:3;13553:12;13546:19;;13343:228;;;:::o;13577:373::-;;13740:67;13804:2;13799:3;13740:67;:::i;:::-;13733:74;;13837:34;13833:1;13828:3;13824:11;13817:55;13903:11;13898:2;13893:3;13889:12;13882:33;13941:2;13936:3;13932:12;13925:19;;13723:227;;;:::o;13956:330::-;;14119:67;14183:2;14178:3;14119:67;:::i;:::-;14112:74;;14216:34;14212:1;14207:3;14203:11;14196:55;14277:2;14272:3;14268:12;14261:19;;14102:184;;;:::o;14292:376::-;;14455:67;14519:2;14514:3;14455:67;:::i;:::-;14448:74;;14552:34;14548:1;14543:3;14539:11;14532:55;14618:14;14613:2;14608:3;14604:12;14597:36;14659:2;14654:3;14650:12;14643:19;;14438:230;;;:::o;14674:330::-;;14837:67;14901:2;14896:3;14837:67;:::i;:::-;14830:74;;14934:34;14930:1;14925:3;14921:11;14914:55;14995:2;14990:3;14986:12;14979:19;;14820:184;;;:::o;15010:377::-;;15173:67;15237:2;15232:3;15173:67;:::i;:::-;15166:74;;15270:34;15266:1;15261:3;15257:11;15250:55;15336:15;15331:2;15326:3;15322:12;15315:37;15378:2;15373:3;15369:12;15362:19;;15156:231;;;:::o;15393:373::-;;15556:67;15620:2;15615:3;15556:67;:::i;:::-;15549:74;;15653:34;15649:1;15644:3;15640:11;15633:55;15719:11;15714:2;15709:3;15705:12;15698:33;15757:2;15752:3;15748:12;15741:19;;15539:227;;;:::o;15772:379::-;;15935:67;15999:2;15994:3;15935:67;:::i;:::-;15928:74;;16032:34;16028:1;16023:3;16019:11;16012:55;16098:17;16093:2;16088:3;16084:12;16077:39;16142:2;16137:3;16133:12;16126:19;;15918:233;;;:::o;16157:365::-;;16320:67;16384:2;16379:3;16320:67;:::i;:::-;16313:74;;16417:34;16413:1;16408:3;16404:11;16397:55;16483:3;16478:2;16473:3;16469:12;16462:25;16513:2;16508:3;16504:12;16497:19;;16303:219;;;:::o;16528:381::-;;16691:67;16755:2;16750:3;16691:67;:::i;:::-;16684:74;;16788:34;16784:1;16779:3;16775:11;16768:55;16854:19;16849:2;16844:3;16840:12;16833:41;16900:2;16895:3;16891:12;16884:19;;16674:235;;;:::o;16915:376::-;;17078:67;17142:2;17137:3;17078:67;:::i;:::-;17071:74;;17175:34;17171:1;17166:3;17162:11;17155:55;17241:14;17236:2;17231:3;17227:12;17220:36;17282:2;17277:3;17273:12;17266:19;;17061:230;;;:::o;17297:108::-;17374:24;17392:5;17374:24;:::i;:::-;17369:3;17362:37;17352:53;;:::o;17411:118::-;17498:24;17516:5;17498:24;:::i;:::-;17493:3;17486:37;17476:53;;:::o;17535:589::-;;17782:95;17873:3;17864:6;17782:95;:::i;:::-;17775:102;;17894:95;17985:3;17976:6;17894:95;:::i;:::-;17887:102;;18006:92;18094:3;18085:6;18006:92;:::i;:::-;17999:99;;18115:3;18108:10;;17764:360;;;;;;:::o;18130:222::-;;18261:2;18250:9;18246:18;18238:26;;18274:71;18342:1;18331:9;18327:17;18318:6;18274:71;:::i;:::-;18228:124;;;;:::o;18358:640::-;;18591:3;18580:9;18576:19;18568:27;;18605:71;18673:1;18662:9;18658:17;18649:6;18605:71;:::i;:::-;18686:72;18754:2;18743:9;18739:18;18730:6;18686:72;:::i;:::-;18768;18836:2;18825:9;18821:18;18812:6;18768:72;:::i;:::-;18887:9;18881:4;18877:20;18872:2;18861:9;18857:18;18850:48;18915:76;18986:4;18977:6;18915:76;:::i;:::-;18907:84;;18558:440;;;;;;;:::o;19004:373::-;;19185:2;19174:9;19170:18;19162:26;;19234:9;19228:4;19224:20;19220:1;19209:9;19205:17;19198:47;19262:108;19365:4;19356:6;19262:108;:::i;:::-;19254:116;;19152:225;;;;:::o;19383:210::-;;19508:2;19497:9;19493:18;19485:26;;19521:65;19583:1;19572:9;19568:17;19559:6;19521:65;:::i;:::-;19475:118;;;;:::o;19599:313::-;;19750:2;19739:9;19735:18;19727:26;;19799:9;19793:4;19789:20;19785:1;19774:9;19770:17;19763:47;19827:78;19900:4;19891:6;19827:78;:::i;:::-;19819:86;;19717:195;;;;:::o;19918:419::-;;20122:2;20111:9;20107:18;20099:26;;20171:9;20165:4;20161:20;20157:1;20146:9;20142:17;20135:47;20199:131;20325:4;20199:131;:::i;:::-;20191:139;;20089:248;;;:::o;20343:419::-;;20547:2;20536:9;20532:18;20524:26;;20596:9;20590:4;20586:20;20582:1;20571:9;20567:17;20560:47;20624:131;20750:4;20624:131;:::i;:::-;20616:139;;20514:248;;;:::o;20768:419::-;;20972:2;20961:9;20957:18;20949:26;;21021:9;21015:4;21011:20;21007:1;20996:9;20992:17;20985:47;21049:131;21175:4;21049:131;:::i;:::-;21041:139;;20939:248;;;:::o;21193:419::-;;21397:2;21386:9;21382:18;21374:26;;21446:9;21440:4;21436:20;21432:1;21421:9;21417:17;21410:47;21474:131;21600:4;21474:131;:::i;:::-;21466:139;;21364:248;;;:::o;21618:419::-;;21822:2;21811:9;21807:18;21799:26;;21871:9;21865:4;21861:20;21857:1;21846:9;21842:17;21835:47;21899:131;22025:4;21899:131;:::i;:::-;21891:139;;21789:248;;;:::o;22043:419::-;;22247:2;22236:9;22232:18;22224:26;;22296:9;22290:4;22286:20;22282:1;22271:9;22267:17;22260:47;22324:131;22450:4;22324:131;:::i;:::-;22316:139;;22214:248;;;:::o;22468:419::-;;22672:2;22661:9;22657:18;22649:26;;22721:9;22715:4;22711:20;22707:1;22696:9;22692:17;22685:47;22749:131;22875:4;22749:131;:::i;:::-;22741:139;;22639:248;;;:::o;22893:419::-;;23097:2;23086:9;23082:18;23074:26;;23146:9;23140:4;23136:20;23132:1;23121:9;23117:17;23110:47;23174:131;23300:4;23174:131;:::i;:::-;23166:139;;23064:248;;;:::o;23318:419::-;;23522:2;23511:9;23507:18;23499:26;;23571:9;23565:4;23561:20;23557:1;23546:9;23542:17;23535:47;23599:131;23725:4;23599:131;:::i;:::-;23591:139;;23489:248;;;:::o;23743:419::-;;23947:2;23936:9;23932:18;23924:26;;23996:9;23990:4;23986:20;23982:1;23971:9;23967:17;23960:47;24024:131;24150:4;24024:131;:::i;:::-;24016:139;;23914:248;;;:::o;24168:419::-;;24372:2;24361:9;24357:18;24349:26;;24421:9;24415:4;24411:20;24407:1;24396:9;24392:17;24385:47;24449:131;24575:4;24449:131;:::i;:::-;24441:139;;24339:248;;;:::o;24593:419::-;;24797:2;24786:9;24782:18;24774:26;;24846:9;24840:4;24836:20;24832:1;24821:9;24817:17;24810:47;24874:131;25000:4;24874:131;:::i;:::-;24866:139;;24764:248;;;:::o;25018:419::-;;25222:2;25211:9;25207:18;25199:26;;25271:9;25265:4;25261:20;25257:1;25246:9;25242:17;25235:47;25299:131;25425:4;25299:131;:::i;:::-;25291:139;;25189:248;;;:::o;25443:419::-;;25647:2;25636:9;25632:18;25624:26;;25696:9;25690:4;25686:20;25682:1;25671:9;25667:17;25660:47;25724:131;25850:4;25724:131;:::i;:::-;25716:139;;25614:248;;;:::o;25868:419::-;;26072:2;26061:9;26057:18;26049:26;;26121:9;26115:4;26111:20;26107:1;26096:9;26092:17;26085:47;26149:131;26275:4;26149:131;:::i;:::-;26141:139;;26039:248;;;:::o;26293:419::-;;26497:2;26486:9;26482:18;26474:26;;26546:9;26540:4;26536:20;26532:1;26521:9;26517:17;26510:47;26574:131;26700:4;26574:131;:::i;:::-;26566:139;;26464:248;;;:::o;26718:419::-;;26922:2;26911:9;26907:18;26899:26;;26971:9;26965:4;26961:20;26957:1;26946:9;26942:17;26935:47;26999:131;27125:4;26999:131;:::i;:::-;26991:139;;26889:248;;;:::o;27143:419::-;;27347:2;27336:9;27332:18;27324:26;;27396:9;27390:4;27386:20;27382:1;27371:9;27367:17;27360:47;27424:131;27550:4;27424:131;:::i;:::-;27416:139;;27314:248;;;:::o;27568:419::-;;27772:2;27761:9;27757:18;27749:26;;27821:9;27815:4;27811:20;27807:1;27796:9;27792:17;27785:47;27849:131;27975:4;27849:131;:::i;:::-;27841:139;;27739:248;;;:::o;27993:419::-;;28197:2;28186:9;28182:18;28174:26;;28246:9;28240:4;28236:20;28232:1;28221:9;28217:17;28210:47;28274:131;28400:4;28274:131;:::i;:::-;28266:139;;28164:248;;;:::o;28418:419::-;;28622:2;28611:9;28607:18;28599:26;;28671:9;28665:4;28661:20;28657:1;28646:9;28642:17;28635:47;28699:131;28825:4;28699:131;:::i;:::-;28691:139;;28589:248;;;:::o;28843:222::-;;28974:2;28963:9;28959:18;28951:26;;28987:71;29055:1;29044:9;29040:17;29031:6;28987:71;:::i;:::-;28941:124;;;;:::o;29071:283::-;;29137:2;29131:9;29121:19;;29179:4;29171:6;29167:17;29286:6;29274:10;29271:22;29250:18;29238:10;29235:34;29232:62;29229:2;;;29297:18;;:::i;:::-;29229:2;29337:10;29333:2;29326:22;29111:243;;;;:::o;29360:331::-;;29511:18;29503:6;29500:30;29497:2;;;29533:18;;:::i;:::-;29497:2;29618:4;29614:9;29607:4;29599:6;29595:17;29591:33;29583:41;;29679:4;29673;29669:15;29661:23;;29426:265;;;:::o;29697:332::-;;29849:18;29841:6;29838:30;29835:2;;;29871:18;;:::i;:::-;29835:2;29956:4;29952:9;29945:4;29937:6;29933:17;29929:33;29921:41;;30017:4;30011;30007:15;29999:23;;29764:265;;;:::o;30035:132::-;;30125:3;30117:11;;30155:4;30150:3;30146:14;30138:22;;30107:60;;;:::o;30173:141::-;;30245:3;30237:11;;30268:3;30265:1;30258:14;30302:4;30299:1;30289:18;30281:26;;30227:87;;;:::o;30320:114::-;;30421:5;30415:12;30405:22;;30394:40;;;:::o;30440:98::-;;30525:5;30519:12;30509:22;;30498:40;;;:::o;30544:99::-;;30630:5;30624:12;30614:22;;30603:40;;;:::o;30649:113::-;;30751:4;30746:3;30742:14;30734:22;;30724:38;;;:::o;30768:184::-;;30901:6;30896:3;30889:19;30941:4;30936:3;30932:14;30917:29;;30879:73;;;;:::o;30958:168::-;;31075:6;31070:3;31063:19;31115:4;31110:3;31106:14;31091:29;;31053:73;;;;:::o;31132:169::-;;31250:6;31245:3;31238:19;31290:4;31285:3;31281:14;31266:29;;31228:73;;;;:::o;31307:148::-;;31446:3;31431:18;;31421:34;;;;:::o;31461:305::-;;31520:20;31538:1;31520:20;:::i;:::-;31515:25;;31554:20;31572:1;31554:20;:::i;:::-;31549:25;;31708:1;31640:66;31636:74;31633:1;31630:81;31627:2;;;31714:18;;:::i;:::-;31627:2;31758:1;31755;31751:9;31744:16;;31505:261;;;;:::o;31772:185::-;;31829:20;31847:1;31829:20;:::i;:::-;31824:25;;31863:20;31881:1;31863:20;:::i;:::-;31858:25;;31902:1;31892:2;;31907:18;;:::i;:::-;31892:2;31949:1;31946;31942:9;31937:14;;31814:143;;;;:::o;31963:348::-;;32026:20;32044:1;32026:20;:::i;:::-;32021:25;;32060:20;32078:1;32060:20;:::i;:::-;32055:25;;32248:1;32180:66;32176:74;32173:1;32170:81;32165:1;32158:9;32151:17;32147:105;32144:2;;;32255:18;;:::i;:::-;32144:2;32303:1;32300;32296:9;32285:20;;32011:300;;;;:::o;32317:191::-;;32377:20;32395:1;32377:20;:::i;:::-;32372:25;;32411:20;32429:1;32411:20;:::i;:::-;32406:25;;32450:1;32447;32444:8;32441:2;;;32455:18;;:::i;:::-;32441:2;32500:1;32497;32493:9;32485:17;;32362:146;;;;:::o;32514:96::-;;32580:24;32598:5;32580:24;:::i;:::-;32569:35;;32559:51;;;:::o;32616:90::-;;32693:5;32686:13;32679:21;32668:32;;32658:48;;;:::o;32712:149::-;;32788:66;32781:5;32777:78;32766:89;;32756:105;;;:::o;32867:126::-;;32944:42;32937:5;32933:54;32922:65;;32912:81;;;:::o;32999:77::-;;33065:5;33054:16;;33044:32;;;:::o;33082:154::-;33166:6;33161:3;33156;33143:30;33228:1;33219:6;33214:3;33210:16;33203:27;33133:103;;;:::o;33242:307::-;33310:1;33320:113;33334:6;33331:1;33328:13;33320:113;;;33419:1;33414:3;33410:11;33404:18;33400:1;33395:3;33391:11;33384:39;33356:2;33353:1;33349:10;33344:15;;33320:113;;;33451:6;33448:1;33445:13;33442:2;;;33531:1;33522:6;33517:3;33513:16;33506:27;33442:2;33291:258;;;;:::o;33555:320::-;;33636:1;33630:4;33626:12;33616:22;;33683:1;33677:4;33673:12;33704:18;33694:2;;33760:4;33752:6;33748:17;33738:27;;33694:2;33822;33814:6;33811:14;33791:18;33788:38;33785:2;;;33841:18;;:::i;:::-;33785:2;33606:269;;;;:::o;33881:233::-;;33943:24;33961:5;33943:24;:::i;:::-;33934:33;;33989:66;33982:5;33979:77;33976:2;;;34059:18;;:::i;:::-;33976:2;34106:1;34099:5;34095:13;34088:20;;33924:190;;;:::o;34120:176::-;;34169:20;34187:1;34169:20;:::i;:::-;34164:25;;34203:20;34221:1;34203:20;:::i;:::-;34198:25;;34242:1;34232:2;;34247:18;;:::i;:::-;34232:2;34288:1;34285;34281:9;34276:14;;34154:142;;;;:::o;34302:180::-;34350:77;34347:1;34340:88;34447:4;34444:1;34437:15;34471:4;34468:1;34461:15;34488:180;34536:77;34533:1;34526:88;34633:4;34630:1;34623:15;34657:4;34654:1;34647:15;34674:180;34722:77;34719:1;34712:88;34819:4;34816:1;34809:15;34843:4;34840:1;34833:15;34860:180;34908:77;34905:1;34898:88;35005:4;35002:1;34995:15;35029:4;35026:1;35019:15;35046:102;;35138:2;35134:7;35129:2;35122:5;35118:14;35114:28;35104:38;;35094:54;;;:::o;35154:122::-;35227:24;35245:5;35227:24;:::i;:::-;35220:5;35217:35;35207:2;;35266:1;35263;35256:12;35207:2;35197:79;:::o;35282:116::-;35352:21;35367:5;35352:21;:::i;:::-;35345:5;35342:32;35332:2;;35388:1;35385;35378:12;35332:2;35322:76;:::o;35404:120::-;35476:23;35493:5;35476:23;:::i;:::-;35469:5;35466:34;35456:2;;35514:1;35511;35504:12;35456:2;35446:78;:::o;35530:122::-;35603:24;35621:5;35603:24;:::i;:::-;35596:5;35593:35;35583:2;;35642:1;35639;35632:12;35583:2;35573:79;:::o

Swarm Source

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