ETH Price: $3,390.65 (-2.59%)
Gas: 1 Gwei

Token

FUD Monsters (FM)
 

Overview

Max Total Supply

8,888 FM

Holders

2,291

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 FM
0xceb6798d609f86e156f36735eb39108af6d9a8cb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

FUD Monsters are 8,888 NFT digital collectibles living on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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




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

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




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













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

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

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

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

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

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

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

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

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

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

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

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





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







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





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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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









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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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





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







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

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

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

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

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

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

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

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


contract NFT is ERC721, Ownable {
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;
  uint256 private _mintCost;
  uint256 private _maxSupply;
  bool private _isPublicMintEnabled;
  
  /**
  * @dev Initializes the contract setting the `tokenName` and `symbol` of the nft, `cost` of each mint call, and maximum `supply` of the nft.
  * Note: `cost` is in wei. 
  */
  constructor(string memory tokenName, string memory symbol, uint256 cost, uint256 supply) ERC721(tokenName, symbol) Ownable() {
    _mintCost = cost;
    _maxSupply = supply;
    _isPublicMintEnabled = false;
  }

  /**
  * @dev Changes contract state to enable public access to `mintToken` function
  * Can only be called by the current owner.
  */
  function allowPublicMint()
  public
  onlyOwner{
    _isPublicMintEnabled = true;
  }

  /**
  * @dev Changes contract state to disable public access to `mintToken` function
  * Can only be called by the current owner.
  */
  function denyPublicMint()
  public
  onlyOwner{
    _isPublicMintEnabled = false;
  }

  /**
  * @dev Mints a new nft if requirements are satisfied.
  */
  function mintToken()
  public
  payable
  returns (uint256)
  {
    require(_isPublicMintEnabled, "Mint disabled");
    require(_tokenIds.current() < _maxSupply, "Maximum supply reached");
    require(msg.value == _mintCost, "Caller provided invalid payment amount");
    return _mint(msg.sender);
  }

  /**
  * @dev Mint `count` tokens to the contract owner.
  * Can only be called by the current owner.
  */
  function adminMint(uint count)
  public
  onlyOwner{
    for(uint i=0; i<count; i++){
        _mint(msg.sender);
     }
  }

  /**
  * @dev Mint a token to each Address of `recipients`.
  * Can only be called by the current owner.
  */
  function adminMintTo(address[] calldata recipients)
  public
  onlyOwner{
    for(uint i=0; i<recipients.length; i++){
        _mint(recipients[i]);
     }
  }

  /**
  * @dev Update the cost to mint a token.
  * Can only be called by the current owner.
  */
  function setCost(uint256 cost) public onlyOwner{
    _mintCost = cost;
  }

  /**
  * @dev Transfers contract balance to contract owner.
  * Can only be called by the current owner.
  */
  function withdraw() public onlyOwner{
    payable(owner()).transfer(address(this).balance);
  }

  /**
  * @dev Used by public mint functions and by owner functions.
  * Can only be called internally by other functions.
  */
  function _mint(address to) internal virtual returns (uint256){
    _tokenIds.increment();
    uint256 id = _tokenIds.current();
    _safeMint(to, id);

    return id;
  }

  function getCost() public view returns (uint256){
    return _mintCost;
  }
  function totalSupply() public view returns (uint256){
    return _maxSupply;
  }
  function getCurrentSupply() public view returns (uint256){
    return _tokenIds.current();
  }
  function getMintStatus() public view returns (bool) {
    return _isPublicMintEnabled;
  }
  function _baseURI() override internal pure returns (string memory) {
    return "https://4a53x0u6k3.execute-api.us-east-1.amazonaws.com/dev/token/";
  }
  function contractURI() public pure returns (string memory) {
    return "https://4a53x0u6k3.execute-api.us-east-1.amazonaws.com/dev/contract";
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"}],"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":"uint256","name":"count","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"adminMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"denyPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setCost","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":"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"}]

60806040523480156200001157600080fd5b5060405162003b3438038062003b348339818101604052810190620000379190620002c7565b83838160009080519060200190620000519291906200018e565b5080600190805190602001906200006a9291906200018e565b5050506200008d62000081620000c060201b60201c565b620000c860201b60201c565b81600881905550806009819055506000600a60006101000a81548160ff02191690831515021790555050505050620004f9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200019c9062000404565b90600052602060002090601f016020900481019282620001c057600085556200020c565b82601f10620001db57805160ff19168380011785556200020c565b828001600101855582156200020c579182015b828111156200020b578251825591602001919060010190620001ee565b5b5090506200021b91906200021f565b5090565b5b808211156200023a57600081600090555060010162000220565b5090565b6000620002556200024f846200038e565b62000365565b9050828152602081018484840111156200026e57600080fd5b6200027b848285620003ce565b509392505050565b600082601f8301126200029557600080fd5b8151620002a78482602086016200023e565b91505092915050565b600081519050620002c181620004df565b92915050565b60008060008060808587031215620002de57600080fd5b600085015167ffffffffffffffff811115620002f957600080fd5b620003078782880162000283565b945050602085015167ffffffffffffffff8111156200032557600080fd5b620003338782880162000283565b93505060406200034687828801620002b0565b92505060606200035987828801620002b0565b91505092959194509250565b60006200037162000384565b90506200037f82826200043a565b919050565b6000604051905090565b600067ffffffffffffffff821115620003ac57620003ab6200049f565b5b620003b782620004ce565b9050602081019050919050565b6000819050919050565b60005b83811015620003ee578082015181840152602081019050620003d1565b83811115620003fe576000848401525b50505050565b600060028204905060018216806200041d57607f821691505b6020821081141562000434576200043362000470565b5b50919050565b6200044582620004ce565b810181811067ffffffffffffffff821117156200046757620004666200049f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620004ea81620003c4565b8114620004f657600080fd5b50565b61362b80620005096000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd1461059f578063e8a3d485146105dc578063e985e9c514610607578063f2fde38b14610644576101b7565b8063b88d4fde14610522578063bd3e19d41461054b578063c1f2612314610576576101b7565b8063941ada0e116100c6578063941ada0e1461048c57806395d89b41146104b75780639edcc310146104e2578063a22cb465146104f9576101b7565b806370a082311461040d578063715018a61461044a5780638da5cb5b14610461576101b7565b806335133b401161015957806344a0d68a1161013357806344a0d68a146103535780634f3e1efc1461037c5780636352211e146103a7578063686c453c146103e4576101b7565b806335133b40146102fc5780633ccfd60b1461031357806342842e0e1461032a576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780632004ffd9146102b557806323b872dd146102d3576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612541565b61066d565b6040516101f091906129b0565b60405180910390f35b34801561020557600080fd5b5061020e61074f565b60405161021b91906129cb565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612593565b6107e1565b6040516102589190612949565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906124c0565b610866565b005b34801561029657600080fd5b5061029f61097e565b6040516102ac9190612c4d565b60405180910390f35b6102bd610988565b6040516102ca9190612c4d565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906123ba565b610a78565b005b34801561030857600080fd5b50610311610ad8565b005b34801561031f57600080fd5b50610328610b71565b005b34801561033657600080fd5b50610351600480360381019061034c91906123ba565b610c3d565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612593565b610c5d565b005b34801561038857600080fd5b50610391610ce3565b60405161039e9190612c4d565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612593565b610cf4565b6040516103db9190612949565b60405180910390f35b3480156103f057600080fd5b5061040b600480360381019061040691906124fc565b610da6565b005b34801561041957600080fd5b50610434600480360381019061042f9190612355565b610e9f565b6040516104419190612c4d565b60405180910390f35b34801561045657600080fd5b5061045f610f57565b005b34801561046d57600080fd5b50610476610fdf565b6040516104839190612949565b60405180910390f35b34801561049857600080fd5b506104a1611009565b6040516104ae91906129b0565b60405180910390f35b3480156104c357600080fd5b506104cc611020565b6040516104d991906129cb565b60405180910390f35b3480156104ee57600080fd5b506104f76110b2565b005b34801561050557600080fd5b50610520600480360381019061051b9190612484565b61114b565b005b34801561052e57600080fd5b5061054960048036038101906105449190612409565b6112cc565b005b34801561055757600080fd5b5061056061132e565b60405161056d9190612c4d565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612593565b611338565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612593565b6113e0565b6040516105d391906129cb565b60405180910390f35b3480156105e857600080fd5b506105f1611487565b6040516105fe91906129cb565b60405180910390f35b34801561061357600080fd5b5061062e6004803603810190610629919061237e565b6114a7565b60405161063b91906129b0565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612355565b61153b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610748575061074782611633565b5b9050919050565b60606000805461075e90612e72565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90612e72565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b60006107ec8261169d565b61082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290612b6d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087182610cf4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d990612bed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610901611709565b73ffffffffffffffffffffffffffffffffffffffff161480610930575061092f8161092a611709565b6114a7565b5b61096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690612acd565b60405180910390fd5b6109798383611711565b505050565b6000600954905090565b6000600a60009054906101000a900460ff166109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090612c2d565b60405180910390fd5b6009546109e660076117ca565b10610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90612aad565b60405180910390fd5b6008543414610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190612b4d565b60405180910390fd5b610a73336117d8565b905090565b610a89610a83611709565b82611805565b610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90612c0d565b60405180910390fd5b610ad38383836118e3565b505050565b610ae0611709565b73ffffffffffffffffffffffffffffffffffffffff16610afe610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612b8d565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b610b79611709565b73ffffffffffffffffffffffffffffffffffffffff16610b97610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490612b8d565b60405180910390fd5b610bf5610fdf565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c3a573d6000803e3d6000fd5b50565b610c58838383604051806020016040528060008152506112cc565b505050565b610c65611709565b73ffffffffffffffffffffffffffffffffffffffff16610c83610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090612b8d565b60405180910390fd5b8060088190555050565b6000610cef60076117ca565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490612b0d565b60405180910390fd5b80915050919050565b610dae611709565b73ffffffffffffffffffffffffffffffffffffffff16610dcc610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990612b8d565b60405180910390fd5b60005b82829050811015610e9a57610e86838383818110610e6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610e819190612355565b6117d8565b508080610e9290612ed5565b915050610e25565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790612aed565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f5f611709565b73ffffffffffffffffffffffffffffffffffffffff16610f7d610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90612b8d565b60405180910390fd5b610fdd6000611b3f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a60009054906101000a900460ff16905090565b60606001805461102f90612e72565b80601f016020809104026020016040519081016040528092919081815260200182805461105b90612e72565b80156110a85780601f1061107d576101008083540402835291602001916110a8565b820191906000526020600020905b81548152906001019060200180831161108b57829003601f168201915b5050505050905090565b6110ba611709565b73ffffffffffffffffffffffffffffffffffffffff166110d8610fdf565b73ffffffffffffffffffffffffffffffffffffffff161461112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612b8d565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b611153611709565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612a6d565b60405180910390fd5b80600560006111ce611709565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661127b611709565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c091906129b0565b60405180910390a35050565b6112dd6112d7611709565b83611805565b61131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390612c0d565b60405180910390fd5b61132884848484611c05565b50505050565b6000600854905090565b611340611709565b73ffffffffffffffffffffffffffffffffffffffff1661135e610fdf565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90612b8d565b60405180910390fd5b60005b818110156113dc576113c8336117d8565b5080806113d490612ed5565b9150506113b7565b5050565b60606113eb8261169d565b61142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190612bcd565b60405180910390fd5b6000611434611c61565b90506000815111611454576040518060200160405280600081525061147f565b8061145e84611c81565b60405160200161146f929190612925565b6040516020818303038152906040525b915050919050565b60606040518060800160405280604381526020016135b360439139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611543611709565b73ffffffffffffffffffffffffffffffffffffffff16611561610fdf565b73ffffffffffffffffffffffffffffffffffffffff16146115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90612b8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90612a0d565b60405180910390fd5b61163081611b3f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178483610cf4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006117e46007611e2e565b60006117f060076117ca565b90506117fc8382611e44565b80915050919050565b60006118108261169d565b61184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690612a8d565b60405180910390fd5b600061185a83610cf4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118c957508373ffffffffffffffffffffffffffffffffffffffff166118b1846107e1565b73ffffffffffffffffffffffffffffffffffffffff16145b806118da57506118d981856114a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661190382610cf4565b73ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090612bad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090612a4d565b60405180910390fd5b6119d4838383611e62565b6119df600082611711565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2f9190612d88565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a869190612d01565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c108484846118e3565b611c1c84848484611e67565b611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c52906129ed565b60405180910390fd5b50505050565b606060405180608001604052806041815260200161357260419139905090565b60606000821415611cc9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e29565b600082905060005b60008214611cfb578080611ce490612ed5565b915050600a82611cf49190612d57565b9150611cd1565b60008167ffffffffffffffff811115611d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d6f5781602001600182028036833780820191505090505b5090505b60008514611e2257600182611d889190612d88565b9150600a85611d979190612f1e565b6030611da39190612d01565b60f81b818381518110611ddf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e1b9190612d57565b9450611d73565b8093505050505b919050565b6001816000016000828254019250508190555050565b611e5e828260405180602001604052806000815250611ffe565b5050565b505050565b6000611e888473ffffffffffffffffffffffffffffffffffffffff16612059565b15611ff1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb1611709565b8786866040518563ffffffff1660e01b8152600401611ed39493929190612964565b602060405180830381600087803b158015611eed57600080fd5b505af1925050508015611f1e57506040513d601f19601f82011682018060405250810190611f1b919061256a565b60015b611fa1573d8060008114611f4e576040519150601f19603f3d011682016040523d82523d6000602084013e611f53565b606091505b50600081511415611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f90906129ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff6565b600190505b949350505050565b612008838361206c565b6120156000848484611e67565b612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b906129ed565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390612b2d565b60405180910390fd5b6120e58161169d565b15612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90612a2d565b60405180910390fd5b61213160008383611e62565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121819190612d01565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061224d61224884612c8d565b612c68565b90508281526020810184848401111561226557600080fd5b612270848285612e30565b509392505050565b60008135905061228781613515565b92915050565b60008083601f84011261229f57600080fd5b8235905067ffffffffffffffff8111156122b857600080fd5b6020830191508360208202830111156122d057600080fd5b9250929050565b6000813590506122e68161352c565b92915050565b6000813590506122fb81613543565b92915050565b60008151905061231081613543565b92915050565b600082601f83011261232757600080fd5b813561233784826020860161223a565b91505092915050565b60008135905061234f8161355a565b92915050565b60006020828403121561236757600080fd5b600061237584828501612278565b91505092915050565b6000806040838503121561239157600080fd5b600061239f85828601612278565b92505060206123b085828601612278565b9150509250929050565b6000806000606084860312156123cf57600080fd5b60006123dd86828701612278565b93505060206123ee86828701612278565b92505060406123ff86828701612340565b9150509250925092565b6000806000806080858703121561241f57600080fd5b600061242d87828801612278565b945050602061243e87828801612278565b935050604061244f87828801612340565b925050606085013567ffffffffffffffff81111561246c57600080fd5b61247887828801612316565b91505092959194509250565b6000806040838503121561249757600080fd5b60006124a585828601612278565b92505060206124b6858286016122d7565b9150509250929050565b600080604083850312156124d357600080fd5b60006124e185828601612278565b92505060206124f285828601612340565b9150509250929050565b6000806020838503121561250f57600080fd5b600083013567ffffffffffffffff81111561252957600080fd5b6125358582860161228d565b92509250509250929050565b60006020828403121561255357600080fd5b6000612561848285016122ec565b91505092915050565b60006020828403121561257c57600080fd5b600061258a84828501612301565b91505092915050565b6000602082840312156125a557600080fd5b60006125b384828501612340565b91505092915050565b6125c581612dbc565b82525050565b6125d481612dce565b82525050565b60006125e582612cbe565b6125ef8185612cd4565b93506125ff818560208601612e3f565b6126088161300b565b840191505092915050565b600061261e82612cc9565b6126288185612ce5565b9350612638818560208601612e3f565b6126418161300b565b840191505092915050565b600061265782612cc9565b6126618185612cf6565b9350612671818560208601612e3f565b80840191505092915050565b600061268a603283612ce5565b91506126958261301c565b604082019050919050565b60006126ad602683612ce5565b91506126b88261306b565b604082019050919050565b60006126d0601c83612ce5565b91506126db826130ba565b602082019050919050565b60006126f3602483612ce5565b91506126fe826130e3565b604082019050919050565b6000612716601983612ce5565b915061272182613132565b602082019050919050565b6000612739602c83612ce5565b91506127448261315b565b604082019050919050565b600061275c601683612ce5565b9150612767826131aa565b602082019050919050565b600061277f603883612ce5565b915061278a826131d3565b604082019050919050565b60006127a2602a83612ce5565b91506127ad82613222565b604082019050919050565b60006127c5602983612ce5565b91506127d082613271565b604082019050919050565b60006127e8602083612ce5565b91506127f3826132c0565b602082019050919050565b600061280b602683612ce5565b9150612816826132e9565b604082019050919050565b600061282e602c83612ce5565b915061283982613338565b604082019050919050565b6000612851602083612ce5565b915061285c82613387565b602082019050919050565b6000612874602983612ce5565b915061287f826133b0565b604082019050919050565b6000612897602f83612ce5565b91506128a2826133ff565b604082019050919050565b60006128ba602183612ce5565b91506128c58261344e565b604082019050919050565b60006128dd603183612ce5565b91506128e88261349d565b604082019050919050565b6000612900600d83612ce5565b915061290b826134ec565b602082019050919050565b61291f81612e26565b82525050565b6000612931828561264c565b915061293d828461264c565b91508190509392505050565b600060208201905061295e60008301846125bc565b92915050565b600060808201905061297960008301876125bc565b61298660208301866125bc565b6129936040830185612916565b81810360608301526129a581846125da565b905095945050505050565b60006020820190506129c560008301846125cb565b92915050565b600060208201905081810360008301526129e58184612613565b905092915050565b60006020820190508181036000830152612a068161267d565b9050919050565b60006020820190508181036000830152612a26816126a0565b9050919050565b60006020820190508181036000830152612a46816126c3565b9050919050565b60006020820190508181036000830152612a66816126e6565b9050919050565b60006020820190508181036000830152612a8681612709565b9050919050565b60006020820190508181036000830152612aa68161272c565b9050919050565b60006020820190508181036000830152612ac68161274f565b9050919050565b60006020820190508181036000830152612ae681612772565b9050919050565b60006020820190508181036000830152612b0681612795565b9050919050565b60006020820190508181036000830152612b26816127b8565b9050919050565b60006020820190508181036000830152612b46816127db565b9050919050565b60006020820190508181036000830152612b66816127fe565b9050919050565b60006020820190508181036000830152612b8681612821565b9050919050565b60006020820190508181036000830152612ba681612844565b9050919050565b60006020820190508181036000830152612bc681612867565b9050919050565b60006020820190508181036000830152612be68161288a565b9050919050565b60006020820190508181036000830152612c06816128ad565b9050919050565b60006020820190508181036000830152612c26816128d0565b9050919050565b60006020820190508181036000830152612c46816128f3565b9050919050565b6000602082019050612c626000830184612916565b92915050565b6000612c72612c83565b9050612c7e8282612ea4565b919050565b6000604051905090565b600067ffffffffffffffff821115612ca857612ca7612fdc565b5b612cb18261300b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d0c82612e26565b9150612d1783612e26565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4c57612d4b612f4f565b5b828201905092915050565b6000612d6282612e26565b9150612d6d83612e26565b925082612d7d57612d7c612f7e565b5b828204905092915050565b6000612d9382612e26565b9150612d9e83612e26565b925082821015612db157612db0612f4f565b5b828203905092915050565b6000612dc782612e06565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e5d578082015181840152602081019050612e42565b83811115612e6c576000848401525b50505050565b60006002820490506001821680612e8a57607f821691505b60208210811415612e9e57612e9d612fad565b5b50919050565b612ead8261300b565b810181811067ffffffffffffffff82111715612ecc57612ecb612fdc565b5b80604052505050565b6000612ee082612e26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f1357612f12612f4f565b5b600182019050919050565b6000612f2982612e26565b9150612f3483612e26565b925082612f4457612f43612f7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79207265616368656400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616c6c65722070726f766964656420696e76616c6964207061796d656e742060008201527f616d6f756e740000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b61351e81612dbc565b811461352957600080fd5b50565b61353581612dce565b811461354057600080fd5b50565b61354c81612dda565b811461355757600080fd5b50565b61356381612e26565b811461356e57600080fd5b5056fe68747470733a2f2f34613533783075366b332e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f68747470733a2f2f34613533783075366b332e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e7472616374a264697066735822122069321d3d22c6f0e3ee6fb6f2973c666e0e8a7cd497810a2a72ef7a975e6b89b164736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000022b8000000000000000000000000000000000000000000000000000000000000000c465544204d6f6e737465727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002464d000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd1461059f578063e8a3d485146105dc578063e985e9c514610607578063f2fde38b14610644576101b7565b8063b88d4fde14610522578063bd3e19d41461054b578063c1f2612314610576576101b7565b8063941ada0e116100c6578063941ada0e1461048c57806395d89b41146104b75780639edcc310146104e2578063a22cb465146104f9576101b7565b806370a082311461040d578063715018a61461044a5780638da5cb5b14610461576101b7565b806335133b401161015957806344a0d68a1161013357806344a0d68a146103535780634f3e1efc1461037c5780636352211e146103a7578063686c453c146103e4576101b7565b806335133b40146102fc5780633ccfd60b1461031357806342842e0e1461032a576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780632004ffd9146102b557806323b872dd146102d3576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612541565b61066d565b6040516101f091906129b0565b60405180910390f35b34801561020557600080fd5b5061020e61074f565b60405161021b91906129cb565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612593565b6107e1565b6040516102589190612949565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906124c0565b610866565b005b34801561029657600080fd5b5061029f61097e565b6040516102ac9190612c4d565b60405180910390f35b6102bd610988565b6040516102ca9190612c4d565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906123ba565b610a78565b005b34801561030857600080fd5b50610311610ad8565b005b34801561031f57600080fd5b50610328610b71565b005b34801561033657600080fd5b50610351600480360381019061034c91906123ba565b610c3d565b005b34801561035f57600080fd5b5061037a60048036038101906103759190612593565b610c5d565b005b34801561038857600080fd5b50610391610ce3565b60405161039e9190612c4d565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612593565b610cf4565b6040516103db9190612949565b60405180910390f35b3480156103f057600080fd5b5061040b600480360381019061040691906124fc565b610da6565b005b34801561041957600080fd5b50610434600480360381019061042f9190612355565b610e9f565b6040516104419190612c4d565b60405180910390f35b34801561045657600080fd5b5061045f610f57565b005b34801561046d57600080fd5b50610476610fdf565b6040516104839190612949565b60405180910390f35b34801561049857600080fd5b506104a1611009565b6040516104ae91906129b0565b60405180910390f35b3480156104c357600080fd5b506104cc611020565b6040516104d991906129cb565b60405180910390f35b3480156104ee57600080fd5b506104f76110b2565b005b34801561050557600080fd5b50610520600480360381019061051b9190612484565b61114b565b005b34801561052e57600080fd5b5061054960048036038101906105449190612409565b6112cc565b005b34801561055757600080fd5b5061056061132e565b60405161056d9190612c4d565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612593565b611338565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612593565b6113e0565b6040516105d391906129cb565b60405180910390f35b3480156105e857600080fd5b506105f1611487565b6040516105fe91906129cb565b60405180910390f35b34801561061357600080fd5b5061062e6004803603810190610629919061237e565b6114a7565b60405161063b91906129b0565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612355565b61153b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610748575061074782611633565b5b9050919050565b60606000805461075e90612e72565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90612e72565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b60006107ec8261169d565b61082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290612b6d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087182610cf4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d990612bed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610901611709565b73ffffffffffffffffffffffffffffffffffffffff161480610930575061092f8161092a611709565b6114a7565b5b61096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690612acd565b60405180910390fd5b6109798383611711565b505050565b6000600954905090565b6000600a60009054906101000a900460ff166109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090612c2d565b60405180910390fd5b6009546109e660076117ca565b10610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90612aad565b60405180910390fd5b6008543414610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190612b4d565b60405180910390fd5b610a73336117d8565b905090565b610a89610a83611709565b82611805565b610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90612c0d565b60405180910390fd5b610ad38383836118e3565b505050565b610ae0611709565b73ffffffffffffffffffffffffffffffffffffffff16610afe610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612b8d565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b610b79611709565b73ffffffffffffffffffffffffffffffffffffffff16610b97610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490612b8d565b60405180910390fd5b610bf5610fdf565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c3a573d6000803e3d6000fd5b50565b610c58838383604051806020016040528060008152506112cc565b505050565b610c65611709565b73ffffffffffffffffffffffffffffffffffffffff16610c83610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090612b8d565b60405180910390fd5b8060088190555050565b6000610cef60076117ca565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490612b0d565b60405180910390fd5b80915050919050565b610dae611709565b73ffffffffffffffffffffffffffffffffffffffff16610dcc610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990612b8d565b60405180910390fd5b60005b82829050811015610e9a57610e86838383818110610e6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610e819190612355565b6117d8565b508080610e9290612ed5565b915050610e25565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790612aed565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f5f611709565b73ffffffffffffffffffffffffffffffffffffffff16610f7d610fdf565b73ffffffffffffffffffffffffffffffffffffffff1614610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90612b8d565b60405180910390fd5b610fdd6000611b3f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a60009054906101000a900460ff16905090565b60606001805461102f90612e72565b80601f016020809104026020016040519081016040528092919081815260200182805461105b90612e72565b80156110a85780601f1061107d576101008083540402835291602001916110a8565b820191906000526020600020905b81548152906001019060200180831161108b57829003601f168201915b5050505050905090565b6110ba611709565b73ffffffffffffffffffffffffffffffffffffffff166110d8610fdf565b73ffffffffffffffffffffffffffffffffffffffff161461112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612b8d565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b611153611709565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612a6d565b60405180910390fd5b80600560006111ce611709565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661127b611709565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c091906129b0565b60405180910390a35050565b6112dd6112d7611709565b83611805565b61131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390612c0d565b60405180910390fd5b61132884848484611c05565b50505050565b6000600854905090565b611340611709565b73ffffffffffffffffffffffffffffffffffffffff1661135e610fdf565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90612b8d565b60405180910390fd5b60005b818110156113dc576113c8336117d8565b5080806113d490612ed5565b9150506113b7565b5050565b60606113eb8261169d565b61142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190612bcd565b60405180910390fd5b6000611434611c61565b90506000815111611454576040518060200160405280600081525061147f565b8061145e84611c81565b60405160200161146f929190612925565b6040516020818303038152906040525b915050919050565b60606040518060800160405280604381526020016135b360439139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611543611709565b73ffffffffffffffffffffffffffffffffffffffff16611561610fdf565b73ffffffffffffffffffffffffffffffffffffffff16146115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90612b8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90612a0d565b60405180910390fd5b61163081611b3f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178483610cf4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006117e46007611e2e565b60006117f060076117ca565b90506117fc8382611e44565b80915050919050565b60006118108261169d565b61184f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184690612a8d565b60405180910390fd5b600061185a83610cf4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118c957508373ffffffffffffffffffffffffffffffffffffffff166118b1846107e1565b73ffffffffffffffffffffffffffffffffffffffff16145b806118da57506118d981856114a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661190382610cf4565b73ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090612bad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090612a4d565b60405180910390fd5b6119d4838383611e62565b6119df600082611711565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2f9190612d88565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a869190612d01565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c108484846118e3565b611c1c84848484611e67565b611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c52906129ed565b60405180910390fd5b50505050565b606060405180608001604052806041815260200161357260419139905090565b60606000821415611cc9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e29565b600082905060005b60008214611cfb578080611ce490612ed5565b915050600a82611cf49190612d57565b9150611cd1565b60008167ffffffffffffffff811115611d3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d6f5781602001600182028036833780820191505090505b5090505b60008514611e2257600182611d889190612d88565b9150600a85611d979190612f1e565b6030611da39190612d01565b60f81b818381518110611ddf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e1b9190612d57565b9450611d73565b8093505050505b919050565b6001816000016000828254019250508190555050565b611e5e828260405180602001604052806000815250611ffe565b5050565b505050565b6000611e888473ffffffffffffffffffffffffffffffffffffffff16612059565b15611ff1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb1611709565b8786866040518563ffffffff1660e01b8152600401611ed39493929190612964565b602060405180830381600087803b158015611eed57600080fd5b505af1925050508015611f1e57506040513d601f19601f82011682018060405250810190611f1b919061256a565b60015b611fa1573d8060008114611f4e576040519150601f19603f3d011682016040523d82523d6000602084013e611f53565b606091505b50600081511415611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f90906129ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ff6565b600190505b949350505050565b612008838361206c565b6120156000848484611e67565b612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b906129ed565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d390612b2d565b60405180910390fd5b6120e58161169d565b15612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90612a2d565b60405180910390fd5b61213160008383611e62565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121819190612d01565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061224d61224884612c8d565b612c68565b90508281526020810184848401111561226557600080fd5b612270848285612e30565b509392505050565b60008135905061228781613515565b92915050565b60008083601f84011261229f57600080fd5b8235905067ffffffffffffffff8111156122b857600080fd5b6020830191508360208202830111156122d057600080fd5b9250929050565b6000813590506122e68161352c565b92915050565b6000813590506122fb81613543565b92915050565b60008151905061231081613543565b92915050565b600082601f83011261232757600080fd5b813561233784826020860161223a565b91505092915050565b60008135905061234f8161355a565b92915050565b60006020828403121561236757600080fd5b600061237584828501612278565b91505092915050565b6000806040838503121561239157600080fd5b600061239f85828601612278565b92505060206123b085828601612278565b9150509250929050565b6000806000606084860312156123cf57600080fd5b60006123dd86828701612278565b93505060206123ee86828701612278565b92505060406123ff86828701612340565b9150509250925092565b6000806000806080858703121561241f57600080fd5b600061242d87828801612278565b945050602061243e87828801612278565b935050604061244f87828801612340565b925050606085013567ffffffffffffffff81111561246c57600080fd5b61247887828801612316565b91505092959194509250565b6000806040838503121561249757600080fd5b60006124a585828601612278565b92505060206124b6858286016122d7565b9150509250929050565b600080604083850312156124d357600080fd5b60006124e185828601612278565b92505060206124f285828601612340565b9150509250929050565b6000806020838503121561250f57600080fd5b600083013567ffffffffffffffff81111561252957600080fd5b6125358582860161228d565b92509250509250929050565b60006020828403121561255357600080fd5b6000612561848285016122ec565b91505092915050565b60006020828403121561257c57600080fd5b600061258a84828501612301565b91505092915050565b6000602082840312156125a557600080fd5b60006125b384828501612340565b91505092915050565b6125c581612dbc565b82525050565b6125d481612dce565b82525050565b60006125e582612cbe565b6125ef8185612cd4565b93506125ff818560208601612e3f565b6126088161300b565b840191505092915050565b600061261e82612cc9565b6126288185612ce5565b9350612638818560208601612e3f565b6126418161300b565b840191505092915050565b600061265782612cc9565b6126618185612cf6565b9350612671818560208601612e3f565b80840191505092915050565b600061268a603283612ce5565b91506126958261301c565b604082019050919050565b60006126ad602683612ce5565b91506126b88261306b565b604082019050919050565b60006126d0601c83612ce5565b91506126db826130ba565b602082019050919050565b60006126f3602483612ce5565b91506126fe826130e3565b604082019050919050565b6000612716601983612ce5565b915061272182613132565b602082019050919050565b6000612739602c83612ce5565b91506127448261315b565b604082019050919050565b600061275c601683612ce5565b9150612767826131aa565b602082019050919050565b600061277f603883612ce5565b915061278a826131d3565b604082019050919050565b60006127a2602a83612ce5565b91506127ad82613222565b604082019050919050565b60006127c5602983612ce5565b91506127d082613271565b604082019050919050565b60006127e8602083612ce5565b91506127f3826132c0565b602082019050919050565b600061280b602683612ce5565b9150612816826132e9565b604082019050919050565b600061282e602c83612ce5565b915061283982613338565b604082019050919050565b6000612851602083612ce5565b915061285c82613387565b602082019050919050565b6000612874602983612ce5565b915061287f826133b0565b604082019050919050565b6000612897602f83612ce5565b91506128a2826133ff565b604082019050919050565b60006128ba602183612ce5565b91506128c58261344e565b604082019050919050565b60006128dd603183612ce5565b91506128e88261349d565b604082019050919050565b6000612900600d83612ce5565b915061290b826134ec565b602082019050919050565b61291f81612e26565b82525050565b6000612931828561264c565b915061293d828461264c565b91508190509392505050565b600060208201905061295e60008301846125bc565b92915050565b600060808201905061297960008301876125bc565b61298660208301866125bc565b6129936040830185612916565b81810360608301526129a581846125da565b905095945050505050565b60006020820190506129c560008301846125cb565b92915050565b600060208201905081810360008301526129e58184612613565b905092915050565b60006020820190508181036000830152612a068161267d565b9050919050565b60006020820190508181036000830152612a26816126a0565b9050919050565b60006020820190508181036000830152612a46816126c3565b9050919050565b60006020820190508181036000830152612a66816126e6565b9050919050565b60006020820190508181036000830152612a8681612709565b9050919050565b60006020820190508181036000830152612aa68161272c565b9050919050565b60006020820190508181036000830152612ac68161274f565b9050919050565b60006020820190508181036000830152612ae681612772565b9050919050565b60006020820190508181036000830152612b0681612795565b9050919050565b60006020820190508181036000830152612b26816127b8565b9050919050565b60006020820190508181036000830152612b46816127db565b9050919050565b60006020820190508181036000830152612b66816127fe565b9050919050565b60006020820190508181036000830152612b8681612821565b9050919050565b60006020820190508181036000830152612ba681612844565b9050919050565b60006020820190508181036000830152612bc681612867565b9050919050565b60006020820190508181036000830152612be68161288a565b9050919050565b60006020820190508181036000830152612c06816128ad565b9050919050565b60006020820190508181036000830152612c26816128d0565b9050919050565b60006020820190508181036000830152612c46816128f3565b9050919050565b6000602082019050612c626000830184612916565b92915050565b6000612c72612c83565b9050612c7e8282612ea4565b919050565b6000604051905090565b600067ffffffffffffffff821115612ca857612ca7612fdc565b5b612cb18261300b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d0c82612e26565b9150612d1783612e26565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4c57612d4b612f4f565b5b828201905092915050565b6000612d6282612e26565b9150612d6d83612e26565b925082612d7d57612d7c612f7e565b5b828204905092915050565b6000612d9382612e26565b9150612d9e83612e26565b925082821015612db157612db0612f4f565b5b828203905092915050565b6000612dc782612e06565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e5d578082015181840152602081019050612e42565b83811115612e6c576000848401525b50505050565b60006002820490506001821680612e8a57607f821691505b60208210811415612e9e57612e9d612fad565b5b50919050565b612ead8261300b565b810181811067ffffffffffffffff82111715612ecc57612ecb612fdc565b5b80604052505050565b6000612ee082612e26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f1357612f12612f4f565b5b600182019050919050565b6000612f2982612e26565b9150612f3483612e26565b925082612f4457612f43612f7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79207265616368656400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616c6c65722070726f766964656420696e76616c6964207061796d656e742060008201527f616d6f756e740000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b61351e81612dbc565b811461352957600080fd5b50565b61353581612dce565b811461354057600080fd5b50565b61354c81612dda565b811461355757600080fd5b50565b61356381612e26565b811461356e57600080fd5b5056fe68747470733a2f2f34613533783075366b332e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f68747470733a2f2f34613533783075366b332e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e7472616374a264697066735822122069321d3d22c6f0e3ee6fb6f2973c666e0e8a7cd497810a2a72ef7a975e6b89b164736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000022b8000000000000000000000000000000000000000000000000000000000000000c465544204d6f6e737465727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002464d000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): FUD Monsters
Arg [1] : symbol (string): FM
Arg [2] : cost (uint256): 50000000000000000
Arg [3] : supply (uint256): 8888

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 465544204d6f6e73746572730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 464d000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35368:3404:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19705:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22209:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21732:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38181:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36535:310;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23099:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36370:89;;;;;;;;;;;;;:::i;:::-;;37683:97;;;;;;;;;;;;;:::i;:::-;;23509:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37486:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38267:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20344:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37213:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20074:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34737:94;;;;;;;;;;;;;:::i;:::-;;34086:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38367:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20819:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36134:89;;;;;;;;;;;;;:::i;:::-;;22502:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23765:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38100:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36963:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20994:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38621:148;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22868:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34986:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19705:305;19807:4;19859:25;19844:40;;;:11;:40;;;;:105;;;;19916:33;19901:48;;;:11;:48;;;;19844:105;:158;;;;19966:36;19990:11;19966:23;:36::i;:::-;19844:158;19824:178;;19705:305;;;:::o;20650:100::-;20704:13;20737:5;20730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20650:100;:::o;22209:221::-;22285:7;22313:16;22321:7;22313;:16::i;:::-;22305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22398:15;:24;22414:7;22398:24;;;;;;;;;;;;;;;;;;;;;22391:31;;22209:221;;;:::o;21732:411::-;21813:13;21829:23;21844:7;21829:14;:23::i;:::-;21813:39;;21877:5;21871:11;;:2;:11;;;;21863:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21971:5;21955:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21980:37;21997:5;22004:12;:10;:12::i;:::-;21980:16;:37::i;:::-;21955:62;21933:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22114:21;22123:2;22127:7;22114:8;:21::i;:::-;21732:411;;;:::o;38181:82::-;38225:7;38247:10;;38240:17;;38181:82;:::o;36535:310::-;36589:7;36616:20;;;;;;;;;;;36608:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;36691:10;;36669:19;:9;:17;:19::i;:::-;:32;36661:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36756:9;;36743;:22;36735:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36822:17;36828:10;36822:5;:17::i;:::-;36815:24;;36535:310;:::o;23099:339::-;23294:41;23313:12;:10;:12::i;:::-;23327:7;23294:18;:41::i;:::-;23286:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23402:28;23412:4;23418:2;23422:7;23402:9;:28::i;:::-;23099:339;;;:::o;36370:89::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36448:5:::1;36425:20;;:28;;;;;;;;;;;;;;;;;;36370:89::o:0;37683:97::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37734:7:::1;:5;:7::i;:::-;37726:25;;:48;37752:21;37726:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37683:97::o:0;23509:185::-;23647:39;23664:4;23670:2;23674:7;23647:39;;;;;;;;;;;;:16;:39::i;:::-;23509:185;;;:::o;37486:76::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37552:4:::1;37540:9;:16;;;;37486:76:::0;:::o;38267:96::-;38316:7;38338:19;:9;:17;:19::i;:::-;38331:26;;38267:96;:::o;20344:239::-;20416:7;20436:13;20452:7;:16;20460:7;20452:16;;;;;;;;;;;;;;;;;;;;;20436:32;;20504:1;20487:19;;:5;:19;;;;20479:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20570:5;20563:12;;;20344:239;;;:::o;37213:165::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37298:6:::1;37294:79;37310:10;;:17;;37308:1;:19;37294:79;;;37344:20;37350:10;;37361:1;37350:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37344:5;:20::i;:::-;;37329:3;;;;;:::i;:::-;;;;37294:79;;;;37213:165:::0;;:::o;20074:208::-;20146:7;20191:1;20174:19;;:5;:19;;;;20166:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20258:9;:16;20268:5;20258:16;;;;;;;;;;;;;;;;20251:23;;20074:208;;;:::o;34737:94::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34802:21:::1;34820:1;34802:9;:21::i;:::-;34737:94::o:0;34086:87::-;34132:7;34159:6;;;;;;;;;;;34152:13;;34086:87;:::o;38367:92::-;38413:4;38433:20;;;;;;;;;;;38426:27;;38367:92;:::o;20819:104::-;20875:13;20908:7;20901:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20819:104;:::o;36134:89::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36213:4:::1;36190:20;;:27;;;;;;;;;;;;;;;;;;36134:89::o:0;22502:295::-;22617:12;:10;:12::i;:::-;22605:24;;:8;:24;;;;22597:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22717:8;22672:18;:32;22691:12;:10;:12::i;:::-;22672:32;;;;;;;;;;;;;;;:42;22705:8;22672:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22770:8;22741:48;;22756:12;:10;:12::i;:::-;22741:48;;;22780:8;22741:48;;;;;;:::i;:::-;;;;;;;;22502:295;;:::o;23765:328::-;23940:41;23959:12;:10;:12::i;:::-;23973:7;23940:18;:41::i;:::-;23932:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24046:39;24060:4;24066:2;24070:7;24079:5;24046:13;:39::i;:::-;23765:328;;;;:::o;38100:77::-;38140:7;38162:9;;38155:16;;38100:77;:::o;36963:129::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37027:6:::1;37023:64;37039:5;37037:1;:7;37023:64;;;37061:17;37067:10;37061:5;:17::i;:::-;;37046:3;;;;;:::i;:::-;;;;37023:64;;;;36963:129:::0;:::o;20994:334::-;21067:13;21101:16;21109:7;21101;:16::i;:::-;21093:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21182:21;21206:10;:8;:10::i;:::-;21182:34;;21258:1;21240:7;21234:21;:25;:86;;;;;;;;;;;;;;;;;21286:7;21295:18;:7;:16;:18::i;:::-;21269:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21234:86;21227:93;;;20994:334;;;:::o;38621:148::-;38665:13;38687:76;;;;;;;;;;;;;;;;;;;38621:148;:::o;22868:164::-;22965:4;22989:18;:25;23008:5;22989:25;;;;;;;;;;;;;;;:35;23015:8;22989:35;;;;;;;;;;;;;;;;;;;;;;;;;22982:42;;22868:164;;;;:::o;34986:192::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35095:1:::1;35075:22;;:8;:22;;;;35067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35151:19;35161:8;35151:9;:19::i;:::-;34986:192:::0;:::o;18312:157::-;18397:4;18436:25;18421:40;;;:11;:40;;;;18414:47;;18312:157;;;:::o;25603:127::-;25668:4;25720:1;25692:30;;:7;:16;25700:7;25692:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25685:37;;25603:127;;;:::o;1357:98::-;1410:7;1437:10;1430:17;;1357:98;:::o;29585:174::-;29687:2;29660:15;:24;29676:7;29660:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29743:7;29739:2;29705:46;;29714:23;29729:7;29714:14;:23::i;:::-;29705:46;;;;;;;;;;;;29585:174;;:::o;32571:114::-;32636:7;32663;:14;;;32656:21;;32571:114;;;:::o;37918:176::-;37971:7;37986:21;:9;:19;:21::i;:::-;38014:10;38027:19;:9;:17;:19::i;:::-;38014:32;;38053:17;38063:2;38067;38053:9;:17::i;:::-;38086:2;38079:9;;;37918:176;;;:::o;25897:348::-;25990:4;26015:16;26023:7;26015;:16::i;:::-;26007:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26091:13;26107:23;26122:7;26107:14;:23::i;:::-;26091:39;;26160:5;26149:16;;:7;:16;;;:51;;;;26193:7;26169:31;;:20;26181:7;26169:11;:20::i;:::-;:31;;;26149:51;:87;;;;26204:32;26221:5;26228:7;26204:16;:32::i;:::-;26149:87;26141:96;;;25897:348;;;;:::o;28889:578::-;29048:4;29021:31;;:23;29036:7;29021:14;:23::i;:::-;:31;;;29013:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:1;29117:16;;:2;:16;;;;29109:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29187:39;29208:4;29214:2;29218:7;29187:20;:39::i;:::-;29291:29;29308:1;29312:7;29291:8;:29::i;:::-;29352:1;29333:9;:15;29343:4;29333:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29381:1;29364:9;:13;29374:2;29364:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29412:2;29393:7;:16;29401:7;29393:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29451:7;29447:2;29432:27;;29441:4;29432:27;;;;;;;;;;;;28889:578;;;:::o;35186:173::-;35242:16;35261:6;;;;;;;;;;;35242:25;;35287:8;35278:6;;:17;;;;;;;;;;;;;;;;;;35342:8;35311:40;;35332:8;35311:40;;;;;;;;;;;;35186:173;;:::o;24975:315::-;25132:28;25142:4;25148:2;25152:7;25132:9;:28::i;:::-;25179:48;25202:4;25208:2;25212:7;25221:5;25179:22;:48::i;:::-;25171:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24975:315;;;;:::o;38463:154::-;38515:13;38537:74;;;;;;;;;;;;;;;;;;;38463:154;:::o;1803:723::-;1859:13;2089:1;2080:5;:10;2076:53;;;2107:10;;;;;;;;;;;;;;;;;;;;;2076:53;2139:12;2154:5;2139:20;;2170:14;2195:78;2210:1;2202:4;:9;2195:78;;2228:8;;;;;:::i;:::-;;;;2259:2;2251:10;;;;;:::i;:::-;;;2195:78;;;2283:19;2315:6;2305:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2283:39;;2333:154;2349:1;2340:5;:10;2333:154;;2377:1;2367:11;;;;;:::i;:::-;;;2444:2;2436:5;:10;;;;:::i;:::-;2423:2;:24;;;;:::i;:::-;2410:39;;2393:6;2400;2393:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;2473:2;2464:11;;;;;:::i;:::-;;;2333:154;;;2511:6;2497:21;;;;;1803:723;;;;:::o;32693:127::-;32800:1;32782:7;:14;;;:19;;;;;;;;;;;32693:127;:::o;26587:110::-;26663:26;26673:2;26677:7;26663:26;;;;;;;;;;;;:9;:26::i;:::-;26587:110;;:::o;31699:126::-;;;;:::o;30324:803::-;30479:4;30500:15;:2;:13;;;:15::i;:::-;30496:624;;;30552:2;30536:36;;;30573:12;:10;:12::i;:::-;30587:4;30593:7;30602:5;30536:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30532:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30799:1;30782:6;:13;:18;30778:272;;;30825:60;;;;;;;;;;:::i;:::-;;;;;;;;30778:272;31000:6;30994:13;30985:6;30981:2;30977:15;30970:38;30532:533;30669:45;;;30659:55;;;:6;:55;;;;30652:62;;;;;30496:624;31104:4;31097:11;;30324:803;;;;;;;:::o;26924:321::-;27054:18;27060:2;27064:7;27054:5;:18::i;:::-;27105:54;27136:1;27140:2;27144:7;27153:5;27105:22;:54::i;:::-;27083:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26924:321;;;:::o;10484:387::-;10544:4;10752:12;10819:7;10807:20;10799:28;;10862:1;10855:4;:8;10848:15;;;10484:387;;;:::o;27581:382::-;27675:1;27661:16;;:2;:16;;;;27653:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27734:16;27742:7;27734;:16::i;:::-;27733:17;27725:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27796:45;27825:1;27829:2;27833:7;27796:20;:45::i;:::-;27871:1;27854:9;:13;27864:2;27854:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27902:2;27883:7;:16;27891:7;27883:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27947:7;27943:2;27922:33;;27939:1;27922:33;;;;;;;;;;;;27581:382;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;518:367::-;591:8;601:6;651:3;644:4;636:6;632:17;628:27;618:2;;669:1;666;659:12;618:2;705:6;692:20;682:30;;735:18;727:6;724:30;721:2;;;767:1;764;757:12;721:2;804:4;796:6;792:17;780:29;;858:3;850:4;842:6;838:17;828:8;824:32;821:41;818:2;;;875:1;872;865:12;818:2;608:277;;;;;:::o;891:133::-;934:5;972:6;959:20;950:29;;988:30;1012:5;988:30;:::i;:::-;940:84;;;;:::o;1030:137::-;1075:5;1113:6;1100:20;1091:29;;1129:32;1155:5;1129:32;:::i;:::-;1081:86;;;;:::o;1173:141::-;1229:5;1260:6;1254:13;1245:22;;1276:32;1302:5;1276:32;:::i;:::-;1235:79;;;;:::o;1333:271::-;1388:5;1437:3;1430:4;1422:6;1418:17;1414:27;1404:2;;1455:1;1452;1445:12;1404:2;1495:6;1482:20;1520:78;1594:3;1586:6;1579:4;1571:6;1567:17;1520:78;:::i;:::-;1511:87;;1394:210;;;;;:::o;1610:139::-;1656:5;1694:6;1681:20;1672:29;;1710:33;1737:5;1710:33;:::i;:::-;1662:87;;;;:::o;1755:262::-;1814:6;1863:2;1851:9;1842:7;1838:23;1834:32;1831:2;;;1879:1;1876;1869:12;1831:2;1922:1;1947:53;1992:7;1983:6;1972:9;1968:22;1947:53;:::i;:::-;1937:63;;1893:117;1821:196;;;;:::o;2023:407::-;2091:6;2099;2148:2;2136:9;2127:7;2123:23;2119:32;2116:2;;;2164:1;2161;2154:12;2116:2;2207:1;2232:53;2277:7;2268:6;2257:9;2253:22;2232:53;:::i;:::-;2222:63;;2178:117;2334:2;2360:53;2405:7;2396:6;2385:9;2381:22;2360:53;:::i;:::-;2350:63;;2305:118;2106:324;;;;;:::o;2436:552::-;2513:6;2521;2529;2578:2;2566:9;2557:7;2553:23;2549:32;2546:2;;;2594:1;2591;2584:12;2546:2;2637:1;2662:53;2707:7;2698:6;2687:9;2683:22;2662:53;:::i;:::-;2652:63;;2608:117;2764:2;2790:53;2835:7;2826:6;2815:9;2811:22;2790:53;:::i;:::-;2780:63;;2735:118;2892:2;2918:53;2963:7;2954:6;2943:9;2939:22;2918:53;:::i;:::-;2908:63;;2863:118;2536:452;;;;;:::o;2994:809::-;3089:6;3097;3105;3113;3162:3;3150:9;3141:7;3137:23;3133:33;3130:2;;;3179:1;3176;3169:12;3130:2;3222:1;3247:53;3292:7;3283:6;3272:9;3268:22;3247:53;:::i;:::-;3237:63;;3193:117;3349:2;3375:53;3420:7;3411:6;3400:9;3396:22;3375:53;:::i;:::-;3365:63;;3320:118;3477:2;3503:53;3548:7;3539:6;3528:9;3524:22;3503:53;:::i;:::-;3493:63;;3448:118;3633:2;3622:9;3618:18;3605:32;3664:18;3656:6;3653:30;3650:2;;;3696:1;3693;3686:12;3650:2;3724:62;3778:7;3769:6;3758:9;3754:22;3724:62;:::i;:::-;3714:72;;3576:220;3120:683;;;;;;;:::o;3809:401::-;3874:6;3882;3931:2;3919:9;3910:7;3906:23;3902:32;3899:2;;;3947:1;3944;3937:12;3899:2;3990:1;4015:53;4060:7;4051:6;4040:9;4036:22;4015:53;:::i;:::-;4005:63;;3961:117;4117:2;4143:50;4185:7;4176:6;4165:9;4161:22;4143:50;:::i;:::-;4133:60;;4088:115;3889:321;;;;;:::o;4216:407::-;4284:6;4292;4341:2;4329:9;4320:7;4316:23;4312:32;4309:2;;;4357:1;4354;4347:12;4309:2;4400:1;4425:53;4470:7;4461:6;4450:9;4446:22;4425:53;:::i;:::-;4415:63;;4371:117;4527:2;4553:53;4598:7;4589:6;4578:9;4574:22;4553:53;:::i;:::-;4543:63;;4498:118;4299:324;;;;;:::o;4629:425::-;4715:6;4723;4772:2;4760:9;4751:7;4747:23;4743:32;4740:2;;;4788:1;4785;4778:12;4740:2;4859:1;4848:9;4844:17;4831:31;4889:18;4881:6;4878:30;4875:2;;;4921:1;4918;4911:12;4875:2;4957:80;5029:7;5020:6;5009:9;5005:22;4957:80;:::i;:::-;4939:98;;;;4802:245;4730:324;;;;;:::o;5060:260::-;5118:6;5167:2;5155:9;5146:7;5142:23;5138:32;5135:2;;;5183:1;5180;5173:12;5135:2;5226:1;5251:52;5295:7;5286:6;5275:9;5271:22;5251:52;:::i;:::-;5241:62;;5197:116;5125:195;;;;:::o;5326:282::-;5395:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:2;;;5460:1;5457;5450:12;5412:2;5503:1;5528:63;5583:7;5574:6;5563:9;5559:22;5528:63;:::i;:::-;5518:73;;5474:127;5402:206;;;;:::o;5614:262::-;5673:6;5722:2;5710:9;5701:7;5697:23;5693:32;5690:2;;;5738:1;5735;5728:12;5690:2;5781:1;5806:53;5851:7;5842:6;5831:9;5827:22;5806:53;:::i;:::-;5796:63;;5752:117;5680:196;;;;:::o;5882:118::-;5969:24;5987:5;5969:24;:::i;:::-;5964:3;5957:37;5947:53;;:::o;6006:109::-;6087:21;6102:5;6087:21;:::i;:::-;6082:3;6075:34;6065:50;;:::o;6121:360::-;6207:3;6235:38;6267:5;6235:38;:::i;:::-;6289:70;6352:6;6347:3;6289:70;:::i;:::-;6282:77;;6368:52;6413:6;6408:3;6401:4;6394:5;6390:16;6368:52;:::i;:::-;6445:29;6467:6;6445:29;:::i;:::-;6440:3;6436:39;6429:46;;6211:270;;;;;:::o;6487:364::-;6575:3;6603:39;6636:5;6603:39;:::i;:::-;6658:71;6722:6;6717:3;6658:71;:::i;:::-;6651:78;;6738:52;6783:6;6778:3;6771:4;6764:5;6760:16;6738:52;:::i;:::-;6815:29;6837:6;6815:29;:::i;:::-;6810:3;6806:39;6799:46;;6579:272;;;;;:::o;6857:377::-;6963:3;6991:39;7024:5;6991:39;:::i;:::-;7046:89;7128:6;7123:3;7046:89;:::i;:::-;7039:96;;7144:52;7189:6;7184:3;7177:4;7170:5;7166:16;7144:52;:::i;:::-;7221:6;7216:3;7212:16;7205:23;;6967:267;;;;;:::o;7240:366::-;7382:3;7403:67;7467:2;7462:3;7403:67;:::i;:::-;7396:74;;7479:93;7568:3;7479:93;:::i;:::-;7597:2;7592:3;7588:12;7581:19;;7386:220;;;:::o;7612:366::-;7754:3;7775:67;7839:2;7834:3;7775:67;:::i;:::-;7768:74;;7851:93;7940:3;7851:93;:::i;:::-;7969:2;7964:3;7960:12;7953:19;;7758:220;;;:::o;7984:366::-;8126:3;8147:67;8211:2;8206:3;8147:67;:::i;:::-;8140:74;;8223:93;8312:3;8223:93;:::i;:::-;8341:2;8336:3;8332:12;8325:19;;8130:220;;;:::o;8356:366::-;8498:3;8519:67;8583:2;8578:3;8519:67;:::i;:::-;8512:74;;8595:93;8684:3;8595:93;:::i;:::-;8713:2;8708:3;8704:12;8697:19;;8502:220;;;:::o;8728:366::-;8870:3;8891:67;8955:2;8950:3;8891:67;:::i;:::-;8884:74;;8967:93;9056:3;8967:93;:::i;:::-;9085:2;9080:3;9076:12;9069:19;;8874:220;;;:::o;9100:366::-;9242:3;9263:67;9327:2;9322:3;9263:67;:::i;:::-;9256:74;;9339:93;9428:3;9339:93;:::i;:::-;9457:2;9452:3;9448:12;9441:19;;9246:220;;;:::o;9472:366::-;9614:3;9635:67;9699:2;9694:3;9635:67;:::i;:::-;9628:74;;9711:93;9800:3;9711:93;:::i;:::-;9829:2;9824:3;9820:12;9813:19;;9618:220;;;:::o;9844:366::-;9986:3;10007:67;10071:2;10066:3;10007:67;:::i;:::-;10000:74;;10083:93;10172:3;10083:93;:::i;:::-;10201:2;10196:3;10192:12;10185:19;;9990:220;;;:::o;10216:366::-;10358:3;10379:67;10443:2;10438:3;10379:67;:::i;:::-;10372:74;;10455:93;10544:3;10455:93;:::i;:::-;10573:2;10568:3;10564:12;10557:19;;10362:220;;;:::o;10588:366::-;10730:3;10751:67;10815:2;10810:3;10751:67;:::i;:::-;10744:74;;10827:93;10916:3;10827:93;:::i;:::-;10945:2;10940:3;10936:12;10929:19;;10734:220;;;:::o;10960:366::-;11102:3;11123:67;11187:2;11182:3;11123:67;:::i;:::-;11116:74;;11199:93;11288:3;11199:93;:::i;:::-;11317:2;11312:3;11308:12;11301:19;;11106:220;;;:::o;11332:366::-;11474:3;11495:67;11559:2;11554:3;11495:67;:::i;:::-;11488:74;;11571:93;11660:3;11571:93;:::i;:::-;11689:2;11684:3;11680:12;11673:19;;11478:220;;;:::o;11704:366::-;11846:3;11867:67;11931:2;11926:3;11867:67;:::i;:::-;11860:74;;11943:93;12032:3;11943:93;:::i;:::-;12061:2;12056:3;12052:12;12045:19;;11850:220;;;:::o;12076:366::-;12218:3;12239:67;12303:2;12298:3;12239:67;:::i;:::-;12232:74;;12315:93;12404:3;12315:93;:::i;:::-;12433:2;12428:3;12424:12;12417:19;;12222:220;;;:::o;12448:366::-;12590:3;12611:67;12675:2;12670:3;12611:67;:::i;:::-;12604:74;;12687:93;12776:3;12687:93;:::i;:::-;12805:2;12800:3;12796:12;12789:19;;12594:220;;;:::o;12820:366::-;12962:3;12983:67;13047:2;13042:3;12983:67;:::i;:::-;12976:74;;13059:93;13148:3;13059:93;:::i;:::-;13177:2;13172:3;13168:12;13161:19;;12966:220;;;:::o;13192:366::-;13334:3;13355:67;13419:2;13414:3;13355:67;:::i;:::-;13348:74;;13431:93;13520:3;13431:93;:::i;:::-;13549:2;13544:3;13540:12;13533:19;;13338:220;;;:::o;13564:366::-;13706:3;13727:67;13791:2;13786:3;13727:67;:::i;:::-;13720:74;;13803:93;13892:3;13803:93;:::i;:::-;13921:2;13916:3;13912:12;13905:19;;13710:220;;;:::o;13936:366::-;14078:3;14099:67;14163:2;14158:3;14099:67;:::i;:::-;14092:74;;14175:93;14264:3;14175:93;:::i;:::-;14293:2;14288:3;14284:12;14277:19;;14082:220;;;:::o;14308:118::-;14395:24;14413:5;14395:24;:::i;:::-;14390:3;14383:37;14373:53;;:::o;14432:435::-;14612:3;14634:95;14725:3;14716:6;14634:95;:::i;:::-;14627:102;;14746:95;14837:3;14828:6;14746:95;:::i;:::-;14739:102;;14858:3;14851:10;;14616:251;;;;;:::o;14873:222::-;14966:4;15004:2;14993:9;14989:18;14981:26;;15017:71;15085:1;15074:9;15070:17;15061:6;15017:71;:::i;:::-;14971:124;;;;:::o;15101:640::-;15296:4;15334:3;15323:9;15319:19;15311:27;;15348:71;15416:1;15405:9;15401:17;15392:6;15348:71;:::i;:::-;15429:72;15497:2;15486:9;15482:18;15473:6;15429:72;:::i;:::-;15511;15579:2;15568:9;15564:18;15555:6;15511:72;:::i;:::-;15630:9;15624:4;15620:20;15615:2;15604:9;15600:18;15593:48;15658:76;15729:4;15720:6;15658:76;:::i;:::-;15650:84;;15301:440;;;;;;;:::o;15747:210::-;15834:4;15872:2;15861:9;15857:18;15849:26;;15885:65;15947:1;15936:9;15932:17;15923:6;15885:65;:::i;:::-;15839:118;;;;:::o;15963:313::-;16076:4;16114:2;16103:9;16099:18;16091:26;;16163:9;16157:4;16153:20;16149:1;16138:9;16134:17;16127:47;16191:78;16264:4;16255:6;16191:78;:::i;:::-;16183:86;;16081:195;;;;:::o;16282:419::-;16448:4;16486:2;16475:9;16471:18;16463:26;;16535:9;16529:4;16525:20;16521:1;16510:9;16506:17;16499:47;16563:131;16689:4;16563:131;:::i;:::-;16555:139;;16453:248;;;:::o;16707:419::-;16873:4;16911:2;16900:9;16896:18;16888:26;;16960:9;16954:4;16950:20;16946:1;16935:9;16931:17;16924:47;16988:131;17114:4;16988:131;:::i;:::-;16980:139;;16878:248;;;:::o;17132:419::-;17298:4;17336:2;17325:9;17321:18;17313:26;;17385:9;17379:4;17375:20;17371:1;17360:9;17356:17;17349:47;17413:131;17539:4;17413:131;:::i;:::-;17405:139;;17303:248;;;:::o;17557:419::-;17723:4;17761:2;17750:9;17746:18;17738:26;;17810:9;17804:4;17800:20;17796:1;17785:9;17781:17;17774:47;17838:131;17964:4;17838:131;:::i;:::-;17830:139;;17728:248;;;:::o;17982:419::-;18148:4;18186:2;18175:9;18171:18;18163:26;;18235:9;18229:4;18225:20;18221:1;18210:9;18206:17;18199:47;18263:131;18389:4;18263:131;:::i;:::-;18255:139;;18153:248;;;:::o;18407:419::-;18573:4;18611:2;18600:9;18596:18;18588:26;;18660:9;18654:4;18650:20;18646:1;18635:9;18631:17;18624:47;18688:131;18814:4;18688:131;:::i;:::-;18680:139;;18578:248;;;:::o;18832:419::-;18998:4;19036:2;19025:9;19021:18;19013:26;;19085:9;19079:4;19075:20;19071:1;19060:9;19056:17;19049:47;19113:131;19239:4;19113:131;:::i;:::-;19105:139;;19003:248;;;:::o;19257:419::-;19423:4;19461:2;19450:9;19446:18;19438:26;;19510:9;19504:4;19500:20;19496:1;19485:9;19481:17;19474:47;19538:131;19664:4;19538:131;:::i;:::-;19530:139;;19428:248;;;:::o;19682:419::-;19848:4;19886:2;19875:9;19871:18;19863:26;;19935:9;19929:4;19925:20;19921:1;19910:9;19906:17;19899:47;19963:131;20089:4;19963:131;:::i;:::-;19955:139;;19853:248;;;:::o;20107:419::-;20273:4;20311:2;20300:9;20296:18;20288:26;;20360:9;20354:4;20350:20;20346:1;20335:9;20331:17;20324:47;20388:131;20514:4;20388:131;:::i;:::-;20380:139;;20278:248;;;:::o;20532:419::-;20698:4;20736:2;20725:9;20721:18;20713:26;;20785:9;20779:4;20775:20;20771:1;20760:9;20756:17;20749:47;20813:131;20939:4;20813:131;:::i;:::-;20805:139;;20703:248;;;:::o;20957:419::-;21123:4;21161:2;21150:9;21146:18;21138:26;;21210:9;21204:4;21200:20;21196:1;21185:9;21181:17;21174:47;21238:131;21364:4;21238:131;:::i;:::-;21230:139;;21128:248;;;:::o;21382:419::-;21548:4;21586:2;21575:9;21571:18;21563:26;;21635:9;21629:4;21625:20;21621:1;21610:9;21606:17;21599:47;21663:131;21789:4;21663:131;:::i;:::-;21655:139;;21553:248;;;:::o;21807:419::-;21973:4;22011:2;22000:9;21996:18;21988:26;;22060:9;22054:4;22050:20;22046:1;22035:9;22031:17;22024:47;22088:131;22214:4;22088:131;:::i;:::-;22080:139;;21978:248;;;:::o;22232:419::-;22398:4;22436:2;22425:9;22421:18;22413:26;;22485:9;22479:4;22475:20;22471:1;22460:9;22456:17;22449:47;22513:131;22639:4;22513:131;:::i;:::-;22505:139;;22403:248;;;:::o;22657:419::-;22823:4;22861:2;22850:9;22846:18;22838:26;;22910:9;22904:4;22900:20;22896:1;22885:9;22881:17;22874:47;22938:131;23064:4;22938:131;:::i;:::-;22930:139;;22828:248;;;:::o;23082:419::-;23248:4;23286:2;23275:9;23271:18;23263:26;;23335:9;23329:4;23325:20;23321:1;23310:9;23306:17;23299:47;23363:131;23489:4;23363:131;:::i;:::-;23355:139;;23253:248;;;:::o;23507:419::-;23673:4;23711:2;23700:9;23696:18;23688:26;;23760:9;23754:4;23750:20;23746:1;23735:9;23731:17;23724:47;23788:131;23914:4;23788:131;:::i;:::-;23780:139;;23678:248;;;:::o;23932:419::-;24098:4;24136:2;24125:9;24121:18;24113:26;;24185:9;24179:4;24175:20;24171:1;24160:9;24156:17;24149:47;24213:131;24339:4;24213:131;:::i;:::-;24205:139;;24103:248;;;:::o;24357:222::-;24450:4;24488:2;24477:9;24473:18;24465:26;;24501:71;24569:1;24558:9;24554:17;24545:6;24501:71;:::i;:::-;24455:124;;;;:::o;24585:129::-;24619:6;24646:20;;:::i;:::-;24636:30;;24675:33;24703:4;24695:6;24675:33;:::i;:::-;24626:88;;;:::o;24720:75::-;24753:6;24786:2;24780:9;24770:19;;24760:35;:::o;24801:307::-;24862:4;24952:18;24944:6;24941:30;24938:2;;;24974:18;;:::i;:::-;24938:2;25012:29;25034:6;25012:29;:::i;:::-;25004:37;;25096:4;25090;25086:15;25078:23;;24867:241;;;:::o;25114:98::-;25165:6;25199:5;25193:12;25183:22;;25172:40;;;:::o;25218:99::-;25270:6;25304:5;25298:12;25288:22;;25277:40;;;:::o;25323:168::-;25406:11;25440:6;25435:3;25428:19;25480:4;25475:3;25471:14;25456:29;;25418:73;;;;:::o;25497:169::-;25581:11;25615:6;25610:3;25603:19;25655:4;25650:3;25646:14;25631:29;;25593:73;;;;:::o;25672:148::-;25774:11;25811:3;25796:18;;25786:34;;;;:::o;25826:305::-;25866:3;25885:20;25903:1;25885:20;:::i;:::-;25880:25;;25919:20;25937:1;25919:20;:::i;:::-;25914:25;;26073:1;26005:66;26001:74;25998:1;25995:81;25992:2;;;26079:18;;:::i;:::-;25992:2;26123:1;26120;26116:9;26109:16;;25870:261;;;;:::o;26137:185::-;26177:1;26194:20;26212:1;26194:20;:::i;:::-;26189:25;;26228:20;26246:1;26228:20;:::i;:::-;26223:25;;26267:1;26257:2;;26272:18;;:::i;:::-;26257:2;26314:1;26311;26307:9;26302:14;;26179:143;;;;:::o;26328:191::-;26368:4;26388:20;26406:1;26388:20;:::i;:::-;26383:25;;26422:20;26440:1;26422:20;:::i;:::-;26417:25;;26461:1;26458;26455:8;26452:2;;;26466:18;;:::i;:::-;26452:2;26511:1;26508;26504:9;26496:17;;26373:146;;;;:::o;26525:96::-;26562:7;26591:24;26609:5;26591:24;:::i;:::-;26580:35;;26570:51;;;:::o;26627:90::-;26661:7;26704:5;26697:13;26690:21;26679:32;;26669:48;;;:::o;26723:149::-;26759:7;26799:66;26792:5;26788:78;26777:89;;26767:105;;;:::o;26878:126::-;26915:7;26955:42;26948:5;26944:54;26933:65;;26923:81;;;:::o;27010:77::-;27047:7;27076:5;27065:16;;27055:32;;;:::o;27093:154::-;27177:6;27172:3;27167;27154:30;27239:1;27230:6;27225:3;27221:16;27214:27;27144:103;;;:::o;27253:307::-;27321:1;27331:113;27345:6;27342:1;27339:13;27331:113;;;27430:1;27425:3;27421:11;27415:18;27411:1;27406:3;27402:11;27395:39;27367:2;27364:1;27360:10;27355:15;;27331:113;;;27462:6;27459:1;27456:13;27453:2;;;27542:1;27533:6;27528:3;27524:16;27517:27;27453:2;27302:258;;;;:::o;27566:320::-;27610:6;27647:1;27641:4;27637:12;27627:22;;27694:1;27688:4;27684:12;27715:18;27705:2;;27771:4;27763:6;27759:17;27749:27;;27705:2;27833;27825:6;27822:14;27802:18;27799:38;27796:2;;;27852:18;;:::i;:::-;27796:2;27617:269;;;;:::o;27892:281::-;27975:27;27997:4;27975:27;:::i;:::-;27967:6;27963:40;28105:6;28093:10;28090:22;28069:18;28057:10;28054:34;28051:62;28048:2;;;28116:18;;:::i;:::-;28048:2;28156:10;28152:2;28145:22;27935:238;;;:::o;28179:233::-;28218:3;28241:24;28259:5;28241:24;:::i;:::-;28232:33;;28287:66;28280:5;28277:77;28274:2;;;28357:18;;:::i;:::-;28274:2;28404:1;28397:5;28393:13;28386:20;;28222:190;;;:::o;28418:176::-;28450:1;28467:20;28485:1;28467:20;:::i;:::-;28462:25;;28501:20;28519:1;28501:20;:::i;:::-;28496:25;;28540:1;28530:2;;28545:18;;:::i;:::-;28530:2;28586:1;28583;28579:9;28574:14;;28452:142;;;;:::o;28600:180::-;28648:77;28645:1;28638:88;28745:4;28742:1;28735:15;28769:4;28766:1;28759:15;28786:180;28834:77;28831:1;28824:88;28931:4;28928:1;28921:15;28955:4;28952:1;28945:15;28972:180;29020:77;29017:1;29010:88;29117:4;29114:1;29107:15;29141:4;29138:1;29131:15;29158:180;29206:77;29203:1;29196:88;29303:4;29300:1;29293:15;29327:4;29324:1;29317:15;29344:102;29385:6;29436:2;29432:7;29427:2;29420:5;29416:14;29412:28;29402:38;;29392:54;;;:::o;29452:237::-;29592:34;29588:1;29580:6;29576:14;29569:58;29661:20;29656:2;29648:6;29644:15;29637:45;29558:131;:::o;29695:225::-;29835:34;29831:1;29823:6;29819:14;29812:58;29904:8;29899:2;29891:6;29887:15;29880:33;29801:119;:::o;29926:178::-;30066:30;30062:1;30054:6;30050:14;30043:54;30032:72;:::o;30110:223::-;30250:34;30246:1;30238:6;30234:14;30227:58;30319:6;30314:2;30306:6;30302:15;30295:31;30216:117;:::o;30339:175::-;30479:27;30475:1;30467:6;30463:14;30456:51;30445:69;:::o;30520:231::-;30660:34;30656:1;30648:6;30644:14;30637:58;30729:14;30724:2;30716:6;30712:15;30705:39;30626:125;:::o;30757:172::-;30897:24;30893:1;30885:6;30881:14;30874:48;30863:66;:::o;30935:243::-;31075:34;31071:1;31063:6;31059:14;31052:58;31144:26;31139:2;31131:6;31127:15;31120:51;31041:137;:::o;31184:229::-;31324:34;31320:1;31312:6;31308:14;31301:58;31393:12;31388:2;31380:6;31376:15;31369:37;31290:123;:::o;31419:228::-;31559:34;31555:1;31547:6;31543:14;31536:58;31628:11;31623:2;31615:6;31611:15;31604:36;31525:122;:::o;31653:182::-;31793:34;31789:1;31781:6;31777:14;31770:58;31759:76;:::o;31841:225::-;31981:34;31977:1;31969:6;31965:14;31958:58;32050:8;32045:2;32037:6;32033:15;32026:33;31947:119;:::o;32072:231::-;32212:34;32208:1;32200:6;32196:14;32189:58;32281:14;32276:2;32268:6;32264:15;32257:39;32178:125;:::o;32309:182::-;32449:34;32445:1;32437:6;32433:14;32426:58;32415:76;:::o;32497:228::-;32637:34;32633:1;32625:6;32621:14;32614:58;32706:11;32701:2;32693:6;32689:15;32682:36;32603:122;:::o;32731:234::-;32871:34;32867:1;32859:6;32855:14;32848:58;32940:17;32935:2;32927:6;32923:15;32916:42;32837:128;:::o;32971:220::-;33111:34;33107:1;33099:6;33095:14;33088:58;33180:3;33175:2;33167:6;33163:15;33156:28;33077:114;:::o;33197:236::-;33337:34;33333:1;33325:6;33321:14;33314:58;33406:19;33401:2;33393:6;33389:15;33382:44;33303:130;:::o;33439:163::-;33579:15;33575:1;33567:6;33563:14;33556:39;33545:57;:::o;33608:122::-;33681:24;33699:5;33681:24;:::i;:::-;33674:5;33671:35;33661:2;;33720:1;33717;33710:12;33661:2;33651:79;:::o;33736:116::-;33806:21;33821:5;33806:21;:::i;:::-;33799:5;33796:32;33786:2;;33842:1;33839;33832:12;33786:2;33776:76;:::o;33858:120::-;33930:23;33947:5;33930:23;:::i;:::-;33923:5;33920:34;33910:2;;33968:1;33965;33958:12;33910:2;33900:78;:::o;33984:122::-;34057:24;34075:5;34057:24;:::i;:::-;34050:5;34047:35;34037:2;;34096:1;34093;34086:12;34037:2;34027:79;:::o

Swarm Source

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