ETH Price: $2,524.51 (-0.14%)

Token

PudgyPuppies (PPUP)
 

Overview

Max Total Supply

961 PPUP

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ryanmax.eth
Balance
1 PPUP
0x2bcd4d893d2622c23162ff5a27a20239b10a1619
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:
PudgyPuppies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-14
*/

// File: @openzeppelin/[email protected]/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can 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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/[email protected]/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/[email protected]/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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/[email protected]/token/ERC721/extensions/ERC721Burnable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

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

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

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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: contract-99420aceb1.sol


pragma solidity ^0.8.2;







contract PudgyPuppies is ERC721, ERC721Enumerable, ERC721URIStorage, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    uint256 public mintRate = 0.03 ether;
    uint public maxSupply = 10000;

    constructor() ERC721("PudgyPuppies", "PPUP") {}

    function _baseURI() internal pure override returns (string memory) {
        return "ipfs://QmbZeV8JB1kxd8zNGSbzTg1WSY6SFD7Y8tU8ucLpm3iQgW/";
    }

    function safeMint(address to, uint256 count) public payable {
        require(totalSupply() < maxSupply, "Can't mint more than max supply.");
        require(msg.value >= count * mintRate, "Not enough ether sent.");
        for (uint256 i = 0; i < count; i++) {
            _tokenIdCounter.increment();
            _safeMint(to, _tokenIdCounter.current());
        }      
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function withdraw() public onlyOwner {
        require(address(this).balance > 0, "Current balance is 0.");
        payable(owner()).transfer(address(this).balance);
    }
}

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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRate","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052666a94d74f430000600d55612710600e553480156200002257600080fd5b506040518060400160405280600c81526020017f50756467795075707069657300000000000000000000000000000000000000008152506040518060400160405280600481526020017f50505550000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a7929190620001b7565b508060019080519060200190620000c0929190620001b7565b505050620000e3620000d7620000e960201b60201c565b620000f160201b60201c565b620002cc565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c59062000267565b90600052602060002090601f016020900481019282620001e9576000855562000235565b82601f106200020457805160ff191683800117855562000235565b8280016001018555821562000235579182015b828111156200023457825182559160200191906001019062000217565b5b50905062000244919062000248565b5090565b5b808211156200026357600081600090555060010162000249565b5090565b600060028204905060018216806200028057607f821691505b602082108114156200029757620002966200029d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d1680620002dc6000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610481578063c87b56dd146104aa578063ca0dcf16146104e7578063d5abeb0114610512578063e985e9c51461053d578063f2fde38b1461057a5761014b565b806370a0823114610392578063715018a6146103cf5780638da5cb5b146103e657806395d89b4114610411578063a14481941461043c578063a22cb465146104585761014b565b80632f745c59116101085780632f745c59146102725780633ccfd60b146102af57806342842e0e146102c657806342966c68146102ef5780634f6ccce7146103185780636352211e146103555761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612980565b6105a3565b6040516101849190612e87565b60405180910390f35b34801561019957600080fd5b506101a26105b5565b6040516101af9190612ea2565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906129da565b610647565b6040516101ec9190612e20565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612940565b6106cc565b005b34801561022a57600080fd5b506102336107e4565b60405161024091906131a4565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b919061282a565b6107f1565b005b34801561027e57600080fd5b5061029960048036038101906102949190612940565b610851565b6040516102a691906131a4565b60405180910390f35b3480156102bb57600080fd5b506102c46108f6565b005b3480156102d257600080fd5b506102ed60048036038101906102e8919061282a565b610a05565b005b3480156102fb57600080fd5b50610316600480360381019061031191906129da565b610a25565b005b34801561032457600080fd5b5061033f600480360381019061033a91906129da565b610a81565b60405161034c91906131a4565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906129da565b610af2565b6040516103899190612e20565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b491906127bd565b610ba4565b6040516103c691906131a4565b60405180910390f35b3480156103db57600080fd5b506103e4610c5c565b005b3480156103f257600080fd5b506103fb610ce4565b6040516104089190612e20565b60405180910390f35b34801561041d57600080fd5b50610426610d0e565b6040516104339190612ea2565b60405180910390f35b61045660048036038101906104519190612940565b610da0565b005b34801561046457600080fd5b5061047f600480360381019061047a9190612900565b610e7b565b005b34801561048d57600080fd5b506104a860048036038101906104a3919061287d565b610e91565b005b3480156104b657600080fd5b506104d160048036038101906104cc91906129da565b610ef3565b6040516104de9190612ea2565b60405180910390f35b3480156104f357600080fd5b506104fc610f05565b60405161050991906131a4565b60405180910390f35b34801561051e57600080fd5b50610527610f0b565b60405161053491906131a4565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f91906127ea565b610f11565b6040516105719190612e87565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c91906127bd565b610fa5565b005b60006105ae8261109d565b9050919050565b6060600080546105c490613423565b80601f01602080910402602001604051908101604052809291908181526020018280546105f090613423565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b5050505050905090565b600061065282611117565b610691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068890613064565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d782610af2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073f906130e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610767611183565b73ffffffffffffffffffffffffffffffffffffffff161480610796575061079581610790611183565b610f11565b5b6107d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cc90612fc4565b60405180910390fd5b6107df838361118b565b505050565b6000600880549050905090565b6108026107fc611183565b82611244565b610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083890613104565b60405180910390fd5b61084c838383611322565b505050565b600061085c83610ba4565b821061089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490612ee4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6108fe611183565b73ffffffffffffffffffffffffffffffffffffffff1661091c610ce4565b73ffffffffffffffffffffffffffffffffffffffff1614610972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096990613084565b60405180910390fd5b600047116109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90612ec4565b60405180910390fd5b6109bd610ce4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a02573d6000803e3d6000fd5b50565b610a2083838360405180602001604052806000815250610e91565b505050565b610a36610a30611183565b82611244565b610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613184565b60405180910390fd5b610a7e8161157e565b50565b6000610a8b6107e4565b8210610acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac390613144565b60405180910390fd5b60088281548110610ae057610adf6135bc565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613004565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90612fe4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c64611183565b73ffffffffffffffffffffffffffffffffffffffff16610c82610ce4565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613084565b60405180910390fd5b610ce2600061158a565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d1d90613423565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4990613423565b8015610d965780601f10610d6b57610100808354040283529160200191610d96565b820191906000526020600020905b815481529060010190602001808311610d7957829003601f168201915b5050505050905090565b600e54610dab6107e4565b10610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290613164565b60405180910390fd5b600d5481610df991906132df565b341015610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290613124565b60405180910390fd5b60005b81811015610e7657610e50600c611650565b610e6383610e5e600c611666565b611674565b8080610e6e90613486565b915050610e3e565b505050565b610e8d610e86611183565b8383611692565b5050565b610ea2610e9c611183565b83611244565b610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890613104565b60405180910390fd5b610eed848484846117ff565b50505050565b6060610efe8261185b565b9050919050565b600d5481565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fad611183565b73ffffffffffffffffffffffffffffffffffffffff16610fcb610ce4565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613084565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890612f24565b60405180910390fd5b61109a8161158a565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611110575061110f826119ad565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111fe83610af2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061124f82611117565b61128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612fa4565b60405180910390fd5b600061129983610af2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061130857508373ffffffffffffffffffffffffffffffffffffffff166112f084610647565b73ffffffffffffffffffffffffffffffffffffffff16145b8061131957506113188185610f11565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661134282610af2565b73ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906130a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612f64565b60405180910390fd5b611413838383611a8f565b61141e60008261118b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146e9190613339565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c59190613258565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61158781611a9f565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61168e828260405180602001604052806000815250611af2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890612f84565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f29190612e87565b60405180910390a3505050565b61180a848484611322565b61181684848484611b4d565b611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90612f04565b60405180910390fd5b50505050565b606061186682611117565b6118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90613044565b60405180910390fd5b6000600a600084815260200190815260200160002080546118c590613423565b80601f01602080910402602001604051908101604052809291908181526020018280546118f190613423565b801561193e5780601f106119135761010080835404028352916020019161193e565b820191906000526020600020905b81548152906001019060200180831161192157829003601f168201915b50505050509050600061194f611ce4565b90506000815114156119655781925050506119a8565b60008251111561199a578082604051602001611982929190612dfc565b604051602081830303815290604052925050506119a8565b6119a384611d04565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a7857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a885750611a8782611dab565b5b9050919050565b611a9a838383611e15565b505050565b611aa881611f29565b6000600a60008381526020019081526020016000208054611ac890613423565b905014611aef57600a60008281526020019081526020016000206000611aee9190612687565b5b50565b611afc838361203a565b611b096000848484611b4d565b611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90612f04565b60405180910390fd5b505050565b6000611b6e8473ffffffffffffffffffffffffffffffffffffffff16612208565b15611cd7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b97611183565b8786866040518563ffffffff1660e01b8152600401611bb99493929190612e3b565b602060405180830381600087803b158015611bd357600080fd5b505af1925050508015611c0457506040513d601f19601f82011682018060405250810190611c0191906129ad565b60015b611c87573d8060008114611c34576040519150601f19603f3d011682016040523d82523d6000602084013e611c39565b606091505b50600081511415611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690612f04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cdc565b600190505b949350505050565b6060604051806060016040528060368152602001613cab60369139905090565b6060611d0f82611117565b611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906130c4565b60405180910390fd5b6000611d58611ce4565b90506000815111611d785760405180602001604052806000815250611da3565b80611d828461221b565b604051602001611d93929190612dfc565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611e2083838361237c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e6357611e5e81612381565b611ea2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ea157611ea083826123ca565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee557611ee081612537565b611f24565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f2357611f228282612608565b5b5b505050565b6000611f3482610af2565b9050611f4281600084611a8f565b611f4d60008361118b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9d9190613339565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a190613024565b60405180910390fd5b6120b381611117565b156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea90612f44565b60405180910390fd5b6120ff60008383611a8f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214f9190613258565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612263576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612377565b600082905060005b6000821461229557808061227e90613486565b915050600a8261228e91906132ae565b915061226b565b60008167ffffffffffffffff8111156122b1576122b06135eb565b5b6040519080825280601f01601f1916602001820160405280156122e35781602001600182028036833780820191505090505b5090505b60008514612370576001826122fc9190613339565b9150600a8561230b91906134cf565b60306123179190613258565b60f81b81838151811061232d5761232c6135bc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561236991906132ae565b94506122e7565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016123d784610ba4565b6123e19190613339565b90506000600760008481526020019081526020016000205490508181146124c6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061254b9190613339565b905060006009600084815260200190815260200160002054905060006008838154811061257b5761257a6135bc565b5b90600052602060002001549050806008838154811061259d5761259c6135bc565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806125ec576125eb61358d565b5b6001900381819060005260206000200160009055905550505050565b600061261383610ba4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b50805461269390613423565b6000825580601f106126a557506126c4565b601f0160209004906000526020600020908101906126c391906126c7565b5b50565b5b808211156126e05760008160009055506001016126c8565b5090565b60006126f76126f2846131e4565b6131bf565b9050828152602081018484840111156127135761271261361f565b5b61271e8482856133e1565b509392505050565b60008135905061273581613c4e565b92915050565b60008135905061274a81613c65565b92915050565b60008135905061275f81613c7c565b92915050565b60008151905061277481613c7c565b92915050565b600082601f83011261278f5761278e61361a565b5b813561279f8482602086016126e4565b91505092915050565b6000813590506127b781613c93565b92915050565b6000602082840312156127d3576127d2613629565b5b60006127e184828501612726565b91505092915050565b6000806040838503121561280157612800613629565b5b600061280f85828601612726565b925050602061282085828601612726565b9150509250929050565b60008060006060848603121561284357612842613629565b5b600061285186828701612726565b935050602061286286828701612726565b9250506040612873868287016127a8565b9150509250925092565b6000806000806080858703121561289757612896613629565b5b60006128a587828801612726565b94505060206128b687828801612726565b93505060406128c7878288016127a8565b925050606085013567ffffffffffffffff8111156128e8576128e7613624565b5b6128f48782880161277a565b91505092959194509250565b6000806040838503121561291757612916613629565b5b600061292585828601612726565b92505060206129368582860161273b565b9150509250929050565b6000806040838503121561295757612956613629565b5b600061296585828601612726565b9250506020612976858286016127a8565b9150509250929050565b60006020828403121561299657612995613629565b5b60006129a484828501612750565b91505092915050565b6000602082840312156129c3576129c2613629565b5b60006129d184828501612765565b91505092915050565b6000602082840312156129f0576129ef613629565b5b60006129fe848285016127a8565b91505092915050565b612a108161336d565b82525050565b612a1f8161337f565b82525050565b6000612a3082613215565b612a3a818561322b565b9350612a4a8185602086016133f0565b612a538161362e565b840191505092915050565b6000612a6982613220565b612a73818561323c565b9350612a838185602086016133f0565b612a8c8161362e565b840191505092915050565b6000612aa282613220565b612aac818561324d565b9350612abc8185602086016133f0565b80840191505092915050565b6000612ad560158361323c565b9150612ae08261363f565b602082019050919050565b6000612af8602b8361323c565b9150612b0382613668565b604082019050919050565b6000612b1b60328361323c565b9150612b26826136b7565b604082019050919050565b6000612b3e60268361323c565b9150612b4982613706565b604082019050919050565b6000612b61601c8361323c565b9150612b6c82613755565b602082019050919050565b6000612b8460248361323c565b9150612b8f8261377e565b604082019050919050565b6000612ba760198361323c565b9150612bb2826137cd565b602082019050919050565b6000612bca602c8361323c565b9150612bd5826137f6565b604082019050919050565b6000612bed60388361323c565b9150612bf882613845565b604082019050919050565b6000612c10602a8361323c565b9150612c1b82613894565b604082019050919050565b6000612c3360298361323c565b9150612c3e826138e3565b604082019050919050565b6000612c5660208361323c565b9150612c6182613932565b602082019050919050565b6000612c7960318361323c565b9150612c848261395b565b604082019050919050565b6000612c9c602c8361323c565b9150612ca7826139aa565b604082019050919050565b6000612cbf60208361323c565b9150612cca826139f9565b602082019050919050565b6000612ce260298361323c565b9150612ced82613a22565b604082019050919050565b6000612d05602f8361323c565b9150612d1082613a71565b604082019050919050565b6000612d2860218361323c565b9150612d3382613ac0565b604082019050919050565b6000612d4b60318361323c565b9150612d5682613b0f565b604082019050919050565b6000612d6e60168361323c565b9150612d7982613b5e565b602082019050919050565b6000612d91602c8361323c565b9150612d9c82613b87565b604082019050919050565b6000612db460208361323c565b9150612dbf82613bd6565b602082019050919050565b6000612dd760308361323c565b9150612de282613bff565b604082019050919050565b612df6816133d7565b82525050565b6000612e088285612a97565b9150612e148284612a97565b91508190509392505050565b6000602082019050612e356000830184612a07565b92915050565b6000608082019050612e506000830187612a07565b612e5d6020830186612a07565b612e6a6040830185612ded565b8181036060830152612e7c8184612a25565b905095945050505050565b6000602082019050612e9c6000830184612a16565b92915050565b60006020820190508181036000830152612ebc8184612a5e565b905092915050565b60006020820190508181036000830152612edd81612ac8565b9050919050565b60006020820190508181036000830152612efd81612aeb565b9050919050565b60006020820190508181036000830152612f1d81612b0e565b9050919050565b60006020820190508181036000830152612f3d81612b31565b9050919050565b60006020820190508181036000830152612f5d81612b54565b9050919050565b60006020820190508181036000830152612f7d81612b77565b9050919050565b60006020820190508181036000830152612f9d81612b9a565b9050919050565b60006020820190508181036000830152612fbd81612bbd565b9050919050565b60006020820190508181036000830152612fdd81612be0565b9050919050565b60006020820190508181036000830152612ffd81612c03565b9050919050565b6000602082019050818103600083015261301d81612c26565b9050919050565b6000602082019050818103600083015261303d81612c49565b9050919050565b6000602082019050818103600083015261305d81612c6c565b9050919050565b6000602082019050818103600083015261307d81612c8f565b9050919050565b6000602082019050818103600083015261309d81612cb2565b9050919050565b600060208201905081810360008301526130bd81612cd5565b9050919050565b600060208201905081810360008301526130dd81612cf8565b9050919050565b600060208201905081810360008301526130fd81612d1b565b9050919050565b6000602082019050818103600083015261311d81612d3e565b9050919050565b6000602082019050818103600083015261313d81612d61565b9050919050565b6000602082019050818103600083015261315d81612d84565b9050919050565b6000602082019050818103600083015261317d81612da7565b9050919050565b6000602082019050818103600083015261319d81612dca565b9050919050565b60006020820190506131b96000830184612ded565b92915050565b60006131c96131da565b90506131d58282613455565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ff576131fe6135eb565b5b6132088261362e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613263826133d7565b915061326e836133d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132a3576132a2613500565b5b828201905092915050565b60006132b9826133d7565b91506132c4836133d7565b9250826132d4576132d361352f565b5b828204905092915050565b60006132ea826133d7565b91506132f5836133d7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561332e5761332d613500565b5b828202905092915050565b6000613344826133d7565b915061334f836133d7565b92508282101561336257613361613500565b5b828203905092915050565b6000613378826133b7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561340e5780820151818401526020810190506133f3565b8381111561341d576000848401525b50505050565b6000600282049050600182168061343b57607f821691505b6020821081141561344f5761344e61355e565b5b50919050565b61345e8261362e565b810181811067ffffffffffffffff8211171561347d5761347c6135eb565b5b80604052505050565b6000613491826133d7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134c4576134c3613500565b5b600182019050919050565b60006134da826133d7565b91506134e5836133d7565b9250826134f5576134f461352f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43757272656e742062616c616e636520697320302e0000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e742e00000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c792e600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b613c578161336d565b8114613c6257600080fd5b50565b613c6e8161337f565b8114613c7957600080fd5b50565b613c858161338b565b8114613c9057600080fd5b50565b613c9c816133d7565b8114613ca757600080fd5b5056fe697066733a2f2f516d625a6556384a42316b7864387a4e4753627a5467315753593653464437593874553875634c706d33695167572fa264697066735822122010a1c4091e414b8f29add88b457411bfa1f00f0c131dcd2cfb4cc9dd2d05940164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610481578063c87b56dd146104aa578063ca0dcf16146104e7578063d5abeb0114610512578063e985e9c51461053d578063f2fde38b1461057a5761014b565b806370a0823114610392578063715018a6146103cf5780638da5cb5b146103e657806395d89b4114610411578063a14481941461043c578063a22cb465146104585761014b565b80632f745c59116101085780632f745c59146102725780633ccfd60b146102af57806342842e0e146102c657806342966c68146102ef5780634f6ccce7146103185780636352211e146103555761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612980565b6105a3565b6040516101849190612e87565b60405180910390f35b34801561019957600080fd5b506101a26105b5565b6040516101af9190612ea2565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906129da565b610647565b6040516101ec9190612e20565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612940565b6106cc565b005b34801561022a57600080fd5b506102336107e4565b60405161024091906131a4565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b919061282a565b6107f1565b005b34801561027e57600080fd5b5061029960048036038101906102949190612940565b610851565b6040516102a691906131a4565b60405180910390f35b3480156102bb57600080fd5b506102c46108f6565b005b3480156102d257600080fd5b506102ed60048036038101906102e8919061282a565b610a05565b005b3480156102fb57600080fd5b50610316600480360381019061031191906129da565b610a25565b005b34801561032457600080fd5b5061033f600480360381019061033a91906129da565b610a81565b60405161034c91906131a4565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906129da565b610af2565b6040516103899190612e20565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b491906127bd565b610ba4565b6040516103c691906131a4565b60405180910390f35b3480156103db57600080fd5b506103e4610c5c565b005b3480156103f257600080fd5b506103fb610ce4565b6040516104089190612e20565b60405180910390f35b34801561041d57600080fd5b50610426610d0e565b6040516104339190612ea2565b60405180910390f35b61045660048036038101906104519190612940565b610da0565b005b34801561046457600080fd5b5061047f600480360381019061047a9190612900565b610e7b565b005b34801561048d57600080fd5b506104a860048036038101906104a3919061287d565b610e91565b005b3480156104b657600080fd5b506104d160048036038101906104cc91906129da565b610ef3565b6040516104de9190612ea2565b60405180910390f35b3480156104f357600080fd5b506104fc610f05565b60405161050991906131a4565b60405180910390f35b34801561051e57600080fd5b50610527610f0b565b60405161053491906131a4565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f91906127ea565b610f11565b6040516105719190612e87565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c91906127bd565b610fa5565b005b60006105ae8261109d565b9050919050565b6060600080546105c490613423565b80601f01602080910402602001604051908101604052809291908181526020018280546105f090613423565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b5050505050905090565b600061065282611117565b610691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068890613064565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d782610af2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073f906130e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610767611183565b73ffffffffffffffffffffffffffffffffffffffff161480610796575061079581610790611183565b610f11565b5b6107d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cc90612fc4565b60405180910390fd5b6107df838361118b565b505050565b6000600880549050905090565b6108026107fc611183565b82611244565b610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083890613104565b60405180910390fd5b61084c838383611322565b505050565b600061085c83610ba4565b821061089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490612ee4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6108fe611183565b73ffffffffffffffffffffffffffffffffffffffff1661091c610ce4565b73ffffffffffffffffffffffffffffffffffffffff1614610972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096990613084565b60405180910390fd5b600047116109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90612ec4565b60405180910390fd5b6109bd610ce4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a02573d6000803e3d6000fd5b50565b610a2083838360405180602001604052806000815250610e91565b505050565b610a36610a30611183565b82611244565b610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613184565b60405180910390fd5b610a7e8161157e565b50565b6000610a8b6107e4565b8210610acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac390613144565b60405180910390fd5b60088281548110610ae057610adf6135bc565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613004565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0c90612fe4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c64611183565b73ffffffffffffffffffffffffffffffffffffffff16610c82610ce4565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613084565b60405180910390fd5b610ce2600061158a565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d1d90613423565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4990613423565b8015610d965780601f10610d6b57610100808354040283529160200191610d96565b820191906000526020600020905b815481529060010190602001808311610d7957829003601f168201915b5050505050905090565b600e54610dab6107e4565b10610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290613164565b60405180910390fd5b600d5481610df991906132df565b341015610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290613124565b60405180910390fd5b60005b81811015610e7657610e50600c611650565b610e6383610e5e600c611666565b611674565b8080610e6e90613486565b915050610e3e565b505050565b610e8d610e86611183565b8383611692565b5050565b610ea2610e9c611183565b83611244565b610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890613104565b60405180910390fd5b610eed848484846117ff565b50505050565b6060610efe8261185b565b9050919050565b600d5481565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fad611183565b73ffffffffffffffffffffffffffffffffffffffff16610fcb610ce4565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613084565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890612f24565b60405180910390fd5b61109a8161158a565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611110575061110f826119ad565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111fe83610af2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061124f82611117565b61128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612fa4565b60405180910390fd5b600061129983610af2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061130857508373ffffffffffffffffffffffffffffffffffffffff166112f084610647565b73ffffffffffffffffffffffffffffffffffffffff16145b8061131957506113188185610f11565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661134282610af2565b73ffffffffffffffffffffffffffffffffffffffff1614611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906130a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612f64565b60405180910390fd5b611413838383611a8f565b61141e60008261118b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146e9190613339565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c59190613258565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61158781611a9f565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61168e828260405180602001604052806000815250611af2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890612f84565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f29190612e87565b60405180910390a3505050565b61180a848484611322565b61181684848484611b4d565b611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90612f04565b60405180910390fd5b50505050565b606061186682611117565b6118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90613044565b60405180910390fd5b6000600a600084815260200190815260200160002080546118c590613423565b80601f01602080910402602001604051908101604052809291908181526020018280546118f190613423565b801561193e5780601f106119135761010080835404028352916020019161193e565b820191906000526020600020905b81548152906001019060200180831161192157829003601f168201915b50505050509050600061194f611ce4565b90506000815114156119655781925050506119a8565b60008251111561199a578082604051602001611982929190612dfc565b604051602081830303815290604052925050506119a8565b6119a384611d04565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a7857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a885750611a8782611dab565b5b9050919050565b611a9a838383611e15565b505050565b611aa881611f29565b6000600a60008381526020019081526020016000208054611ac890613423565b905014611aef57600a60008281526020019081526020016000206000611aee9190612687565b5b50565b611afc838361203a565b611b096000848484611b4d565b611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90612f04565b60405180910390fd5b505050565b6000611b6e8473ffffffffffffffffffffffffffffffffffffffff16612208565b15611cd7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b97611183565b8786866040518563ffffffff1660e01b8152600401611bb99493929190612e3b565b602060405180830381600087803b158015611bd357600080fd5b505af1925050508015611c0457506040513d601f19601f82011682018060405250810190611c0191906129ad565b60015b611c87573d8060008114611c34576040519150601f19603f3d011682016040523d82523d6000602084013e611c39565b606091505b50600081511415611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690612f04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cdc565b600190505b949350505050565b6060604051806060016040528060368152602001613cab60369139905090565b6060611d0f82611117565b611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d45906130c4565b60405180910390fd5b6000611d58611ce4565b90506000815111611d785760405180602001604052806000815250611da3565b80611d828461221b565b604051602001611d93929190612dfc565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611e2083838361237c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e6357611e5e81612381565b611ea2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ea157611ea083826123ca565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee557611ee081612537565b611f24565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f2357611f228282612608565b5b5b505050565b6000611f3482610af2565b9050611f4281600084611a8f565b611f4d60008361118b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9d9190613339565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a190613024565b60405180910390fd5b6120b381611117565b156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea90612f44565b60405180910390fd5b6120ff60008383611a8f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214f9190613258565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612263576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612377565b600082905060005b6000821461229557808061227e90613486565b915050600a8261228e91906132ae565b915061226b565b60008167ffffffffffffffff8111156122b1576122b06135eb565b5b6040519080825280601f01601f1916602001820160405280156122e35781602001600182028036833780820191505090505b5090505b60008514612370576001826122fc9190613339565b9150600a8561230b91906134cf565b60306123179190613258565b60f81b81838151811061232d5761232c6135bc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561236991906132ae565b94506122e7565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016123d784610ba4565b6123e19190613339565b90506000600760008481526020019081526020016000205490508181146124c6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061254b9190613339565b905060006009600084815260200190815260200160002054905060006008838154811061257b5761257a6135bc565b5b90600052602060002001549050806008838154811061259d5761259c6135bc565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806125ec576125eb61358d565b5b6001900381819060005260206000200160009055905550505050565b600061261383610ba4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b50805461269390613423565b6000825580601f106126a557506126c4565b601f0160209004906000526020600020908101906126c391906126c7565b5b50565b5b808211156126e05760008160009055506001016126c8565b5090565b60006126f76126f2846131e4565b6131bf565b9050828152602081018484840111156127135761271261361f565b5b61271e8482856133e1565b509392505050565b60008135905061273581613c4e565b92915050565b60008135905061274a81613c65565b92915050565b60008135905061275f81613c7c565b92915050565b60008151905061277481613c7c565b92915050565b600082601f83011261278f5761278e61361a565b5b813561279f8482602086016126e4565b91505092915050565b6000813590506127b781613c93565b92915050565b6000602082840312156127d3576127d2613629565b5b60006127e184828501612726565b91505092915050565b6000806040838503121561280157612800613629565b5b600061280f85828601612726565b925050602061282085828601612726565b9150509250929050565b60008060006060848603121561284357612842613629565b5b600061285186828701612726565b935050602061286286828701612726565b9250506040612873868287016127a8565b9150509250925092565b6000806000806080858703121561289757612896613629565b5b60006128a587828801612726565b94505060206128b687828801612726565b93505060406128c7878288016127a8565b925050606085013567ffffffffffffffff8111156128e8576128e7613624565b5b6128f48782880161277a565b91505092959194509250565b6000806040838503121561291757612916613629565b5b600061292585828601612726565b92505060206129368582860161273b565b9150509250929050565b6000806040838503121561295757612956613629565b5b600061296585828601612726565b9250506020612976858286016127a8565b9150509250929050565b60006020828403121561299657612995613629565b5b60006129a484828501612750565b91505092915050565b6000602082840312156129c3576129c2613629565b5b60006129d184828501612765565b91505092915050565b6000602082840312156129f0576129ef613629565b5b60006129fe848285016127a8565b91505092915050565b612a108161336d565b82525050565b612a1f8161337f565b82525050565b6000612a3082613215565b612a3a818561322b565b9350612a4a8185602086016133f0565b612a538161362e565b840191505092915050565b6000612a6982613220565b612a73818561323c565b9350612a838185602086016133f0565b612a8c8161362e565b840191505092915050565b6000612aa282613220565b612aac818561324d565b9350612abc8185602086016133f0565b80840191505092915050565b6000612ad560158361323c565b9150612ae08261363f565b602082019050919050565b6000612af8602b8361323c565b9150612b0382613668565b604082019050919050565b6000612b1b60328361323c565b9150612b26826136b7565b604082019050919050565b6000612b3e60268361323c565b9150612b4982613706565b604082019050919050565b6000612b61601c8361323c565b9150612b6c82613755565b602082019050919050565b6000612b8460248361323c565b9150612b8f8261377e565b604082019050919050565b6000612ba760198361323c565b9150612bb2826137cd565b602082019050919050565b6000612bca602c8361323c565b9150612bd5826137f6565b604082019050919050565b6000612bed60388361323c565b9150612bf882613845565b604082019050919050565b6000612c10602a8361323c565b9150612c1b82613894565b604082019050919050565b6000612c3360298361323c565b9150612c3e826138e3565b604082019050919050565b6000612c5660208361323c565b9150612c6182613932565b602082019050919050565b6000612c7960318361323c565b9150612c848261395b565b604082019050919050565b6000612c9c602c8361323c565b9150612ca7826139aa565b604082019050919050565b6000612cbf60208361323c565b9150612cca826139f9565b602082019050919050565b6000612ce260298361323c565b9150612ced82613a22565b604082019050919050565b6000612d05602f8361323c565b9150612d1082613a71565b604082019050919050565b6000612d2860218361323c565b9150612d3382613ac0565b604082019050919050565b6000612d4b60318361323c565b9150612d5682613b0f565b604082019050919050565b6000612d6e60168361323c565b9150612d7982613b5e565b602082019050919050565b6000612d91602c8361323c565b9150612d9c82613b87565b604082019050919050565b6000612db460208361323c565b9150612dbf82613bd6565b602082019050919050565b6000612dd760308361323c565b9150612de282613bff565b604082019050919050565b612df6816133d7565b82525050565b6000612e088285612a97565b9150612e148284612a97565b91508190509392505050565b6000602082019050612e356000830184612a07565b92915050565b6000608082019050612e506000830187612a07565b612e5d6020830186612a07565b612e6a6040830185612ded565b8181036060830152612e7c8184612a25565b905095945050505050565b6000602082019050612e9c6000830184612a16565b92915050565b60006020820190508181036000830152612ebc8184612a5e565b905092915050565b60006020820190508181036000830152612edd81612ac8565b9050919050565b60006020820190508181036000830152612efd81612aeb565b9050919050565b60006020820190508181036000830152612f1d81612b0e565b9050919050565b60006020820190508181036000830152612f3d81612b31565b9050919050565b60006020820190508181036000830152612f5d81612b54565b9050919050565b60006020820190508181036000830152612f7d81612b77565b9050919050565b60006020820190508181036000830152612f9d81612b9a565b9050919050565b60006020820190508181036000830152612fbd81612bbd565b9050919050565b60006020820190508181036000830152612fdd81612be0565b9050919050565b60006020820190508181036000830152612ffd81612c03565b9050919050565b6000602082019050818103600083015261301d81612c26565b9050919050565b6000602082019050818103600083015261303d81612c49565b9050919050565b6000602082019050818103600083015261305d81612c6c565b9050919050565b6000602082019050818103600083015261307d81612c8f565b9050919050565b6000602082019050818103600083015261309d81612cb2565b9050919050565b600060208201905081810360008301526130bd81612cd5565b9050919050565b600060208201905081810360008301526130dd81612cf8565b9050919050565b600060208201905081810360008301526130fd81612d1b565b9050919050565b6000602082019050818103600083015261311d81612d3e565b9050919050565b6000602082019050818103600083015261313d81612d61565b9050919050565b6000602082019050818103600083015261315d81612d84565b9050919050565b6000602082019050818103600083015261317d81612da7565b9050919050565b6000602082019050818103600083015261319d81612dca565b9050919050565b60006020820190506131b96000830184612ded565b92915050565b60006131c96131da565b90506131d58282613455565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ff576131fe6135eb565b5b6132088261362e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613263826133d7565b915061326e836133d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132a3576132a2613500565b5b828201905092915050565b60006132b9826133d7565b91506132c4836133d7565b9250826132d4576132d361352f565b5b828204905092915050565b60006132ea826133d7565b91506132f5836133d7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561332e5761332d613500565b5b828202905092915050565b6000613344826133d7565b915061334f836133d7565b92508282101561336257613361613500565b5b828203905092915050565b6000613378826133b7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561340e5780820151818401526020810190506133f3565b8381111561341d576000848401525b50505050565b6000600282049050600182168061343b57607f821691505b6020821081141561344f5761344e61355e565b5b50919050565b61345e8261362e565b810181811067ffffffffffffffff8211171561347d5761347c6135eb565b5b80604052505050565b6000613491826133d7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134c4576134c3613500565b5b600182019050919050565b60006134da826133d7565b91506134e5836133d7565b9250826134f5576134f461352f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43757272656e742062616c616e636520697320302e0000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e742e00000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c792e600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b613c578161336d565b8114613c6257600080fd5b50565b613c6e8161337f565b8114613c7957600080fd5b50565b613c858161338b565b8114613c9057600080fd5b50565b613c9c816133d7565b8114613ca757600080fd5b5056fe697066733a2f2f516d625a6556384a42316b7864387a4e4753627a5467315753593653464437593874553875634c706d33695167572fa264697066735822122010a1c4091e414b8f29add88b457411bfa1f00f0c131dcd2cfb4cc9dd2d05940164736f6c63430008070033

Deployed Bytecode Sourcemap

48839:1883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50325:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27297:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28856:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28379:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43254:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29606:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42922:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50545:174;;;;;;;;;;;;;:::i;:::-;;30016:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39334:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43444:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26991:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26721:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6219:103;;;;;;;;;;;;;:::i;:::-;;5568:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27466:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49323:385;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29149:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30272:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50121:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49030:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49073:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29375:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6477:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50325:212;50464:4;50493:36;50517:11;50493:23;:36::i;:::-;50486:43;;50325:212;;;:::o;27297:100::-;27351:13;27384:5;27377:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27297:100;:::o;28856:221::-;28932:7;28960:16;28968:7;28960;:16::i;:::-;28952:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29045:15;:24;29061:7;29045:24;;;;;;;;;;;;;;;;;;;;;29038:31;;28856:221;;;:::o;28379:411::-;28460:13;28476:23;28491:7;28476:14;:23::i;:::-;28460:39;;28524:5;28518:11;;:2;:11;;;;28510:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28618:5;28602:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28627:37;28644:5;28651:12;:10;:12::i;:::-;28627:16;:37::i;:::-;28602:62;28580:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28761:21;28770:2;28774:7;28761:8;:21::i;:::-;28449:341;28379:411;;:::o;43254:113::-;43315:7;43342:10;:17;;;;43335:24;;43254:113;:::o;29606:339::-;29801:41;29820:12;:10;:12::i;:::-;29834:7;29801:18;:41::i;:::-;29793:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29909:28;29919:4;29925:2;29929:7;29909:9;:28::i;:::-;29606:339;;;:::o;42922:256::-;43019:7;43055:23;43072:5;43055:16;:23::i;:::-;43047:5;:31;43039:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43144:12;:19;43157:5;43144:19;;;;;;;;;;;;;;;:26;43164:5;43144:26;;;;;;;;;;;;43137:33;;42922:256;;;;:::o;50545:174::-;5799:12;:10;:12::i;:::-;5788:23;;:7;:5;:7::i;:::-;:23;;;5780:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50625:1:::1;50601:21;:25;50593:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;50671:7;:5;:7::i;:::-;50663:25;;:48;50689:21;50663:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50545:174::o:0;30016:185::-;30154:39;30171:4;30177:2;30181:7;30154:39;;;;;;;;;;;;:16;:39::i;:::-;30016:185;;;:::o;39334:245::-;39452:41;39471:12;:10;:12::i;:::-;39485:7;39452:18;:41::i;:::-;39444:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;39557:14;39563:7;39557:5;:14::i;:::-;39334:245;:::o;43444:233::-;43519:7;43555:30;:28;:30::i;:::-;43547:5;:38;43539:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;43652:10;43663:5;43652:17;;;;;;;;:::i;:::-;;;;;;;;;;43645:24;;43444:233;;;:::o;26991:239::-;27063:7;27083:13;27099:7;:16;27107:7;27099:16;;;;;;;;;;;;;;;;;;;;;27083:32;;27151:1;27134:19;;:5;:19;;;;27126:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27217:5;27210:12;;;26991:239;;;:::o;26721:208::-;26793:7;26838:1;26821:19;;:5;:19;;;;26813:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26905:9;:16;26915:5;26905:16;;;;;;;;;;;;;;;;26898:23;;26721:208;;;:::o;6219:103::-;5799:12;:10;:12::i;:::-;5788:23;;:7;:5;:7::i;:::-;:23;;;5780:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6284:30:::1;6311:1;6284:18;:30::i;:::-;6219:103::o:0;5568:87::-;5614:7;5641:6;;;;;;;;;;;5634:13;;5568:87;:::o;27466:104::-;27522:13;27555:7;27548:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27466:104;:::o;49323:385::-;49418:9;;49402:13;:11;:13::i;:::-;:25;49394:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49504:8;;49496:5;:16;;;;:::i;:::-;49483:9;:29;;49475:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49555:9;49550:145;49574:5;49570:1;:9;49550:145;;;49601:27;:15;:25;:27::i;:::-;49643:40;49653:2;49657:25;:15;:23;:25::i;:::-;49643:9;:40::i;:::-;49581:3;;;;;:::i;:::-;;;;49550:145;;;;49323:385;;:::o;29149:155::-;29244:52;29263:12;:10;:12::i;:::-;29277:8;29287;29244:18;:52::i;:::-;29149:155;;:::o;30272:328::-;30447:41;30466:12;:10;:12::i;:::-;30480:7;30447:18;:41::i;:::-;30439:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30553:39;30567:4;30573:2;30577:7;30586:5;30553:13;:39::i;:::-;30272:328;;;;:::o;50121:196::-;50248:13;50286:23;50301:7;50286:14;:23::i;:::-;50279:30;;50121:196;;;:::o;49030:36::-;;;;:::o;49073:29::-;;;;:::o;29375:164::-;29472:4;29496:18;:25;29515:5;29496:25;;;;;;;;;;;;;;;:35;29522:8;29496:35;;;;;;;;;;;;;;;;;;;;;;;;;29489:42;;29375:164;;;;:::o;6477:201::-;5799:12;:10;:12::i;:::-;5788:23;;:7;:5;:7::i;:::-;:23;;;5780:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6586:1:::1;6566:22;;:8;:22;;;;6558:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6642:28;6661:8;6642:18;:28::i;:::-;6477:201:::0;:::o;42614:224::-;42716:4;42755:35;42740:50;;;:11;:50;;;;:90;;;;42794:36;42818:11;42794:23;:36::i;:::-;42740:90;42733:97;;42614:224;;;:::o;32110:127::-;32175:4;32227:1;32199:30;;:7;:16;32207:7;32199:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32192:37;;32110:127;;;:::o;4286:98::-;4339:7;4366:10;4359:17;;4286:98;:::o;36092:174::-;36194:2;36167:15;:24;36183:7;36167:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36250:7;36246:2;36212:46;;36221:23;36236:7;36221:14;:23::i;:::-;36212:46;;;;;;;;;;;;36092:174;;:::o;32404:348::-;32497:4;32522:16;32530:7;32522;:16::i;:::-;32514:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32598:13;32614:23;32629:7;32614:14;:23::i;:::-;32598:39;;32667:5;32656:16;;:7;:16;;;:51;;;;32700:7;32676:31;;:20;32688:7;32676:11;:20::i;:::-;:31;;;32656:51;:87;;;;32711:32;32728:5;32735:7;32711:16;:32::i;:::-;32656:87;32648:96;;;32404:348;;;;:::o;35396:578::-;35555:4;35528:31;;:23;35543:7;35528:14;:23::i;:::-;:31;;;35520:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;35638:1;35624:16;;:2;:16;;;;35616:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35694:39;35715:4;35721:2;35725:7;35694:20;:39::i;:::-;35798:29;35815:1;35819:7;35798:8;:29::i;:::-;35859:1;35840:9;:15;35850:4;35840:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35888:1;35871:9;:13;35881:2;35871:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35919:2;35900:7;:16;35908:7;35900:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35958:7;35954:2;35939:27;;35948:4;35939:27;;;;;;;;;;;;35396:578;;;:::o;49998:115::-;50085:20;50097:7;50085:11;:20::i;:::-;49998:115;:::o;6838:191::-;6912:16;6931:6;;;;;;;;;;;6912:25;;6957:8;6948:6;;:17;;;;;;;;;;;;;;;;;;7012:8;6981:40;;7002:8;6981:40;;;;;;;;;;;;6901:128;6838:191;:::o;1000:127::-;1107:1;1089:7;:14;;;:19;;;;;;;;;;;1000:127;:::o;878:114::-;943:7;970;:14;;;963:21;;878:114;;;:::o;33094:110::-;33170:26;33180:2;33184:7;33170:26;;;;;;;;;;;;:9;:26::i;:::-;33094:110;;:::o;36408:315::-;36563:8;36554:17;;:5;:17;;;;36546:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36650:8;36612:18;:25;36631:5;36612:25;;;;;;;;;;;;;;;:35;36638:8;36612:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36696:8;36674:41;;36689:5;36674:41;;;36706:8;36674:41;;;;;;:::i;:::-;;;;;;;;36408:315;;;:::o;31482:::-;31639:28;31649:4;31655:2;31659:7;31639:9;:28::i;:::-;31686:48;31709:4;31715:2;31719:7;31728:5;31686:22;:48::i;:::-;31678:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31482:315;;;;:::o;40103:679::-;40176:13;40210:16;40218:7;40210;:16::i;:::-;40202:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;40293:23;40319:10;:19;40330:7;40319:19;;;;;;;;;;;40293:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40349:18;40370:10;:8;:10::i;:::-;40349:31;;40478:1;40462:4;40456:18;:23;40452:72;;;40503:9;40496:16;;;;;;40452:72;40654:1;40634:9;40628:23;:27;40624:108;;;40703:4;40709:9;40686:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40672:48;;;;;;40624:108;40751:23;40766:7;40751:14;:23::i;:::-;40744:30;;;;40103:679;;;;:::o;26352:305::-;26454:4;26506:25;26491:40;;;:11;:40;;;;:105;;;;26563:33;26548:48;;;:11;:48;;;;26491:105;:158;;;;26613:36;26637:11;26613:23;:36::i;:::-;26491:158;26471:178;;26352:305;;;:::o;49786:204::-;49937:45;49964:4;49970:2;49974:7;49937:26;:45::i;:::-;49786:204;;;:::o;41384:206::-;41453:20;41465:7;41453:11;:20::i;:::-;41527:1;41496:10;:19;41507:7;41496:19;;;;;;;;;;;41490:33;;;;;:::i;:::-;;;:38;41486:97;;41552:10;:19;41563:7;41552:19;;;;;;;;;;;;41545:26;;;;:::i;:::-;41486:97;41384:206;:::o;33431:321::-;33561:18;33567:2;33571:7;33561:5;:18::i;:::-;33612:54;33643:1;33647:2;33651:7;33660:5;33612:22;:54::i;:::-;33590:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33431:321;;;:::o;37288:799::-;37443:4;37464:15;:2;:13;;;:15::i;:::-;37460:620;;;37516:2;37500:36;;;37537:12;:10;:12::i;:::-;37551:4;37557:7;37566:5;37500:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37496:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37759:1;37742:6;:13;:18;37738:272;;;37785:60;;;;;;;;;;:::i;:::-;;;;;;;;37738:272;37960:6;37954:13;37945:6;37941:2;37937:15;37930:38;37496:529;37633:41;;;37623:51;;;:6;:51;;;;37616:58;;;;;37460:620;38064:4;38057:11;;37288:799;;;;;;;:::o;49166:149::-;49218:13;49244:63;;;;;;;;;;;;;;;;;;;49166:149;:::o;27641:334::-;27714:13;27748:16;27756:7;27748;:16::i;:::-;27740:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27829:21;27853:10;:8;:10::i;:::-;27829:34;;27905:1;27887:7;27881:21;:25;:86;;;;;;;;;;;;;;;;;27933:7;27942:18;:7;:16;:18::i;:::-;27916:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27881:86;27874:93;;;27641:334;;;:::o;18024:157::-;18109:4;18148:25;18133:40;;;:11;:40;;;;18126:47;;18024:157;;;:::o;44290:589::-;44434:45;44461:4;44467:2;44471:7;44434:26;:45::i;:::-;44512:1;44496:18;;:4;:18;;;44492:187;;;44531:40;44563:7;44531:31;:40::i;:::-;44492:187;;;44601:2;44593:10;;:4;:10;;;44589:90;;44620:47;44653:4;44659:7;44620:32;:47::i;:::-;44589:90;44492:187;44707:1;44693:16;;:2;:16;;;44689:183;;;44726:45;44763:7;44726:36;:45::i;:::-;44689:183;;;44799:4;44793:10;;:2;:10;;;44789:83;;44820:40;44848:2;44852:7;44820:27;:40::i;:::-;44789:83;44689:183;44290:589;;;:::o;34699:360::-;34759:13;34775:23;34790:7;34775:14;:23::i;:::-;34759:39;;34811:48;34832:5;34847:1;34851:7;34811:20;:48::i;:::-;34900:29;34917:1;34921:7;34900:8;:29::i;:::-;34962:1;34942:9;:16;34952:5;34942:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;34981:7;:16;34989:7;34981:16;;;;;;;;;;;;34974:23;;;;;;;;;;;35043:7;35039:1;35015:36;;35024:5;35015:36;;;;;;;;;;;;34748:311;34699:360;:::o;34088:382::-;34182:1;34168:16;;:2;:16;;;;34160:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34241:16;34249:7;34241;:16::i;:::-;34240:17;34232:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34303:45;34332:1;34336:2;34340:7;34303:20;:45::i;:::-;34378:1;34361:9;:13;34371:2;34361:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34409:2;34390:7;:16;34398:7;34390:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34454:7;34450:2;34429:33;;34446:1;34429:33;;;;;;;;;;;;34088:382;;:::o;7862:387::-;7922:4;8130:12;8197:7;8185:20;8177:28;;8240:1;8233:4;:8;8226:15;;;7862:387;;;:::o;1842:723::-;1898:13;2128:1;2119:5;:10;2115:53;;;2146:10;;;;;;;;;;;;;;;;;;;;;2115:53;2178:12;2193:5;2178:20;;2209:14;2234:78;2249:1;2241:4;:9;2234:78;;2267:8;;;;;:::i;:::-;;;;2298:2;2290:10;;;;;:::i;:::-;;;2234:78;;;2322:19;2354:6;2344:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2322:39;;2372:154;2388:1;2379:5;:10;2372:154;;2416:1;2406:11;;;;;:::i;:::-;;;2483:2;2475:5;:10;;;;:::i;:::-;2462:2;:24;;;;:::i;:::-;2449:39;;2432:6;2439;2432:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2512:2;2503:11;;;;;:::i;:::-;;;2372:154;;;2550:6;2536:21;;;;;1842:723;;;;:::o;38659:126::-;;;;:::o;45602:164::-;45706:10;:17;;;;45679:15;:24;45695:7;45679:24;;;;;;;;;;;:44;;;;45734:10;45750:7;45734:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45602:164;:::o;46393:988::-;46659:22;46709:1;46684:22;46701:4;46684:16;:22::i;:::-;:26;;;;:::i;:::-;46659:51;;46721:18;46742:17;:26;46760:7;46742:26;;;;;;;;;;;;46721:47;;46889:14;46875:10;:28;46871:328;;46920:19;46942:12;:18;46955:4;46942:18;;;;;;;;;;;;;;;:34;46961:14;46942:34;;;;;;;;;;;;46920:56;;47026:11;46993:12;:18;47006:4;46993:18;;;;;;;;;;;;;;;:30;47012:10;46993:30;;;;;;;;;;;:44;;;;47143:10;47110:17;:30;47128:11;47110:30;;;;;;;;;;;:43;;;;46905:294;46871:328;47295:17;:26;47313:7;47295:26;;;;;;;;;;;47288:33;;;47339:12;:18;47352:4;47339:18;;;;;;;;;;;;;;;:34;47358:14;47339:34;;;;;;;;;;;47332:41;;;46474:907;;46393:988;;:::o;47676:1079::-;47929:22;47974:1;47954:10;:17;;;;:21;;;;:::i;:::-;47929:46;;47986:18;48007:15;:24;48023:7;48007:24;;;;;;;;;;;;47986:45;;48358:19;48380:10;48391:14;48380:26;;;;;;;;:::i;:::-;;;;;;;;;;48358:48;;48444:11;48419:10;48430;48419:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;48555:10;48524:15;:28;48540:11;48524:28;;;;;;;;;;;:41;;;;48696:15;:24;48712:7;48696:24;;;;;;;;;;;48689:31;;;48731:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47747:1008;;;47676:1079;:::o;45180:221::-;45265:14;45282:20;45299:2;45282:16;:20::i;:::-;45265:37;;45340:7;45313:12;:16;45326:2;45313:16;;;;;;;;;;;;;;;:24;45330:6;45313:24;;;;;;;;;;;:34;;;;45387:6;45358:17;:26;45376:7;45358:26;;;;;;;;;;;:35;;;;45254:147;45180:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:::-;8109:3;8130:67;8194:2;8189:3;8130:67;:::i;:::-;8123:74;;8206:93;8295:3;8206:93;:::i;:::-;8324:2;8319:3;8315:12;8308:19;;7967:366;;;:::o;8339:::-;8481:3;8502:67;8566:2;8561:3;8502:67;:::i;:::-;8495:74;;8578:93;8667:3;8578:93;:::i;:::-;8696:2;8691:3;8687:12;8680:19;;8339:366;;;:::o;8711:::-;8853:3;8874:67;8938:2;8933:3;8874:67;:::i;:::-;8867:74;;8950:93;9039:3;8950:93;:::i;:::-;9068:2;9063:3;9059:12;9052:19;;8711:366;;;:::o;9083:::-;9225:3;9246:67;9310:2;9305:3;9246:67;:::i;:::-;9239:74;;9322:93;9411:3;9322:93;:::i;:::-;9440:2;9435:3;9431:12;9424:19;;9083:366;;;:::o;9455:::-;9597:3;9618:67;9682:2;9677:3;9618:67;:::i;:::-;9611:74;;9694:93;9783:3;9694:93;:::i;:::-;9812:2;9807:3;9803:12;9796:19;;9455:366;;;:::o;9827:::-;9969:3;9990:67;10054:2;10049:3;9990:67;:::i;:::-;9983:74;;10066:93;10155:3;10066:93;:::i;:::-;10184:2;10179:3;10175:12;10168:19;;9827:366;;;:::o;10199:::-;10341:3;10362:67;10426:2;10421:3;10362:67;:::i;:::-;10355:74;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10199:366;;;:::o;10571:::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:::-;11829:3;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11926:93;12015:3;11926:93;:::i;:::-;12044:2;12039:3;12035:12;12028:19;;11687:366;;;:::o;12059:::-;12201:3;12222:67;12286:2;12281:3;12222:67;:::i;:::-;12215:74;;12298:93;12387:3;12298:93;:::i;:::-;12416:2;12411:3;12407:12;12400:19;;12059:366;;;:::o;12431:::-;12573:3;12594:67;12658:2;12653:3;12594:67;:::i;:::-;12587:74;;12670:93;12759:3;12670:93;:::i;:::-;12788:2;12783:3;12779:12;12772:19;;12431:366;;;:::o;12803:::-;12945:3;12966:67;13030:2;13025:3;12966:67;:::i;:::-;12959:74;;13042:93;13131:3;13042:93;:::i;:::-;13160:2;13155:3;13151:12;13144:19;;12803:366;;;:::o;13175:::-;13317:3;13338:67;13402:2;13397:3;13338:67;:::i;:::-;13331:74;;13414:93;13503:3;13414:93;:::i;:::-;13532:2;13527:3;13523:12;13516:19;;13175:366;;;:::o;13547:::-;13689:3;13710:67;13774:2;13769:3;13710:67;:::i;:::-;13703:74;;13786:93;13875:3;13786:93;:::i;:::-;13904:2;13899:3;13895:12;13888:19;;13547:366;;;:::o;13919:::-;14061:3;14082:67;14146:2;14141:3;14082:67;:::i;:::-;14075:74;;14158:93;14247:3;14158:93;:::i;:::-;14276:2;14271:3;14267:12;14260:19;;13919:366;;;:::o;14291:::-;14433:3;14454:67;14518:2;14513:3;14454:67;:::i;:::-;14447:74;;14530:93;14619:3;14530:93;:::i;:::-;14648:2;14643:3;14639:12;14632:19;;14291:366;;;:::o;14663:::-;14805:3;14826:67;14890:2;14885:3;14826:67;:::i;:::-;14819:74;;14902:93;14991:3;14902:93;:::i;:::-;15020:2;15015:3;15011:12;15004:19;;14663:366;;;:::o;15035:::-;15177:3;15198:67;15262:2;15257:3;15198:67;:::i;:::-;15191:74;;15274:93;15363:3;15274:93;:::i;:::-;15392:2;15387:3;15383:12;15376:19;;15035:366;;;:::o;15407:::-;15549:3;15570:67;15634:2;15629:3;15570:67;:::i;:::-;15563:74;;15646:93;15735:3;15646:93;:::i;:::-;15764:2;15759:3;15755:12;15748:19;;15407:366;;;:::o;15779:118::-;15866:24;15884:5;15866:24;:::i;:::-;15861:3;15854:37;15779:118;;:::o;15903:435::-;16083:3;16105:95;16196:3;16187:6;16105:95;:::i;:::-;16098:102;;16217:95;16308:3;16299:6;16217:95;:::i;:::-;16210:102;;16329:3;16322:10;;15903:435;;;;;:::o;16344:222::-;16437:4;16475:2;16464:9;16460:18;16452:26;;16488:71;16556:1;16545:9;16541:17;16532:6;16488:71;:::i;:::-;16344:222;;;;:::o;16572:640::-;16767:4;16805:3;16794:9;16790:19;16782:27;;16819:71;16887:1;16876:9;16872:17;16863:6;16819:71;:::i;:::-;16900:72;16968:2;16957:9;16953:18;16944:6;16900:72;:::i;:::-;16982;17050:2;17039:9;17035:18;17026:6;16982:72;:::i;:::-;17101:9;17095:4;17091:20;17086:2;17075:9;17071:18;17064:48;17129:76;17200:4;17191:6;17129:76;:::i;:::-;17121:84;;16572:640;;;;;;;:::o;17218:210::-;17305:4;17343:2;17332:9;17328:18;17320:26;;17356:65;17418:1;17407:9;17403:17;17394:6;17356:65;:::i;:::-;17218:210;;;;:::o;17434:313::-;17547:4;17585:2;17574:9;17570:18;17562:26;;17634:9;17628:4;17624:20;17620:1;17609:9;17605:17;17598:47;17662:78;17735:4;17726:6;17662:78;:::i;:::-;17654:86;;17434:313;;;;:::o;17753:419::-;17919:4;17957:2;17946:9;17942:18;17934:26;;18006:9;18000:4;17996:20;17992:1;17981:9;17977:17;17970:47;18034:131;18160:4;18034:131;:::i;:::-;18026:139;;17753:419;;;:::o;18178:::-;18344:4;18382:2;18371:9;18367:18;18359:26;;18431:9;18425:4;18421:20;18417:1;18406:9;18402:17;18395:47;18459:131;18585:4;18459:131;:::i;:::-;18451:139;;18178:419;;;:::o;18603:::-;18769:4;18807:2;18796:9;18792:18;18784:26;;18856:9;18850:4;18846:20;18842:1;18831:9;18827:17;18820:47;18884:131;19010:4;18884:131;:::i;:::-;18876:139;;18603:419;;;:::o;19028:::-;19194:4;19232:2;19221:9;19217:18;19209:26;;19281:9;19275:4;19271:20;19267:1;19256:9;19252:17;19245:47;19309:131;19435:4;19309:131;:::i;:::-;19301:139;;19028:419;;;:::o;19453:::-;19619:4;19657:2;19646:9;19642:18;19634:26;;19706:9;19700:4;19696:20;19692:1;19681:9;19677:17;19670:47;19734:131;19860:4;19734:131;:::i;:::-;19726:139;;19453:419;;;:::o;19878:::-;20044:4;20082:2;20071:9;20067:18;20059:26;;20131:9;20125:4;20121:20;20117:1;20106:9;20102:17;20095:47;20159:131;20285:4;20159:131;:::i;:::-;20151:139;;19878:419;;;:::o;20303:::-;20469:4;20507:2;20496:9;20492:18;20484:26;;20556:9;20550:4;20546:20;20542:1;20531:9;20527:17;20520:47;20584:131;20710:4;20584:131;:::i;:::-;20576:139;;20303:419;;;:::o;20728:::-;20894:4;20932:2;20921:9;20917:18;20909:26;;20981:9;20975:4;20971:20;20967:1;20956:9;20952:17;20945:47;21009:131;21135:4;21009:131;:::i;:::-;21001:139;;20728:419;;;:::o;21153:::-;21319:4;21357:2;21346:9;21342:18;21334:26;;21406:9;21400:4;21396:20;21392:1;21381:9;21377:17;21370:47;21434:131;21560:4;21434:131;:::i;:::-;21426:139;;21153:419;;;:::o;21578:::-;21744:4;21782:2;21771:9;21767:18;21759:26;;21831:9;21825:4;21821:20;21817:1;21806:9;21802:17;21795:47;21859:131;21985:4;21859:131;:::i;:::-;21851:139;;21578:419;;;:::o;22003:::-;22169:4;22207:2;22196:9;22192:18;22184:26;;22256:9;22250:4;22246:20;22242:1;22231:9;22227:17;22220:47;22284:131;22410:4;22284:131;:::i;:::-;22276:139;;22003:419;;;:::o;22428:::-;22594:4;22632:2;22621:9;22617:18;22609:26;;22681:9;22675:4;22671:20;22667:1;22656:9;22652:17;22645:47;22709:131;22835:4;22709:131;:::i;:::-;22701:139;;22428:419;;;:::o;22853:::-;23019:4;23057:2;23046:9;23042:18;23034:26;;23106:9;23100:4;23096:20;23092:1;23081:9;23077:17;23070:47;23134:131;23260:4;23134:131;:::i;:::-;23126:139;;22853:419;;;:::o;23278:::-;23444:4;23482:2;23471:9;23467:18;23459:26;;23531:9;23525:4;23521:20;23517:1;23506:9;23502:17;23495:47;23559:131;23685:4;23559:131;:::i;:::-;23551:139;;23278:419;;;:::o;23703:::-;23869:4;23907:2;23896:9;23892:18;23884:26;;23956:9;23950:4;23946:20;23942:1;23931:9;23927:17;23920:47;23984:131;24110:4;23984:131;:::i;:::-;23976:139;;23703:419;;;:::o;24128:::-;24294:4;24332:2;24321:9;24317:18;24309:26;;24381:9;24375:4;24371:20;24367:1;24356:9;24352:17;24345:47;24409:131;24535:4;24409:131;:::i;:::-;24401:139;;24128:419;;;:::o;24553:::-;24719:4;24757:2;24746:9;24742:18;24734:26;;24806:9;24800:4;24796:20;24792:1;24781:9;24777:17;24770:47;24834:131;24960:4;24834:131;:::i;:::-;24826:139;;24553:419;;;:::o;24978:::-;25144:4;25182:2;25171:9;25167:18;25159:26;;25231:9;25225:4;25221:20;25217:1;25206:9;25202:17;25195:47;25259:131;25385:4;25259:131;:::i;:::-;25251:139;;24978:419;;;:::o;25403:::-;25569:4;25607:2;25596:9;25592:18;25584:26;;25656:9;25650:4;25646:20;25642:1;25631:9;25627:17;25620:47;25684:131;25810:4;25684:131;:::i;:::-;25676:139;;25403:419;;;:::o;25828:::-;25994:4;26032:2;26021:9;26017:18;26009:26;;26081:9;26075:4;26071:20;26067:1;26056:9;26052:17;26045:47;26109:131;26235:4;26109:131;:::i;:::-;26101:139;;25828:419;;;:::o;26253:::-;26419:4;26457:2;26446:9;26442:18;26434:26;;26506:9;26500:4;26496:20;26492:1;26481:9;26477:17;26470:47;26534:131;26660:4;26534:131;:::i;:::-;26526:139;;26253:419;;;:::o;26678:::-;26844:4;26882:2;26871:9;26867:18;26859:26;;26931:9;26925:4;26921:20;26917:1;26906:9;26902:17;26895:47;26959:131;27085:4;26959:131;:::i;:::-;26951:139;;26678:419;;;:::o;27103:::-;27269:4;27307:2;27296:9;27292:18;27284:26;;27356:9;27350:4;27346:20;27342:1;27331:9;27327:17;27320:47;27384:131;27510:4;27384:131;:::i;:::-;27376:139;;27103:419;;;:::o;27528:222::-;27621:4;27659:2;27648:9;27644:18;27636:26;;27672:71;27740:1;27729:9;27725:17;27716:6;27672:71;:::i;:::-;27528:222;;;;:::o;27756:129::-;27790:6;27817:20;;:::i;:::-;27807:30;;27846:33;27874:4;27866:6;27846:33;:::i;:::-;27756:129;;;:::o;27891:75::-;27924:6;27957:2;27951:9;27941:19;;27891:75;:::o;27972:307::-;28033:4;28123:18;28115:6;28112:30;28109:56;;;28145:18;;:::i;:::-;28109:56;28183:29;28205:6;28183:29;:::i;:::-;28175:37;;28267:4;28261;28257:15;28249:23;;27972:307;;;:::o;28285:98::-;28336:6;28370:5;28364:12;28354:22;;28285:98;;;:::o;28389:99::-;28441:6;28475:5;28469:12;28459:22;;28389:99;;;:::o;28494:168::-;28577:11;28611:6;28606:3;28599:19;28651:4;28646:3;28642:14;28627:29;;28494:168;;;;:::o;28668:169::-;28752:11;28786:6;28781:3;28774:19;28826:4;28821:3;28817:14;28802:29;;28668:169;;;;:::o;28843:148::-;28945:11;28982:3;28967:18;;28843:148;;;;:::o;28997:305::-;29037:3;29056:20;29074:1;29056:20;:::i;:::-;29051:25;;29090:20;29108:1;29090:20;:::i;:::-;29085:25;;29244:1;29176:66;29172:74;29169:1;29166:81;29163:107;;;29250:18;;:::i;:::-;29163:107;29294:1;29291;29287:9;29280:16;;28997:305;;;;:::o;29308:185::-;29348:1;29365:20;29383:1;29365:20;:::i;:::-;29360:25;;29399:20;29417:1;29399:20;:::i;:::-;29394:25;;29438:1;29428:35;;29443:18;;:::i;:::-;29428:35;29485:1;29482;29478:9;29473:14;;29308:185;;;;:::o;29499:348::-;29539:7;29562:20;29580:1;29562:20;:::i;:::-;29557:25;;29596:20;29614:1;29596:20;:::i;:::-;29591:25;;29784:1;29716:66;29712:74;29709:1;29706:81;29701:1;29694:9;29687:17;29683:105;29680:131;;;29791:18;;:::i;:::-;29680:131;29839:1;29836;29832:9;29821:20;;29499:348;;;;:::o;29853:191::-;29893:4;29913:20;29931:1;29913:20;:::i;:::-;29908:25;;29947:20;29965:1;29947:20;:::i;:::-;29942:25;;29986:1;29983;29980:8;29977:34;;;29991:18;;:::i;:::-;29977:34;30036:1;30033;30029:9;30021:17;;29853:191;;;;:::o;30050:96::-;30087:7;30116:24;30134:5;30116:24;:::i;:::-;30105:35;;30050:96;;;:::o;30152:90::-;30186:7;30229:5;30222:13;30215:21;30204:32;;30152:90;;;:::o;30248:149::-;30284:7;30324:66;30317:5;30313:78;30302:89;;30248:149;;;:::o;30403:126::-;30440:7;30480:42;30473:5;30469:54;30458:65;;30403:126;;;:::o;30535:77::-;30572:7;30601:5;30590:16;;30535:77;;;:::o;30618:154::-;30702:6;30697:3;30692;30679:30;30764:1;30755:6;30750:3;30746:16;30739:27;30618:154;;;:::o;30778:307::-;30846:1;30856:113;30870:6;30867:1;30864:13;30856:113;;;30955:1;30950:3;30946:11;30940:18;30936:1;30931:3;30927:11;30920:39;30892:2;30889:1;30885:10;30880:15;;30856:113;;;30987:6;30984:1;30981:13;30978:101;;;31067:1;31058:6;31053:3;31049:16;31042:27;30978:101;30827:258;30778:307;;;:::o;31091:320::-;31135:6;31172:1;31166:4;31162:12;31152:22;;31219:1;31213:4;31209:12;31240:18;31230:81;;31296:4;31288:6;31284:17;31274:27;;31230:81;31358:2;31350:6;31347:14;31327:18;31324:38;31321:84;;;31377:18;;:::i;:::-;31321:84;31142:269;31091:320;;;:::o;31417:281::-;31500:27;31522:4;31500:27;:::i;:::-;31492:6;31488:40;31630:6;31618:10;31615:22;31594:18;31582:10;31579:34;31576:62;31573:88;;;31641:18;;:::i;:::-;31573:88;31681:10;31677:2;31670:22;31460:238;31417:281;;:::o;31704:233::-;31743:3;31766:24;31784:5;31766:24;:::i;:::-;31757:33;;31812:66;31805:5;31802:77;31799:103;;;31882:18;;:::i;:::-;31799:103;31929:1;31922:5;31918:13;31911:20;;31704:233;;;:::o;31943:176::-;31975:1;31992:20;32010:1;31992:20;:::i;:::-;31987:25;;32026:20;32044:1;32026:20;:::i;:::-;32021:25;;32065:1;32055:35;;32070:18;;:::i;:::-;32055:35;32111:1;32108;32104:9;32099:14;;31943:176;;;;:::o;32125:180::-;32173:77;32170:1;32163:88;32270:4;32267:1;32260:15;32294:4;32291:1;32284:15;32311:180;32359:77;32356:1;32349:88;32456:4;32453:1;32446:15;32480:4;32477:1;32470:15;32497:180;32545:77;32542:1;32535:88;32642:4;32639:1;32632:15;32666:4;32663:1;32656:15;32683:180;32731:77;32728:1;32721:88;32828:4;32825:1;32818:15;32852:4;32849:1;32842:15;32869:180;32917:77;32914:1;32907:88;33014:4;33011:1;33004:15;33038:4;33035:1;33028:15;33055:180;33103:77;33100:1;33093:88;33200:4;33197:1;33190:15;33224:4;33221:1;33214:15;33241:117;33350:1;33347;33340:12;33364:117;33473:1;33470;33463:12;33487:117;33596:1;33593;33586:12;33610:117;33719:1;33716;33709:12;33733:102;33774:6;33825:2;33821:7;33816:2;33809:5;33805:14;33801:28;33791:38;;33733:102;;;:::o;33841:171::-;33981:23;33977:1;33969:6;33965:14;33958:47;33841:171;:::o;34018:230::-;34158:34;34154:1;34146:6;34142:14;34135:58;34227:13;34222:2;34214:6;34210:15;34203:38;34018:230;:::o;34254:237::-;34394:34;34390:1;34382:6;34378:14;34371:58;34463:20;34458:2;34450:6;34446:15;34439:45;34254:237;:::o;34497:225::-;34637:34;34633:1;34625:6;34621:14;34614:58;34706:8;34701:2;34693:6;34689:15;34682:33;34497:225;:::o;34728:178::-;34868:30;34864:1;34856:6;34852:14;34845:54;34728:178;:::o;34912:223::-;35052:34;35048:1;35040:6;35036:14;35029:58;35121:6;35116:2;35108:6;35104:15;35097:31;34912:223;:::o;35141:175::-;35281:27;35277:1;35269:6;35265:14;35258:51;35141:175;:::o;35322:231::-;35462:34;35458:1;35450:6;35446:14;35439:58;35531:14;35526:2;35518:6;35514:15;35507:39;35322:231;:::o;35559:243::-;35699:34;35695:1;35687:6;35683:14;35676:58;35768:26;35763:2;35755:6;35751:15;35744:51;35559:243;:::o;35808:229::-;35948:34;35944:1;35936:6;35932:14;35925:58;36017:12;36012:2;36004:6;36000:15;35993:37;35808:229;:::o;36043:228::-;36183:34;36179:1;36171:6;36167:14;36160:58;36252:11;36247:2;36239:6;36235:15;36228:36;36043:228;:::o;36277:182::-;36417:34;36413:1;36405:6;36401:14;36394:58;36277:182;:::o;36465:236::-;36605:34;36601:1;36593:6;36589:14;36582:58;36674:19;36669:2;36661:6;36657:15;36650:44;36465:236;:::o;36707:231::-;36847:34;36843:1;36835:6;36831:14;36824:58;36916:14;36911:2;36903:6;36899:15;36892:39;36707:231;:::o;36944:182::-;37084:34;37080:1;37072:6;37068:14;37061:58;36944:182;:::o;37132:228::-;37272:34;37268:1;37260:6;37256:14;37249:58;37341:11;37336:2;37328:6;37324:15;37317:36;37132:228;:::o;37366:234::-;37506:34;37502:1;37494:6;37490:14;37483:58;37575:17;37570:2;37562:6;37558:15;37551:42;37366:234;:::o;37606:220::-;37746:34;37742:1;37734:6;37730:14;37723:58;37815:3;37810:2;37802:6;37798:15;37791:28;37606:220;:::o;37832:236::-;37972:34;37968:1;37960:6;37956:14;37949:58;38041:19;38036:2;38028:6;38024:15;38017:44;37832:236;:::o;38074:172::-;38214:24;38210:1;38202:6;38198:14;38191:48;38074:172;:::o;38252:231::-;38392:34;38388:1;38380:6;38376:14;38369:58;38461:14;38456:2;38448:6;38444:15;38437:39;38252:231;:::o;38489:182::-;38629:34;38625:1;38617:6;38613:14;38606:58;38489:182;:::o;38677:235::-;38817:34;38813:1;38805:6;38801:14;38794:58;38886:18;38881:2;38873:6;38869:15;38862:43;38677:235;:::o;38918:122::-;38991:24;39009:5;38991:24;:::i;:::-;38984:5;38981:35;38971:63;;39030:1;39027;39020:12;38971:63;38918:122;:::o;39046:116::-;39116:21;39131:5;39116:21;:::i;:::-;39109:5;39106:32;39096:60;;39152:1;39149;39142:12;39096:60;39046:116;:::o;39168:120::-;39240:23;39257:5;39240:23;:::i;:::-;39233:5;39230:34;39220:62;;39278:1;39275;39268:12;39220:62;39168:120;:::o;39294:122::-;39367:24;39385:5;39367:24;:::i;:::-;39360:5;39357:35;39347:63;;39406:1;39403;39396:12;39347:63;39294:122;:::o

Swarm Source

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