ETH Price: $3,313.93 (+0.19%)
Gas: 11 Gwei

Token

UglyGoofs (GOOF)
 

Overview

Max Total Supply

491 GOOF

Holders

122

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
codyrose.eth
Balance
1 GOOF
0xD4281868E1868840F0911d99DD5e387A46de5d8d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
UglyGoofs

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-25
*/

// 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 ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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







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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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







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








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





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





// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}





/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}





/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


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

    using SafeMath for uint256;
    using MerkleProof for bytes32[];

    Counters.Counter private _tokenIdCounter;

    // Track indexes (users) which have claimed their tokens
    mapping(address => uint256) public amountClaimed;

    // Define starting contract state
    bytes32 public merkleRoot;
    bool public mintingActive = false;
    bool public earlyAccessMode = true;
    string public baseURI;
    uint256 public timestamp;
    uint256 public constant maxStaffMints = 222;
    uint256 public constant maxItemPurchase = 10;
    uint256 public constant maxItems = 6969;
    uint256 public constant mintPrice = 50000000000000000; // 0.05 ETH

    constructor(
        address ownerAddress,
        string memory baseTokenUri,
        bytes32 root
    ) ERC721("UglyGoofs", "GOOF") Ownable() {
        transferOwnership(ownerAddress);
        baseURI = baseTokenUri;
        merkleRoot = root;
    }

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

    function setBaseURI(string memory newURI) external onlyOwner {
        baseURI = newURI;
    }

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }

    function safeMint(
        address toAddress,
        uint256 numberOfTokens,
        bytes32[] calldata merkleProof
    ) public payable nonReentrant {
        require(
            msg.value >= mintPrice * numberOfTokens || msg.sender == owner(),
            "Where's the Ether, Lebowski?"
        );
        require(numberOfTokens > 0, "Must provide at least 1");
        require(
            mintingActive || msg.sender == owner(),
            "Minting must be active"
        );
        require(
            numberOfTokens <= maxItemPurchase || msg.sender == owner(),
            "Cannot mint more than 10 at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= maxItems,
            "Minting would exceed max supply"
        );
        require(
            amountClaimed[msg.sender].add(numberOfTokens) <= maxItemPurchase ||
                (msg.sender == owner() &&
                    amountClaimed[msg.sender].add(numberOfTokens) <=
                    maxStaffMints),
            "Cannot mint more than the max"
        );

        if (earlyAccessMode && msg.sender != owner()) {
            require(
                msg.sender == toAddress,
                "Can only be claimed by the hodler"
            );
            // Verify merkle proof
            bytes32 node = keccak256(abi.encodePacked(toAddress));
            require(
                MerkleProof.verify(merkleProof, merkleRoot, node),
                "Invalid proof"
            );
        }

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _tokenIdCounter.increment();
            _safeMint(toAddress, _tokenIdCounter.current());
            amountClaimed[toAddress] = amountClaimed[toAddress].add(1);
        }
    }

    // The following functions are overrides required by Solidity.

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

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

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

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

    // Flip the minting from active or pause
    function toggleMinting() external onlyOwner {
        if (mintingActive) {
            mintingActive = false;
        } else {
            mintingActive = true;
        }
    }

    // Flip the early access mode to allow/disallow public
    // minting instead of merkle-drop whitelist
    function toggleEarlyAccessMode() external onlyOwner {
        if (earlyAccessMode) {
            earlyAccessMode = false;
        } else {
            earlyAccessMode = true;
        }
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool sent, ) = owner().call{value: address(this).balance}("");
        require(sent, "Failed to send Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"ownerAddress","type":"address"},{"internalType":"string","name":"baseTokenUri","type":"string"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyAccessMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItems","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxStaffMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"safeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","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":[],"name":"timestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleEarlyAccessMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526010805461ffff19166101001790553480156200002057600080fd5b506040516200311138038062003111833981016040819052620000439162000286565b604080518082018252600981526855676c79476f6f667360b81b60208083019182528351808501909452600484526323a7a7a360e11b9084015281519192916200009091600091620001e0565b508051620000a6906001906020840190620001e0565b505050620000c3620000bd620000f560201b60201c565b620000f9565b6001600c55620000d3836200014b565b8151620000e8906011906020850190620001e0565b50600f55506200044f9050565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000155620000f5565b6001600160a01b031662000168620001d1565b6001600160a01b0316146200019a5760405162461bcd60e51b81526004016200019190620003c7565b60405180910390fd5b6001600160a01b038116620001c35760405162461bcd60e51b8152600401620001919062000381565b620001ce81620000f9565b50565b600b546001600160a01b031690565b828054620001ee90620003fc565b90600052602060002090601f0160209004810192826200021257600085556200025d565b82601f106200022d57805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025d57825182559160200191906001019062000240565b506200026b9291506200026f565b5090565b5b808211156200026b576000815560010162000270565b6000806000606084860312156200029b578283fd5b83516001600160a01b0381168114620002b2578384fd5b602085810151919450906001600160401b0380821115620002d1578485fd5b818701915087601f830112620002e5578485fd5b815181811115620002fa57620002fa62000439565b604051601f8201601f191681018501838111828210171562000320576200032062000439565b60405281815283820185018a101562000337578687fd5b8692505b818310156200035a57838301850151818401860152918401916200033b565b818311156200036b57868583830101525b8096505050505050604084015190509250925092565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200041157607f821691505b602082108114156200043357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612cb2806200045f6000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063b80777ea116100a0578063e762268d1161006f578063e762268d1461058c578063e985e9c5146105a1578063efb4fa5b146105c1578063f2fde38b146105d6578063f337e003146105f65761020f565b8063b80777ea14610517578063b88d4fde1461052c578063c87b56dd1461054c578063d7e1ea171461056c5761020f565b80637d55094d116100e75780637d55094d146104a35780638da5cb5b146104b857806395d89b41146104cd578063a22cb465146104e2578063ae1322d3146105025761020f565b80636c0360eb1461043957806370a082311461044e578063715018a61461046e5780637cb64759146104835761020f565b806331f9c9191161019b57806342966c681161016a57806342966c68146103a45780634f6ccce7146103c457806355f804b3146103e45780636352211e146104045780636817c76c146104245761020f565b806331f9c919146103455780633c010a3e1461035a5780633ccfd60b1461036f57806342842e0e146103845761020f565b806318160ddd116101e257806318160ddd146102bb57806323b872dd146102dd5780632dfd972a146102fd5780632eb4a7ab146103105780632f745c59146103255761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f3660046121f4565b61060b565b604051610241919061234c565b60405180910390f35b34801561025657600080fd5b5061025f61061e565b6040516102419190612360565b34801561027857600080fd5b5061028c6102873660046121dc565b6106b0565b60405161024191906122fb565b3480156102a557600080fd5b506102b96102b436600461212f565b6106fc565b005b3480156102c757600080fd5b506102d0610794565b6040516102419190612357565b3480156102e957600080fd5b506102b96102f8366004612041565b61079a565b6102b961030b366004612158565b6107d2565b34801561031c57600080fd5b506102d0610b17565b34801561033157600080fd5b506102d061034036600461212f565b610b1d565b34801561035157600080fd5b50610234610b6f565b34801561036657600080fd5b506102d0610b78565b34801561037b57600080fd5b506102b9610b7e565b34801561039057600080fd5b506102b961039f366004612041565b610c70565b3480156103b057600080fd5b506102b96103bf3660046121dc565b610c8b565b3480156103d057600080fd5b506102d06103df3660046121dc565b610cbe565b3480156103f057600080fd5b506102b96103ff36600461222c565b610d19565b34801561041057600080fd5b5061028c61041f3660046121dc565b610d6f565b34801561043057600080fd5b506102d0610da4565b34801561044557600080fd5b5061025f610daf565b34801561045a57600080fd5b506102d0610469366004611ff5565b610e3d565b34801561047a57600080fd5b506102b9610e81565b34801561048f57600080fd5b506102b961049e3660046121dc565b610ecc565b3480156104af57600080fd5b506102b9610f10565b3480156104c457600080fd5b5061028c610f78565b3480156104d957600080fd5b5061025f610f87565b3480156104ee57600080fd5b506102b96104fd3660046120f5565b610f96565b34801561050e57600080fd5b506102d0611064565b34801561052357600080fd5b506102d0611069565b34801561053857600080fd5b506102b961054736600461207c565b61106f565b34801561055857600080fd5b5061025f6105673660046121dc565b6110ae565b34801561057857600080fd5b506102d0610587366004611ff5565b6110b9565b34801561059857600080fd5b506102346110cb565b3480156105ad57600080fd5b506102346105bc36600461200f565b6110d9565b3480156105cd57600080fd5b506102b9611107565b3480156105e257600080fd5b506102b96105f1366004611ff5565b611177565b34801561060257600080fd5b506102d06111e5565b6000610616826111ea565b90505b919050565b60606000805461062d90612bba565b80601f016020809104026020016040519081016040528092919081815260200182805461065990612bba565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106bb8261120f565b6106e05760405162461bcd60e51b81526004016106d790612819565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061070782610d6f565b9050806001600160a01b0316836001600160a01b0316141561073b5760405162461bcd60e51b81526004016106d790612969565b806001600160a01b031661074d61122c565b6001600160a01b031614806107695750610769816105bc61122c565b6107855760405162461bcd60e51b81526004016106d79061262b565b61078f8383611230565b505050565b60085490565b6107ab6107a561122c565b8261129e565b6107c75760405162461bcd60e51b81526004016106d7906129e1565b61078f838383611323565b6002600c5414156107f55760405162461bcd60e51b81526004016106d790612aa5565b6002600c5561080b8366b1a2bc2ec50000612b58565b34101580610831575061081c610f78565b6001600160a01b0316336001600160a01b0316145b61084d5760405162461bcd60e51b81526004016106d7906124ff565b6000831161086d5760405162461bcd60e51b81526004016106d7906129aa565b60105460ff16806108965750610881610f78565b6001600160a01b0316336001600160a01b0316145b6108b25760405162461bcd60e51b81526004016106d790612373565b600a831115806108da57506108c5610f78565b6001600160a01b0316336001600160a01b0316145b6108f65760405162461bcd60e51b81526004016106d7906124bd565b611b3961090b84610905610794565b90611450565b11156109295760405162461bcd60e51b81526004016106d79061271b565b336000908152600e6020526040902054600a906109469085611450565b1115806109915750610956610f78565b6001600160a01b0316336001600160a01b03161480156109915750336000908152600e602052604090205460de9061098e9085611450565b11155b6109ad5760405162461bcd60e51b81526004016106d790612932565b601054610100900460ff1680156109dd57506109c7610f78565b6001600160a01b0316336001600160a01b031614155b15610a9457336001600160a01b03851614610a0a5760405162461bcd60e51b81526004016106d790612752565b600084604051602001610a1d919061229e565b604051602081830303815290604052805190602001209050610a7683838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611463565b610a925760405162461bcd60e51b81526004016106d790612a7e565b505b60005b83811015610b0b57610aa9600d61151e565b610abc85610ab7600d611527565b61152b565b6001600160a01b0385166000908152600e6020526040902054610ae0906001611450565b6001600160a01b0386166000908152600e602052604090205580610b0381612bf5565b915050610a97565b50506001600c55505050565b600f5481565b6000610b2883610e3d565b8210610b465760405162461bcd60e51b81526004016106d7906123a3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60105460ff1681565b611b3981565b610b8661122c565b6001600160a01b0316610b97610f78565b6001600160a01b031614610bbd5760405162461bcd60e51b81526004016106d790612865565b6002600c541415610be05760405162461bcd60e51b81526004016106d790612aa5565b6002600c556000610bef610f78565b6001600160a01b031647604051610c05906122f8565b60006040518083038185875af1925050503d8060008114610c42576040519150601f19603f3d011682016040523d82523d6000602084013e610c47565b606091505b5050905080610c685760405162461bcd60e51b81526004016106d790612536565b506001600c55565b61078f8383836040518060200160405280600081525061106f565b610c966107a561122c565b610cb25760405162461bcd60e51b81526004016106d790612adc565b610cbb81611545565b50565b6000610cc8610794565b8210610ce65760405162461bcd60e51b81526004016106d790612a32565b60088281548110610d0757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d2161122c565b6001600160a01b0316610d32610f78565b6001600160a01b031614610d585760405162461bcd60e51b81526004016106d790612865565b8051610d6b906011906020840190611e9d565b5050565b6000818152600260205260408120546001600160a01b0316806106165760405162461bcd60e51b81526004016106d7906126d2565b66b1a2bc2ec5000081565b60118054610dbc90612bba565b80601f0160208091040260200160405190810160405280929190818152602001828054610de890612bba565b8015610e355780601f10610e0a57610100808354040283529160200191610e35565b820191906000526020600020905b815481529060010190602001808311610e1857829003601f168201915b505050505081565b60006001600160a01b038216610e655760405162461bcd60e51b81526004016106d790612688565b506001600160a01b031660009081526003602052604090205490565b610e8961122c565b6001600160a01b0316610e9a610f78565b6001600160a01b031614610ec05760405162461bcd60e51b81526004016106d790612865565b610eca600061154e565b565b610ed461122c565b6001600160a01b0316610ee5610f78565b6001600160a01b031614610f0b5760405162461bcd60e51b81526004016106d790612865565b600f55565b610f1861122c565b6001600160a01b0316610f29610f78565b6001600160a01b031614610f4f5760405162461bcd60e51b81526004016106d790612865565b60105460ff1615610f69576010805460ff19169055610eca565b6010805460ff19166001179055565b600b546001600160a01b031690565b60606001805461062d90612bba565b610f9e61122c565b6001600160a01b0316826001600160a01b03161415610fcf5760405162461bcd60e51b81526004016106d7906125a8565b8060056000610fdc61122c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561102061122c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611058919061234c565b60405180910390a35050565b600a81565b60125481565b61108061107a61122c565b8361129e565b61109c5760405162461bcd60e51b81526004016106d7906129e1565b6110a8848484846115a0565b50505050565b6060610616826115d3565b600e6020526000908152604090205481565b601054610100900460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61110f61122c565b6001600160a01b0316611120610f78565b6001600160a01b0316146111465760405162461bcd60e51b81526004016106d790612865565b601054610100900460ff1615611166576010805461ff0019169055610eca565b6010805461ff001916610100179055565b61117f61122c565b6001600160a01b0316611190610f78565b6001600160a01b0316146111b65760405162461bcd60e51b81526004016106d790612865565b6001600160a01b0381166111dc5760405162461bcd60e51b81526004016106d790612440565b610cbb8161154e565b60de81565b60006001600160e01b0319821663780e9d6360e01b14806106165750610616826116ec565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126582610d6f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112a98261120f565b6112c55760405162461bcd60e51b81526004016106d7906125df565b60006112d083610d6f565b9050806001600160a01b0316846001600160a01b0316148061130b5750836001600160a01b0316611300846106b0565b6001600160a01b0316145b8061131b575061131b81856110d9565b949350505050565b826001600160a01b031661133682610d6f565b6001600160a01b03161461135c5760405162461bcd60e51b81526004016106d79061289a565b6001600160a01b0382166113825760405162461bcd60e51b81526004016106d790612564565b61138d83838361172c565b611398600082611230565b6001600160a01b03831660009081526003602052604081208054600192906113c1908490612b77565b90915550506001600160a01b03821660009081526003602052604081208054600192906113ef908490612b2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061145c8284612b2c565b9392505050565b600081815b855181101561151357600086828151811061149357634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116114d45782816040516020016114b79291906122bb565b604051602081830303815290604052805190602001209250611500565b80836040516020016114e79291906122bb565b6040516020818303038152906040528051906020012092505b508061150b81612bf5565b915050611468565b509092149392505050565b80546001019055565b5490565b610d6b828260405180602001604052806000815250611737565b610cbb8161176a565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115ab848484611323565b6115b7848484846117aa565b6110a85760405162461bcd60e51b81526004016106d7906123ee565b60606115de8261120f565b6115fa5760405162461bcd60e51b81526004016106d7906127c8565b6000828152600a60205260408120805461161390612bba565b80601f016020809104026020016040519081016040528092919081815260200182805461163f90612bba565b801561168c5780601f106116615761010080835404028352916020019161168c565b820191906000526020600020905b81548152906001019060200180831161166f57829003601f168201915b50505050509050600061169d6118c5565b90508051600014156116b157509050610619565b8151156116e35780826040516020016116cb9291906122c9565b60405160208183030381529060405292505050610619565b61131b846118d4565b60006001600160e01b031982166380ac58cd60e01b148061171d57506001600160e01b03198216635b5e139f60e01b145b80610616575061061682611956565b61078f83838361196f565b61174183836119f8565b61174e60008484846117aa565b61078f5760405162461bcd60e51b81526004016106d7906123ee565b61177381611ad7565b6000818152600a60205260409020805461178c90612bba565b159050610cbb576000818152600a60205260408120610cbb91611f21565b60006117be846001600160a01b0316611b7e565b156118ba57836001600160a01b031663150b7a026117da61122c565b8786866040518563ffffffff1660e01b81526004016117fc949392919061230f565b602060405180830381600087803b15801561181657600080fd5b505af1925050508015611846575060408051601f3d908101601f1916820190925261184391810190612210565b60015b6118a0573d808015611874576040519150601f19603f3d011682016040523d82523d6000602084013e611879565b606091505b5080516118985760405162461bcd60e51b81526004016106d7906123ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061131b565b506001949350505050565b60606011805461062d90612bba565b60606118df8261120f565b6118fb5760405162461bcd60e51b81526004016106d7906128e3565b60006119056118c5565b90506000815111611925576040518060200160405280600081525061145c565b8061192f84611b84565b6040516020016119409291906122c9565b6040516020818303038152906040529392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61197a83838361078f565b6001600160a01b0383166119965761199181611c9f565b6119b9565b816001600160a01b0316836001600160a01b0316146119b9576119b98382611ce3565b6001600160a01b0382166119d5576119d081611d80565b61078f565b826001600160a01b0316826001600160a01b03161461078f5761078f8282611e59565b6001600160a01b038216611a1e5760405162461bcd60e51b81526004016106d790612793565b611a278161120f565b15611a445760405162461bcd60e51b81526004016106d790612486565b611a506000838361172c565b6001600160a01b0382166000908152600360205260408120805460019290611a79908490612b2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611ae282610d6f565b9050611af08160008461172c565b611afb600083611230565b6001600160a01b0381166000908152600360205260408120805460019290611b24908490612b77565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b3b151590565b606081611ba957506040805180820190915260018152600360fc1b6020820152610619565b8160005b8115611bd35780611bbd81612bf5565b9150611bcc9050600a83612b44565b9150611bad565b60008167ffffffffffffffff811115611bfc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c26576020820181803683370190505b5090505b841561131b57611c3b600183612b77565b9150611c48600a86612c10565b611c53906030612b2c565b60f81b818381518110611c7657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c98600a86612b44565b9450611c2a565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611cf084610e3d565b611cfa9190612b77565b600083815260076020526040902054909150808214611d4d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d9290600190612b77565b60008381526009602052604081205460088054939450909284908110611dc857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611df757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e6483610e3d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ea990612bba565b90600052602060002090601f016020900481019282611ecb5760008555611f11565b82601f10611ee457805160ff1916838001178555611f11565b82800160010185558215611f11579182015b82811115611f11578251825591602001919060010190611ef6565b50611f1d929150611f59565b5090565b508054611f2d90612bba565b6000825580601f10611f3f5750610cbb565b601f016020900490600052602060002090810190610cbb91905b5b80821115611f1d5760008155600101611f5a565b600067ffffffffffffffff80841115611f8957611f89612c50565b604051601f8501601f191681016020018281118282101715611fad57611fad612c50565b604052848152915081838501861015611fc557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461061957600080fd5b600060208284031215612006578081fd5b61145c82611fde565b60008060408385031215612021578081fd5b61202a83611fde565b915061203860208401611fde565b90509250929050565b600080600060608486031215612055578081fd5b61205e84611fde565b925061206c60208501611fde565b9150604084013590509250925092565b60008060008060808587031215612091578081fd5b61209a85611fde565b93506120a860208601611fde565b925060408501359150606085013567ffffffffffffffff8111156120ca578182fd5b8501601f810187136120da578182fd5b6120e987823560208401611f6e565b91505092959194509250565b60008060408385031215612107578182fd5b61211083611fde565b915060208301358015158114612124578182fd5b809150509250929050565b60008060408385031215612141578182fd5b61214a83611fde565b946020939093013593505050565b6000806000806060858703121561216d578384fd5b61217685611fde565b935060208501359250604085013567ffffffffffffffff80821115612199578384fd5b818701915087601f8301126121ac578384fd5b8135818111156121ba578485fd5b88602080830285010111156121cd578485fd5b95989497505060200194505050565b6000602082840312156121ed578081fd5b5035919050565b600060208284031215612205578081fd5b813561145c81612c66565b600060208284031215612221578081fd5b815161145c81612c66565b60006020828403121561223d578081fd5b813567ffffffffffffffff811115612253578182fd5b8201601f81018413612263578182fd5b61131b84823560208401611f6e565b6000815180845261228a816020860160208601612b8e565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b600083516122db818460208801612b8e565b8351908301906122ef818360208801612b8e565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061234290830184612272565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261145c6020830184612272565b6020808252601690820152754d696e74696e67206d7573742062652061637469766560501b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526022908201527f43616e6e6f74206d696e74206d6f7265207468616e20313020617420612074696040820152616d6560f01b606082015260800190565b6020808252601c908201527f57686572652773207468652045746865722c204c65626f77736b693f00000000604082015260600190565b6020808252601490820152732330b4b632b2103a379039b2b7321022ba3432b960611b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526021908201527f43616e206f6e6c7920626520636c61696d65642062792074686520686f646c656040820152603960f91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601d908201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d6178000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f4d7573742070726f76696465206174206c656173742031000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252600d908201526c24b73b30b634b210383937b7b360991b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b60008219821115612b3f57612b3f612c24565b500190565b600082612b5357612b53612c3a565b500490565b6000816000190483118215151615612b7257612b72612c24565b500290565b600082821015612b8957612b89612c24565b500390565b60005b83811015612ba9578181015183820152602001612b91565b838111156110a85750506000910152565b600281046001821680612bce57607f821691505b60208210811415612bef57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0957612c09612c24565b5060010190565b600082612c1f57612c1f612c3a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cbb57600080fdfea26469706673582212200f8be6b6f855ec2efbb491f3c312e9ce69fb1ed15c6107c375a1de9d1b46eccb64736f6c634300080000330000000000000000000000005b12ef50c6fe29456198b9f88b67789b84a4990a00000000000000000000000000000000000000000000000000000000000000604f8766f4a73fbfff8d8139f4bb607b8d702895138f32abe4f612872e405819cc000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f6261667962656963626d6b36667235716e737865337471653567336d357a327a686770626c35336a78636a7a66786e6436636b74646632767678712f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063b80777ea116100a0578063e762268d1161006f578063e762268d1461058c578063e985e9c5146105a1578063efb4fa5b146105c1578063f2fde38b146105d6578063f337e003146105f65761020f565b8063b80777ea14610517578063b88d4fde1461052c578063c87b56dd1461054c578063d7e1ea171461056c5761020f565b80637d55094d116100e75780637d55094d146104a35780638da5cb5b146104b857806395d89b41146104cd578063a22cb465146104e2578063ae1322d3146105025761020f565b80636c0360eb1461043957806370a082311461044e578063715018a61461046e5780637cb64759146104835761020f565b806331f9c9191161019b57806342966c681161016a57806342966c68146103a45780634f6ccce7146103c457806355f804b3146103e45780636352211e146104045780636817c76c146104245761020f565b806331f9c919146103455780633c010a3e1461035a5780633ccfd60b1461036f57806342842e0e146103845761020f565b806318160ddd116101e257806318160ddd146102bb57806323b872dd146102dd5780632dfd972a146102fd5780632eb4a7ab146103105780632f745c59146103255761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f3660046121f4565b61060b565b604051610241919061234c565b60405180910390f35b34801561025657600080fd5b5061025f61061e565b6040516102419190612360565b34801561027857600080fd5b5061028c6102873660046121dc565b6106b0565b60405161024191906122fb565b3480156102a557600080fd5b506102b96102b436600461212f565b6106fc565b005b3480156102c757600080fd5b506102d0610794565b6040516102419190612357565b3480156102e957600080fd5b506102b96102f8366004612041565b61079a565b6102b961030b366004612158565b6107d2565b34801561031c57600080fd5b506102d0610b17565b34801561033157600080fd5b506102d061034036600461212f565b610b1d565b34801561035157600080fd5b50610234610b6f565b34801561036657600080fd5b506102d0610b78565b34801561037b57600080fd5b506102b9610b7e565b34801561039057600080fd5b506102b961039f366004612041565b610c70565b3480156103b057600080fd5b506102b96103bf3660046121dc565b610c8b565b3480156103d057600080fd5b506102d06103df3660046121dc565b610cbe565b3480156103f057600080fd5b506102b96103ff36600461222c565b610d19565b34801561041057600080fd5b5061028c61041f3660046121dc565b610d6f565b34801561043057600080fd5b506102d0610da4565b34801561044557600080fd5b5061025f610daf565b34801561045a57600080fd5b506102d0610469366004611ff5565b610e3d565b34801561047a57600080fd5b506102b9610e81565b34801561048f57600080fd5b506102b961049e3660046121dc565b610ecc565b3480156104af57600080fd5b506102b9610f10565b3480156104c457600080fd5b5061028c610f78565b3480156104d957600080fd5b5061025f610f87565b3480156104ee57600080fd5b506102b96104fd3660046120f5565b610f96565b34801561050e57600080fd5b506102d0611064565b34801561052357600080fd5b506102d0611069565b34801561053857600080fd5b506102b961054736600461207c565b61106f565b34801561055857600080fd5b5061025f6105673660046121dc565b6110ae565b34801561057857600080fd5b506102d0610587366004611ff5565b6110b9565b34801561059857600080fd5b506102346110cb565b3480156105ad57600080fd5b506102346105bc36600461200f565b6110d9565b3480156105cd57600080fd5b506102b9611107565b3480156105e257600080fd5b506102b96105f1366004611ff5565b611177565b34801561060257600080fd5b506102d06111e5565b6000610616826111ea565b90505b919050565b60606000805461062d90612bba565b80601f016020809104026020016040519081016040528092919081815260200182805461065990612bba565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106bb8261120f565b6106e05760405162461bcd60e51b81526004016106d790612819565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061070782610d6f565b9050806001600160a01b0316836001600160a01b0316141561073b5760405162461bcd60e51b81526004016106d790612969565b806001600160a01b031661074d61122c565b6001600160a01b031614806107695750610769816105bc61122c565b6107855760405162461bcd60e51b81526004016106d79061262b565b61078f8383611230565b505050565b60085490565b6107ab6107a561122c565b8261129e565b6107c75760405162461bcd60e51b81526004016106d7906129e1565b61078f838383611323565b6002600c5414156107f55760405162461bcd60e51b81526004016106d790612aa5565b6002600c5561080b8366b1a2bc2ec50000612b58565b34101580610831575061081c610f78565b6001600160a01b0316336001600160a01b0316145b61084d5760405162461bcd60e51b81526004016106d7906124ff565b6000831161086d5760405162461bcd60e51b81526004016106d7906129aa565b60105460ff16806108965750610881610f78565b6001600160a01b0316336001600160a01b0316145b6108b25760405162461bcd60e51b81526004016106d790612373565b600a831115806108da57506108c5610f78565b6001600160a01b0316336001600160a01b0316145b6108f65760405162461bcd60e51b81526004016106d7906124bd565b611b3961090b84610905610794565b90611450565b11156109295760405162461bcd60e51b81526004016106d79061271b565b336000908152600e6020526040902054600a906109469085611450565b1115806109915750610956610f78565b6001600160a01b0316336001600160a01b03161480156109915750336000908152600e602052604090205460de9061098e9085611450565b11155b6109ad5760405162461bcd60e51b81526004016106d790612932565b601054610100900460ff1680156109dd57506109c7610f78565b6001600160a01b0316336001600160a01b031614155b15610a9457336001600160a01b03851614610a0a5760405162461bcd60e51b81526004016106d790612752565b600084604051602001610a1d919061229e565b604051602081830303815290604052805190602001209050610a7683838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611463565b610a925760405162461bcd60e51b81526004016106d790612a7e565b505b60005b83811015610b0b57610aa9600d61151e565b610abc85610ab7600d611527565b61152b565b6001600160a01b0385166000908152600e6020526040902054610ae0906001611450565b6001600160a01b0386166000908152600e602052604090205580610b0381612bf5565b915050610a97565b50506001600c55505050565b600f5481565b6000610b2883610e3d565b8210610b465760405162461bcd60e51b81526004016106d7906123a3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60105460ff1681565b611b3981565b610b8661122c565b6001600160a01b0316610b97610f78565b6001600160a01b031614610bbd5760405162461bcd60e51b81526004016106d790612865565b6002600c541415610be05760405162461bcd60e51b81526004016106d790612aa5565b6002600c556000610bef610f78565b6001600160a01b031647604051610c05906122f8565b60006040518083038185875af1925050503d8060008114610c42576040519150601f19603f3d011682016040523d82523d6000602084013e610c47565b606091505b5050905080610c685760405162461bcd60e51b81526004016106d790612536565b506001600c55565b61078f8383836040518060200160405280600081525061106f565b610c966107a561122c565b610cb25760405162461bcd60e51b81526004016106d790612adc565b610cbb81611545565b50565b6000610cc8610794565b8210610ce65760405162461bcd60e51b81526004016106d790612a32565b60088281548110610d0757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d2161122c565b6001600160a01b0316610d32610f78565b6001600160a01b031614610d585760405162461bcd60e51b81526004016106d790612865565b8051610d6b906011906020840190611e9d565b5050565b6000818152600260205260408120546001600160a01b0316806106165760405162461bcd60e51b81526004016106d7906126d2565b66b1a2bc2ec5000081565b60118054610dbc90612bba565b80601f0160208091040260200160405190810160405280929190818152602001828054610de890612bba565b8015610e355780601f10610e0a57610100808354040283529160200191610e35565b820191906000526020600020905b815481529060010190602001808311610e1857829003601f168201915b505050505081565b60006001600160a01b038216610e655760405162461bcd60e51b81526004016106d790612688565b506001600160a01b031660009081526003602052604090205490565b610e8961122c565b6001600160a01b0316610e9a610f78565b6001600160a01b031614610ec05760405162461bcd60e51b81526004016106d790612865565b610eca600061154e565b565b610ed461122c565b6001600160a01b0316610ee5610f78565b6001600160a01b031614610f0b5760405162461bcd60e51b81526004016106d790612865565b600f55565b610f1861122c565b6001600160a01b0316610f29610f78565b6001600160a01b031614610f4f5760405162461bcd60e51b81526004016106d790612865565b60105460ff1615610f69576010805460ff19169055610eca565b6010805460ff19166001179055565b600b546001600160a01b031690565b60606001805461062d90612bba565b610f9e61122c565b6001600160a01b0316826001600160a01b03161415610fcf5760405162461bcd60e51b81526004016106d7906125a8565b8060056000610fdc61122c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561102061122c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611058919061234c565b60405180910390a35050565b600a81565b60125481565b61108061107a61122c565b8361129e565b61109c5760405162461bcd60e51b81526004016106d7906129e1565b6110a8848484846115a0565b50505050565b6060610616826115d3565b600e6020526000908152604090205481565b601054610100900460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61110f61122c565b6001600160a01b0316611120610f78565b6001600160a01b0316146111465760405162461bcd60e51b81526004016106d790612865565b601054610100900460ff1615611166576010805461ff0019169055610eca565b6010805461ff001916610100179055565b61117f61122c565b6001600160a01b0316611190610f78565b6001600160a01b0316146111b65760405162461bcd60e51b81526004016106d790612865565b6001600160a01b0381166111dc5760405162461bcd60e51b81526004016106d790612440565b610cbb8161154e565b60de81565b60006001600160e01b0319821663780e9d6360e01b14806106165750610616826116ec565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126582610d6f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112a98261120f565b6112c55760405162461bcd60e51b81526004016106d7906125df565b60006112d083610d6f565b9050806001600160a01b0316846001600160a01b0316148061130b5750836001600160a01b0316611300846106b0565b6001600160a01b0316145b8061131b575061131b81856110d9565b949350505050565b826001600160a01b031661133682610d6f565b6001600160a01b03161461135c5760405162461bcd60e51b81526004016106d79061289a565b6001600160a01b0382166113825760405162461bcd60e51b81526004016106d790612564565b61138d83838361172c565b611398600082611230565b6001600160a01b03831660009081526003602052604081208054600192906113c1908490612b77565b90915550506001600160a01b03821660009081526003602052604081208054600192906113ef908490612b2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061145c8284612b2c565b9392505050565b600081815b855181101561151357600086828151811061149357634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116114d45782816040516020016114b79291906122bb565b604051602081830303815290604052805190602001209250611500565b80836040516020016114e79291906122bb565b6040516020818303038152906040528051906020012092505b508061150b81612bf5565b915050611468565b509092149392505050565b80546001019055565b5490565b610d6b828260405180602001604052806000815250611737565b610cbb8161176a565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115ab848484611323565b6115b7848484846117aa565b6110a85760405162461bcd60e51b81526004016106d7906123ee565b60606115de8261120f565b6115fa5760405162461bcd60e51b81526004016106d7906127c8565b6000828152600a60205260408120805461161390612bba565b80601f016020809104026020016040519081016040528092919081815260200182805461163f90612bba565b801561168c5780601f106116615761010080835404028352916020019161168c565b820191906000526020600020905b81548152906001019060200180831161166f57829003601f168201915b50505050509050600061169d6118c5565b90508051600014156116b157509050610619565b8151156116e35780826040516020016116cb9291906122c9565b60405160208183030381529060405292505050610619565b61131b846118d4565b60006001600160e01b031982166380ac58cd60e01b148061171d57506001600160e01b03198216635b5e139f60e01b145b80610616575061061682611956565b61078f83838361196f565b61174183836119f8565b61174e60008484846117aa565b61078f5760405162461bcd60e51b81526004016106d7906123ee565b61177381611ad7565b6000818152600a60205260409020805461178c90612bba565b159050610cbb576000818152600a60205260408120610cbb91611f21565b60006117be846001600160a01b0316611b7e565b156118ba57836001600160a01b031663150b7a026117da61122c565b8786866040518563ffffffff1660e01b81526004016117fc949392919061230f565b602060405180830381600087803b15801561181657600080fd5b505af1925050508015611846575060408051601f3d908101601f1916820190925261184391810190612210565b60015b6118a0573d808015611874576040519150601f19603f3d011682016040523d82523d6000602084013e611879565b606091505b5080516118985760405162461bcd60e51b81526004016106d7906123ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061131b565b506001949350505050565b60606011805461062d90612bba565b60606118df8261120f565b6118fb5760405162461bcd60e51b81526004016106d7906128e3565b60006119056118c5565b90506000815111611925576040518060200160405280600081525061145c565b8061192f84611b84565b6040516020016119409291906122c9565b6040516020818303038152906040529392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61197a83838361078f565b6001600160a01b0383166119965761199181611c9f565b6119b9565b816001600160a01b0316836001600160a01b0316146119b9576119b98382611ce3565b6001600160a01b0382166119d5576119d081611d80565b61078f565b826001600160a01b0316826001600160a01b03161461078f5761078f8282611e59565b6001600160a01b038216611a1e5760405162461bcd60e51b81526004016106d790612793565b611a278161120f565b15611a445760405162461bcd60e51b81526004016106d790612486565b611a506000838361172c565b6001600160a01b0382166000908152600360205260408120805460019290611a79908490612b2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611ae282610d6f565b9050611af08160008461172c565b611afb600083611230565b6001600160a01b0381166000908152600360205260408120805460019290611b24908490612b77565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b3b151590565b606081611ba957506040805180820190915260018152600360fc1b6020820152610619565b8160005b8115611bd35780611bbd81612bf5565b9150611bcc9050600a83612b44565b9150611bad565b60008167ffffffffffffffff811115611bfc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c26576020820181803683370190505b5090505b841561131b57611c3b600183612b77565b9150611c48600a86612c10565b611c53906030612b2c565b60f81b818381518110611c7657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c98600a86612b44565b9450611c2a565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611cf084610e3d565b611cfa9190612b77565b600083815260076020526040902054909150808214611d4d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d9290600190612b77565b60008381526009602052604081205460088054939450909284908110611dc857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611df757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e6483610e3d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611ea990612bba565b90600052602060002090601f016020900481019282611ecb5760008555611f11565b82601f10611ee457805160ff1916838001178555611f11565b82800160010185558215611f11579182015b82811115611f11578251825591602001919060010190611ef6565b50611f1d929150611f59565b5090565b508054611f2d90612bba565b6000825580601f10611f3f5750610cbb565b601f016020900490600052602060002090810190610cbb91905b5b80821115611f1d5760008155600101611f5a565b600067ffffffffffffffff80841115611f8957611f89612c50565b604051601f8501601f191681016020018281118282101715611fad57611fad612c50565b604052848152915081838501861015611fc557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461061957600080fd5b600060208284031215612006578081fd5b61145c82611fde565b60008060408385031215612021578081fd5b61202a83611fde565b915061203860208401611fde565b90509250929050565b600080600060608486031215612055578081fd5b61205e84611fde565b925061206c60208501611fde565b9150604084013590509250925092565b60008060008060808587031215612091578081fd5b61209a85611fde565b93506120a860208601611fde565b925060408501359150606085013567ffffffffffffffff8111156120ca578182fd5b8501601f810187136120da578182fd5b6120e987823560208401611f6e565b91505092959194509250565b60008060408385031215612107578182fd5b61211083611fde565b915060208301358015158114612124578182fd5b809150509250929050565b60008060408385031215612141578182fd5b61214a83611fde565b946020939093013593505050565b6000806000806060858703121561216d578384fd5b61217685611fde565b935060208501359250604085013567ffffffffffffffff80821115612199578384fd5b818701915087601f8301126121ac578384fd5b8135818111156121ba578485fd5b88602080830285010111156121cd578485fd5b95989497505060200194505050565b6000602082840312156121ed578081fd5b5035919050565b600060208284031215612205578081fd5b813561145c81612c66565b600060208284031215612221578081fd5b815161145c81612c66565b60006020828403121561223d578081fd5b813567ffffffffffffffff811115612253578182fd5b8201601f81018413612263578182fd5b61131b84823560208401611f6e565b6000815180845261228a816020860160208601612b8e565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b600083516122db818460208801612b8e565b8351908301906122ef818360208801612b8e565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061234290830184612272565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261145c6020830184612272565b6020808252601690820152754d696e74696e67206d7573742062652061637469766560501b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526022908201527f43616e6e6f74206d696e74206d6f7265207468616e20313020617420612074696040820152616d6560f01b606082015260800190565b6020808252601c908201527f57686572652773207468652045746865722c204c65626f77736b693f00000000604082015260600190565b6020808252601490820152732330b4b632b2103a379039b2b7321022ba3432b960611b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526021908201527f43616e206f6e6c7920626520636c61696d65642062792074686520686f646c656040820152603960f91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601d908201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d6178000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f4d7573742070726f76696465206174206c656173742031000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252600d908201526c24b73b30b634b210383937b7b360991b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b60008219821115612b3f57612b3f612c24565b500190565b600082612b5357612b53612c3a565b500490565b6000816000190483118215151615612b7257612b72612c24565b500290565b600082821015612b8957612b89612c24565b500390565b60005b83811015612ba9578181015183820152602001612b91565b838111156110a85750506000910152565b600281046001821680612bce57607f821691505b60208210811415612bef57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c0957612c09612c24565b5060010190565b600082612c1f57612c1f612c3a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cbb57600080fdfea26469706673582212200f8be6b6f855ec2efbb491f3c312e9ce69fb1ed15c6107c375a1de9d1b46eccb64736f6c63430008000033

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

0000000000000000000000005b12ef50c6fe29456198b9f88b67789b84a4990a00000000000000000000000000000000000000000000000000000000000000604f8766f4a73fbfff8d8139f4bb607b8d702895138f32abe4f612872e405819cc000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f6261667962656963626d6b36667235716e737865337471653567336d357a327a686770626c35336a78636a7a66786e6436636b74646632767678712f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : ownerAddress (address): 0x5b12EF50C6fe29456198b9F88B67789B84a4990A
Arg [1] : baseTokenUri (string): https://ipfs.io/ipfs/bafybeicbmk6fr5qnsxe3tqe5g3m5z2zhgpbl53jxcjzfxnd6cktdf2vvxq/
Arg [2] : root (bytes32): 0x4f8766f4a73fbfff8d8139f4bb607b8d702895138f32abe4f612872e405819cc

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000005b12ef50c6fe29456198b9f88b67789b84a4990a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 4f8766f4a73fbfff8d8139f4bb607b8d702895138f32abe4f612872e405819cc
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f697066732e696f2f697066732f6261667962656963626d6b
Arg [5] : 36667235716e737865337471653567336d357a327a686770626c35336a78636a
Arg [6] : 7a66786e6436636b74646632767678712f000000000000000000000000000000


Deployed Bytecode Sourcemap

56719:4835:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60601:212;;;;;;;;;;-1:-1:-1;60601:212:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22209:221::-;;;;;;;;;;-1:-1:-1;22209:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21732:411::-;;;;;;;;;;-1:-1:-1;21732:411:0;;;;;:::i;:::-;;:::i;:::-;;34186:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23099:339::-;;;;;;;;;;-1:-1:-1;23099:339:0;;;;;:::i;:::-;;:::i;58160:1790::-;;;;;;:::i;:::-;;:::i;57188:25::-;;;;;;;;;;;;;:::i;33854:256::-;;;;;;;;;;-1:-1:-1;33854:256:0;;;;;:::i;:::-;;:::i;57220:33::-;;;;;;;;;;;;;:::i;57461:39::-;;;;;;;;;;;;;:::i;61370:181::-;;;;;;;;;;;;;:::i;23509:185::-;;;;;;;;;;-1:-1:-1;23509:185:0;;;;;:::i;:::-;;:::i;44075:245::-;;;;;;;;;;-1:-1:-1;44075:245:0;;;;;:::i;:::-;;:::i;34376:233::-;;;;;;;;;;-1:-1:-1;34376:233:0;;;;;:::i;:::-;;:::i;57956:96::-;;;;;;;;;;-1:-1:-1;57956:96:0;;;;;:::i;:::-;;:::i;20344:239::-;;;;;;;;;;-1:-1:-1;20344:239:0;;;;;:::i;:::-;;:::i;57507:53::-;;;;;;;;;;;;;:::i;57301:21::-;;;;;;;;;;;;;:::i;20074:208::-;;;;;;;;;;-1:-1:-1;20074:208:0;;;;;:::i;:::-;;:::i;43089:94::-;;;;;;;;;;;;;:::i;58060:92::-;;;;;;;;;;-1:-1:-1;58060:92:0;;;;;:::i;:::-;;:::i;60867:182::-;;;;;;;;;;;;;:::i;42438:87::-;;;;;;;;;;;;;:::i;20819:104::-;;;;;;;;;;;;;:::i;22502:295::-;;;;;;;;;;-1:-1:-1;22502:295:0;;;;;:::i;:::-;;:::i;57410:44::-;;;;;;;;;;;;;:::i;57329:24::-;;;;;;;;;;;;;:::i;23765:328::-;;;;;;;;;;-1:-1:-1;23765:328:0;;;;;:::i;:::-;;:::i;60397:196::-;;;;;;;;;;-1:-1:-1;60397:196:0;;;;;:::i;:::-;;:::i;57092:48::-;;;;;;;;;;-1:-1:-1;57092:48:0;;;;;:::i;:::-;;:::i;57260:34::-;;;;;;;;;;;;;:::i;22868:164::-;;;;;;;;;;-1:-1:-1;22868:164:0;;;;;:::i;:::-;;:::i;61166:196::-;;;;;;;;;;;;;:::i;43338:192::-;;;;;;;;;;-1:-1:-1;43338:192:0;;;;;:::i;:::-;;:::i;57360:43::-;;;;;;;;;;;;;:::i;60601:212::-;60740:4;60769:36;60793:11;60769:23;:36::i;:::-;60762:43;;60601:212;;;;:::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;;;;-1:-1:-1;;;22305:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22398:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22398:24:0;;22209:221::o;21732:411::-;21813:13;21829:23;21844:7;21829:14;:23::i;:::-;21813:39;;21877:5;-1:-1:-1;;;;;21871:11:0;:2;-1:-1:-1;;;;;21871:11:0;;;21863:57;;;;-1:-1:-1;;;21863:57:0;;;;;;;:::i;:::-;21971:5;-1:-1:-1;;;;;21955:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;21955:21:0;;:62;;;;21980:37;21997:5;22004:12;:10;:12::i;21980:37::-;21933:168;;;;-1:-1:-1;;;21933:168:0;;;;;;;:::i;:::-;22114:21;22123:2;22127:7;22114:8;:21::i;:::-;21732:411;;;:::o;34186:113::-;34274:10;:17;34186:113;:::o;23099:339::-;23294:41;23313:12;:10;:12::i;:::-;23327:7;23294:18;:41::i;:::-;23286:103;;;;-1:-1:-1;;;23286:103:0;;;;;;;:::i;:::-;23402:28;23412:4;23418:2;23422:7;23402:9;:28::i;58160:1790::-;55772:1;56368:7;;:19;;56360:63;;;;-1:-1:-1;;;56360:63:0;;;;;;;:::i;:::-;55772:1;56501:7;:18;58361:26:::1;58373:14:::0;57543:17:::1;58361:26;:::i;:::-;58348:9;:39;;:64;;;;58405:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;58391:21:0::1;:10;-1:-1:-1::0;;;;;58391:21:0::1;;58348:64;58326:142;;;;-1:-1:-1::0;;;58326:142:0::1;;;;;;;:::i;:::-;58504:1;58487:14;:18;58479:54;;;;-1:-1:-1::0;;;58479:54:0::1;;;;;;;:::i;:::-;58566:13;::::0;::::1;;::::0;:38:::1;;;58597:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;58583:21:0::1;:10;-1:-1:-1::0;;;;;58583:21:0::1;;58566:38;58544:110;;;;-1:-1:-1::0;;;58544:110:0::1;;;;;;;:::i;:::-;57452:2;58687:14;:33;;:58;;;;58738:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;58724:21:0::1;:10;-1:-1:-1::0;;;;;58724:21:0::1;;58687:58;58665:142;;;;-1:-1:-1::0;;;58665:142:0::1;;;;;;;:::i;:::-;57496:4;58840:33;58858:14;58840:13;:11;:13::i;:::-;:17:::0;::::1;:33::i;:::-;:45;;58818:126;;;;-1:-1:-1::0;;;58818:126:0::1;;;;;;;:::i;:::-;58991:10;58977:25;::::0;;;:13:::1;:25;::::0;;;;;57452:2:::1;::::0;58977:45:::1;::::0;59007:14;58977:29:::1;:45::i;:::-;:64;;:216;;;;59077:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;59063:21:0::1;:10;-1:-1:-1::0;;;;;59063:21:0::1;;:129;;;;-1:-1:-1::0;59123:10:0::1;59109:25;::::0;;;:13:::1;:25;::::0;;;;;57400:3:::1;::::0;59109:45:::1;::::0;59139:14;59109:29:::1;:45::i;:::-;:83;;59063:129;58955:295;;;;-1:-1:-1::0;;;58955:295:0::1;;;;;;;:::i;:::-;59267:15;::::0;::::1;::::0;::::1;;;:40:::0;::::1;;;;59300:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;59286:21:0::1;:10;-1:-1:-1::0;;;;;59286:21:0::1;;;59267:40;59263:434;;;59350:10;-1:-1:-1::0;;;;;59350:23:0;::::1;;59324:118;;;;-1:-1:-1::0;;;59324:118:0::1;;;;;;;:::i;:::-;59493:12;59535:9;59518:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;59508:38;;;;;;59493:53;;59587:49;59606:11;;59587:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;59619:10:0::1;::::0;;-1:-1:-1;59631:4:0;;-1:-1:-1;59587:18:0::1;:49::i;:::-;59561:124;;;;-1:-1:-1::0;;;59561:124:0::1;;;;;;;:::i;:::-;59263:434;;59714:9;59709:234;59733:14;59729:1;:18;59709:234;;;59769:27;:15;:25;:27::i;:::-;59811:47;59821:9;59832:25;:15;:23;:25::i;:::-;59811:9;:47::i;:::-;-1:-1:-1::0;;;;;59900:24:0;::::1;;::::0;;;:13:::1;:24;::::0;;;;;:31:::1;::::0;59929:1:::1;59900:28;:31::i;:::-;-1:-1:-1::0;;;;;59873:24:0;::::1;;::::0;;;:13:::1;:24;::::0;;;;:58;59749:3;::::1;::::0;::::1;:::i;:::-;;;;59709:234;;;-1:-1:-1::0;;55728:1:0;56680:7;:22;-1:-1:-1;;;58160:1790:0:o;57188:25::-;;;;:::o;33854:256::-;33951:7;33987:23;34004:5;33987:16;:23::i;:::-;33979:5;:31;33971:87;;;;-1:-1:-1;;;33971:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;34076:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33854:256::o;57220:33::-;;;;;;:::o;57461:39::-;57496:4;57461:39;:::o;61370:181::-;42669:12;:10;:12::i;:::-;-1:-1:-1;;;;;42658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42658:23:0;;42650:68;;;;-1:-1:-1;;;42650:68:0;;;;;;;:::i;:::-;55772:1:::1;56368:7;;:19;;56360:63;;;;-1:-1:-1::0;;;56360:63:0::1;;;;;;;:::i;:::-;55772:1;56501:7;:18:::0;61434:9:::2;61449:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;61449:12:0::2;61469:21;61449:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61433:62;;;61514:4;61506:37;;;;-1:-1:-1::0;;;61506:37:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;55728:1:0::1;56680:7;:22:::0;61370:181::o;23509:185::-;23647:39;23664:4;23670:2;23674:7;23647:39;;;;;;;;;;;;:16;:39::i;44075:245::-;44193:41;44212:12;:10;:12::i;44193:41::-;44185:102;;;;-1:-1:-1;;;44185:102:0;;;;;;;:::i;:::-;44298:14;44304:7;44298:5;:14::i;:::-;44075:245;:::o;34376:233::-;34451:7;34487:30;:28;:30::i;:::-;34479:5;:38;34471:95;;;;-1:-1:-1;;;34471:95:0;;;;;;;:::i;:::-;34584:10;34595:5;34584:17;;;;;;-1:-1:-1;;;34584:17:0;;;;;;;;;;;;;;;;;34577:24;;34376:233;;;:::o;57956:96::-;42669:12;:10;:12::i;:::-;-1:-1:-1;;;;;42658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42658:23:0;;42650:68;;;;-1:-1:-1;;;42650:68:0;;;;;;;:::i;:::-;58028:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57956:96:::0;:::o;20344:239::-;20416:7;20452:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20452:16:0;20487:19;20479:73;;;;-1:-1:-1;;;20479:73:0;;;;;;;:::i;57507:53::-;57543:17;57507:53;:::o;57301:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20074:208::-;20146:7;-1:-1:-1;;;;;20174:19:0;;20166:74;;;;-1:-1:-1;;;20166:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20258:16:0;;;;;:9;:16;;;;;;;20074:208::o;43089:94::-;42669:12;:10;:12::i;:::-;-1:-1:-1;;;;;42658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42658:23:0;;42650:68;;;;-1:-1:-1;;;42650:68:0;;;;;;;:::i;:::-;43154:21:::1;43172:1;43154:9;:21::i;:::-;43089:94::o:0;58060:92::-;42669:12;:10;:12::i;:::-;-1:-1:-1;;;;;42658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42658:23:0;;42650:68;;;;-1:-1:-1;;;42650:68:0;;;;;;;:::i;:::-;58127:10:::1;:17:::0;58060:92::o;60867:182::-;42669:12;:10;:12::i;:::-;-1:-1:-1;;;;;42658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42658:23:0;;42650:68;;;;-1:-1:-1;;;42650:68:0;;;;;;;:::i;:::-;60926:13:::1;::::0;::::1;;60922:120;;;60956:13;:21:::0;;-1:-1:-1;;60956:21:0::1;::::0;;60922:120:::1;;;61010:13;:20:::0;;-1:-1:-1;;61010:20:0::1;61026:4;61010:20;::::0;;60867:182::o;42438:87::-;42511:6;;-1:-1:-1;;;;;42511:6:0;42438:87;:::o;20819:104::-;20875:13;20908:7;20901:14;;;;;:::i;22502:295::-;22617:12;:10;:12::i;:::-;-1:-1:-1;;;;;22605:24:0;:8;-1:-1:-1;;;;;22605:24:0;;;22597:62;;;;-1:-1:-1;;;22597:62:0;;;;;;;:::i;:::-;22717:8;22672:18;:32;22691:12;:10;:12::i;:::-;-1:-1:-1;;;;;22672:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22672:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;22672:53:0;;;;;;;;;;;22756:12;:10;:12::i;:::-;-1:-1:-1;;;;;22741:48:0;;22780:8;22741:48;;;;;;:::i;:::-;;;;;;;;22502:295;;:::o;57410:44::-;57452:2;57410:44;:::o;57329:24::-;;;;:::o;23765:328::-;23940:41;23959:12;:10;:12::i;:::-;23973:7;23940:18;:41::i;:::-;23932:103;;;;-1:-1:-1;;;23932:103:0;;;;;;;:::i;:::-;24046:39;24060:4;24066:2;24070:7;24079:5;24046:13;:39::i;:::-;23765:328;;;;:::o;60397:196::-;60524:13;60562:23;60577:7;60562:14;:23::i;57092:48::-;;;;;;;;;;;;;:::o;57260:34::-;;;;;;;;;:::o;22868:164::-;-1:-1:-1;;;;;22989:25:0;;;22965:4;22989:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22868:164::o;61166:196::-;42669:12;:10;:12::i;:::-;-1:-1:-1;;;;;42658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42658:23:0;;42650:68;;;;-1:-1:-1;;;42650:68:0;;;;;;;:::i;:::-;61233:15:::1;::::0;::::1;::::0;::::1;;;61229:126;;;61265:15;:23:::0;;-1:-1:-1;;61265:23:0::1;::::0;;61229:126:::1;;;61321:15;:22:::0;;-1:-1:-1;;61321:22:0::1;;;::::0;;61166:196::o;43338:192::-;42669:12;:10;:12::i;:::-;-1:-1:-1;;;;;42658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42658:23:0;;42650:68;;;;-1:-1:-1;;;42650:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43427:22:0;::::1;43419:73;;;;-1:-1:-1::0;;;43419:73:0::1;;;;;;;:::i;:::-;43503:19;43513:8;43503:9;:19::i;57360:43::-:0;57400:3;57360:43;:::o;33546:224::-;33648:4;-1:-1:-1;;;;;;33672:50:0;;-1:-1:-1;;;33672:50:0;;:90;;;33726:36;33750:11;33726:23;:36::i;25603:127::-;25668:4;25692:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25692:16:0;:30;;;25603:127::o;1357:98::-;1437:10;1357:98;:::o;29585:174::-;29660:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29660:29:0;-1:-1:-1;;;;;29660:29:0;;;;;;;;:24;;29714:23;29660:24;29714:14;:23::i;:::-;-1:-1:-1;;;;;29705:46:0;;;;;;;;;;;29585:174;;:::o;25897:348::-;25990:4;26015:16;26023:7;26015;:16::i;:::-;26007:73;;;;-1:-1:-1;;;26007:73:0;;;;;;;:::i;:::-;26091:13;26107:23;26122:7;26107:14;:23::i;:::-;26091:39;;26160:5;-1:-1:-1;;;;;26149:16:0;:7;-1:-1:-1;;;;;26149:16:0;;:51;;;;26193:7;-1:-1:-1;;;;;26169:31:0;:20;26181:7;26169:11;:20::i;:::-;-1:-1:-1;;;;;26169:31:0;;26149:51;:87;;;;26204:32;26221:5;26228:7;26204:16;:32::i;:::-;26141:96;25897:348;-1:-1:-1;;;;25897:348:0:o;28889:578::-;29048:4;-1:-1:-1;;;;;29021:31:0;:23;29036:7;29021:14;:23::i;:::-;-1:-1:-1;;;;;29021:31:0;;29013:85;;;;-1:-1:-1;;;29013:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29117:16:0;;29109:65;;;;-1:-1:-1;;;29109:65:0;;;;;;;:::i;:::-;29187:39;29208:4;29214:2;29218:7;29187:20;:39::i;:::-;29291:29;29308:1;29312:7;29291:8;:29::i;:::-;-1:-1:-1;;;;;29333:15:0;;;;;;:9;:15;;;;;:20;;29352:1;;29333:15;:20;;29352:1;;29333:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29364:13:0;;;;;;:9;:13;;;;;:18;;29381:1;;29364:13;:18;;29381:1;;29364:18;:::i;:::-;;;;-1:-1:-1;;29393:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29393:21:0;-1:-1:-1;;;;;29393:21:0;;;;;;;;;29432:27;;29393:16;;29432:27;;;;;;;28889:578;;;:::o;48368:98::-;48426:7;48453:5;48457:1;48453;:5;:::i;:::-;48446:12;48368:98;-1:-1:-1;;;48368:98:0:o;53276:830::-;53401:4;53441;53401;53458:525;53482:5;:12;53478:1;:16;53458:525;;;53516:20;53539:5;53545:1;53539:8;;;;;;-1:-1:-1;;;53539:8:0;;;;;;;;;;;;;;;53516:31;;53584:12;53568;:28;53564:408;;53738:12;53752;53721:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53711:55;;;;;;53696:70;;53564:408;;;53928:12;53942;53911:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53901:55;;;;;;53886:70;;53564:408;-1:-1:-1;53496:3:0;;;;:::i;:::-;;;;53458:525;;;-1:-1:-1;54078:20:0;;;;53276:830;-1:-1:-1;;;53276:830:0:o;45188:127::-;45277:19;;45295:1;45277:19;;;45188:127::o;45066:114::-;45158:14;;45066:114::o;26587:110::-;26663:26;26673:2;26677:7;26663:26;;;;;;;;;;;;:9;:26::i;60251:138::-;60361:20;60373:7;60361:11;:20::i;43538:173::-;43613:6;;;-1:-1:-1;;;;;43630:17:0;;;-1:-1:-1;;;;;;43630:17:0;;;;;;;43663:40;;43613:6;;;43630:17;43613:6;;43663:40;;43594:16;;43663:40;43538: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;;;;-1:-1:-1;;;25171:111:0;;;;;;;:::i;40022:679::-;40095:13;40129:16;40137:7;40129;:16::i;:::-;40121:78;;;;-1:-1:-1;;;40121:78:0;;;;;;;:::i;:::-;40212:23;40238:19;;;:10;:19;;;;;40212:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40268:18;40289:10;:8;:10::i;:::-;40268:31;;40381:4;40375:18;40397:1;40375:23;40371:72;;;-1:-1:-1;40422:9:0;-1:-1:-1;40415:16:0;;40371:72;40547:23;;:27;40543:108;;40622:4;40628:9;40605:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40591:48;;;;;;40543:108;40670:23;40685:7;40670:14;:23::i;19705:305::-;19807:4;-1:-1:-1;;;;;;19844:40:0;;-1:-1:-1;;;19844:40:0;;:105;;-1:-1:-1;;;;;;;19901:48:0;;-1:-1:-1;;;19901:48:0;19844:105;:158;;;;19966:36;19990:11;19966:23;:36::i;60028:215::-;60190:45;60217:4;60223:2;60227:7;60190:26;:45::i;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;;;;-1:-1:-1;;;27083:154:0;;;;;;;:::i;41303:206::-;41372:20;41384:7;41372:11;:20::i;:::-;41415:19;;;;:10;:19;;;;;41409:33;;;;;:::i;:::-;:38;;-1:-1:-1;41405:97:0;;41471:19;;;;:10;:19;;;;;41464:26;;;:::i;30324:803::-;30479:4;30500:15;:2;-1:-1:-1;;;;;30500:13:0;;:15::i;:::-;30496:624;;;30552:2;-1:-1:-1;;;;;30536:36:0;;30573:12;:10;:12::i;:::-;30587:4;30593:7;30602:5;30536:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30536:72:0;;;;;;;;-1:-1:-1;;30536:72:0;;;;;;;;;;;;:::i;:::-;;;30532:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30782:13:0;;30778:272;;30825:60;;-1:-1:-1;;;30825:60:0;;;;;;;:::i;30778:272::-;31000:6;30994:13;30985:6;30981:2;30977:15;30970:38;30532:533;-1:-1:-1;;;;;;30659:55:0;-1:-1:-1;;;30659:55:0;;-1:-1:-1;30652:62:0;;30496:624;-1:-1:-1;31104:4:0;30324:803;;;;;;:::o;57848:100::-;57900:13;57933:7;57926:14;;;;;:::i;20994:334::-;21067:13;21101:16;21109:7;21101;:16::i;:::-;21093:76;;;;-1:-1:-1;;;21093:76:0;;;;;;;:::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;:::-;;;;;;;;;;;;;21227:93;20994:334;-1:-1:-1;;;20994:334:0:o;18312:157::-;-1:-1:-1;;;;;;18421:40:0;;-1:-1:-1;;;18421:40:0;18312:157;;;:::o;35222:589::-;35366:45;35393:4;35399:2;35403:7;35366:26;:45::i;:::-;-1:-1:-1;;;;;35428:18:0;;35424:187;;35463:40;35495:7;35463:31;:40::i;:::-;35424:187;;;35533:2;-1:-1:-1;;;;;35525:10:0;:4;-1:-1:-1;;;;;35525:10:0;;35521:90;;35552:47;35585:4;35591:7;35552:32;:47::i;:::-;-1:-1:-1;;;;;35625:16:0;;35621:183;;35658:45;35695:7;35658:36;:45::i;:::-;35621:183;;;35731:4;-1:-1:-1;;;;;35725:10:0;:2;-1:-1:-1;;;;;35725:10:0;;35721:83;;35752:40;35780:2;35784:7;35752:27;:40::i;27581:382::-;-1:-1:-1;;;;;27661:16:0;;27653:61;;;;-1:-1:-1;;;27653:61:0;;;;;;;:::i;:::-;27734:16;27742:7;27734;:16::i;:::-;27733:17;27725:58;;;;-1:-1:-1;;;27725:58:0;;;;;;;:::i;:::-;27796:45;27825:1;27829:2;27833:7;27796:20;:45::i;:::-;-1:-1:-1;;;;;27854:13:0;;;;;;:9;:13;;;;;:18;;27871:1;;27854:13;:18;;27871:1;;27854:18;:::i;:::-;;;;-1:-1:-1;;27883:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;27883:21:0;-1:-1:-1;;;;;27883:21:0;;;;;;;;27922:33;;27883:16;;;27922:33;;27883:16;;27922:33;27581:382;;:::o;28192:360::-;28252:13;28268:23;28283:7;28268:14;:23::i;:::-;28252:39;;28304:48;28325:5;28340:1;28344:7;28304:20;:48::i;:::-;28393:29;28410:1;28414:7;28393:8;:29::i;:::-;-1:-1:-1;;;;;28435:16:0;;;;;;:9;:16;;;;;:21;;28455:1;;28435:16;:21;;28455:1;;28435:21;:::i;:::-;;;;-1:-1:-1;;28474:16:0;;;;:7;:16;;;;;;28467:23;;-1:-1:-1;;;;;;28467:23:0;;;28508:36;28482:7;;28474:16;-1:-1:-1;;;;;28508:36:0;;;;;28474:16;;28508:36;28192:360;;:::o;10484:387::-;10807:20;10855:8;;;10484:387::o;1803:723::-;1859:13;2080:10;2076:53;;-1:-1:-1;2107:10:0;;;;;;;;;;;;-1:-1:-1;;;2107:10:0;;;;;;2076:53;2154:5;2139:12;2195:78;2202:9;;2195:78;;2228:8;;;;:::i;:::-;;-1:-1:-1;2251:10:0;;-1:-1:-1;2259:2:0;2251:10;;:::i;:::-;;;2195:78;;;2283:19;2315:6;2305:17;;;;;;-1:-1:-1;;;2305:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2305:17:0;;2283:39;;2333:154;2340:10;;2333:154;;2367:11;2377:1;2367:11;;:::i;:::-;;-1:-1:-1;2436:10:0;2444:2;2436:5;:10;:::i;:::-;2423:24;;:2;:24;:::i;:::-;2410:39;;2393:6;2400;2393:14;;;;;;-1:-1:-1;;;2393:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2393:56:0;;;;;;;;-1:-1:-1;2464:11:0;2473:2;2464:11;;:::i;:::-;;;2333:154;;36534:164;36638:10;:17;;36611:24;;;;:15;:24;;;;;:44;;;36666:24;;;;;;;;;;;;36534:164::o;37325:988::-;37591:22;37641:1;37616:22;37633:4;37616:16;:22::i;:::-;:26;;;;:::i;:::-;37653:18;37674:26;;;:17;:26;;;;;;37591:51;;-1:-1:-1;37807:28:0;;;37803:328;;-1:-1:-1;;;;;37874:18:0;;37852:19;37874:18;;;:12;:18;;;;;;;;:34;;;;;;;;;37925:30;;;;;;:44;;;38042:30;;:17;:30;;;;;:43;;;37803:328;-1:-1:-1;38227:26:0;;;;:17;:26;;;;;;;;38220:33;;;-1:-1:-1;;;;;38271:18:0;;;;;:12;:18;;;;;:34;;;;;;;38264:41;37325:988::o;38608:1079::-;38886:10;:17;38861:22;;38886:21;;38906:1;;38886:21;:::i;:::-;38918:18;38939:24;;;:15;:24;;;;;;39312:10;:26;;38861:46;;-1:-1:-1;38939:24:0;;38861:46;;39312:26;;;;-1:-1:-1;;;39312:26:0;;;;;;;;;;;;;;;;;39290:48;;39376:11;39351:10;39362;39351:22;;;;;;-1:-1:-1;;;39351:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;39456:28;;;:15;:28;;;;;;;:41;;;39628:24;;;;;39621:31;39663:10;:16;;;;;-1:-1:-1;;;39663:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;38608:1079;;;;:::o;36112:221::-;36197:14;36214:20;36231:2;36214:16;:20::i;:::-;-1:-1:-1;;;;;36245:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36290:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36112:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:810::-;;;;;3168:2;3156:9;3147:7;3143:23;3139:32;3136:2;;;3189:6;3181;3174:22;3136:2;3217:31;3238:9;3217:31;:::i;:::-;3207:41;;3295:2;3284:9;3280:18;3267:32;3257:42;;3350:2;3339:9;3335:18;3322:32;3373:18;3414:2;3406:6;3403:14;3400:2;;;3435:6;3427;3420:22;3400:2;3478:6;3467:9;3463:22;3453:32;;3523:7;3516:4;3512:2;3508:13;3504:27;3494:2;;3550:6;3542;3535:22;3494:2;3595;3582:16;3621:2;3613:6;3610:14;3607:2;;;3642:6;3634;3627:22;3607:2;3701:7;3696:2;3690;3682:6;3678:15;3674:2;3670:24;3666:33;3663:46;3660:2;;;3727:6;3719;3712:22;3660:2;3126:671;;;;-1:-1:-1;;3763:2:1;3755:11;;-1:-1:-1;;;3126:671:1:o;3802:190::-;;3914:2;3902:9;3893:7;3889:23;3885:32;3882:2;;;3935:6;3927;3920:22;3882:2;-1:-1:-1;3963:23:1;;3872:120;-1:-1:-1;3872:120:1:o;3997:257::-;;4108:2;4096:9;4087:7;4083:23;4079:32;4076:2;;;4129:6;4121;4114:22;4076:2;4173:9;4160:23;4192:32;4218:5;4192:32;:::i;4259:261::-;;4381:2;4369:9;4360:7;4356:23;4352:32;4349:2;;;4402:6;4394;4387:22;4349:2;4439:9;4433:16;4458:32;4484:5;4458:32;:::i;4525:482::-;;4647:2;4635:9;4626:7;4622:23;4618:32;4615:2;;;4668:6;4660;4653:22;4615:2;4713:9;4700:23;4746:18;4738:6;4735:30;4732:2;;;4783:6;4775;4768:22;4732:2;4811:22;;4864:4;4856:13;;4852:27;-1:-1:-1;4842:2:1;;4898:6;4890;4883:22;4842:2;4926:75;4993:7;4988:2;4975:16;4970:2;4966;4962:11;4926:75;:::i;5207:259::-;;5288:5;5282:12;5315:6;5310:3;5303:19;5331:63;5387:6;5380:4;5375:3;5371:14;5364:4;5357:5;5353:16;5331:63;:::i;:::-;5448:2;5427:15;-1:-1:-1;;5423:29:1;5414:39;;;;5455:4;5410:50;;5258:208;-1:-1:-1;;5258:208:1:o;5471:229::-;5620:2;5616:15;;;;-1:-1:-1;;5612:53:1;5600:66;;5691:2;5682:12;;5590:110::o;5705:247::-;5862:19;;;5906:2;5897:12;;5890:28;5943:2;5934:12;;5852:100::o;5957:470::-;;6174:6;6168:13;6190:53;6236:6;6231:3;6224:4;6216:6;6212:17;6190:53;:::i;:::-;6306:13;;6265:16;;;;6328:57;6306:13;6265:16;6362:4;6350:17;;6328:57;:::i;:::-;6401:20;;6144:283;-1:-1:-1;;;;6144:283:1:o;6432:205::-;6632:3;6623:14::o;6642:203::-;-1:-1:-1;;;;;6806:32:1;;;;6788:51;;6776:2;6761:18;;6743:102::o;6850:490::-;-1:-1:-1;;;;;7119:15:1;;;7101:34;;7171:15;;7166:2;7151:18;;7144:43;7218:2;7203:18;;7196:34;;;7266:3;7261:2;7246:18;;7239:31;;;6850:490;;7287:47;;7314:19;;7306:6;7287:47;:::i;:::-;7279:55;7053:287;-1:-1:-1;;;;;;7053:287:1:o;7345:187::-;7510:14;;7503:22;7485:41;;7473:2;7458:18;;7440:92::o;7537:177::-;7683:25;;;7671:2;7656:18;;7638:76::o;7719:221::-;;7868:2;7857:9;7850:21;7888:46;7930:2;7919:9;7915:18;7907:6;7888:46;:::i;7945:346::-;8147:2;8129:21;;;8186:2;8166:18;;;8159:30;-1:-1:-1;;;8220:2:1;8205:18;;8198:52;8282:2;8267:18;;8119:172::o;8296:407::-;8498:2;8480:21;;;8537:2;8517:18;;;8510:30;8576:34;8571:2;8556:18;;8549:62;-1:-1:-1;;;8642:2:1;8627:18;;8620:41;8693:3;8678:19;;8470:233::o;8708:414::-;8910:2;8892:21;;;8949:2;8929:18;;;8922:30;8988:34;8983:2;8968:18;;8961:62;-1:-1:-1;;;9054:2:1;9039:18;;9032:48;9112:3;9097:19;;8882:240::o;9127:402::-;9329:2;9311:21;;;9368:2;9348:18;;;9341:30;9407:34;9402:2;9387:18;;9380:62;-1:-1:-1;;;9473:2:1;9458:18;;9451:36;9519:3;9504:19;;9301:228::o;9534:352::-;9736:2;9718:21;;;9775:2;9755:18;;;9748:30;9814;9809:2;9794:18;;9787:58;9877:2;9862:18;;9708:178::o;9891:398::-;10093:2;10075:21;;;10132:2;10112:18;;;10105:30;10171:34;10166:2;10151:18;;10144:62;-1:-1:-1;;;10237:2:1;10222:18;;10215:32;10279:3;10264:19;;10065:224::o;10294:352::-;10496:2;10478:21;;;10535:2;10515:18;;;10508:30;10574;10569:2;10554:18;;10547:58;10637:2;10622:18;;10468:178::o;10651:344::-;10853:2;10835:21;;;10892:2;10872:18;;;10865:30;-1:-1:-1;;;10926:2:1;10911:18;;10904:50;10986:2;10971:18;;10825:170::o;11000:400::-;11202:2;11184:21;;;11241:2;11221:18;;;11214:30;11280:34;11275:2;11260:18;;11253:62;-1:-1:-1;;;11346:2:1;11331:18;;11324:34;11390:3;11375:19;;11174:226::o;11405:349::-;11607:2;11589:21;;;11646:2;11626:18;;;11619:30;11685:27;11680:2;11665:18;;11658:55;11745:2;11730:18;;11579:175::o;11759:408::-;11961:2;11943:21;;;12000:2;11980:18;;;11973:30;12039:34;12034:2;12019:18;;12012:62;-1:-1:-1;;;12105:2:1;12090:18;;12083:42;12157:3;12142:19;;11933:234::o;12172:420::-;12374:2;12356:21;;;12413:2;12393:18;;;12386:30;12452:34;12447:2;12432:18;;12425:62;12523:26;12518:2;12503:18;;12496:54;12582:3;12567:19;;12346:246::o;12597:406::-;12799:2;12781:21;;;12838:2;12818:18;;;12811:30;12877:34;12872:2;12857:18;;12850:62;-1:-1:-1;;;12943:2:1;12928:18;;12921:40;12993:3;12978:19;;12771:232::o;13008:405::-;13210:2;13192:21;;;13249:2;13229:18;;;13222:30;13288:34;13283:2;13268:18;;13261:62;-1:-1:-1;;;13354:2:1;13339:18;;13332:39;13403:3;13388:19;;13182:231::o;13418:355::-;13620:2;13602:21;;;13659:2;13639:18;;;13632:30;13698:33;13693:2;13678:18;;13671:61;13764:2;13749:18;;13592:181::o;13778:397::-;13980:2;13962:21;;;14019:2;13999:18;;;13992:30;14058:34;14053:2;14038:18;;14031:62;-1:-1:-1;;;14124:2:1;14109:18;;14102:31;14165:3;14150:19;;13952:223::o;14180:356::-;14382:2;14364:21;;;14401:18;;;14394:30;14460:34;14455:2;14440:18;;14433:62;14527:2;14512:18;;14354:182::o;14541:413::-;14743:2;14725:21;;;14782:2;14762:18;;;14755:30;14821:34;14816:2;14801:18;;14794:62;-1:-1:-1;;;14887:2:1;14872:18;;14865:47;14944:3;14929:19;;14715:239::o;14959:408::-;15161:2;15143:21;;;15200:2;15180:18;;;15173:30;15239:34;15234:2;15219:18;;15212:62;-1:-1:-1;;;15305:2:1;15290:18;;15283:42;15357:3;15342:19;;15133:234::o;15372:356::-;15574:2;15556:21;;;15593:18;;;15586:30;15652:34;15647:2;15632:18;;15625:62;15719:2;15704:18;;15546:182::o;15733:405::-;15935:2;15917:21;;;15974:2;15954:18;;;15947:30;16013:34;16008:2;15993:18;;15986:62;-1:-1:-1;;;16079:2:1;16064:18;;16057:39;16128:3;16113:19;;15907:231::o;16143:411::-;16345:2;16327:21;;;16384:2;16364:18;;;16357:30;16423:34;16418:2;16403:18;;16396:62;-1:-1:-1;;;16489:2:1;16474:18;;16467:45;16544:3;16529:19;;16317:237::o;16559:353::-;16761:2;16743:21;;;16800:2;16780:18;;;16773:30;16839:31;16834:2;16819:18;;16812:59;16903:2;16888:18;;16733:179::o;16917:397::-;17119:2;17101:21;;;17158:2;17138:18;;;17131:30;17197:34;17192:2;17177:18;;17170:62;-1:-1:-1;;;17263:2:1;17248:18;;17241:31;17304:3;17289:19;;17091:223::o;17319:347::-;17521:2;17503:21;;;17560:2;17540:18;;;17533:30;17599:25;17594:2;17579:18;;17572:53;17657:2;17642:18;;17493:173::o;17671:413::-;17873:2;17855:21;;;17912:2;17892:18;;;17885:30;17951:34;17946:2;17931:18;;17924:62;-1:-1:-1;;;18017:2:1;18002:18;;17995:47;18074:3;18059:19;;17845:239::o;18089:408::-;18291:2;18273:21;;;18330:2;18310:18;;;18303:30;18369:34;18364:2;18349:18;;18342:62;-1:-1:-1;;;18435:2:1;18420:18;;18413:42;18487:3;18472:19;;18263:234::o;18502:337::-;18704:2;18686:21;;;18743:2;18723:18;;;18716:30;-1:-1:-1;;;18777:2:1;18762:18;;18755:43;18830:2;18815:18;;18676:163::o;18844:355::-;19046:2;19028:21;;;19085:2;19065:18;;;19058:30;19124:33;19119:2;19104:18;;19097:61;19190:2;19175:18;;19018:181::o;19204:412::-;19406:2;19388:21;;;19445:2;19425:18;;;19418:30;19484:34;19479:2;19464:18;;19457:62;-1:-1:-1;;;19550:2:1;19535:18;;19528:46;19606:3;19591:19;;19378:238::o;19803:128::-;;19874:1;19870:6;19867:1;19864:13;19861:2;;;19880:18;;:::i;:::-;-1:-1:-1;19916:9:1;;19851:80::o;19936:120::-;;20002:1;19992:2;;20007:18;;:::i;:::-;-1:-1:-1;20041:9:1;;19982:74::o;20061:168::-;;20167:1;20163;20159:6;20155:14;20152:1;20149:21;20144:1;20137:9;20130:17;20126:45;20123:2;;;20174:18;;:::i;:::-;-1:-1:-1;20214:9:1;;20113:116::o;20234:125::-;;20302:1;20299;20296:8;20293:2;;;20307:18;;:::i;:::-;-1:-1:-1;20344:9:1;;20283:76::o;20364:258::-;20436:1;20446:113;20460:6;20457:1;20454:13;20446:113;;;20536:11;;;20530:18;20517:11;;;20510:39;20482:2;20475:10;20446:113;;;20577:6;20574:1;20571:13;20568:2;;;-1:-1:-1;;20612:1:1;20594:16;;20587:27;20417:205::o;20627:380::-;20712:1;20702:12;;20759:1;20749:12;;;20770:2;;20824:4;20816:6;20812:17;20802:27;;20770:2;20877;20869:6;20866:14;20846:18;20843:38;20840:2;;;20923:10;20918:3;20914:20;20911:1;20904:31;20958:4;20955:1;20948:15;20986:4;20983:1;20976:15;20840:2;;20682:325;;;:::o;21012:135::-;;-1:-1:-1;;21072:17:1;;21069:2;;;21092:18;;:::i;:::-;-1:-1:-1;21139:1:1;21128:13;;21059:88::o;21152:112::-;;21210:1;21200:2;;21215:18;;:::i;:::-;-1:-1:-1;21249:9:1;;21190:74::o;21269:127::-;21330:10;21325:3;21321:20;21318:1;21311:31;21361:4;21358:1;21351:15;21385:4;21382:1;21375:15;21401:127;21462:10;21457:3;21453:20;21450:1;21443:31;21493:4;21490:1;21483:15;21517:4;21514:1;21507:15;21533:127;21594:10;21589:3;21585:20;21582:1;21575:31;21625:4;21622:1;21615:15;21649:4;21646:1;21639:15;21665:133;-1:-1:-1;;;;;;21741:32:1;;21731:43;;21721:2;;21788:1;21785;21778:12

Swarm Source

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