ETH Price: $2,405.22 (+2.82%)

Token

Vacation Palette NFT (VPNFT)
 

Overview

Max Total Supply

300 VPNFT

Holders

163

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 VPNFT
0x7ACE0975254b6DbABd0d79438AF80b2A736E1A36
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:
VacationPaletteNft

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 18 : VacationPaletteNft.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./ERC721Pausable.sol";
contract VacationPaletteNft is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    uint256 public constant MAX_ELEMENTS = 300;
    address public constant creatorAddress = 0x67c7d48DA5FF0Ca165c26944a5d01DF1D6F62c75;
    string public baseTokenURI;
    string public codeURI;
    mapping (uint8 => address) public minters;
    mapping (uint8 => uint16) public seed;
    mapping (address => bool) public didMint;

    event CreateNFT(uint256 indexed id);
    constructor(
        string memory baseURI,
        string memory _codeURI
    ) ERC721("Vacation Palette NFT", "VPNFT") {
        setBaseURI(baseURI);
        setCodeURI(_codeURI);
        pause(true);
    }

    modifier saleIsOpen {
        require(_totalSupply() <= MAX_ELEMENTS, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }
    function mint(uint16 _seed) public payable saleIsOpen {
        require(_seed <= 10000, "_seed > 10k");
        uint256 total = _totalSupply();
        require(total + 1 <= MAX_ELEMENTS, "Max limit");
        bool alreadyMinted = didMint[_msgSender()];
        require(!alreadyMinted || _msgSender() == owner(), "address already minted");

        _mintAnElement(_msgSender(), _seed);
    }
    function _mintAnElement(address _to, uint16 _seed) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreateNFT(id);
        minters[uint8(id)] = _to;
        seed[uint8(id)] = _seed;
        didMint[_to] = true;
    }

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

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

    function getCodeURI() public view returns (string memory) {
        return codeURI;
    }

    function setCodeURI(string memory _codeURI) public onlyOwner {
        codeURI = _codeURI;
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function getDataById(uint _id) public view returns (address, uint16) {
        require(_id <= _totalSupply(), 'invalid id');
        address _minter = minters[uint8(_id)];
        uint16 _seed = seed[uint8(_id)];
        return (_minter, _seed);
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(creatorAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

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

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

    receive() external payable {
        revert('Not allowed');
    }

}

File 2 of 18 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

File 3 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 6 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 18 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 9 of 18 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 10 of 18 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 18 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 12 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 13 of 18 : IERC165.sol
// 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);
}

File 14 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 15 of 18 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../utils/Context.sol";

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

File 16 of 18 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.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;
        }
    }
}

File 17 of 18 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 18 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"_codeURI","type":"string"}],"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":"uint256","name":"id","type":"uint256"}],"name":"CreateNFT","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_ELEMENTS","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":"baseTokenURI","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":"codeURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"didMint","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":[],"name":"getCodeURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getDataById","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"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":[{"internalType":"uint16","name":"_seed","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"seed","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_codeURI","type":"string"}],"name":"setCodeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620032ef380380620032ef83398101604081905262000034916200052f565b604080518082018252601481527f5661636174696f6e2050616c65747465204e4654000000000000000000000000602080830191825283518085019094526005845264159413919560da1b9084015281519192916200009691600091620003d2565b508051620000ac906001906020840190620003d2565b505050620000c9620000c36200010060201b60201c565b62000104565b600a805460ff60a01b19169055620000e18262000156565b620000ec81620001be565b620000f860016200021e565b5050620005ec565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a55760405162461bcd60e51b81526020600482018190526024820152600080516020620032cf83398151915260448201526064015b60405180910390fd5b8051620001ba90600c906020840190620003d2565b5050565b600a546001600160a01b03163314620002095760405162461bcd60e51b81526020600482018190526024820152600080516020620032cf83398151915260448201526064016200019c565b8051620001ba90600d906020840190620003d2565b600a546001600160a01b03163314620002695760405162461bcd60e51b81526020600482018190526024820152600080516020620032cf83398151915260448201526064016200019c565b6001811515141562000282576200027f6200028c565b50565b6200027f6200033b565b620002a0600a54600160a01b900460ff1690565b15620002e25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016200019c565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200031e3390565b6040516001600160a01b03909116815260200160405180910390a1565b6200034f600a54600160a01b900460ff1690565b6200039d5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016200019c565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336200031e565b828054620003e09062000599565b90600052602060002090601f0160209004810192826200040457600085556200044f565b82601f106200041f57805160ff19168380011785556200044f565b828001600101855582156200044f579182015b828111156200044f57825182559160200191906001019062000432565b506200045d92915062000461565b5090565b5b808211156200045d576000815560010162000462565b600082601f8301126200048a57600080fd5b81516001600160401b0380821115620004a757620004a7620005d6565b604051601f8301601f19908116603f01168101908282118183101715620004d257620004d2620005d6565b81604052838152602092508683858801011115620004ef57600080fd5b600091505b83821015620005135785820183015181830184015290820190620004f4565b83821115620005255760008385830101525b9695505050505050565b600080604083850312156200054357600080fd5b82516001600160401b03808211156200055b57600080fd5b620005698683870162000478565b935060208501519150808211156200058057600080fd5b506200058f8582860162000478565b9150509250929050565b600181811c90821680620005ae57607f821691505b60208210811415620005d057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612cd380620005fc6000396000f3fe60806040526004361061026e5760003560e01c80636352211e11610153578063b88d4fde116100cb578063e927fc5c1161007f578063f2722a9f11610064578063f2722a9f14610733578063f2fde38b14610775578063f6fcd1da1461079557600080fd5b8063e927fc5c146106c2578063e985e9c5146106ea57600080fd5b8063cc78792e116100b0578063cc78792e14610654578063d547cfb714610669578063e14c54c91461067e57600080fd5b8063b88d4fde14610614578063c87b56dd1461063457600080fd5b80638da5cb5b1161012257806395d89b411161010757806395d89b41146105ca578063a22cb465146105df578063b454b8f7146105ff57600080fd5b80638da5cb5b1461058c5780638dcd6431146105aa57600080fd5b80636352211e1461052f57806370a082311461054f578063715018a61461056f578063853828b61461058457600080fd5b80633241e917116101e6578063438b6300116101b557806355f804b31161019a57806355f804b3146104db57806359a7715a146104fb5780635c975abb1461051057600080fd5b8063438b63001461048e5780634f6ccce7146104bb57600080fd5b80633241e917146104085780633502a7161461043857806342842e0e1461044e57806342966c681461046e57600080fd5b8063095ea7b31161023d57806323b872dd1161022257806323b872dd146103b557806323cf0a22146103d55780632f745c59146103e857600080fd5b8063095ea7b31461037657806318160ddd1461039657600080fd5b806301ffc9a7146102c557806302329a29146102fa57806306fdde031461031c578063081812fc1461033e57600080fd5b366102c05760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f77656400000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600080fd5b3480156102d157600080fd5b506102e56102e036600461296f565b6107cb565b60405190151581526020015b60405180910390f35b34801561030657600080fd5b5061031a610315366004612954565b6107dc565b005b34801561032857600080fd5b50610331610854565b6040516102f19190612b2d565b34801561034a57600080fd5b5061035e610359366004612a16565b6108e6565b6040516001600160a01b0390911681526020016102f1565b34801561038257600080fd5b5061031a61039136600461292a565b61097b565b3480156103a257600080fd5b506008545b6040519081526020016102f1565b3480156103c157600080fd5b5061031a6103d0366004612848565b610aad565b61031a6103e33660046129f2565b610b35565b3480156103f457600080fd5b506103a761040336600461292a565b610d38565b34801561041457600080fd5b506102e56104233660046127fa565b60106020526000908152604090205460ff1681565b34801561044457600080fd5b506103a761012c81565b34801561045a57600080fd5b5061031a610469366004612848565b610de0565b34801561047a57600080fd5b5061031a610489366004612a16565b610dfb565b34801561049a57600080fd5b506104ae6104a93660046127fa565b610e7f565b6040516102f19190612ae9565b3480156104c757600080fd5b506103a76104d6366004612a16565b610f21565b3480156104e757600080fd5b5061031a6104f63660046129a9565b610fc5565b34801561050757600080fd5b506103a7611036565b34801561051c57600080fd5b50600a54600160a01b900460ff166102e5565b34801561053b57600080fd5b5061035e61054a366004612a16565b611045565b34801561055b57600080fd5b506103a761056a3660046127fa565b6110d0565b34801561057b57600080fd5b5061031a61116a565b61031a6111d0565b34801561059857600080fd5b50600a546001600160a01b031661035e565b3480156105b657600080fd5b5061031a6105c53660046129a9565b611253565b3480156105d657600080fd5b506103316112c0565b3480156105eb57600080fd5b5061031a6105fa366004612900565b6112cf565b34801561060b57600080fd5b50610331611394565b34801561062057600080fd5b5061031a61062f366004612884565b611422565b34801561064057600080fd5b5061033161064f366004612a16565b6114b0565b34801561066057600080fd5b50610331611599565b34801561067557600080fd5b506103316115a8565b34801561068a57600080fd5b506106af610699366004612a2f565b600f6020526000908152604090205461ffff1681565b60405161ffff90911681526020016102f1565b3480156106ce57600080fd5b5061035e7367c7d48da5ff0ca165c26944a5d01df1d6f62c7581565b3480156106f657600080fd5b506102e5610705366004612815565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073f57600080fd5b5061075361074e366004612a16565b6115b5565b604080516001600160a01b03909316835261ffff9091166020830152016102f1565b34801561078157600080fd5b5061031a6107903660046127fa565b611644565b3480156107a157600080fd5b5061035e6107b0366004612a2f565b600e602052600090815260409020546001600160a01b031681565b60006107d682611723565b92915050565b600a546001600160a01b031633146108365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b6001811515141561084c57610849611761565b50565b610849611813565b60606000805461086390612baf565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90612baf565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016102b7565b506000908152600460205260409020546001600160a01b031690565b600061098682611045565b9050806001600160a01b0316836001600160a01b03161415610a105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016102b7565b336001600160a01b0382161480610a2c5750610a2c8133610705565b610a9e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016102b7565b610aa883836118a0565b505050565b610ab8335b8261190e565b610b2a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016102b7565b610aa8838383611a05565b61012c610b40611bdd565b1115610b8e5760405162461bcd60e51b815260206004820152600860248201527f53616c6520656e6400000000000000000000000000000000000000000000000060448201526064016102b7565b600a546001600160a01b03163314610bfa57600a54600160a01b900460ff1615610bfa5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016102b7565b6127108161ffff161115610c505760405162461bcd60e51b815260206004820152600b60248201527f5f73656564203e2031306b00000000000000000000000000000000000000000060448201526064016102b7565b6000610c5a611bdd565b905061012c610c6a826001612b40565b1115610cb85760405162461bcd60e51b815260206004820152600960248201527f4d6178206c696d6974000000000000000000000000000000000000000000000060448201526064016102b7565b3360009081526010602052604090205460ff16801580610ce25750600a546001600160a01b031633145b610d2e5760405162461bcd60e51b815260206004820152601660248201527f6164647265737320616c7265616479206d696e7465640000000000000000000060448201526064016102b7565b610aa83384611be8565b6000610d43836110d0565b8210610db75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016102b7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aa883838360405180602001604052806000815250611422565b610e0433610ab2565b610e765760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016102b7565b61084981611c9b565b60606000610e8c836110d0565b905060008167ffffffffffffffff811115610ea957610ea9612c71565b604051908082528060200260200182016040528015610ed2578160200160208202803683370190505b50905060005b82811015610f1957610eea8582610d38565b828281518110610efc57610efc612c5b565b602090810291909101015280610f1181612bea565b915050610ed8565b509392505050565b6000610f2c60085490565b8210610fa05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016102b7565b60088281548110610fb357610fb3612c5b565b90600052602060002001549050919050565b600a546001600160a01b0316331461101f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b805161103290600c9060208401906126bf565b5050565b6000611040611bdd565b905090565b6000818152600260205260408120546001600160a01b0316806107d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016102b7565b60006001600160a01b03821661114e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016102b7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b6111ce6000611d42565b565b600a546001600160a01b0316331461122a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b478061123557600080fd5b6108497367c7d48da5ff0ca165c26944a5d01df1d6f62c7547611d94565b600a546001600160a01b031633146112ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b805161103290600d9060208401906126bf565b60606001805461086390612baf565b6001600160a01b0382163314156113285760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016102b7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d80546113a190612baf565b80601f01602080910402602001604051908101604052809291908181526020018280546113cd90612baf565b801561141a5780601f106113ef5761010080835404028352916020019161141a565b820191906000526020600020905b8154815290600101906020018083116113fd57829003601f168201915b505050505081565b61142c338361190e565b61149e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016102b7565b6114aa84848484611e37565b50505050565b6000818152600260205260409020546060906001600160a01b031661153d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016102b7565b6000611547611eb5565b905060008151116115675760405180602001604052806000815250611592565b8061157184611ec4565b604051602001611582929190612a7e565b6040516020818303038152906040525b9392505050565b6060600d805461086390612baf565b600c80546113a190612baf565b6000806115c0611bdd565b83111561160f5760405162461bcd60e51b815260206004820152600a60248201527f696e76616c69642069640000000000000000000000000000000000000000000060448201526064016102b7565b505060ff166000908152600e6020908152604080832054600f909252909120546001600160a01b039091169161ffff90911690565b600a546001600160a01b0316331461169e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b6001600160a01b03811661171a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102b7565b61084981611d42565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806107d657506107d682611ff6565b600a54600160a01b900460ff16156117bb5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016102b7565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117f63390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff1661186c5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016102b7565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336117f6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118d582611045565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016102b7565b600061199283611045565b9050806001600160a01b0316846001600160a01b031614806119cd5750836001600160a01b03166119c2846108e6565b6001600160a01b0316145b806119fd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a1882611045565b6001600160a01b031614611a945760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016102b7565b6001600160a01b038216611b0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016102b7565b611b1a838383612091565b611b256000826118a0565b6001600160a01b0383166000908152600360205260408120805460019290611b4e908490612b6c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7c908490612b40565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611040600b5490565b6000611bf2611bdd565b9050611c02600b80546001019055565b611c0c838261209c565b60405181907ffc8f2896a026fe67cf7750939518a86f80d8740522b220a53c353e741f706fd590600090a260ff166000908152600e6020908152604080832080546001600160a01b0319166001600160a01b03969096169586179055600f8252808320805461ffff191661ffff959095169490941790935592815260109092529020805460ff19166001179055565b6000611ca682611045565b9050611cb481600084612091565b611cbf6000836118a0565b6001600160a01b0381166000908152600360205260408120805460019290611ce8908490612b6c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611de1576040519150601f19603f3d011682016040523d82523d6000602084013e611de6565b606091505b5050905080610aa85760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016102b7565b611e42848484611a05565b611e4e848484846120b6565b6114aa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016102b7565b6060600c805461086390612baf565b606081611f0457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f2e5780611f1881612bea565b9150611f279050600a83612b58565b9150611f08565b60008167ffffffffffffffff811115611f4957611f49612c71565b6040519080825280601f01601f191660200182016040528015611f73576020820181803683370190505b5090505b84156119fd57611f88600183612b6c565b9150611f95600a86612c05565b611fa0906030612b40565b60f81b818381518110611fb557611fb5612c5b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fef600a86612b58565b9450611f77565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061205957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107d657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107d6565b610aa883838361220e565b6110328282604051806020016040528060008152506122ab565b60006001600160a01b0384163b1561220357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120fa903390899088908890600401612aad565b602060405180830381600087803b15801561211457600080fd5b505af1925050508015612144575060408051601f3d908101601f191682019092526121419181019061298c565b60015b6121e9573d808015612172576040519150601f19603f3d011682016040523d82523d6000602084013e612177565b606091505b5080516121e15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016102b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119fd565b506001949350505050565b612219838383612329565b600a546001600160a01b03163314610aa857600a54600160a01b900460ff1615610aa85760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c652070617573656400000000000000000000000000000000000000000060648201526084016102b7565b6122b583836123e1565b6122c260008484846120b6565b610aa85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016102b7565b6001600160a01b0383166123845761237f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123a7565b816001600160a01b0316836001600160a01b0316146123a7576123a7838261252f565b6001600160a01b0382166123be57610aa8816125cc565b826001600160a01b0316826001600160a01b031614610aa857610aa8828261267b565b6001600160a01b0382166124375760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016102b7565b6000818152600260205260409020546001600160a01b03161561249c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016102b7565b6124a860008383612091565b6001600160a01b03821660009081526003602052604081208054600192906124d1908490612b40565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161253c846110d0565b6125469190612b6c565b600083815260076020526040902054909150808214612599576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906125de90600190612b6c565b6000838152600960205260408120546008805493945090928490811061260657612606612c5b565b90600052602060002001549050806008838154811061262757612627612c5b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061265f5761265f612c45565b6001900381819060005260206000200160009055905550505050565b6000612686836110d0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546126cb90612baf565b90600052602060002090601f0160209004810192826126ed5760008555612733565b82601f1061270657805160ff1916838001178555612733565b82800160010185558215612733579182015b82811115612733578251825591602001919060010190612718565b5061273f929150612743565b5090565b5b8082111561273f5760008155600101612744565b600067ffffffffffffffff8084111561277357612773612c71565b604051601f8501601f19908116603f0116810190828211818310171561279b5761279b612c71565b816040528093508581528686860111156127b457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146127e557600080fd5b919050565b803580151581146127e557600080fd5b60006020828403121561280c57600080fd5b611592826127ce565b6000806040838503121561282857600080fd5b612831836127ce565b915061283f602084016127ce565b90509250929050565b60008060006060848603121561285d57600080fd5b612866846127ce565b9250612874602085016127ce565b9150604084013590509250925092565b6000806000806080858703121561289a57600080fd5b6128a3856127ce565b93506128b1602086016127ce565b925060408501359150606085013567ffffffffffffffff8111156128d457600080fd5b8501601f810187136128e557600080fd5b6128f487823560208401612758565b91505092959194509250565b6000806040838503121561291357600080fd5b61291c836127ce565b915061283f602084016127ea565b6000806040838503121561293d57600080fd5b612946836127ce565b946020939093013593505050565b60006020828403121561296657600080fd5b611592826127ea565b60006020828403121561298157600080fd5b813561159281612c87565b60006020828403121561299e57600080fd5b815161159281612c87565b6000602082840312156129bb57600080fd5b813567ffffffffffffffff8111156129d257600080fd5b8201601f810184136129e357600080fd5b6119fd84823560208401612758565b600060208284031215612a0457600080fd5b813561ffff8116811461159257600080fd5b600060208284031215612a2857600080fd5b5035919050565b600060208284031215612a4157600080fd5b813560ff8116811461159257600080fd5b60008151808452612a6a816020860160208601612b83565b601f01601f19169290920160200192915050565b60008351612a90818460208801612b83565b835190830190612aa4818360208801612b83565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612adf6080830184612a52565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b2157835183529284019291840191600101612b05565b50909695505050505050565b6020815260006115926020830184612a52565b60008219821115612b5357612b53612c19565b500190565b600082612b6757612b67612c2f565b500490565b600082821015612b7e57612b7e612c19565b500390565b60005b83811015612b9e578181015183820152602001612b86565b838111156114aa5750506000910152565b600181811c90821680612bc357607f821691505b60208210811415612be457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bfe57612bfe612c19565b5060010190565b600082612c1457612c14612c2f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084957600080fdfea2646970667358221220acc4de27386f4fed3ea9ad69657813176a5707648147c902670f445855ab486e64736f6c634300080600334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f7661636174696f6e70616c657474656e66742e78797a2f646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f7661636174696f6e70616c657474656e66742e78797a2f63616e7661732d66756e6374696f6e2e6a73000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061026e5760003560e01c80636352211e11610153578063b88d4fde116100cb578063e927fc5c1161007f578063f2722a9f11610064578063f2722a9f14610733578063f2fde38b14610775578063f6fcd1da1461079557600080fd5b8063e927fc5c146106c2578063e985e9c5146106ea57600080fd5b8063cc78792e116100b0578063cc78792e14610654578063d547cfb714610669578063e14c54c91461067e57600080fd5b8063b88d4fde14610614578063c87b56dd1461063457600080fd5b80638da5cb5b1161012257806395d89b411161010757806395d89b41146105ca578063a22cb465146105df578063b454b8f7146105ff57600080fd5b80638da5cb5b1461058c5780638dcd6431146105aa57600080fd5b80636352211e1461052f57806370a082311461054f578063715018a61461056f578063853828b61461058457600080fd5b80633241e917116101e6578063438b6300116101b557806355f804b31161019a57806355f804b3146104db57806359a7715a146104fb5780635c975abb1461051057600080fd5b8063438b63001461048e5780634f6ccce7146104bb57600080fd5b80633241e917146104085780633502a7161461043857806342842e0e1461044e57806342966c681461046e57600080fd5b8063095ea7b31161023d57806323b872dd1161022257806323b872dd146103b557806323cf0a22146103d55780632f745c59146103e857600080fd5b8063095ea7b31461037657806318160ddd1461039657600080fd5b806301ffc9a7146102c557806302329a29146102fa57806306fdde031461031c578063081812fc1461033e57600080fd5b366102c05760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f77656400000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600080fd5b3480156102d157600080fd5b506102e56102e036600461296f565b6107cb565b60405190151581526020015b60405180910390f35b34801561030657600080fd5b5061031a610315366004612954565b6107dc565b005b34801561032857600080fd5b50610331610854565b6040516102f19190612b2d565b34801561034a57600080fd5b5061035e610359366004612a16565b6108e6565b6040516001600160a01b0390911681526020016102f1565b34801561038257600080fd5b5061031a61039136600461292a565b61097b565b3480156103a257600080fd5b506008545b6040519081526020016102f1565b3480156103c157600080fd5b5061031a6103d0366004612848565b610aad565b61031a6103e33660046129f2565b610b35565b3480156103f457600080fd5b506103a761040336600461292a565b610d38565b34801561041457600080fd5b506102e56104233660046127fa565b60106020526000908152604090205460ff1681565b34801561044457600080fd5b506103a761012c81565b34801561045a57600080fd5b5061031a610469366004612848565b610de0565b34801561047a57600080fd5b5061031a610489366004612a16565b610dfb565b34801561049a57600080fd5b506104ae6104a93660046127fa565b610e7f565b6040516102f19190612ae9565b3480156104c757600080fd5b506103a76104d6366004612a16565b610f21565b3480156104e757600080fd5b5061031a6104f63660046129a9565b610fc5565b34801561050757600080fd5b506103a7611036565b34801561051c57600080fd5b50600a54600160a01b900460ff166102e5565b34801561053b57600080fd5b5061035e61054a366004612a16565b611045565b34801561055b57600080fd5b506103a761056a3660046127fa565b6110d0565b34801561057b57600080fd5b5061031a61116a565b61031a6111d0565b34801561059857600080fd5b50600a546001600160a01b031661035e565b3480156105b657600080fd5b5061031a6105c53660046129a9565b611253565b3480156105d657600080fd5b506103316112c0565b3480156105eb57600080fd5b5061031a6105fa366004612900565b6112cf565b34801561060b57600080fd5b50610331611394565b34801561062057600080fd5b5061031a61062f366004612884565b611422565b34801561064057600080fd5b5061033161064f366004612a16565b6114b0565b34801561066057600080fd5b50610331611599565b34801561067557600080fd5b506103316115a8565b34801561068a57600080fd5b506106af610699366004612a2f565b600f6020526000908152604090205461ffff1681565b60405161ffff90911681526020016102f1565b3480156106ce57600080fd5b5061035e7367c7d48da5ff0ca165c26944a5d01df1d6f62c7581565b3480156106f657600080fd5b506102e5610705366004612815565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073f57600080fd5b5061075361074e366004612a16565b6115b5565b604080516001600160a01b03909316835261ffff9091166020830152016102f1565b34801561078157600080fd5b5061031a6107903660046127fa565b611644565b3480156107a157600080fd5b5061035e6107b0366004612a2f565b600e602052600090815260409020546001600160a01b031681565b60006107d682611723565b92915050565b600a546001600160a01b031633146108365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b6001811515141561084c57610849611761565b50565b610849611813565b60606000805461086390612baf565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90612baf565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016102b7565b506000908152600460205260409020546001600160a01b031690565b600061098682611045565b9050806001600160a01b0316836001600160a01b03161415610a105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016102b7565b336001600160a01b0382161480610a2c5750610a2c8133610705565b610a9e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016102b7565b610aa883836118a0565b505050565b610ab8335b8261190e565b610b2a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016102b7565b610aa8838383611a05565b61012c610b40611bdd565b1115610b8e5760405162461bcd60e51b815260206004820152600860248201527f53616c6520656e6400000000000000000000000000000000000000000000000060448201526064016102b7565b600a546001600160a01b03163314610bfa57600a54600160a01b900460ff1615610bfa5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016102b7565b6127108161ffff161115610c505760405162461bcd60e51b815260206004820152600b60248201527f5f73656564203e2031306b00000000000000000000000000000000000000000060448201526064016102b7565b6000610c5a611bdd565b905061012c610c6a826001612b40565b1115610cb85760405162461bcd60e51b815260206004820152600960248201527f4d6178206c696d6974000000000000000000000000000000000000000000000060448201526064016102b7565b3360009081526010602052604090205460ff16801580610ce25750600a546001600160a01b031633145b610d2e5760405162461bcd60e51b815260206004820152601660248201527f6164647265737320616c7265616479206d696e7465640000000000000000000060448201526064016102b7565b610aa83384611be8565b6000610d43836110d0565b8210610db75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016102b7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aa883838360405180602001604052806000815250611422565b610e0433610ab2565b610e765760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016102b7565b61084981611c9b565b60606000610e8c836110d0565b905060008167ffffffffffffffff811115610ea957610ea9612c71565b604051908082528060200260200182016040528015610ed2578160200160208202803683370190505b50905060005b82811015610f1957610eea8582610d38565b828281518110610efc57610efc612c5b565b602090810291909101015280610f1181612bea565b915050610ed8565b509392505050565b6000610f2c60085490565b8210610fa05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016102b7565b60088281548110610fb357610fb3612c5b565b90600052602060002001549050919050565b600a546001600160a01b0316331461101f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b805161103290600c9060208401906126bf565b5050565b6000611040611bdd565b905090565b6000818152600260205260408120546001600160a01b0316806107d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016102b7565b60006001600160a01b03821661114e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016102b7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b6111ce6000611d42565b565b600a546001600160a01b0316331461122a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b478061123557600080fd5b6108497367c7d48da5ff0ca165c26944a5d01df1d6f62c7547611d94565b600a546001600160a01b031633146112ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b805161103290600d9060208401906126bf565b60606001805461086390612baf565b6001600160a01b0382163314156113285760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016102b7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d80546113a190612baf565b80601f01602080910402602001604051908101604052809291908181526020018280546113cd90612baf565b801561141a5780601f106113ef5761010080835404028352916020019161141a565b820191906000526020600020905b8154815290600101906020018083116113fd57829003601f168201915b505050505081565b61142c338361190e565b61149e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016102b7565b6114aa84848484611e37565b50505050565b6000818152600260205260409020546060906001600160a01b031661153d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016102b7565b6000611547611eb5565b905060008151116115675760405180602001604052806000815250611592565b8061157184611ec4565b604051602001611582929190612a7e565b6040516020818303038152906040525b9392505050565b6060600d805461086390612baf565b600c80546113a190612baf565b6000806115c0611bdd565b83111561160f5760405162461bcd60e51b815260206004820152600a60248201527f696e76616c69642069640000000000000000000000000000000000000000000060448201526064016102b7565b505060ff166000908152600e6020908152604080832054600f909252909120546001600160a01b039091169161ffff90911690565b600a546001600160a01b0316331461169e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102b7565b6001600160a01b03811661171a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102b7565b61084981611d42565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806107d657506107d682611ff6565b600a54600160a01b900460ff16156117bb5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016102b7565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117f63390565b6040516001600160a01b03909116815260200160405180910390a1565b600a54600160a01b900460ff1661186c5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016102b7565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336117f6565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118d582611045565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016102b7565b600061199283611045565b9050806001600160a01b0316846001600160a01b031614806119cd5750836001600160a01b03166119c2846108e6565b6001600160a01b0316145b806119fd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a1882611045565b6001600160a01b031614611a945760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016102b7565b6001600160a01b038216611b0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016102b7565b611b1a838383612091565b611b256000826118a0565b6001600160a01b0383166000908152600360205260408120805460019290611b4e908490612b6c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7c908490612b40565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611040600b5490565b6000611bf2611bdd565b9050611c02600b80546001019055565b611c0c838261209c565b60405181907ffc8f2896a026fe67cf7750939518a86f80d8740522b220a53c353e741f706fd590600090a260ff166000908152600e6020908152604080832080546001600160a01b0319166001600160a01b03969096169586179055600f8252808320805461ffff191661ffff959095169490941790935592815260109092529020805460ff19166001179055565b6000611ca682611045565b9050611cb481600084612091565b611cbf6000836118a0565b6001600160a01b0381166000908152600360205260408120805460019290611ce8908490612b6c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611de1576040519150601f19603f3d011682016040523d82523d6000602084013e611de6565b606091505b5050905080610aa85760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016102b7565b611e42848484611a05565b611e4e848484846120b6565b6114aa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016102b7565b6060600c805461086390612baf565b606081611f0457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f2e5780611f1881612bea565b9150611f279050600a83612b58565b9150611f08565b60008167ffffffffffffffff811115611f4957611f49612c71565b6040519080825280601f01601f191660200182016040528015611f73576020820181803683370190505b5090505b84156119fd57611f88600183612b6c565b9150611f95600a86612c05565b611fa0906030612b40565b60f81b818381518110611fb557611fb5612c5b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fef600a86612b58565b9450611f77565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061205957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107d657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107d6565b610aa883838361220e565b6110328282604051806020016040528060008152506122ab565b60006001600160a01b0384163b1561220357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120fa903390899088908890600401612aad565b602060405180830381600087803b15801561211457600080fd5b505af1925050508015612144575060408051601f3d908101601f191682019092526121419181019061298c565b60015b6121e9573d808015612172576040519150601f19603f3d011682016040523d82523d6000602084013e612177565b606091505b5080516121e15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016102b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119fd565b506001949350505050565b612219838383612329565b600a546001600160a01b03163314610aa857600a54600160a01b900460ff1615610aa85760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201527f68696c652070617573656400000000000000000000000000000000000000000060648201526084016102b7565b6122b583836123e1565b6122c260008484846120b6565b610aa85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016102b7565b6001600160a01b0383166123845761237f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123a7565b816001600160a01b0316836001600160a01b0316146123a7576123a7838261252f565b6001600160a01b0382166123be57610aa8816125cc565b826001600160a01b0316826001600160a01b031614610aa857610aa8828261267b565b6001600160a01b0382166124375760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016102b7565b6000818152600260205260409020546001600160a01b03161561249c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016102b7565b6124a860008383612091565b6001600160a01b03821660009081526003602052604081208054600192906124d1908490612b40565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161253c846110d0565b6125469190612b6c565b600083815260076020526040902054909150808214612599576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906125de90600190612b6c565b6000838152600960205260408120546008805493945090928490811061260657612606612c5b565b90600052602060002001549050806008838154811061262757612627612c5b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061265f5761265f612c45565b6001900381819060005260206000200160009055905550505050565b6000612686836110d0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546126cb90612baf565b90600052602060002090601f0160209004810192826126ed5760008555612733565b82601f1061270657805160ff1916838001178555612733565b82800160010185558215612733579182015b82811115612733578251825591602001919060010190612718565b5061273f929150612743565b5090565b5b8082111561273f5760008155600101612744565b600067ffffffffffffffff8084111561277357612773612c71565b604051601f8501601f19908116603f0116810190828211818310171561279b5761279b612c71565b816040528093508581528686860111156127b457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146127e557600080fd5b919050565b803580151581146127e557600080fd5b60006020828403121561280c57600080fd5b611592826127ce565b6000806040838503121561282857600080fd5b612831836127ce565b915061283f602084016127ce565b90509250929050565b60008060006060848603121561285d57600080fd5b612866846127ce565b9250612874602085016127ce565b9150604084013590509250925092565b6000806000806080858703121561289a57600080fd5b6128a3856127ce565b93506128b1602086016127ce565b925060408501359150606085013567ffffffffffffffff8111156128d457600080fd5b8501601f810187136128e557600080fd5b6128f487823560208401612758565b91505092959194509250565b6000806040838503121561291357600080fd5b61291c836127ce565b915061283f602084016127ea565b6000806040838503121561293d57600080fd5b612946836127ce565b946020939093013593505050565b60006020828403121561296657600080fd5b611592826127ea565b60006020828403121561298157600080fd5b813561159281612c87565b60006020828403121561299e57600080fd5b815161159281612c87565b6000602082840312156129bb57600080fd5b813567ffffffffffffffff8111156129d257600080fd5b8201601f810184136129e357600080fd5b6119fd84823560208401612758565b600060208284031215612a0457600080fd5b813561ffff8116811461159257600080fd5b600060208284031215612a2857600080fd5b5035919050565b600060208284031215612a4157600080fd5b813560ff8116811461159257600080fd5b60008151808452612a6a816020860160208601612b83565b601f01601f19169290920160200192915050565b60008351612a90818460208801612b83565b835190830190612aa4818360208801612b83565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612adf6080830184612a52565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b2157835183529284019291840191600101612b05565b50909695505050505050565b6020815260006115926020830184612a52565b60008219821115612b5357612b53612c19565b500190565b600082612b6757612b67612c2f565b500490565b600082821015612b7e57612b7e612c19565b500390565b60005b83811015612b9e578181015183820152602001612b86565b838111156114aa5750506000910152565b600181811c90821680612bc357607f821691505b60208210811415612be457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bfe57612bfe612c19565b5060010190565b600082612c1457612c14612c2f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084957600080fdfea2646970667358221220acc4de27386f4fed3ea9ad69657813176a5707648147c902670f445855ab486e64736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f7661636174696f6e70616c657474656e66742e78797a2f646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f7661636174696f6e70616c657474656e66742e78797a2f63616e7661732d66756e6374696f6e2e6a73000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://vacationpalettenft.xyz/data/
Arg [1] : _codeURI (string): https://vacationpalettenft.xyz/canvas-function.js

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [3] : 68747470733a2f2f7661636174696f6e70616c657474656e66742e78797a2f64
Arg [4] : 6174612f00000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [6] : 68747470733a2f2f7661636174696f6e70616c657474656e66742e78797a2f63
Arg [7] : 616e7661732d66756e6374696f6e2e6a73000000000000000000000000000000


Deployed Bytecode Sourcemap

466:3953:17:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4388:21;;-1:-1:-1;;;4388:21:17;;15732:2:18;4388:21:17;;;15714::18;15771:2;15751:18;;;15744:30;15810:13;15790:18;;;15783:41;15841:18;;4388:21:17;;;;;;;;466:3953;;;;4168:177;;;;;;;;;;-1:-1:-1;4168:177:17;;;;;:::i;:::-;;:::i;:::-;;;7683:14:18;;7676:22;7658:41;;7646:2;7631:18;4168:177:17;;;;;;;;3392:148;;;;;;;;;;-1:-1:-1;3392:148:17;;;;;:::i;:::-;;:::i;:::-;;2414:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;;;;;-1:-1:-1;3925:217:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5985:55:18;;;5967:74;;5955:2;5940:18;3925:217:2;5922:125:18;3463:401:2;;;;;;;;;;-1:-1:-1;3463:401:2;;;;;:::i;:::-;;:::i;1535:111:6:-;;;;;;;;;;-1:-1:-1;1622:10:6;:17;1535:111;;;19391:25:18;;;19379:2;19364:18;1535:111:6;19346:76:18;4789:330:2;;;;;;;;;;-1:-1:-1;4789:330:2;;;;;:::i;:::-;;:::i;1676:390:17:-;;;;;;:::i;:::-;;:::i;1211:253:6:-;;;;;;;;;;-1:-1:-1;1211:253:6;;;;;:::i;:::-;;:::i;968:40:17:-;;;;;;;;;;-1:-1:-1;968:40:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;682:42;;;;;;;;;;;;721:3;682:42;;5185:179:2;;;;;;;;;;-1:-1:-1;5185:179:2;;;;;:::i;:::-;;:::i;451:241:5:-;;;;;;;;;;-1:-1:-1;451:241:5;;;;;:::i;:::-;;:::i;2785:344:17:-;;;;;;;;;;-1:-1:-1;2785:344:17;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1718:230:6:-;;;;;;;;;;-1:-1:-1;1718:230:6;;;;;:::i;:::-;;:::i;2483:99:17:-;;;;;;;;;;-1:-1:-1;2483:99:17;;;;;:::i;:::-;;:::i;1582:89::-;;;;;;;;;;;;;:::i;1041:84:1:-;;;;;;;;;;-1:-1:-1;1111:7:1;;-1:-1:-1;;;1111:7:1;;;;1041:84;;2117:235:2;;;;;;;;;;-1:-1:-1;2117:235:2;;;;;:::i;:::-;;:::i;1855:205::-;;;;;;;;;;-1:-1:-1;1855:205:2;;;;;:::i;:::-;;:::i;1605:92:0:-;;;;;;;;;;;;;:::i;3546:193:17:-;;;:::i;973:85:0:-;;;;;;;;;;-1:-1:-1;1045:6:0;;-1:-1:-1;;;;;1045:6:0;973:85;;2683:96:17;;;;;;;;;;-1:-1:-1;2683:96:17;;;;;:::i;:::-;;:::i;2576:102:2:-;;;;;;;;;;;;;:::i;4209:290::-;;;;;;;;;;-1:-1:-1;4209:290:2;;;;;:::i;:::-;;:::i;851:21:17:-;;;;;;;;;;;;;:::i;5430:320:2:-;;;;;;;;;;-1:-1:-1;5430:320:2;;;;;:::i;:::-;;:::i;2744:329::-;;;;;;;;;;-1:-1:-1;2744:329:2;;;;;:::i;:::-;;:::i;2588:89:17:-;;;;;;;;;;;;;:::i;819:26::-;;;;;;;;;;;;;:::i;925:37::-;;;;;;;;;;-1:-1:-1;925:37:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19226:6:18;19214:19;;;19196:38;;19184:2;19169:18;925:37:17;19151:89:18;730:83:17;;;;;;;;;;;;771:42;730:83;;4565:162:2;;;;;;;;;;-1:-1:-1;4565:162:2;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:2;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162;3135:251:17;;;;;;;;;;-1:-1:-1;3135:251:17;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6758:55:18;;;6740:74;;6862:6;6850:19;;;6845:2;6830:18;;6823:47;6713:18;3135:251:17;6695:181:18;1846:189:0;;;;;;;;;;-1:-1:-1;1846:189:0;;;;;:::i;:::-;;:::i;878:41:17:-;;;;;;;;;;-1:-1:-1;878:41:17;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;878:41:17;;;4168:177;4279:4;4302:36;4326:11;4302:23;:36::i;:::-;4295:43;4168:177;-1:-1:-1;;4168:177:17:o;3392:148::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:10;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;16072:2:18;1177:68:0;;;16054:21:18;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;1177:68:0;16044:182:18;1177:68:0;3455:4:17::1;3448:11:::0;::::1;;;3444:70;;;3475:8;:6;:8::i;:::-;3392:148:::0;:::o;3444:70::-:1;3523:10;:8;:10::i;2414:98:2:-:0;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;4020:73;;;;-1:-1:-1;;;4020:73:2;;15319:2:18;4020:73:2;;;15301:21:18;15358:2;15338:18;;;15331:30;15397:34;15377:18;;;15370:62;-1:-1:-1;;;15448:18:18;;;15441:42;15500:19;;4020:73:2;15291:234:18;4020:73:2;-1:-1:-1;4111:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:2;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:2;:2;-1:-1:-1;;;;;3600:11:2;;;3592:57;;;;-1:-1:-1;;;3592:57:2;;17259:2:18;3592:57:2;;;17241:21:18;17298:2;17278:18;;;17271:30;17337:34;17317:18;;;17310:62;17408:3;17388:18;;;17381:31;17429:19;;3592:57:2;17231:223:18;3592:57:2;666:10:10;-1:-1:-1;;;;;3681:21:2;;;;:62;;-1:-1:-1;3706:37:2;3723:5;666:10:10;4565:162:2;:::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:2;;13376:2:18;3660:165:2;;;13358:21:18;13415:2;13395:18;;;13388:30;13454:34;13434:18;;;13427:62;13525:26;13505:18;;;13498:54;13569:19;;3660:165:2;13348:246:18;3660:165:2;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;4789:330::-;4978:41;666:10:10;4997:12:2;5011:7;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:2;;18006:2:18;4970:103:2;;;17988:21:18;18045:2;18025:18;;;18018:30;18084:34;18064:18;;;18057:62;18155:19;18135:18;;;18128:47;18192:19;;4970:103:2;17978:239:18;4970:103:2;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;1676:390:17:-;721:3;1308:14;:12;:14::i;:::-;:30;;1300:51;;;;-1:-1:-1;;;1300:51:17;;14983:2:18;1300:51:17;;;14965:21:18;15022:1;15002:18;;;14995:29;15060:10;15040:18;;;15033:38;15088:18;;1300:51:17;14955:157:18;1300:51:17;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:10;1365:23:17;1361:92;;1111:7:1;;-1:-1:-1;;;1111:7:1;;;;1412:9:17;1404:38;;;;-1:-1:-1;;;1404:38:17;;13031:2:18;1404:38:17;;;13013:21:18;13070:2;13050:18;;;13043:30;13109:18;13089;;;13082:46;13145:18;;1404:38:17;13003:166:18;1404:38:17;1757:5:::1;1748;:14;;;;1740:38;;;::::0;-1:-1:-1;;;1740:38:17;;10831:2:18;1740:38:17::1;::::0;::::1;10813:21:18::0;10870:2;10850:18;;;10843:30;10909:13;10889:18;;;10882:41;10940:18;;1740:38:17::1;10803:161:18::0;1740:38:17::1;1788:13;1804:14;:12;:14::i;:::-;1788:30:::0;-1:-1:-1;721:3:17::1;1836:9;1788:30:::0;1844:1:::1;1836:9;:::i;:::-;:25;;1828:47;;;::::0;-1:-1:-1;;;1828:47:17;;11930:2:18;1828:47:17::1;::::0;::::1;11912:21:18::0;11969:1;11949:18;;;11942:29;12007:11;11987:18;;;11980:39;12036:18;;1828:47:17::1;11902:158:18::0;1828:47:17::1;666:10:10::0;1885:18:17::1;1906:21:::0;;;:7:::1;:21;::::0;;;;;::::1;;1945:14:::0;::::1;::::0;:41:::1;;-1:-1:-1::0;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:10;1963:23:17::1;1945:41;1937:76;;;::::0;-1:-1:-1;;;1937:76:17;;12267:2:18;1937:76:17::1;::::0;::::1;12249:21:18::0;12306:2;12286:18;;;12279:30;12345:24;12325:18;;;12318:52;12387:18;;1937:76:17::1;12239:172:18::0;1937:76:17::1;2024:35;666:10:10::0;2053:5:17::1;2024:14;:35::i;1211:253:6:-:0;1308:7;1343:23;1360:5;1343:16;:23::i;:::-;1335:5;:31;1327:87;;;;-1:-1:-1;;;1327:87:6;;8897:2:18;1327:87:6;;;8879:21:18;8936:2;8916:18;;;8909:30;8975:34;8955:18;;;8948:62;9046:13;9026:18;;;9019:41;9077:19;;1327:87:6;8869:233:18;1327:87:6;-1:-1:-1;;;;;;1431:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1211:253::o;5185:179:2:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;451:241:5:-;567:41;666:10:10;586:12:5;587:96:10;567:41:5;559:102;;;;-1:-1:-1;;;559:102:5;;18837:2:18;559:102:5;;;18819:21:18;18876:2;18856:18;;;18849:30;18915:34;18895:18;;;18888:62;18986:18;18966;;;18959:46;19022:19;;559:102:5;18809:238:18;559:102:5;671:14;677:7;671:5;:14::i;2785:344:17:-;2847:16;2875:18;2896:17;2906:6;2896:9;:17::i;:::-;2875:38;;2924:25;2966:10;2952:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2952:25:17;;2924:53;;2992:9;2987:110;3011:10;3007:1;:14;2987:110;;;3056:30;3076:6;3084:1;3056:19;:30::i;:::-;3042:8;3051:1;3042:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;3023:3;;;;:::i;:::-;;;;2987:110;;;-1:-1:-1;3114:8:17;2785:344;-1:-1:-1;;;2785:344:17:o;1718:230:6:-;1793:7;1828:30;1622:10;:17;;1535:111;1828:30;1820:5;:38;1812:95;;;;-1:-1:-1;;;1812:95:6;;18424:2:18;1812:95:6;;;18406:21:18;18463:2;18443:18;;;18436:30;18502:34;18482:18;;;18475:62;18573:14;18553:18;;;18546:42;18605:19;;1812:95:6;18396:234:18;1812:95:6;1924:10;1935:5;1924:17;;;;;;;;:::i;:::-;;;;;;;;;1917:24;;1718:230;;;:::o;2483:99:17:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:10;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;16072:2:18;1177:68:0;;;16054:21:18;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;1177:68:0;16044:182:18;1177:68:0;2553:22:17;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2483:99:::0;:::o;1582:89::-;1624:7;1650:14;:12;:14::i;:::-;1643:21;;1582:89;:::o;2117:235:2:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:2;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:2;;14212:2:18;2250:73:2;;;14194:21:18;14251:2;14231:18;;;14224:30;14290:34;14270:18;;;14263:62;14361:11;14341:18;;;14334:39;14390:19;;2250:73:2;14184:231:18;1855:205:2;1927:7;-1:-1:-1;;;;;1954:19:2;;1946:74;;;;-1:-1:-1;;;1946:74:2;;13801:2:18;1946:74:2;;;13783:21:18;13840:2;13820:18;;;13813:30;13879:34;13859:18;;;13852:62;13950:12;13930:18;;;13923:40;13980:19;;1946:74:2;13773:232:18;1946:74:2;-1:-1:-1;;;;;;2037:16:2;;;;;:9;:16;;;;;;;1855:205::o;1605:92:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;666:10:10;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;16072:2:18;1177:68:0;;;16054:21:18;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;1177:68:0;16044:182:18;1177:68:0;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;3546:193:17:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:10;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;16072:2:18;1177:68:0;;;16054:21:18;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;1177:68:0;16044:182:18;1177:68:0;3622:21:17::1;3661:11:::0;3653:20:::1;;;::::0;::::1;;3683:49;771:42;3710:21;3683:10;:49::i;2683:96::-:0;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:10;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;16072:2:18;1177:68:0;;;16054:21:18;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;1177:68:0;16044:182:18;1177:68:0;2754:18:17;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;2576:102:2:-:0;2632:13;2664:7;2657:14;;;;;:::i;4209:290::-;-1:-1:-1;;;;;4311:24:2;;666:10:10;4311:24:2;;4303:62;;;;-1:-1:-1;;;4303:62:2;;11576:2:18;4303:62:2;;;11558:21:18;11615:2;11595:18;;;11588:30;11654:27;11634:18;;;11627:55;11699:18;;4303:62:2;11548:175:18;4303:62:2;666:10:10;4376:32:2;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:2;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:2;;;;;;;;;;4444:48;;7658:41:18;;;4376:42:2;;666:10:10;4444:48:2;;7631:18:18;4444:48:2;;;;;;;4209:290;;:::o;851:21:17:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5430:320:2:-;5599:41;666:10:10;5632:7:2;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:2;;18006:2:18;5591:103:2;;;17988:21:18;18045:2;18025:18;;;18018:30;18084:34;18064:18;;;18057:62;18155:19;18135:18;;;18128:47;18192:19;;5591:103:2;17978:239:18;5591:103:2;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2744:329::-;7287:4;7310:16;;;:7;:16;;;;;;2817:13;;-1:-1:-1;;;;;7310:16:2;2842:76;;;;-1:-1:-1;;;2842:76:2;;16843:2:18;2842:76:2;;;16825:21:18;16882:2;16862:18;;;16855:30;16921:34;16901:18;;;16894:62;16992:17;16972:18;;;16965:45;17027:19;;2842:76:2;16815:237:18;2842:76:2;2929:21;2953:10;:8;:10::i;:::-;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:86;2973:93;2744:329;-1:-1:-1;;;2744:329:2:o;2588:89:17:-;2631:13;2663:7;2656:14;;;;;:::i;819:26::-;;;;;;;:::i;3135:251::-;3187:7;3196:6;3229:14;:12;:14::i;:::-;3222:3;:21;;3214:44;;;;-1:-1:-1;;;3214:44:17;;10492:2:18;3214:44:17;;;10474:21:18;10531:2;10511:18;;;10504:30;10570:12;10550:18;;;10543:40;10600:18;;3214:44:17;10464:160:18;3214:44:17;-1:-1:-1;;3286:19:17;;3268:15;3286:19;;;:7;:19;;;;;;;;;3330:4;:16;;;;;;;-1:-1:-1;;;;;3286:19:17;;;;3330:16;;;;;3135:251::o;1846:189:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;666:10:10;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;16072:2:18;1177:68:0;;;16054:21:18;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;1177:68:0;16044:182:18;1177:68:0;-1:-1:-1;;;;;1934:22:0;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:0;;9728:2:18;1926:73:0::1;::::0;::::1;9710:21:18::0;9767:2;9747:18;;;9740:30;9806:34;9786:18;;;9779:62;9877:8;9857:18;;;9850:36;9903:19;;1926:73:0::1;9700:228:18::0;1926:73:0::1;2009:19;2019:8;2009:9;:19::i;910:222:6:-:0;1012:4;-1:-1:-1;;;;;;1035:50:6;;1050:35;1035:50;;:90;;;1089:36;1113:11;1089:23;:36::i;1806:115:1:-;1111:7;;-1:-1:-1;;;1111:7:1;;;;1354:9;1346:38;;;;-1:-1:-1;;;1346:38:1;;13031:2:18;1346:38:1;;;13013:21:18;13070:2;13050:18;;;13043:30;13109:18;13089;;;13082:46;13145:18;;1346:38:1;13003:166:18;1346:38:1;1865:7:::1;:14:::0;;-1:-1:-1;;;;1865:14:1::1;-1:-1:-1::0;;;1865:14:1::1;::::0;;1894:20:::1;1901:12;666:10:10::0;;587:96;1901:12:1::1;1894:20;::::0;-1:-1:-1;;;;;5985:55:18;;;5967:74;;5955:2;5940:18;1894:20:1::1;;;;;;;1806:115::o:0;2053:117::-;1111:7;;-1:-1:-1;;;1111:7:1;;;;1612:41;;;;-1:-1:-1;;;1612:41:1;;8548:2:18;1612:41:1;;;8530:21:18;8587:2;8567:18;;;8560:30;8626:22;8606:18;;;8599:50;8666:18;;1612:41:1;8520:170:18;1612:41:1;2111:7:::1;:15:::0;;-1:-1:-1;;;;2111:15:1::1;::::0;;2141:22:::1;666:10:10::0;2150:12:1::1;587:96:10::0;11073:171:2;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:2;-1:-1:-1;;;;;11147:29:2;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:2;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;7614:73;;;;-1:-1:-1;;;7614:73:2;;12618:2:18;7614:73:2;;;12600:21:18;12657:2;12637:18;;;12630:30;12696:34;12676:18;;;12669:62;-1:-1:-1;;;12747:18:18;;;12740:42;12799:19;;7614:73:2;12590:234:18;7614:73:2;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:2;:7;-1:-1:-1;;;;;7754:16:2;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:2;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:2;;7754:51;:87;;;-1:-1:-1;;;;;;4685:25:2;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7809:32;7746:96;7505:344;-1:-1:-1;;;;7505:344:2:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:2;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:2;;10521:85;;;;-1:-1:-1;;;10521:85:2;;16433:2:18;10521:85:2;;;16415:21:18;16472:2;16452:18;;;16445:30;16511:34;16491:18;;;16484:62;16582:11;16562:18;;;16555:39;16611:19;;10521:85:2;16405:231:18;10521:85:2;-1:-1:-1;;;;;10624:16:2;;10616:65;;;;-1:-1:-1;;;10616:65:2;;11171:2:18;10616:65:2;;;11153:21:18;11210:2;11190:18;;;11183:30;11249:34;11229:18;;;11222:62;11320:6;11300:18;;;11293:34;11344:19;;10616:65:2;11143:226:18;10616:65:2;10692:39;10713:4;10719:2;10723:7;10692:20;:39::i;:::-;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:2;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:2;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:2;-1:-1:-1;;;;;10891:21:2;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;1475:102:17:-;1522:4;1545:25;:15;864:14:11;;773:112;2071:289:17;2140:7;2150:14;:12;:14::i;:::-;2140:24;;2174:27;:15;978:19:11;;996:1;978:19;;;891:123;2174:27:17;2211:18;2221:3;2226:2;2211:9;:18::i;:::-;2244:13;;2254:2;;2244:13;;;;;2267:18;;;;;;:7;:18;;;;;;;;:24;;-1:-1:-1;;;;;;2267:24:17;-1:-1:-1;;;;;2267:24:17;;;;;;;;;2301:4;:15;;;;;:23;;-1:-1:-1;;2301:23:17;;;;;;;;;;;;;2334:12;;;:7;:12;;;;;:19;;-1:-1:-1;;2334:19:17;-1:-1:-1;2334:19:17;;;2071:289::o;9730:348:2:-;9789:13;9805:23;9820:7;9805:14;:23::i;:::-;9789:39;;9839:48;9860:5;9875:1;9879:7;9839:20;:48::i;:::-;9925:29;9942:1;9946:7;9925:8;:29::i;:::-;-1:-1:-1;;;;;9965:16:2;;;;;;:9;:16;;;;;:21;;9985:1;;9965:16;:21;;9985:1;;9965:21;:::i;:::-;;;;-1:-1:-1;;10003:16:2;;;;:7;:16;;;;;;9996:23;;-1:-1:-1;;;;;;9996:23:2;;;10035:36;10011:7;;10003:16;-1:-1:-1;;;;;10035:36:2;;;;;10003:16;;10035:36;9779:299;9730:348;:::o;2041:169:0:-;2115:6;;;-1:-1:-1;;;;;2131:17:0;;;-1:-1:-1;;;;;;2131:17:0;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;3745:178:17:-;3819:12;3837:8;-1:-1:-1;;;;;3837:13:17;3858:7;3837:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3818:52;;;3888:7;3880:36;;;;-1:-1:-1;;;3880:36:17;;17661:2:18;3880:36:17;;;17643:21:18;17700:2;17680:18;;;17673:30;17739:18;17719;;;17712:46;17775:18;;3880:36:17;17633:166:18;6612:307:2;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:2;;9309:2:18;6801:111:2;;;9291:21:18;9348:2;9328:18;;;9321:30;9387:34;9367:18;;;9360:62;-1:-1:-1;;;9438:18:18;;;9431:48;9496:19;;6801:111:2;9281:240:18;2366:111:17;2426:13;2458:12;2451:19;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;;;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;1496:300:2;1598:4;-1:-1:-1;;;;;;1633:40:2;;1648:25;1633:40;;:104;;-1:-1:-1;;;;;;;1689:48:2;;1704:33;1689:48;1633:104;:156;;;-1:-1:-1;886:25:13;-1:-1:-1;;;;;;871:40:13;;;1753:36:2;763:155:13;3929:233:17;4110:45;4137:4;4143:2;4147:7;4110:26;:45::i;8179:108:2:-;8254:26;8264:2;8268:7;8254:26;;;;;;;;;;;;:9;:26::i;11797:778::-;11947:4;-1:-1:-1;;;;;11967:13:2;;1034:20:9;1080:8;11963:606:2;;12002:72;;-1:-1:-1;;;12002:72:2;;-1:-1:-1;;;;;12002:36:2;;;;;:72;;666:10:10;;12053:4:2;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:2;;;;;;;;-1:-1:-1;;12002:72:2;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:2;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:2;;9309:2:18;12283:60:2;;;9291:21:18;9348:2;9328:18;;;9321:30;9387:34;9367:18;;;9360:62;-1:-1:-1;;;9438:18:18;;;9431:48;9496:19;;12283:60:2;9281:240:18;12237:266:2;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;-1:-1:-1;;;;;;12124:51:2;-1:-1:-1;;;12124:51:2;;-1:-1:-1;12117:58:2;;11963:606;-1:-1:-1;12554:4:2;11797:778;;;;;;:::o;705:319:16:-;844:45;871:4;877:2;881:7;844:26;:45::i;:::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:10;903:23:16;899:119;;1111:7:1;;-1:-1:-1;;;1111:7:1;;;;950:9:16;942:65;;;;-1:-1:-1;;;942:65:16;;8136:2:18;942:65:16;;;8118:21:18;8175:2;8155:18;;;8148:30;8214:34;8194:18;;;8187:62;8285:13;8265:18;;;8258:41;8316:19;;942:65:16;8108:233:18;8508:311:2;8633:18;8639:2;8643:7;8633:5;:18::i;:::-;8682:54;8713:1;8717:2;8721:7;8730:5;8682:22;:54::i;:::-;8661:151;;;;-1:-1:-1;;;8661:151:2;;9309:2:18;8661:151:2;;;9291:21:18;9348:2;9328:18;;;9321:30;9387:34;9367:18;;;9360:62;-1:-1:-1;;;9438:18:18;;;9431:48;9496:19;;8661:151:2;9281:240:18;2544:572:6;-1:-1:-1;;;;;2743:18:6;;2739:183;;2777:40;2809:7;3925:10;:17;;3898:24;;;;:15;:24;;;;;:44;;;3952:24;;;;;;;;;;;;3822:161;2777:40;2739:183;;;2846:2;-1:-1:-1;;;;;2838:10:6;:4;-1:-1:-1;;;;;2838:10:6;;2834:88;;2864:47;2897:4;2903:7;2864:32;:47::i;:::-;-1:-1:-1;;;;;2935:16:6;;2931:179;;2967:45;3004:7;2967:36;:45::i;2931:179::-;3039:4;-1:-1:-1;;;;;3033:10:6;:2;-1:-1:-1;;;;;3033:10:6;;3029:81;;3059:40;3087:2;3091:7;3059:27;:40::i;9141:372:2:-;-1:-1:-1;;;;;9220:16:2;;9212:61;;;;-1:-1:-1;;;9212:61:2;;14622:2:18;9212:61:2;;;14604:21:18;;;14641:18;;;14634:30;14700:34;14680:18;;;14673:62;14752:18;;9212:61:2;14594:182:18;9212:61:2;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;:30;9283:58;;;;-1:-1:-1;;;9283:58:2;;10135:2:18;9283:58:2;;;10117:21:18;10174:2;10154:18;;;10147:30;10213;10193:18;;;10186:58;10261:18;;9283:58:2;10107:178:18;9283:58:2;9352:45;9381:1;9385:2;9389:7;9352:20;:45::i;:::-;-1:-1:-1;;;;;9408:13:2;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:2;-1:-1:-1;;;;;9436:21:2;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;4600:970:6:-;4862:22;4912:1;4887:22;4904:4;4887:16;:22::i;:::-;:26;;;;:::i;:::-;4923:18;4944:26;;;:17;:26;;;;;;4862:51;;-1:-1:-1;5074:28:6;;;5070:323;;-1:-1:-1;;;;;5140:18:6;;5118:19;5140:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5189:30;;;;;;:44;;;5305:30;;:17;:30;;;;;:43;;;5070:323;-1:-1:-1;5486:26:6;;;;:17;:26;;;;;;;;5479:33;;;-1:-1:-1;;;;;5529:18:6;;;;;:12;:18;;;;;:34;;;;;;;5522:41;4600:970::o;5858:1061::-;6132:10;:17;6107:22;;6132:21;;6152:1;;6132:21;:::i;:::-;6163:18;6184:24;;;:15;:24;;;;;;6552:10;:26;;6107:46;;-1:-1:-1;6184:24:6;;6107:46;;6552:26;;;;;;:::i;:::-;;;;;;;;;6530:48;;6614:11;6589:10;6600;6589:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6693:28;;;:15;:28;;;;;;;:41;;;6862:24;;;;;6855:31;6896:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5929:990;;;5858:1061;:::o;3410:217::-;3494:14;3511:20;3528:2;3511:16;:20::i;:::-;-1:-1:-1;;;;;3541:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3585:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3410:217:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:18;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:18;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:18;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:2;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:2;;;1144:1;1141;1134:12;1096:2;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:2;;;1352:1;1349;1342:12;1304:2;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1294:173;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:2;;;1634:1;1631;1624:12;1586:2;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1576:224;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:2;;;1994:1;1991;1984:12;1945:2;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:2;;;2264:1;2261;2254:12;2218:2;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:2:18;;2369:1;2366;2359:12;2318:2;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1935:536;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:2;;;2618:1;2615;2608:12;2570:2;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:2;;;2880:1;2877;2870:12;2832:2;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2822:167:18:o;2994:180::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:2;;;3119:1;3116;3109:12;3071:2;3142:26;3158:9;3142:26;:::i;3179:245::-;3237:6;3290:2;3278:9;3269:7;3265:23;3261:32;3258:2;;;3306:1;3303;3296:12;3258:2;3345:9;3332:23;3364:30;3388:5;3364:30;:::i;3429:249::-;3498:6;3551:2;3539:9;3530:7;3526:23;3522:32;3519:2;;;3567:1;3564;3557:12;3519:2;3599:9;3593:16;3618:30;3642:5;3618:30;:::i;3683:450::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:2;;;3821:1;3818;3811:12;3773:2;3861:9;3848:23;3894:18;3886:6;3883:30;3880:2;;;3926:1;3923;3916:12;3880:2;3949:22;;4002:4;3994:13;;3990:27;-1:-1:-1;3980:2:18;;4031:1;4028;4021:12;3980:2;4054:73;4119:7;4114:2;4101:16;4096:2;4092;4088:11;4054:73;:::i;4138:272::-;4196:6;4249:2;4237:9;4228:7;4224:23;4220:32;4217:2;;;4265:1;4262;4255:12;4217:2;4304:9;4291:23;4354:6;4347:5;4343:18;4336:5;4333:29;4323:2;;4376:1;4373;4366:12;4415:180;4474:6;4527:2;4515:9;4506:7;4502:23;4498:32;4495:2;;;4543:1;4540;4533:12;4495:2;-1:-1:-1;4566:23:18;;4485:110;-1:-1:-1;4485:110:18:o;4600:269::-;4657:6;4710:2;4698:9;4689:7;4685:23;4681:32;4678:2;;;4726:1;4723;4716:12;4678:2;4765:9;4752:23;4815:4;4808:5;4804:16;4797:5;4794:27;4784:2;;4835:1;4832;4825:12;4874:257;4915:3;4953:5;4947:12;4980:6;4975:3;4968:19;4996:63;5052:6;5045:4;5040:3;5036:14;5029:4;5022:5;5018:16;4996:63;:::i;:::-;5113:2;5092:15;-1:-1:-1;;5088:29:18;5079:39;;;;5120:4;5075:50;;4923:208;-1:-1:-1;;4923:208:18:o;5136:470::-;5315:3;5353:6;5347:13;5369:53;5415:6;5410:3;5403:4;5395:6;5391:17;5369:53;:::i;:::-;5485:13;;5444:16;;;;5507:57;5485:13;5444:16;5541:4;5529:17;;5507:57;:::i;:::-;5580:20;;5323:283;-1:-1:-1;;;;5323:283:18:o;6052:511::-;6246:4;-1:-1:-1;;;;;6356:2:18;6348:6;6344:15;6333:9;6326:34;6408:2;6400:6;6396:15;6391:2;6380:9;6376:18;6369:43;;6448:6;6443:2;6432:9;6428:18;6421:34;6491:3;6486:2;6475:9;6471:18;6464:31;6512:45;6552:3;6541:9;6537:19;6529:6;6512:45;:::i;:::-;6504:53;6255:308;-1:-1:-1;;;;;;6255:308:18:o;6881:632::-;7052:2;7104:21;;;7174:13;;7077:18;;;7196:22;;;7023:4;;7052:2;7275:15;;;;7249:2;7234:18;;;7023:4;7318:169;7332:6;7329:1;7326:13;7318:169;;;7393:13;;7381:26;;7462:15;;;;7427:12;;;;7354:1;7347:9;7318:169;;;-1:-1:-1;7504:3:18;;7032:481;-1:-1:-1;;;;;;7032:481:18:o;7710:219::-;7859:2;7848:9;7841:21;7822:4;7879:44;7919:2;7908:9;7904:18;7896:6;7879:44;:::i;19427:128::-;19467:3;19498:1;19494:6;19491:1;19488:13;19485:2;;;19504:18;;:::i;:::-;-1:-1:-1;19540:9:18;;19475:80::o;19560:120::-;19600:1;19626;19616:2;;19631:18;;:::i;:::-;-1:-1:-1;19665:9:18;;19606:74::o;19685:125::-;19725:4;19753:1;19750;19747:8;19744:2;;;19758:18;;:::i;:::-;-1:-1:-1;19795:9:18;;19734:76::o;19815:258::-;19887:1;19897:113;19911:6;19908:1;19905:13;19897:113;;;19987:11;;;19981:18;19968:11;;;19961:39;19933:2;19926:10;19897:113;;;20028:6;20025:1;20022:13;20019:2;;;-1:-1:-1;;20063:1:18;20045:16;;20038:27;19868:205::o;20078:437::-;20157:1;20153:12;;;;20200;;;20221:2;;20275:4;20267:6;20263:17;20253:27;;20221:2;20328;20320:6;20317:14;20297:18;20294:38;20291:2;;;-1:-1:-1;;;20362:1:18;20355:88;20466:4;20463:1;20456:15;20494:4;20491:1;20484:15;20291:2;;20133:382;;;:::o;20520:135::-;20559:3;-1:-1:-1;;20580:17:18;;20577:2;;;20600:18;;:::i;:::-;-1:-1:-1;20647:1:18;20636:13;;20567:88::o;20660:112::-;20692:1;20718;20708:2;;20723:18;;:::i;:::-;-1:-1:-1;20757:9:18;;20698:74::o;20777:184::-;-1:-1:-1;;;20826:1:18;20819:88;20926:4;20923:1;20916:15;20950:4;20947:1;20940:15;20966:184;-1:-1:-1;;;21015:1:18;21008:88;21115:4;21112:1;21105:15;21139:4;21136:1;21129:15;21155:184;-1:-1:-1;;;21204:1:18;21197:88;21304:4;21301:1;21294:15;21328:4;21325:1;21318:15;21344:184;-1:-1:-1;;;21393:1:18;21386:88;21493:4;21490:1;21483:15;21517:4;21514:1;21507:15;21533:184;-1:-1:-1;;;21582:1:18;21575:88;21682:4;21679:1;21672:15;21706:4;21703:1;21696:15;21722:177;-1:-1:-1;;;;;;21800:5:18;21796:78;21789:5;21786:89;21776:2;;21889:1;21886;21879:12

Swarm Source

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