ETH Price: $3,357.03 (-1.72%)
Gas: 7 Gwei

Token

Future Art Access All Art Pass (Veefriends edition... (AAAVF)
 

Overview

Max Total Supply

555 AAAVF

Holders

398

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AAAVF
0x7d046f0Cf8a2d6cB2577DC95D96dF0525d96c0FE
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Access All Art VeeFriends Edition HOLDERS WILL RECEIVE: 1 x Access All Art Pass NFT Access to All Future Art events worldwide including confirmed shows in Ibiza, Sydney, London, New York + pop up events 4 x Curated NFT Art drops – Launching with ‘New Day Tomorrow’ project ...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FutureArtAAAPasses

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 {}
}

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

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

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title FutureArtAAAPasses (VeeFriends Edition)
 * @author James Zaki
 * Based on ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
contract FutureArtAAAPasses is
    ContextMixin,
    ERC721Enumerable,
    ERC721Pausable,
    NativeMetaTransaction,
    Ownable
{
    using SafeMath for uint256;

    address immutable proxyRegistryAddress;
    uint256 immutable NFTLimit = 555;
    uint256 private _currentTokenId = 0;
    string private _uri;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress,
        string memory _URI
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _uri = _URI;
        _initializeEIP712(_name);
    }

    /**
     * @dev mints one token to each address. Supply limited to NFTLimit.
     * @param _addresses addresses of future owners of the tokens
     */
    function mintToAddresses(
        address[] calldata _addresses
    ) public onlyOwner {
        uint256 lastId = _currentTokenId + _addresses.length;
        require(lastId <= NFTLimit, "FutureArtAAAPasses: total tokens must not exceed limit");
        for (uint256 i = 0; i < _addresses.length; i++) {
            uint256 newTokenId = _getNextTokenId();
            _mint(_addresses[i], newTokenId);
            _incrementTokenId();
        }
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() private {
        _currentTokenId++;
    }

    /**
     * @dev shared uri for nfts
     */
    function tokenURI(uint256 /*_tokenId*/) override public view returns (string memory) {
        return _uri;
    }

    /**
     * @dev set _uri for all nfts
     */
    function setURI(string memory _newURI) public onlyOwner {
        _uri = _newURI;
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address tokenOwner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(tokenOwner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(tokenOwner, operator);
    }

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

    /**
      * @dev Pauses all token transfers.
      */
    function pause() public virtual onlyOwner {
        _pause();
    }
    /**
      * @dev Unpauses all token transfers.
      */
    function unpause() public virtual onlyOwner {
        _unpause();
    }

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

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_URI","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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"mintToAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","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":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600a805461ff001916905561022b60a0526000600e553480156200002757600080fd5b5060405162002c0938038062002c098339810160408190526200004a916200040a565b83518490849062000063906000906020850190620002b1565b50805162000079906001906020840190620002b1565b5050600a805460ff19169055506200009a62000094620000d7565b620000f3565b6001600160601b0319606083901b166080528051620000c190600f906020840190620002b1565b50620000cd8462000145565b505050506200050b565b6000620000ee620001b060201b620012781760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54610100900460ff1615620001935760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200019e816200020f565b50600a805461ff001916610100179055565b6000333014156200020957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200020c9050565b50335b90565b6040518060800160405280604f815260200162002bba604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620002bf90620004b8565b90600052602060002090601f016020900481019282620002e357600085556200032e565b82601f10620002fe57805160ff19168380011785556200032e565b828001600101855582156200032e579182015b828111156200032e57825182559160200191906001019062000311565b506200033c92915062000340565b5090565b5b808211156200033c576000815560010162000341565b600082601f83011262000368578081fd5b81516001600160401b0380821115620003855762000385620004f5565b604051601f8301601f19908116603f01168101908282118183101715620003b057620003b0620004f5565b81604052838152602092508683858801011115620003cc578485fd5b8491505b83821015620003ef5785820183015181830184015290820190620003d0565b838211156200040057848385830101525b9695505050505050565b6000806000806080858703121562000420578384fd5b84516001600160401b038082111562000437578586fd5b620004458883890162000357565b955060208701519150808211156200045b578485fd5b620004698883890162000357565b604088015190955091506001600160a01b038216821462000488578384fd5b6060870151919350808211156200049d578283fd5b50620004ac8782880162000357565b91505092959194509250565b600181811c90821680620004cd57607f821691505b60208210811415620004ef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a0516126866200053460003960006106c9015260006110f201526126866000f3fe6080604052600436106101c25760003560e01c80633f4ba83a116100f75780638456cb5911610095578063b88d4fde11610064578063b88d4fde146104df578063c87b56dd146104ff578063e985e9c51461051f578063f2fde38b1461053f57600080fd5b80638456cb59146104775780638da5cb5b1461048c57806395d89b41146104aa578063a22cb465146104bf57600080fd5b80635c975abb116100d15780635c975abb1461040a5780636352211e1461042257806370a0823114610442578063715018a61461046257600080fd5b80633f4ba83a146103b557806342842e0e146103ca5780634f6ccce7146103ea57600080fd5b80630f7e59701161016457806323b872dd1161013e57806323b872dd1461032c5780632d0335ab1461034c5780632f745c59146103825780633408e470146103a257600080fd5b80630f7e5970146102cb57806318160ddd146102f857806320379ee51461031757600080fd5b806306ff3962116101a057806306ff396214610240578063081812fc14610260578063095ea7b3146102985780630c53c51c146102b857600080fd5b806301ffc9a7146101c757806302fe5305146101fc57806306fdde031461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612277565b61055f565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021c6102173660046122cb565b610570565b005b34801561022a57600080fd5b506102336105d9565b6040516101f3919061241a565b34801561024c57600080fd5b5061021c61025b366004612207565b61066b565b34801561026c57600080fd5b5061028061027b366004612311565b6107cc565b6040516001600160a01b0390911681526020016101f3565b3480156102a457600080fd5b5061021c6102b33660046121dc565b610861565b6102336102c6366004612161565b610989565b3480156102d757600080fd5b50610233604051806040016040528060018152602001603160f81b81525081565b34801561030457600080fd5b506008545b6040519081526020016101f3565b34801561032357600080fd5b50600b54610309565b34801561033857600080fd5b5061021c610347366004612086565b610b73565b34801561035857600080fd5b50610309610367366004612032565b6001600160a01b03166000908152600c602052604090205490565b34801561038e57600080fd5b5061030961039d3660046121dc565b610bab565b3480156103ae57600080fd5b5046610309565b3480156103c157600080fd5b5061021c610c41565b3480156103d657600080fd5b5061021c6103e5366004612086565b610c94565b3480156103f657600080fd5b50610309610405366004612311565b610caf565b34801561041657600080fd5b50600a5460ff166101e7565b34801561042e57600080fd5b5061028061043d366004612311565b610d50565b34801561044e57600080fd5b5061030961045d366004612032565b610dc7565b34801561046e57600080fd5b5061021c610e4e565b34801561048357600080fd5b5061021c610ea1565b34801561049857600080fd5b50600d546001600160a01b0316610280565b3480156104b657600080fd5b50610233610ef2565b3480156104cb57600080fd5b5061021c6104da366004612130565b610f01565b3480156104eb57600080fd5b5061021c6104fa3660046120c6565b611003565b34801561050b57600080fd5b5061023361051a366004612311565b61103c565b34801561052b57600080fd5b506101e761053a36600461204e565b6110d0565b34801561054b57600080fd5b5061021c61055a366004612032565b6111be565b600061056a826112d5565b92915050565b6105786112fa565b6001600160a01b0316610593600d546001600160a01b031690565b6001600160a01b0316146105c25760405162461bcd60e51b81526004016105b99061247f565b60405180910390fd5b80516105d590600f906020840190611f04565b5050565b6060600080546105e890612560565b80601f016020809104026020016040519081016040528092919081815260200182805461061490612560565b80156106615780601f1061063657610100808354040283529160200191610661565b820191906000526020600020905b81548152906001019060200180831161064457829003601f168201915b5050505050905090565b6106736112fa565b6001600160a01b031661068e600d546001600160a01b031690565b6001600160a01b0316146106b45760405162461bcd60e51b81526004016105b99061247f565b600e546000906106c5908390612505565b90507f00000000000000000000000000000000000000000000000000000000000000008111156107565760405162461bcd60e51b815260206004820152603660248201527f4675747572654172744141415061737365733a20746f74616c20746f6b656e73604482015275081b5d5cdd081b9bdd08195e18d95959081b1a5b5a5d60521b60648201526084016105b9565b60005b828110156107c657600061076b611309565b90506107ab85858481811061079057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906107a59190612032565b8261131a565b6107b3611468565b50806107be8161259b565b915050610759565b50505050565b6000818152600260205260408120546001600160a01b03166108455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b9565b506000908152600460205260409020546001600160a01b031690565b600061086c82610d50565b9050806001600160a01b0316836001600160a01b031614156108da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b9565b806001600160a01b03166108ec6112fa565b6001600160a01b0316148061090857506109088161053a6112fa565b61097a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105b9565b610984838361147f565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526109c787828787876114ed565b610a1d5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016105b9565b6001600160a01b0387166000908152600c6020526040902054610a419060016115dd565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610a9190899033908a906123a8565b60405180910390a1600080306001600160a01b0316888a604051602001610ab9929190612371565b60408051601f1981840301815290829052610ad391612355565b6000604051808303816000865af19150503d8060008114610b10576040519150601f19603f3d011682016040523d82523d6000602084013e610b15565b606091505b509150915081610b675760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016105b9565b98975050505050505050565b610b84610b7e6112fa565b826115f0565b610ba05760405162461bcd60e51b81526004016105b9906124b4565b6109848383836116bf565b6000610bb683610dc7565b8210610c185760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105b9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c496112fa565b6001600160a01b0316610c64600d546001600160a01b031690565b6001600160a01b031614610c8a5760405162461bcd60e51b81526004016105b99061247f565b610c9261186a565b565b61098483838360405180602001604052806000815250611003565b6000610cba60085490565b8210610d1d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105b9565b60088281548110610d3e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061056a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b9565b60006001600160a01b038216610e325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b9565b506001600160a01b031660009081526003602052604090205490565b610e566112fa565b6001600160a01b0316610e71600d546001600160a01b031690565b6001600160a01b031614610e975760405162461bcd60e51b81526004016105b99061247f565b610c926000611903565b610ea96112fa565b6001600160a01b0316610ec4600d546001600160a01b031690565b6001600160a01b031614610eea5760405162461bcd60e51b81526004016105b99061247f565b610c92611955565b6060600180546105e890612560565b610f096112fa565b6001600160a01b0316826001600160a01b03161415610f6a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b9565b8060056000610f776112fa565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fbb6112fa565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff7911515815260200190565b60405180910390a35050565b61101461100e6112fa565b836115f0565b6110305760405162461bcd60e51b81526004016105b9906124b4565b6107c6848484846119d1565b6060600f805461104b90612560565b80601f016020809104026020016040519081016040528092919081815260200182805461107790612560565b80156110c45780601f10611099576101008083540402835291602001916110c4565b820191906000526020600020905b8154815290600101906020018083116110a757829003601f168201915b50505050509050919050565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000000000000000000000000000000000000000000091848116919083169063c45527919060240160206040518083038186803b15801561113b57600080fd5b505afa15801561114f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117391906122af565b6001600160a01b0316141561118c57600191505061056a565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6111c66112fa565b6001600160a01b03166111e1600d546001600160a01b031690565b6001600160a01b0316146112075760405162461bcd60e51b81526004016105b99061247f565b6001600160a01b03811661126c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b9565b61127581611903565b50565b6000333014156112cf57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506112d29050565b50335b90565b60006001600160e01b0319821663780e9d6360e01b148061056a575061056a82611a04565b6000611304611278565b905090565b600e546000906113049060016115dd565b6001600160a01b0382166113705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b9565b6000818152600260205260409020546001600160a01b0316156113d55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b9565b6113e160008383611a54565b6001600160a01b038216600090815260036020526040812080546001929061140a908490612505565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600e80549060006114788361259b565b9190505550565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114b482610d50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166115535760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016105b9565b600161156661156187611a5f565b611adc565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156115b4573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006115e98284612505565b9392505050565b6000818152600260205260408120546001600160a01b03166116695760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b9565b600061167483610d50565b9050806001600160a01b0316846001600160a01b031614806116af5750836001600160a01b03166116a4846107cc565b6001600160a01b0316145b806111b657506111b681856110d0565b826001600160a01b03166116d282610d50565b6001600160a01b03161461173a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b9565b6001600160a01b03821661179c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b9565b6117a7838383611a54565b6117b260008261147f565b6001600160a01b03831660009081526003602052604081208054600192906117db90849061251d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611809908490612505565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff166118b35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105b9565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118e66112fa565b6040516001600160a01b03909116815260200160405180910390a1565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff161561199b5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105b9565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118e66112fa565b6119dc8484846116bf565b6119e884848484611b0c565b6107c65760405162461bcd60e51b81526004016105b99061242d565b60006001600160e01b031982166380ac58cd60e01b1480611a3557506001600160e01b03198216635b5e139f60e01b145b8061056a57506301ffc9a760e01b6001600160e01b031983161461056a565b610984838383611c20565b600060405180608001604052806043815260200161260e6043913980516020918201208351848301516040808701518051908601209051611abf950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611ae7600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611abf565b60006001600160a01b0384163b15611c1557836001600160a01b031663150b7a02611b356112fa565b8786866040518563ffffffff1660e01b8152600401611b5794939291906123dd565b602060405180830381600087803b158015611b7157600080fd5b505af1925050508015611ba1575060408051601f3d908101601f19168201909252611b9e91810190612293565b60015b611bfb573d808015611bcf576040519150601f19603f3d011682016040523d82523d6000602084013e611bd4565b606091505b508051611bf35760405162461bcd60e51b81526004016105b99061242d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111b6565b506001949350505050565b611c2b838383611c92565b600a5460ff16156109845760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016105b9565b6001600160a01b038316611ced57611ce881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d10565b816001600160a01b0316836001600160a01b031614611d1057611d108382611d4a565b6001600160a01b038216611d275761098481611de7565b826001600160a01b0316826001600160a01b031614610984576109848282611ec0565b60006001611d5784610dc7565b611d61919061251d565b600083815260076020526040902054909150808214611db4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611df99060019061251d565b60008381526009602052604081205460088054939450909284908110611e2f57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e5e57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ea457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ecb83610dc7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f1090612560565b90600052602060002090601f016020900481019282611f325760008555611f78565b82601f10611f4b57805160ff1916838001178555611f78565b82800160010185558215611f78579182015b82811115611f78578251825591602001919060010190611f5d565b50611f84929150611f88565b5090565b5b80821115611f845760008155600101611f89565b600067ffffffffffffffff80841115611fb857611fb86125cc565b604051601f8501601f19908116603f01168101908282118183101715611fe057611fe06125cc565b81604052809350858152868686011115611ff957600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612023578081fd5b6115e983833560208501611f9d565b600060208284031215612043578081fd5b81356115e9816125e2565b60008060408385031215612060578081fd5b823561206b816125e2565b9150602083013561207b816125e2565b809150509250929050565b60008060006060848603121561209a578081fd5b83356120a5816125e2565b925060208401356120b5816125e2565b929592945050506040919091013590565b600080600080608085870312156120db578081fd5b84356120e6816125e2565b935060208501356120f6816125e2565b925060408501359150606085013567ffffffffffffffff811115612118578182fd5b61212487828801612013565b91505092959194509250565b60008060408385031215612142578182fd5b823561214d816125e2565b91506020830135801515811461207b578182fd5b600080600080600060a08688031215612178578081fd5b8535612183816125e2565b9450602086013567ffffffffffffffff81111561219e578182fd5b6121aa88828901612013565b9450506040860135925060608601359150608086013560ff811681146121ce578182fd5b809150509295509295909350565b600080604083850312156121ee578182fd5b82356121f9816125e2565b946020939093013593505050565b60008060208385031215612219578182fd5b823567ffffffffffffffff80821115612230578384fd5b818501915085601f830112612243578384fd5b813581811115612251578485fd5b8660208260051b8501011115612265578485fd5b60209290920196919550909350505050565b600060208284031215612288578081fd5b81356115e9816125f7565b6000602082840312156122a4578081fd5b81516115e9816125f7565b6000602082840312156122c0578081fd5b81516115e9816125e2565b6000602082840312156122dc578081fd5b813567ffffffffffffffff8111156122f2578182fd5b8201601f81018413612302578182fd5b6111b684823560208401611f9d565b600060208284031215612322578081fd5b5035919050565b60008151808452612341816020860160208601612534565b601f01601f19169290920160200192915050565b60008251612367818460208701612534565b9190910192915050565b60008351612383818460208801612534565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6001600160a01b038481168252831660208201526060604082018190526000906123d490830184612329565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241090830184612329565b9695505050505050565b6020815260006115e96020830184612329565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612518576125186125b6565b500190565b60008282101561252f5761252f6125b6565b500390565b60005b8381101561254f578181015183820152602001612537565b838111156107c65750506000910152565b600181811c9082168061257457607f821691505b6020821081141561259557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125af576125af6125b6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461127557600080fd5b6001600160e01b03198116811461127557600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212200a29bf76a31e0df4a501f3661bb42722fe127fb0bd069876a102137576ec045c64736f6c63430008040033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000033467574757265204172742041636365737320416c6c2041727420506173732028566565667269656e64732065646974696f6e290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054141415646000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f6675747572656172742e6d7970696e6174612e636c6f75642f697066732f516d64396e7955416e6737627a7638385356756e353178727043614e535a4439754e5a693831476b783165513178000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80633f4ba83a116100f75780638456cb5911610095578063b88d4fde11610064578063b88d4fde146104df578063c87b56dd146104ff578063e985e9c51461051f578063f2fde38b1461053f57600080fd5b80638456cb59146104775780638da5cb5b1461048c57806395d89b41146104aa578063a22cb465146104bf57600080fd5b80635c975abb116100d15780635c975abb1461040a5780636352211e1461042257806370a0823114610442578063715018a61461046257600080fd5b80633f4ba83a146103b557806342842e0e146103ca5780634f6ccce7146103ea57600080fd5b80630f7e59701161016457806323b872dd1161013e57806323b872dd1461032c5780632d0335ab1461034c5780632f745c59146103825780633408e470146103a257600080fd5b80630f7e5970146102cb57806318160ddd146102f857806320379ee51461031757600080fd5b806306ff3962116101a057806306ff396214610240578063081812fc14610260578063095ea7b3146102985780630c53c51c146102b857600080fd5b806301ffc9a7146101c757806302fe5305146101fc57806306fdde031461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612277565b61055f565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021c6102173660046122cb565b610570565b005b34801561022a57600080fd5b506102336105d9565b6040516101f3919061241a565b34801561024c57600080fd5b5061021c61025b366004612207565b61066b565b34801561026c57600080fd5b5061028061027b366004612311565b6107cc565b6040516001600160a01b0390911681526020016101f3565b3480156102a457600080fd5b5061021c6102b33660046121dc565b610861565b6102336102c6366004612161565b610989565b3480156102d757600080fd5b50610233604051806040016040528060018152602001603160f81b81525081565b34801561030457600080fd5b506008545b6040519081526020016101f3565b34801561032357600080fd5b50600b54610309565b34801561033857600080fd5b5061021c610347366004612086565b610b73565b34801561035857600080fd5b50610309610367366004612032565b6001600160a01b03166000908152600c602052604090205490565b34801561038e57600080fd5b5061030961039d3660046121dc565b610bab565b3480156103ae57600080fd5b5046610309565b3480156103c157600080fd5b5061021c610c41565b3480156103d657600080fd5b5061021c6103e5366004612086565b610c94565b3480156103f657600080fd5b50610309610405366004612311565b610caf565b34801561041657600080fd5b50600a5460ff166101e7565b34801561042e57600080fd5b5061028061043d366004612311565b610d50565b34801561044e57600080fd5b5061030961045d366004612032565b610dc7565b34801561046e57600080fd5b5061021c610e4e565b34801561048357600080fd5b5061021c610ea1565b34801561049857600080fd5b50600d546001600160a01b0316610280565b3480156104b657600080fd5b50610233610ef2565b3480156104cb57600080fd5b5061021c6104da366004612130565b610f01565b3480156104eb57600080fd5b5061021c6104fa3660046120c6565b611003565b34801561050b57600080fd5b5061023361051a366004612311565b61103c565b34801561052b57600080fd5b506101e761053a36600461204e565b6110d0565b34801561054b57600080fd5b5061021c61055a366004612032565b6111be565b600061056a826112d5565b92915050565b6105786112fa565b6001600160a01b0316610593600d546001600160a01b031690565b6001600160a01b0316146105c25760405162461bcd60e51b81526004016105b99061247f565b60405180910390fd5b80516105d590600f906020840190611f04565b5050565b6060600080546105e890612560565b80601f016020809104026020016040519081016040528092919081815260200182805461061490612560565b80156106615780601f1061063657610100808354040283529160200191610661565b820191906000526020600020905b81548152906001019060200180831161064457829003601f168201915b5050505050905090565b6106736112fa565b6001600160a01b031661068e600d546001600160a01b031690565b6001600160a01b0316146106b45760405162461bcd60e51b81526004016105b99061247f565b600e546000906106c5908390612505565b90507f000000000000000000000000000000000000000000000000000000000000022b8111156107565760405162461bcd60e51b815260206004820152603660248201527f4675747572654172744141415061737365733a20746f74616c20746f6b656e73604482015275081b5d5cdd081b9bdd08195e18d95959081b1a5b5a5d60521b60648201526084016105b9565b60005b828110156107c657600061076b611309565b90506107ab85858481811061079057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906107a59190612032565b8261131a565b6107b3611468565b50806107be8161259b565b915050610759565b50505050565b6000818152600260205260408120546001600160a01b03166108455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b9565b506000908152600460205260409020546001600160a01b031690565b600061086c82610d50565b9050806001600160a01b0316836001600160a01b031614156108da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b9565b806001600160a01b03166108ec6112fa565b6001600160a01b0316148061090857506109088161053a6112fa565b61097a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105b9565b610984838361147f565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526109c787828787876114ed565b610a1d5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016105b9565b6001600160a01b0387166000908152600c6020526040902054610a419060016115dd565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610a9190899033908a906123a8565b60405180910390a1600080306001600160a01b0316888a604051602001610ab9929190612371565b60408051601f1981840301815290829052610ad391612355565b6000604051808303816000865af19150503d8060008114610b10576040519150601f19603f3d011682016040523d82523d6000602084013e610b15565b606091505b509150915081610b675760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016105b9565b98975050505050505050565b610b84610b7e6112fa565b826115f0565b610ba05760405162461bcd60e51b81526004016105b9906124b4565b6109848383836116bf565b6000610bb683610dc7565b8210610c185760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105b9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c496112fa565b6001600160a01b0316610c64600d546001600160a01b031690565b6001600160a01b031614610c8a5760405162461bcd60e51b81526004016105b99061247f565b610c9261186a565b565b61098483838360405180602001604052806000815250611003565b6000610cba60085490565b8210610d1d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105b9565b60088281548110610d3e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061056a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b9565b60006001600160a01b038216610e325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b9565b506001600160a01b031660009081526003602052604090205490565b610e566112fa565b6001600160a01b0316610e71600d546001600160a01b031690565b6001600160a01b031614610e975760405162461bcd60e51b81526004016105b99061247f565b610c926000611903565b610ea96112fa565b6001600160a01b0316610ec4600d546001600160a01b031690565b6001600160a01b031614610eea5760405162461bcd60e51b81526004016105b99061247f565b610c92611955565b6060600180546105e890612560565b610f096112fa565b6001600160a01b0316826001600160a01b03161415610f6a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b9565b8060056000610f776112fa565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fbb6112fa565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff7911515815260200190565b60405180910390a35050565b61101461100e6112fa565b836115f0565b6110305760405162461bcd60e51b81526004016105b9906124b4565b6107c6848484846119d1565b6060600f805461104b90612560565b80601f016020809104026020016040519081016040528092919081815260200182805461107790612560565b80156110c45780601f10611099576101008083540402835291602001916110c4565b820191906000526020600020905b8154815290600101906020018083116110a757829003601f168201915b50505050509050919050565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c191848116919083169063c45527919060240160206040518083038186803b15801561113b57600080fd5b505afa15801561114f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117391906122af565b6001600160a01b0316141561118c57600191505061056a565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6111c66112fa565b6001600160a01b03166111e1600d546001600160a01b031690565b6001600160a01b0316146112075760405162461bcd60e51b81526004016105b99061247f565b6001600160a01b03811661126c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b9565b61127581611903565b50565b6000333014156112cf57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506112d29050565b50335b90565b60006001600160e01b0319821663780e9d6360e01b148061056a575061056a82611a04565b6000611304611278565b905090565b600e546000906113049060016115dd565b6001600160a01b0382166113705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b9565b6000818152600260205260409020546001600160a01b0316156113d55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b9565b6113e160008383611a54565b6001600160a01b038216600090815260036020526040812080546001929061140a908490612505565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600e80549060006114788361259b565b9190505550565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114b482610d50565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166115535760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016105b9565b600161156661156187611a5f565b611adc565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156115b4573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006115e98284612505565b9392505050565b6000818152600260205260408120546001600160a01b03166116695760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b9565b600061167483610d50565b9050806001600160a01b0316846001600160a01b031614806116af5750836001600160a01b03166116a4846107cc565b6001600160a01b0316145b806111b657506111b681856110d0565b826001600160a01b03166116d282610d50565b6001600160a01b03161461173a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b9565b6001600160a01b03821661179c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b9565b6117a7838383611a54565b6117b260008261147f565b6001600160a01b03831660009081526003602052604081208054600192906117db90849061251d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611809908490612505565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff166118b35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105b9565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118e66112fa565b6040516001600160a01b03909116815260200160405180910390a1565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff161561199b5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105b9565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118e66112fa565b6119dc8484846116bf565b6119e884848484611b0c565b6107c65760405162461bcd60e51b81526004016105b99061242d565b60006001600160e01b031982166380ac58cd60e01b1480611a3557506001600160e01b03198216635b5e139f60e01b145b8061056a57506301ffc9a760e01b6001600160e01b031983161461056a565b610984838383611c20565b600060405180608001604052806043815260200161260e6043913980516020918201208351848301516040808701518051908601209051611abf950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611ae7600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611abf565b60006001600160a01b0384163b15611c1557836001600160a01b031663150b7a02611b356112fa565b8786866040518563ffffffff1660e01b8152600401611b5794939291906123dd565b602060405180830381600087803b158015611b7157600080fd5b505af1925050508015611ba1575060408051601f3d908101601f19168201909252611b9e91810190612293565b60015b611bfb573d808015611bcf576040519150601f19603f3d011682016040523d82523d6000602084013e611bd4565b606091505b508051611bf35760405162461bcd60e51b81526004016105b99061242d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111b6565b506001949350505050565b611c2b838383611c92565b600a5460ff16156109845760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016105b9565b6001600160a01b038316611ced57611ce881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d10565b816001600160a01b0316836001600160a01b031614611d1057611d108382611d4a565b6001600160a01b038216611d275761098481611de7565b826001600160a01b0316826001600160a01b031614610984576109848282611ec0565b60006001611d5784610dc7565b611d61919061251d565b600083815260076020526040902054909150808214611db4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611df99060019061251d565b60008381526009602052604081205460088054939450909284908110611e2f57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e5e57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ea457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ecb83610dc7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f1090612560565b90600052602060002090601f016020900481019282611f325760008555611f78565b82601f10611f4b57805160ff1916838001178555611f78565b82800160010185558215611f78579182015b82811115611f78578251825591602001919060010190611f5d565b50611f84929150611f88565b5090565b5b80821115611f845760008155600101611f89565b600067ffffffffffffffff80841115611fb857611fb86125cc565b604051601f8501601f19908116603f01168101908282118183101715611fe057611fe06125cc565b81604052809350858152868686011115611ff957600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612023578081fd5b6115e983833560208501611f9d565b600060208284031215612043578081fd5b81356115e9816125e2565b60008060408385031215612060578081fd5b823561206b816125e2565b9150602083013561207b816125e2565b809150509250929050565b60008060006060848603121561209a578081fd5b83356120a5816125e2565b925060208401356120b5816125e2565b929592945050506040919091013590565b600080600080608085870312156120db578081fd5b84356120e6816125e2565b935060208501356120f6816125e2565b925060408501359150606085013567ffffffffffffffff811115612118578182fd5b61212487828801612013565b91505092959194509250565b60008060408385031215612142578182fd5b823561214d816125e2565b91506020830135801515811461207b578182fd5b600080600080600060a08688031215612178578081fd5b8535612183816125e2565b9450602086013567ffffffffffffffff81111561219e578182fd5b6121aa88828901612013565b9450506040860135925060608601359150608086013560ff811681146121ce578182fd5b809150509295509295909350565b600080604083850312156121ee578182fd5b82356121f9816125e2565b946020939093013593505050565b60008060208385031215612219578182fd5b823567ffffffffffffffff80821115612230578384fd5b818501915085601f830112612243578384fd5b813581811115612251578485fd5b8660208260051b8501011115612265578485fd5b60209290920196919550909350505050565b600060208284031215612288578081fd5b81356115e9816125f7565b6000602082840312156122a4578081fd5b81516115e9816125f7565b6000602082840312156122c0578081fd5b81516115e9816125e2565b6000602082840312156122dc578081fd5b813567ffffffffffffffff8111156122f2578182fd5b8201601f81018413612302578182fd5b6111b684823560208401611f9d565b600060208284031215612322578081fd5b5035919050565b60008151808452612341816020860160208601612534565b601f01601f19169290920160200192915050565b60008251612367818460208701612534565b9190910192915050565b60008351612383818460208801612534565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6001600160a01b038481168252831660208201526060604082018190526000906123d490830184612329565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241090830184612329565b9695505050505050565b6020815260006115e96020830184612329565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612518576125186125b6565b500190565b60008282101561252f5761252f6125b6565b500390565b60005b8381101561254f578181015183820152602001612537565b838111156107c65750506000910152565b600181811c9082168061257457607f821691505b6020821081141561259557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125af576125af6125b6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461127557600080fd5b6001600160e01b03198116811461127557600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212200a29bf76a31e0df4a501f3661bb42722fe127fb0bd069876a102137576ec045c64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000033467574757265204172742041636365737320416c6c2041727420506173732028566565667269656e64732065646974696f6e290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054141415646000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f6675747572656172742e6d7970696e6174612e636c6f75642f697066732f516d64396e7955416e6737627a7638385356756e353178727043614e535a4439754e5a693831476b783165513178000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Future Art Access All Art Pass (Veefriends edition)
Arg [1] : _symbol (string): AAAVF
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [3] : _URI (string): https://futureart.mypinata.cloud/ipfs/Qmd9nyUAng7bzv88SVun51xrpCaNSZD9uNZi81Gkx1eQ1x

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [5] : 467574757265204172742041636365737320416c6c2041727420506173732028
Arg [6] : 566565667269656e64732065646974696f6e2900000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 4141415646000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [10] : 68747470733a2f2f6675747572656172742e6d7970696e6174612e636c6f7564
Arg [11] : 2f697066732f516d64396e7955416e6737627a7638385356756e353178727043
Arg [12] : 614e535a4439754e5a693831476b783165513178000000000000000000000000


Deployed Bytecode Sourcemap

58093:3588:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60675:179;;;;;;;;;;-1:-1:-1;60675:179:0;;;;;:::i;:::-;;:::i;:::-;;;9102:14:1;;9095:22;9077:41;;9065:2;9050:18;60675:179:0;;;;;;;;59986:89;;;;;;;;;;-1:-1:-1;59986:89:0;;;;;:::i;:::-;;:::i;:::-;;20784:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;58885:460::-;;;;;;;;;;-1:-1:-1;58885:460:0;;;;;:::i;:::-;;:::i;22343:221::-;;;;;;;;;;-1:-1:-1;22343:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7964:32:1;;;7946:51;;7934:2;7919:18;22343:221:0;7901:102:1;21866:411:0;;;;;;;;;;-1:-1:-1;21866:411:0;;;;;:::i;:::-;;:::i;55583:1151::-;;;;;;:::i;:::-;;:::i;52848:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52848:43:0;;;;;37228:113;;;;;;;;;;-1:-1:-1;37316:10:0;:17;37228:113;;;9275:25:1;;;9263:2;9248:18;37228:113:0;9230:76:1;53857:101:0;;;;;;;;;;-1:-1:-1;53935:15:0;;53857:101;;23233:339;;;;;;;;;;-1:-1:-1;23233:339:0;;;;;:::i;:::-;;:::i;57160:107::-;;;;;;;;;;-1:-1:-1;57160:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;57247:12:0;57213:13;57247:12;;;:6;:12;;;;;;;57160:107;36896:256;;;;;;;;;;-1:-1:-1;36896:256:0;;;;;:::i;:::-;;:::i;53966:161::-;;;;;;;;;;-1:-1:-1;54080:9:0;53966:161;;61061:73;;;;;;;;;;;;;:::i;23643:185::-;;;;;;;;;;-1:-1:-1;23643:185:0;;;;;:::i;:::-;;:::i;37418:233::-;;;;;;;;;;-1:-1:-1;37418:233:0;;;;;:::i;:::-;;:::i;32945:86::-;;;;;;;;;;-1:-1:-1;33016:7:0;;;;32945:86;;20478:239;;;;;;;;;;-1:-1:-1;20478:239:0;;;;;:::i;:::-;;:::i;20208:208::-;;;;;;;;;;-1:-1:-1;20208:208:0;;;;;:::i;:::-;;:::i;44297:94::-;;;;;;;;;;;;;:::i;60923:69::-;;;;;;;;;;;;;:::i;43646:87::-;;;;;;;;;;-1:-1:-1;43719:6:0;;-1:-1:-1;;;;;43719:6:0;43646:87;;20953:104;;;;;;;;;;;;;:::i;22636:295::-;;;;;;;;;;-1:-1:-1;22636:295:0;;;;;:::i;:::-;;:::i;23899:328::-;;;;;;;;;;-1:-1:-1;23899:328:0;;;;;:::i;:::-;;:::i;59810:115::-;;;;;;;;;;-1:-1:-1;59810:115:0;;;;;:::i;:::-;;:::i;60207:460::-;;;;;;;;;;-1:-1:-1;60207:460:0;;;;;:::i;:::-;;:::i;44546:192::-;;;;;;;;;;-1:-1:-1;44546:192:0;;;;;:::i;:::-;;:::i;60675:179::-;60786:4;60810:36;60834:11;60810:23;:36::i;:::-;60803:43;60675:179;-1:-1:-1;;60675:179:0:o;59986:89::-;43877:12;:10;:12::i;:::-;-1:-1:-1;;;;;43866:23:0;:7;43719:6;;-1:-1:-1;;;;;43719:6:0;;43646:87;43866:7;-1:-1:-1;;;;;43866:23:0;;43858:68;;;;-1:-1:-1;;;43858:68:0;;;;;;;:::i;:::-;;;;;;;;;60053:14;;::::1;::::0;:4:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59986:89:::0;:::o;20784:100::-;20838:13;20871:5;20864:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20784:100;:::o;58885:460::-;43877:12;:10;:12::i;:::-;-1:-1:-1;;;;;43866:23:0;:7;43719:6;;-1:-1:-1;;;;;43719:6:0;;43646:87;43866:7;-1:-1:-1;;;;;43866:23:0;;43858:68;;;;-1:-1:-1;;;43858:68:0;;;;;;;:::i;:::-;59002:15:::1;::::0;58985:14:::1;::::0;59002:35:::1;::::0;59020:10;;59002:35:::1;:::i;:::-;58985:52;;59066:8;59056:6;:18;;59048:85;;;::::0;-1:-1:-1;;;59048:85:0;;13497:2:1;59048:85:0::1;::::0;::::1;13479:21:1::0;13536:2;13516:18;;;13509:30;13575:34;13555:18;;;13548:62;-1:-1:-1;;;13626:18:1;;;13619:52;13688:19;;59048:85:0::1;13469:244:1::0;59048:85:0::1;59149:9;59144:194;59164:21:::0;;::::1;59144:194;;;59207:18;59228:17;:15;:17::i;:::-;59207:38;;59260:32;59266:10;;59277:1;59266:13;;;;;-1:-1:-1::0;;;59266:13:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59281:10;59260:5;:32::i;:::-;59307:19;:17;:19::i;:::-;-1:-1:-1::0;59187:3:0;::::1;::::0;::::1;:::i;:::-;;;;59144:194;;;;43937:1;58885:460:::0;;:::o;22343:221::-;22419:7;25826:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25826:16:0;22439:73;;;;-1:-1:-1;;;22439:73:0;;17450:2:1;22439:73:0;;;17432:21:1;17489:2;17469:18;;;17462:30;17528:34;17508:18;;;17501:62;-1:-1:-1;;;17579:18:1;;;17572:42;17631:19;;22439:73:0;17422:234:1;22439:73:0;-1:-1:-1;22532:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22532:24:0;;22343:221::o;21866:411::-;21947:13;21963:23;21978:7;21963:14;:23::i;:::-;21947:39;;22011:5;-1:-1:-1;;;;;22005:11:0;:2;-1:-1:-1;;;;;22005:11:0;;;21997:57;;;;-1:-1:-1;;;21997:57:0;;19036:2:1;21997:57:0;;;19018:21:1;19075:2;19055:18;;;19048:30;19114:34;19094:18;;;19087:62;-1:-1:-1;;;19165:18:1;;;19158:31;19206:19;;21997:57:0;19008:223:1;21997:57:0;22105:5;-1:-1:-1;;;;;22089:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22089:21:0;;:62;;;;22114:37;22131:5;22138:12;:10;:12::i;22114:37::-;22067:168;;;;-1:-1:-1;;;22067:168:0;;15843:2:1;22067:168:0;;;15825:21:1;15882:2;15862:18;;;15855:30;15921:34;15901:18;;;15894:62;15992:26;15972:18;;;15965:54;16036:19;;22067:168:0;15815:246:1;22067:168:0;22248:21;22257:2;22261:7;22248:8;:21::i;:::-;21866:411;;;:::o;55583:1151::-;55841:152;;;55784:12;55841:152;;;;;-1:-1:-1;;;;;55879:19:0;;55809:29;55879:19;;;:6;:19;;;;;;;;;55841:152;;;;;;;;;;;56028:45;55886:11;55841:152;56056:4;56062;56068;56028:6;:45::i;:::-;56006:128;;;;-1:-1:-1;;;56006:128:0;;18634:2:1;56006:128:0;;;18616:21:1;18673:2;18653:18;;;18646:30;18712:34;18692:18;;;18685:62;-1:-1:-1;;;18763:18:1;;;18756:31;18804:19;;56006:128:0;18606:223:1;56006:128:0;-1:-1:-1;;;;;56223:19:0;;;;;;:6;:19;;;;;;:26;;56247:1;56223:23;:26::i;:::-;-1:-1:-1;;;;;56201:19:0;;;;;;:6;:19;;;;;;;:48;;;;56267:126;;;;;56208:11;;56339:10;;56365:17;;56267:126;:::i;:::-;;;;;;;;56504:12;56518:23;56553:4;-1:-1:-1;;;;;56545:18:0;56595:17;56614:11;56578:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;56578:48:0;;;;;;;;;;56545:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56503:134;;;;56656:7;56648:48;;;;-1:-1:-1;;;56648:48:0;;12783:2:1;56648:48:0;;;12765:21:1;12822:2;12802:18;;;12795:30;12861;12841:18;;;12834:58;12909:18;;56648:48:0;12755:178:1;56648:48:0;56716:10;55583:1151;-1:-1:-1;;;;;;;;55583:1151:0:o;23233:339::-;23428:41;23447:12;:10;:12::i;:::-;23461:7;23428:18;:41::i;:::-;23420:103;;;;-1:-1:-1;;;23420:103:0;;;;;;;:::i;:::-;23536:28;23546:4;23552:2;23556:7;23536:9;:28::i;36896:256::-;36993:7;37029:23;37046:5;37029:16;:23::i;:::-;37021:5;:31;37013:87;;;;-1:-1:-1;;;37013:87:0;;11545:2:1;37013:87:0;;;11527:21:1;11584:2;11564:18;;;11557:30;11623:34;11603:18;;;11596:62;-1:-1:-1;;;11674:18:1;;;11667:41;11725:19;;37013:87:0;11517:233:1;37013:87:0;-1:-1:-1;;;;;;37118:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36896:256::o;61061:73::-;43877:12;:10;:12::i;:::-;-1:-1:-1;;;;;43866:23:0;:7;43719:6;;-1:-1:-1;;;;;43719:6:0;;43646:87;43866:7;-1:-1:-1;;;;;43866:23:0;;43858:68;;;;-1:-1:-1;;;43858:68:0;;;;;;;:::i;:::-;61116:10:::1;:8;:10::i;:::-;61061:73::o:0;23643:185::-;23781:39;23798:4;23804:2;23808:7;23781:39;;;;;;;;;;;;:16;:39::i;37418:233::-;37493:7;37529:30;37316:10;:17;;37228:113;37529:30;37521:5;:38;37513:95;;;;-1:-1:-1;;;37513:95:0;;19856:2:1;37513:95:0;;;19838:21:1;19895:2;19875:18;;;19868:30;19934:34;19914:18;;;19907:62;-1:-1:-1;;;19985:18:1;;;19978:42;20037:19;;37513:95:0;19828:234:1;37513:95:0;37626:10;37637:5;37626:17;;;;;;-1:-1:-1;;;37626:17:0;;;;;;;;;;;;;;;;;37619:24;;37418:233;;;:::o;20478:239::-;20550:7;20586:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20586:16:0;20621:19;20613:73;;;;-1:-1:-1;;;20613:73:0;;16679:2:1;20613:73:0;;;16661:21:1;16718:2;16698:18;;;16691:30;16757:34;16737:18;;;16730:62;-1:-1:-1;;;16808:18:1;;;16801:39;16857:19;;20613:73:0;16651:231:1;20208:208:0;20280:7;-1:-1:-1;;;;;20308:19:0;;20300:74;;;;-1:-1:-1;;;20300:74:0;;16268:2:1;20300:74:0;;;16250:21:1;16307:2;16287:18;;;16280:30;16346:34;16326:18;;;16319:62;-1:-1:-1;;;16397:18:1;;;16390:40;16447:19;;20300:74:0;16240:232:1;20300:74:0;-1:-1:-1;;;;;;20392:16:0;;;;;:9;:16;;;;;;;20208:208::o;44297:94::-;43877:12;:10;:12::i;:::-;-1:-1:-1;;;;;43866:23:0;:7;43719:6;;-1:-1:-1;;;;;43719:6:0;;43646:87;43866:7;-1:-1:-1;;;;;43866:23:0;;43858:68;;;;-1:-1:-1;;;43858:68:0;;;;;;;:::i;:::-;44362:21:::1;44380:1;44362:9;:21::i;60923:69::-:0;43877:12;:10;:12::i;:::-;-1:-1:-1;;;;;43866:23:0;:7;43719:6;;-1:-1:-1;;;;;43719:6:0;;43646:87;43866:7;-1:-1:-1;;;;;43866:23:0;;43858:68;;;;-1:-1:-1;;;43858:68:0;;;;;;;:::i;:::-;60976:8:::1;:6;:8::i;20953:104::-:0;21009:13;21042:7;21035:14;;;;;:::i;22636:295::-;22751:12;:10;:12::i;:::-;-1:-1:-1;;;;;22739:24:0;:8;-1:-1:-1;;;;;22739:24:0;;;22731:62;;;;-1:-1:-1;;;22731:62:0;;14325:2:1;22731:62:0;;;14307:21:1;14364:2;14344:18;;;14337:30;14403:27;14383:18;;;14376:55;14448:18;;22731:62:0;14297:175:1;22731:62:0;22851:8;22806:18;:32;22825:12;:10;:12::i;:::-;-1:-1:-1;;;;;22806:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22806:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;22806:53:0;;;;;;;;;;;22890:12;:10;:12::i;:::-;-1:-1:-1;;;;;22875:48:0;;22914:8;22875:48;;;;9102:14:1;9095:22;9077:41;;9065:2;9050:18;;9032:92;22875:48:0;;;;;;;;22636:295;;:::o;23899:328::-;24074:41;24093:12;:10;:12::i;:::-;24107:7;24074:18;:41::i;:::-;24066:103;;;;-1:-1:-1;;;24066:103:0;;;;;;;:::i;:::-;24180:39;24194:4;24200:2;24204:7;24213:5;24180:13;:39::i;59810:115::-;59880:13;59913:4;59906:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59810:115;;;:::o;60207:460::-;60510:33;;-1:-1:-1;;;60510:33:0;;-1:-1:-1;;;;;7964:32:1;;;60510:33:0;;;7946:51:1;60337:4:0;;60466:20;;60502:54;;;;60510:21;;;;;;7919:18:1;;60510:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;60502:54:0;;60498:98;;;60580:4;60573:11;;;;;60498:98;-1:-1:-1;;;;;23123:25:0;;;23099:4;23123:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;60615:44;60608:51;60207:460;-1:-1:-1;;;;60207:460:0:o;44546:192::-;43877:12;:10;:12::i;:::-;-1:-1:-1;;;;;43866:23:0;:7;43719:6;;-1:-1:-1;;;;;43719:6:0;;43646:87;43866:7;-1:-1:-1;;;;;43866:23:0;;43858:68;;;;-1:-1:-1;;;43858:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44635:22:0;::::1;44627:73;;;::::0;-1:-1:-1;;;44627:73:0;;12376:2:1;44627:73:0::1;::::0;::::1;12358:21:1::0;12415:2;12395:18;;;12388:30;12454:34;12434:18;;;12427:62;-1:-1:-1;;;12505:18:1;;;12498:36;12551:19;;44627:73:0::1;12348:228:1::0;44627:73:0::1;44711:19;44721:8;44711:9;:19::i;:::-;44546:192:::0;:::o;51828:650::-;51899:22;51943:10;51965:4;51943:27;51939:508;;;51987:18;52008:8;;51987:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;52047:8:0;52258:17;52252:24;-1:-1:-1;;;;;52226:134:0;;-1:-1:-1;52086:289:0;;-1:-1:-1;52086:289:0;;-1:-1:-1;52424:10:0;51939:508;51828:650;:::o;36588:224::-;36690:4;-1:-1:-1;;;;;;36714:50:0;;-1:-1:-1;;;36714:50:0;;:90;;;36768:36;36792:11;36768:23;:36::i;61517:161::-;61607:14;61646:24;:22;:24::i;:::-;61639:31;;61517:161;:::o;59493:106::-;59569:15;;59542:7;;59569:22;;59589:1;59569:19;:22::i;27715:382::-;-1:-1:-1;;;;;27795:16:0;;27787:61;;;;-1:-1:-1;;;27787:61:0;;17089:2:1;27787:61:0;;;17071:21:1;;;17108:18;;;17101:30;17167:34;17147:18;;;17140:62;17219:18;;27787:61:0;17061:182:1;27787:61:0;25802:4;25826:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25826:16:0;:30;27859:58;;;;-1:-1:-1;;;27859:58:0;;13140:2:1;27859:58:0;;;13122:21:1;13179:2;13159:18;;;13152:30;13218;13198:18;;;13191:58;13266:18;;27859:58:0;13112:178:1;27859:58:0;27930:45;27959:1;27963:2;27967:7;27930:20;:45::i;:::-;-1:-1:-1;;;;;27988:13:0;;;;;;:9;:13;;;;;:18;;28005:1;;27988:13;:18;;28005:1;;27988:18;:::i;:::-;;;;-1:-1:-1;;28017:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28017:21:0;-1:-1:-1;;;;;28017:21:0;;;;;;;;28056:33;;28017:16;;;28056:33;;28017:16;;28056:33;27715:382;;:::o;59678:73::-;59726:15;:17;;;:15;:17;;;:::i;:::-;;;;;;59678:73::o;29719:174::-;29794:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29794:29:0;-1:-1:-1;;;;;29794:29:0;;;;;;;;:24;;29848:23;29794:24;29848:14;:23::i;:::-;-1:-1:-1;;;;;29839:46:0;;;;;;;;;;;29719:174;;:::o;57275:486::-;57453:4;-1:-1:-1;;;;;57478:20:0;;57470:70;;;;-1:-1:-1;;;57470:70:0;;15092:2:1;57470:70:0;;;15074:21:1;15131:2;15111:18;;;15104:30;15170:34;15150:18;;;15143:62;-1:-1:-1;;;15221:18:1;;;15214:35;15266:19;;57470:70:0;15064:227:1;57470:70:0;57594:159;57622:47;57641:27;57661:6;57641:19;:27::i;:::-;57622:18;:47::i;:::-;57594:159;;;;;;;;;;;;9960:25:1;;;;10033:4;10021:17;;10001:18;;;9994:45;10055:18;;;10048:34;;;10098:18;;;10091:34;;;9932:19;;57594:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57571:182:0;:6;-1:-1:-1;;;;;57571:182:0;;57551:202;;57275:486;;;;;;;:::o;47625:98::-;47683:7;47710:5;47714:1;47710;:5;:::i;:::-;47703:12;47625:98;-1:-1:-1;;;47625:98:0:o;26031:348::-;26124:4;25826:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25826:16:0;26141:73;;;;-1:-1:-1;;;26141:73:0;;14679:2:1;26141:73:0;;;14661:21:1;14718:2;14698:18;;;14691:30;14757:34;14737:18;;;14730:62;-1:-1:-1;;;14808:18:1;;;14801:42;14860:19;;26141:73:0;14651:234:1;26141:73:0;26225:13;26241:23;26256:7;26241:14;:23::i;:::-;26225:39;;26294:5;-1:-1:-1;;;;;26283:16:0;:7;-1:-1:-1;;;;;26283:16:0;;:51;;;;26327:7;-1:-1:-1;;;;;26303:31:0;:20;26315:7;26303:11;:20::i;:::-;-1:-1:-1;;;;;26303:31:0;;26283:51;:87;;;;26338:32;26355:5;26362:7;26338:16;:32::i;29023:578::-;29182:4;-1:-1:-1;;;;;29155:31:0;:23;29170:7;29155:14;:23::i;:::-;-1:-1:-1;;;;;29155:31:0;;29147:85;;;;-1:-1:-1;;;29147:85:0;;18224:2:1;29147:85:0;;;18206:21:1;18263:2;18243:18;;;18236:30;18302:34;18282:18;;;18275:62;-1:-1:-1;;;18353:18:1;;;18346:39;18402:19;;29147:85:0;18196:231:1;29147:85:0;-1:-1:-1;;;;;29251:16:0;;29243:65;;;;-1:-1:-1;;;29243:65:0;;13920:2:1;29243:65:0;;;13902:21:1;13959:2;13939:18;;;13932:30;13998:34;13978:18;;;13971:62;-1:-1:-1;;;14049:18:1;;;14042:34;14093:19;;29243:65:0;13892:226:1;29243:65:0;29321:39;29342:4;29348:2;29352:7;29321:20;:39::i;:::-;29425:29;29442:1;29446:7;29425:8;:29::i;:::-;-1:-1:-1;;;;;29467:15:0;;;;;;:9;:15;;;;;:20;;29486:1;;29467:15;:20;;29486:1;;29467:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29498:13:0;;;;;;:9;:13;;;;;:18;;29515:1;;29498:13;:18;;29515:1;;29498:18;:::i;:::-;;;;-1:-1:-1;;29527:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29527:21:0;-1:-1:-1;;;;;29527:21:0;;;;;;;;;29566:27;;29527:16;;29566:27;;;;;;;29023:578;;;:::o;34004:120::-;33016:7;;;;33540:41;;;;-1:-1:-1;;;33540:41:0;;11196:2:1;33540:41:0;;;11178:21:1;11235:2;11215:18;;;11208:30;-1:-1:-1;;;11254:18:1;;;11247:50;11314:18;;33540:41:0;11168:170:1;33540:41:0;34063:7:::1;:15:::0;;-1:-1:-1;;34063:15:0::1;::::0;;34094:22:::1;34103:12;:10;:12::i;:::-;34094:22;::::0;-1:-1:-1;;;;;7964:32:1;;;7946:51;;7934:2;7919:18;34094:22:0::1;;;;;;;34004:120::o:0;44746:173::-;44821:6;;;-1:-1:-1;;;;;44838:17:0;;;-1:-1:-1;;;;;;44838:17:0;;;;;;;44871:40;;44821:6;;;44838:17;44821:6;;44871:40;;44802:16;;44871:40;44746:173;;:::o;33745:118::-;33016:7;;;;33270:9;33262:38;;;;-1:-1:-1;;;33262:38:0;;15498:2:1;33262:38:0;;;15480:21:1;15537:2;15517:18;;;15510:30;-1:-1:-1;;;15556:18:1;;;15549:46;15612:18;;33262:38:0;15470:166:1;33262:38:0;33805:7:::1;:14:::0;;-1:-1:-1;;33805:14:0::1;33815:4;33805:14;::::0;;33835:20:::1;33842:12;:10;:12::i;25109:315::-:0;25266:28;25276:4;25282:2;25286:7;25266:9;:28::i;:::-;25313:48;25336:4;25342:2;25346:7;25355:5;25313:22;:48::i;:::-;25305:111;;;;-1:-1:-1;;;25305:111:0;;;;;;;:::i;19839:305::-;19941:4;-1:-1:-1;;;;;;19978:40:0;;-1:-1:-1;;;19978:40:0;;:105;;-1:-1:-1;;;;;;;20035:48:0;;-1:-1:-1;;;20035:48:0;19978:105;:158;;;-1:-1:-1;;;;;;;;;;18557:40:0;;;20100:36;18448:157;61142:231;61320:45;61347:4;61353:2;61357:7;61320:26;:45::i;56742:410::-;56852:7;54919:100;;;;;;;;;;;;;;;;;54899:127;;;;;;;57006:12;;57041:11;;;;57085:24;;;;;57075:35;;;;;;56925:204;;;;;9542:25:1;;;9598:2;9583:18;;9576:34;;;;-1:-1:-1;;;;;9646:32:1;9641:2;9626:18;;9619:60;9710:2;9695:18;;9688:34;9529:3;9514:19;;9496:232;56925:204:0;;;;;;;;;;;;;56897:247;;;;;;56877:267;;56742:410;;;:::o;54496:258::-;54595:7;54697:20;53935:15;;;53857:101;54697:20;54668:63;;-1:-1:-1;;;54668:63:0;;;7661:27:1;7704:11;;;7697:27;;;;7740:12;;;7733:28;;;7777:12;;54668:63:0;7651:144:1;30458:799:0;30613:4;-1:-1:-1;;;;;30634:13:0;;8003:20;8051:8;30630:620;;30686:2;-1:-1:-1;;;;;30670:36:0;;30707:12;:10;:12::i;:::-;30721:4;30727:7;30736:5;30670:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30670:72:0;;;;;;;;-1:-1:-1;;30670:72:0;;;;;;;;;;;;:::i;:::-;;;30666:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30912:13:0;;30908:272;;30955:60;;-1:-1:-1;;;30955:60:0;;;;;;;:::i;30908:272::-;31130:6;31124:13;31115:6;31111:2;31107:15;31100:38;30666:529;-1:-1:-1;;;;;;30793:51:0;-1:-1:-1;;;30793:51:0;;-1:-1:-1;30786:58:0;;30630:620;-1:-1:-1;31234:4:0;30458:799;;;;;;:::o;34616:275::-;34760:45;34787:4;34793:2;34797:7;34760:26;:45::i;:::-;33016:7;;;;34826:9;34818:65;;;;-1:-1:-1;;;34818:65:0;;10784:2:1;34818:65:0;;;10766:21:1;10823:2;10803:18;;;10796:30;10862:34;10842:18;;;10835:62;-1:-1:-1;;;10913:18:1;;;10906:41;10964:19;;34818:65:0;10756:233:1;38264:589:0;-1:-1:-1;;;;;38470:18:0;;38466:187;;38505:40;38537:7;39680:10;:17;;39653:24;;;;:15;:24;;;;;:44;;;39708:24;;;;;;;;;;;;39576:164;38505:40;38466:187;;;38575:2;-1:-1:-1;;;;;38567:10:0;:4;-1:-1:-1;;;;;38567:10:0;;38563:90;;38594:47;38627:4;38633:7;38594:32;:47::i;:::-;-1:-1:-1;;;;;38667:16:0;;38663:183;;38700:45;38737:7;38700:36;:45::i;38663:183::-;38773:4;-1:-1:-1;;;;;38767:10:0;:2;-1:-1:-1;;;;;38767:10:0;;38763:83;;38794:40;38822:2;38826:7;38794:27;:40::i;40367:988::-;40633:22;40683:1;40658:22;40675:4;40658:16;:22::i;:::-;:26;;;;:::i;:::-;40695:18;40716:26;;;:17;:26;;;;;;40633:51;;-1:-1:-1;40849:28:0;;;40845:328;;-1:-1:-1;;;;;40916:18:0;;40894:19;40916:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40967:30;;;;;;:44;;;41084:30;;:17;:30;;;;;:43;;;40845:328;-1:-1:-1;41269:26:0;;;;:17;:26;;;;;;;;41262:33;;;-1:-1:-1;;;;;41313:18:0;;;;;:12;:18;;;;;:34;;;;;;;41306:41;40367:988::o;41650:1079::-;41928:10;:17;41903:22;;41928:21;;41948:1;;41928:21;:::i;:::-;41960:18;41981:24;;;:15;:24;;;;;;42354:10;:26;;41903:46;;-1:-1:-1;41981:24:0;;41903:46;;42354:26;;;;-1:-1:-1;;;42354:26:0;;;;;;;;;;;;;;;;;42332:48;;42418:11;42393:10;42404;42393:22;;;;;;-1:-1:-1;;;42393:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42498:28;;;:15;:28;;;;;;;:41;;;42670:24;;;;;42663:31;42705:10;:16;;;;;-1:-1:-1;;;42705:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41650:1079;;;;:::o;39154:221::-;39239:14;39256:20;39273:2;39256:16;:20::i;:::-;-1:-1:-1;;;;;39287:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39332:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39154:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;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:1;;;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:228::-;692:5;745:3;738:4;730:6;726:17;722:27;712:2;;767:5;760;753:20;712:2;793:79;868:3;859:6;846:20;839:4;831:6;827:17;793:79;:::i;883:257::-;942:6;995:2;983:9;974:7;970:23;966:32;963:2;;;1016:6;1008;1001:22;963:2;1060:9;1047:23;1079:31;1104:5;1079:31;:::i;1145:398::-;1213:6;1221;1274:2;1262:9;1253:7;1249:23;1245:32;1242:2;;;1295:6;1287;1280:22;1242:2;1339:9;1326:23;1358:31;1383:5;1358:31;:::i;:::-;1408:5;-1:-1:-1;1465:2:1;1450:18;;1437:32;1478:33;1437:32;1478:33;:::i;:::-;1530:7;1520:17;;;1232:311;;;;;:::o;1548:466::-;1625:6;1633;1641;1694:2;1682:9;1673:7;1669:23;1665:32;1662:2;;;1715:6;1707;1700:22;1662:2;1759:9;1746:23;1778:31;1803:5;1778:31;:::i;:::-;1828:5;-1:-1:-1;1885:2:1;1870:18;;1857:32;1898:33;1857:32;1898:33;:::i;:::-;1652:362;;1950:7;;-1:-1:-1;;;2004:2:1;1989:18;;;;1976:32;;1652:362::o;2019:685::-;2114:6;2122;2130;2138;2191:3;2179:9;2170:7;2166:23;2162:33;2159:2;;;2213:6;2205;2198:22;2159:2;2257:9;2244:23;2276:31;2301:5;2276:31;:::i;:::-;2326:5;-1:-1:-1;2383:2:1;2368:18;;2355:32;2396:33;2355:32;2396:33;:::i;:::-;2448:7;-1:-1:-1;2502:2:1;2487:18;;2474:32;;-1:-1:-1;2557:2:1;2542:18;;2529:32;2584:18;2573:30;;2570:2;;;2621:6;2613;2606:22;2570:2;2649:49;2690:7;2681:6;2670:9;2666:22;2649:49;:::i;:::-;2639:59;;;2149:555;;;;;;;:::o;2709:436::-;2774:6;2782;2835:2;2823:9;2814:7;2810:23;2806:32;2803:2;;;2856:6;2848;2841:22;2803:2;2900:9;2887:23;2919:31;2944:5;2919:31;:::i;:::-;2969:5;-1:-1:-1;3026:2:1;3011:18;;2998:32;3068:15;;3061:23;3049:36;;3039:2;;3104:6;3096;3089:22;3150:788;3252:6;3260;3268;3276;3284;3337:3;3325:9;3316:7;3312:23;3308:33;3305:2;;;3359:6;3351;3344:22;3305:2;3403:9;3390:23;3422:31;3447:5;3422:31;:::i;:::-;3472:5;-1:-1:-1;3528:2:1;3513:18;;3500:32;3555:18;3544:30;;3541:2;;;3592:6;3584;3577:22;3541:2;3620:49;3661:7;3652:6;3641:9;3637:22;3620:49;:::i;:::-;3610:59;;;3716:2;3705:9;3701:18;3688:32;3678:42;;3767:2;3756:9;3752:18;3739:32;3729:42;;3823:3;3812:9;3808:19;3795:33;3872:4;3863:7;3859:18;3850:7;3847:31;3837:2;;3897:6;3889;3882:22;3837:2;3925:7;3915:17;;;3295:643;;;;;;;;:::o;3943:325::-;4011:6;4019;4072:2;4060:9;4051:7;4047:23;4043:32;4040:2;;;4093:6;4085;4078:22;4040:2;4137:9;4124:23;4156:31;4181:5;4156:31;:::i;:::-;4206:5;4258:2;4243:18;;;;4230:32;;-1:-1:-1;;;4030:238:1:o;4273:665::-;4359:6;4367;4420:2;4408:9;4399:7;4395:23;4391:32;4388:2;;;4441:6;4433;4426:22;4388:2;4486:9;4473:23;4515:18;4556:2;4548:6;4545:14;4542:2;;;4577:6;4569;4562:22;4542:2;4620:6;4609:9;4605:22;4595:32;;4665:7;4658:4;4654:2;4650:13;4646:27;4636:2;;4692:6;4684;4677:22;4636:2;4737;4724:16;4763:2;4755:6;4752:14;4749:2;;;4784:6;4776;4769:22;4749:2;4842:7;4837:2;4827:6;4824:1;4820:14;4816:2;4812:23;4808:32;4805:45;4802:2;;;4868:6;4860;4853:22;4802:2;4904;4896:11;;;;;4926:6;;-1:-1:-1;4378:560:1;;-1:-1:-1;;;;4378:560:1:o;4943:255::-;5001:6;5054:2;5042:9;5033:7;5029:23;5025:32;5022:2;;;5075:6;5067;5060:22;5022:2;5119:9;5106:23;5138:30;5162:5;5138:30;:::i;5203:259::-;5272:6;5325:2;5313:9;5304:7;5300:23;5296:32;5293:2;;;5346:6;5338;5331:22;5293:2;5383:9;5377:16;5402:30;5426:5;5402:30;:::i;5467:290::-;5566:6;5619:2;5607:9;5598:7;5594:23;5590:32;5587:2;;;5640:6;5632;5625:22;5587:2;5677:9;5671:16;5696:31;5721:5;5696:31;:::i;5762:480::-;5831:6;5884:2;5872:9;5863:7;5859:23;5855:32;5852:2;;;5905:6;5897;5890:22;5852:2;5950:9;5937:23;5983:18;5975:6;5972:30;5969:2;;;6020:6;6012;6005:22;5969:2;6048:22;;6101:4;6093:13;;6089:27;-1:-1:-1;6079:2:1;;6135:6;6127;6120:22;6079:2;6163:73;6228:7;6223:2;6210:16;6205:2;6201;6197:11;6163:73;:::i;6247:190::-;6306:6;6359:2;6347:9;6338:7;6334:23;6330:32;6327:2;;;6380:6;6372;6365:22;6327:2;-1:-1:-1;6408:23:1;;6317:120;-1:-1:-1;6317:120:1:o;6442:257::-;6483:3;6521:5;6515:12;6548:6;6543:3;6536:19;6564:63;6620:6;6613:4;6608:3;6604:14;6597:4;6590:5;6586:16;6564:63;:::i;:::-;6681:2;6660:15;-1:-1:-1;;6656:29:1;6647:39;;;;6688:4;6643:50;;6491:208;-1:-1:-1;;6491:208:1:o;6704:274::-;6833:3;6871:6;6865:13;6887:53;6933:6;6928:3;6921:4;6913:6;6909:17;6887:53;:::i;:::-;6956:16;;;;;6841:137;-1:-1:-1;;6841:137:1:o;6983:415::-;7140:3;7178:6;7172:13;7194:53;7240:6;7235:3;7228:4;7220:6;7216:17;7194:53;:::i;:::-;7316:2;7312:15;;;;-1:-1:-1;;7308:53:1;7269:16;;;;7294:68;;;7389:2;7378:14;;7148:250;-1:-1:-1;;7148:250:1:o;8008:431::-;-1:-1:-1;;;;;8265:15:1;;;8247:34;;8317:15;;8312:2;8297:18;;8290:43;8369:2;8364;8349:18;;8342:30;;;8190:4;;8389:44;;8414:18;;8406:6;8389:44;:::i;:::-;8381:52;8199:240;-1:-1:-1;;;;;8199:240:1:o;8444:488::-;-1:-1:-1;;;;;8713:15:1;;;8695:34;;8765:15;;8760:2;8745:18;;8738:43;8812:2;8797:18;;8790:34;;;8860:3;8855:2;8840:18;;8833:31;;;8638:4;;8881:45;;8906:19;;8898:6;8881:45;:::i;:::-;8873:53;8647:285;-1:-1:-1;;;;;;8647:285:1:o;10136:217::-;10283:2;10272:9;10265:21;10246:4;10303:44;10343:2;10332:9;10328:18;10320:6;10303:44;:::i;11755:414::-;11957:2;11939:21;;;11996:2;11976:18;;;11969:30;12035:34;12030:2;12015:18;;12008:62;-1:-1:-1;;;12101:2:1;12086:18;;12079:48;12159:3;12144:19;;11929:240::o;17661:356::-;17863:2;17845:21;;;17882:18;;;17875:30;17941:34;17936:2;17921:18;;17914:62;18008:2;17993:18;;17835:182::o;19236:413::-;19438:2;19420:21;;;19477:2;19457:18;;;19450:30;19516:34;19511:2;19496:18;;19489:62;-1:-1:-1;;;19582:2:1;19567:18;;19560:47;19639:3;19624:19;;19410:239::o;20249:128::-;20289:3;20320:1;20316:6;20313:1;20310:13;20307:2;;;20326:18;;:::i;:::-;-1:-1:-1;20362:9:1;;20297:80::o;20382:125::-;20422:4;20450:1;20447;20444:8;20441:2;;;20455:18;;:::i;:::-;-1:-1:-1;20492:9:1;;20431:76::o;20512:258::-;20584:1;20594:113;20608:6;20605:1;20602:13;20594:113;;;20684:11;;;20678:18;20665:11;;;20658:39;20630:2;20623:10;20594:113;;;20725:6;20722:1;20719:13;20716:2;;;-1:-1:-1;;20760:1:1;20742:16;;20735:27;20565:205::o;20775:380::-;20854:1;20850:12;;;;20897;;;20918:2;;20972:4;20964:6;20960:17;20950:27;;20918:2;21025;21017:6;21014:14;20994:18;20991:38;20988:2;;;21071:10;21066:3;21062:20;21059:1;21052:31;21106:4;21103:1;21096:15;21134:4;21131:1;21124:15;20988:2;;20830:325;;;:::o;21160:135::-;21199:3;-1:-1:-1;;21220:17:1;;21217:2;;;21240:18;;:::i;:::-;-1:-1:-1;21287:1:1;21276:13;;21207:88::o;21300:127::-;21361:10;21356:3;21352:20;21349:1;21342:31;21392:4;21389:1;21382:15;21416:4;21413:1;21406:15;21432:127;21493:10;21488:3;21484:20;21481:1;21474:31;21524:4;21521:1;21514:15;21548:4;21545:1;21538:15;21564:131;-1:-1:-1;;;;;21639:31:1;;21629:42;;21619:2;;21685:1;21682;21675:12;21700:131;-1:-1:-1;;;;;;21774:32:1;;21764:43;;21754:2;;21821:1;21818;21811:12

Swarm Source

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