ETH Price: $2,881.79 (-5.55%)
Gas: 1 Gwei

Token

X7 Pioneer (X7PIONEER)
 

Overview

Max Total Supply

639 X7PIONEER

Holders

506

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 X7PIONEER
0xdf658c84618ee9c92032bd232641e006957a9d17
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
X7Pioneer

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-09
*/

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

/*

 /$$   /$$ /$$$$$$$$       /$$$$$$$$ /$$
| $$  / $$|_____ $$/      | $$_____/|__/
|  $$/ $$/     /$$/       | $$       /$$ /$$$$$$$   /$$$$$$  /$$$$$$$   /$$$$$$$  /$$$$$$
 \  $$$$/     /$$/        | $$$$$   | $$| $$__  $$ |____  $$| $$__  $$ /$$_____/ /$$__  $$
  >$$  $$    /$$/         | $$__/   | $$| $$  \ $$  /$$$$$$$| $$  \ $$| $$      | $$$$$$$$
 /$$/\  $$  /$$/          | $$      | $$| $$  | $$ /$$__  $$| $$  | $$| $$      | $$_____/
| $$  \ $$ /$$/           | $$      | $$| $$  | $$|  $$$$$$$| $$  | $$|  $$$$$$$|  $$$$$$$
|__/  |__/|__/            |__/      |__/|__/  |__/ \_______/|__/  |__/ \_______/ \_______/

Contract: ERC-721 Token "X7 Pioneer" NFT

A utility NFT offering reward withdrawal.

This contract will NOT be renounced.

The following are the only functions that can be called on the contract that affect the contract:

    function setTransferUnlockFeeDestination(address transferUnlockFeeDestination_) external onlyOwner {
        require(transferUnlockFeeDestination != transferUnlockFeeDestination_);
        address oldTransferUnlockFeeDestination = transferUnlockFeeDestination;
        transferUnlockFeeDestination = payable(transferUnlockFeeDestination_);
        emit TransferUnlockFeeDestinationSet(oldTransferUnlockFeeDestination, transferUnlockFeeDestination_);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        require(keccak256(abi.encodePacked(_internalBaseURI)) != keccak256(abi.encodePacked(baseURI_)));
        string memory oldBaseURI = _internalBaseURI;
        _internalBaseURI = baseURI_;
        emit BaseURISet(oldBaseURI, baseURI_);
    }

    function setTransferUnlockFee(uint256 transferUnlockFee_) external onlyOwner {
        require(transferUnlockFee_ != transferUnlockFee);
        uint256 oldTransferUnlockFee = transferUnlockFee;
        transferUnlockFee = transferUnlockFee_;
        emit TransferUnlockFeeSet(oldTransferUnlockFee, transferUnlockFee_);
    }

    function SetAllowTokenOwnerVariantSelection(bool allowed) external onlyOwner {
        require(allowTokenOwnerVariantSelection != allowed);
        allowTokenOwnerVariantSelection = allowed;
    }

These functions will be passed to DAO governance once the ecosystem stabilizes.

*/

abstract contract Ownable {
    address private _owner;

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

    constructor(address owner_) {
        _transferOwnership(owner_);
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal view virtual {
        require(owner() == msg.sender, "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

abstract contract ReentrancyGuard {
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-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";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @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 Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

/**
 * @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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

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

    /**
     * @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 Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

contract X7Pioneer is ERC721Enumerable, ERC721Holder, Ownable, ReentrancyGuard {

    enum Variant {
        NOT_SELECTED,
        SELECTION1,
        SELECTION2,
        SELECTION3,
        SELECTION4,
        SELECTION5,
        SELECTION6,
        SELECTION7
    }

    address payable public transferUnlockFeeDestination;
    string public _internalBaseURI;

    mapping(uint256 => bool) public transferUnlocked;

    uint256 public lastETHBalance;
    uint256 public totalRewards;

    // token ID => claimed rewards
    mapping(uint256 => uint256) public rewardsClaimed;

    // 0.07 ETH
    uint256 public transferUnlockFee = 7 * 10**16;

    bool public airdropActive = true;
    mapping(address => bool) public receivedAirdrop;

    bool public allowTokenOwnerVariantSelection = true;

    // tokenId => Variant
    mapping(uint256 => Variant) public selectedVariantIndex;

    event TransferUnlockFeeDestinationSet(address indexed oldDestination, address indexed newDestination);
    event TransferUnlockFeeSet(uint256 oldPrice, uint256 newPrice);

    event BaseURISet(string oldURI, string newURI);
    event TransferUnlocked(uint256 indexed tokenId);

    event RewardsClaimed(uint256 indexed tokenId, address indexed receipient, uint256 amount);

    event AirdropDisabled();
    event VariantSelected(uint256 indexed tokenId, Variant variantIndex);

    constructor(address transferUnlockFeeDestination_) ERC721("X7 Pioneer", "X7PIONEER") Ownable(msg.sender) {
        transferUnlockFeeDestination = payable(transferUnlockFeeDestination_);
    }

    receive () external payable {}

    function setTransferUnlockFeeDestination(address transferUnlockFeeDestination_) external onlyOwner {
        require(transferUnlockFeeDestination != transferUnlockFeeDestination_);
        address oldTransferUnlockFeeDestination = transferUnlockFeeDestination;
        transferUnlockFeeDestination = payable(transferUnlockFeeDestination_);
        emit TransferUnlockFeeDestinationSet(oldTransferUnlockFeeDestination, transferUnlockFeeDestination_);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        require(keccak256(abi.encodePacked(_internalBaseURI)) != keccak256(abi.encodePacked(baseURI_)));
        string memory oldBaseURI = _internalBaseURI;
        _internalBaseURI = baseURI_;
        emit BaseURISet(oldBaseURI, baseURI_);
    }

    function setTransferUnlockFee(uint256 transferUnlockFee_) external onlyOwner {
        require(transferUnlockFee_ != transferUnlockFee);
        uint256 oldTransferUnlockFee = transferUnlockFee;
        transferUnlockFee = transferUnlockFee_;
        emit TransferUnlockFeeSet(oldTransferUnlockFee, transferUnlockFee_);
    }

    function SetAllowTokenOwnerVariantSelection(bool allowed) external onlyOwner {
        require(allowTokenOwnerVariantSelection != allowed);
        allowTokenOwnerVariantSelection = allowed;
    }

    function airdropTokens(address[] memory recipients) external onlyOwner {
        require(airdropActive);
        for (uint i=0; i < recipients.length; i++) {
            if (!receivedAirdrop[recipients[i]]) {
                uint256 nextTokenId = ERC721Enumerable.totalSupply();
                super._mint(recipients[i], nextTokenId + i);
            }
        }
    }

    function disableAirDrop() external onlyOwner {
        require(airdropActive);
        airdropActive = false;
        emit AirdropDisabled();
    }

    function unlockTransfer(uint256 tokenId) external payable {
        require(!transferUnlocked[tokenId]);
        require(ownerOf(tokenId) == msg.sender);
        require(msg.value == transferUnlockFee);
        (bool ok, ) = transferUnlockFeeDestination.call{value: msg.value}("");
        require(ok);
        transferUnlocked[tokenId] = true;
        emit TransferUnlocked(tokenId);
    }

    function claimRewards(uint256[] memory tokenIds) public nonReentrant {
        if (lastETHBalance < address(this).balance) {
            totalRewards += (address(this).balance - lastETHBalance);
        }

        uint256 claimable;
        uint256 tokenClaimable;

        for (uint i=0; i < tokenIds.length; i++) {
            require(ownerOf(tokenIds[i]) == msg.sender);
            uint256 tokenTotalRewards = totalRewards / totalSupply();
            uint256 tokenClaimedRewards = rewardsClaimed[tokenIds[i]];
            if (tokenClaimedRewards < tokenTotalRewards) {
                rewardsClaimed[tokenIds[i]] = tokenTotalRewards;
                tokenClaimable = tokenTotalRewards - tokenClaimedRewards;
                claimable += tokenClaimable;
                emit RewardsClaimed(tokenIds[i], msg.sender, tokenClaimable);
            }
        }

        if (claimable > 0) {
            lastETHBalance = address(this).balance - claimable;
            (bool ok, ) = msg.sender.call{value: claimable}("");
            require(ok);
        }
    }

    function unclaimedRewards(uint256 tokenId) public view returns (uint256) {
        uint256 totalRewards_ = totalRewards;
        if (lastETHBalance < address(this).balance) {
            totalRewards_ += (address(this).balance - lastETHBalance);
        }
        return (totalRewards / totalSupply()) - rewardsClaimed[tokenId];
    }

    function unclaimedRewards(uint[] memory tokenIds) public view returns (uint256) {
        uint256 totalRewards_ = totalRewards;
        if (lastETHBalance < address(this).balance) {
            totalRewards_ += (address(this).balance - lastETHBalance);
        }

        uint256 claimable;
        uint256 tokenClaimable;

        for (uint i=0; i < tokenIds.length; i++) {
            require(ownerOf(tokenIds[i]) == msg.sender);
            uint256 tokenTotalRewards = totalRewards / totalSupply();
            uint256 tokenClaimedRewards = rewardsClaimed[tokenIds[i]];
            if (tokenClaimedRewards < tokenTotalRewards) {
                tokenClaimable = tokenTotalRewards - tokenClaimedRewards;
                claimable += tokenClaimable;
            }
        }

        return claimable;
    }

    function selectVariant(uint256 tokenId, Variant variant) external {
        require(allowTokenOwnerVariantSelection);
        require(ownerOf(tokenId) == msg.sender);
        require(variant != Variant.NOT_SELECTED);
        require(variant != selectedVariantIndex[tokenId]);
        selectedVariantIndex[tokenId] = variant;
        emit VariantSelected(tokenId, variant);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override {
        require(transferUnlocked[tokenId] || msg.sender == owner());
        super._beforeTokenTransfer(from, to, tokenId);

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"transferUnlockFeeDestination_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"AirdropDisabled","type":"event"},{"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":"string","name":"oldURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"BaseURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsClaimed","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":true,"internalType":"address","name":"oldDestination","type":"address"},{"indexed":true,"internalType":"address","name":"newDestination","type":"address"}],"name":"TransferUnlockFeeDestinationSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"TransferUnlockFeeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TransferUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"enum X7Pioneer.Variant","name":"variantIndex","type":"uint8"}],"name":"VariantSelected","type":"event"},{"inputs":[{"internalType":"bool","name":"allowed","type":"bool"}],"name":"SetAllowTokenOwnerVariantSelection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_internalBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowTokenOwnerVariantSelection","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastETHBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"receivedAirdrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardsClaimed","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":"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"enum X7Pioneer.Variant","name":"variant","type":"uint8"}],"name":"selectVariant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"selectedVariantIndex","outputs":[{"internalType":"enum X7Pioneer.Variant","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"transferUnlockFee_","type":"uint256"}],"name":"setTransferUnlockFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"transferUnlockFeeDestination_","type":"address"}],"name":"setTransferUnlockFeeDestination","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferUnlockFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferUnlockFeeDestination","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferUnlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unclaimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"unclaimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unlockTransfer","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266f8b0a10e47000060125560138054600160ff1991821681179092556015805490911690911790553480156200003957600080fd5b5060405162002e1838038062002e188339810160408190526200005c9162000154565b336040518060400160405280600a8152602001692c1b902834b7b732b2b960b11b815250604051806040016040528060098152602001682c1ba824a7a722a2a960b91b8152508160009081620000b391906200022b565b506001620000c282826200022b565b505050620000d6816200010260201b60201c565b506001600b55600c80546001600160a01b0319166001600160a01b0392909216919091179055620002f7565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000602082840312156200016757600080fd5b81516001600160a01b03811681146200017f57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001b157607f821691505b602082108103620001d257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022657600081815260208120601f850160051c81016020861015620002015750805b601f850160051c820191505b8181101562000222578281556001016200020d565b5050505b505050565b81516001600160401b0381111562000247576200024762000186565b6200025f816200025884546200019c565b84620001d8565b602080601f8311600181146200029757600084156200027e5750858301515b600019600386901b1c1916600185901b17855562000222565b600085815260208120601f198616915b82811015620002c857888601518255948401946001909101908401620002a7565b5085821015620002e75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612b1180620003076000396000f3fe6080604052600436106102555760003560e01c80635eac623911610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd1461072f578063dd97c6221461074f578063e45ec8ac14610769578063e985e9c51461077e578063f2fde38b146107c7578063f9a515c6146107e757600080fd5b8063a22cb4651461068c578063b88d4fde146106ac578063bd94ce04146106cc578063bed62f35146106fc578063c0a226671461070f57600080fd5b8063881adeff116100fd578063881adeff146106095780638da5cb5b1461061f57806390e9a5eb1461063d57806395d89b411461065d5780639843eae31461067257600080fd5b80635eac62391461057e57806361ad80c31461059e5780636352211e146105b457806370a08231146105d4578063715018a6146105f457600080fd5b80632e2c6101116101d257806344d2ed911161019657806344d2ed91146104845780634ee51a27146104c15780634f6ccce7146104e157806355a89b251461050157806355f804b3146105315780635685c4661461055157600080fd5b80632e2c6101146103e45780632f745c59146104045780633428db80146104245780633ce510a71461044457806342842e0e1461046457600080fd5b8063150b7a0211610219578063150b7a0214610336578063171a2ef61461036f5780631772188e1461038f57806318160ddd146103af57806323b872dd146103c457600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630e15561a1461031257600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c3660046121ff565b6107fc565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab610827565b60405161028d9190612274565b3480156102c457600080fd5b506102d86102d3366004612287565b6108b9565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046122bc565b6108e0565b005b34801561031e57600080fd5b5061032860105481565b60405190815260200161028d565b34801561034257600080fd5b50610356610351366004612385565b6109fa565b6040516001600160e01b0319909116815260200161028d565b34801561037b57600080fd5b5061031061038a366004612401565b610a0b565b34801561039b57600080fd5b506103286103aa366004612287565b610a7f565b3480156103bb57600080fd5b50600854610328565b3480156103d057600080fd5b506103106103df36600461241c565b610adb565b3480156103f057600080fd5b506103106103ff366004612468565b610b0c565b34801561041057600080fd5b5061032861041f3660046122bc565b610b3e565b34801561043057600080fd5b5061031061043f366004612483565b610bd4565b34801561045057600080fd5b5061032861045f3660046124db565b610cc9565b34801561047057600080fd5b5061031061047f36600461241c565b610dce565b34801561049057600080fd5b506104b461049f366004612287565b60166020526000908152604090205460ff1681565b60405161028d9190612587565b3480156104cd57600080fd5b506103106104dc3660046125af565b610de9565b3480156104ed57600080fd5b506103286104fc366004612287565b610ea0565b34801561050d57600080fd5b5061028161051c366004612401565b60146020526000908152604090205460ff1681565b34801561053d57600080fd5b5061031061054c36600461263c565b610f33565b34801561055d57600080fd5b5061032861056c366004612287565b60116020526000908152604090205481565b34801561058a57600080fd5b506103106105993660046124db565b611070565b3480156105aa57600080fd5b5061032860125481565b3480156105c057600080fd5b506102d86105cf366004612287565b611272565b3480156105e057600080fd5b506103286105ef366004612401565b6112d2565b34801561060057600080fd5b50610310611358565b34801561061557600080fd5b50610328600f5481565b34801561062b57600080fd5b50600a546001600160a01b03166102d8565b34801561064957600080fd5b50610310610658366004612287565b61136c565b34801561066957600080fd5b506102ab6113c0565b34801561067e57600080fd5b506013546102819060ff1681565b34801561069857600080fd5b506103106106a7366004612685565b6113cf565b3480156106b857600080fd5b506103106106c7366004612385565b6113da565b3480156106d857600080fd5b506102816106e7366004612287565b600e6020526000908152604090205460ff1681565b61031061070a366004612287565b611412565b34801561071b57600080fd5b50600c546102d8906001600160a01b031681565b34801561073b57600080fd5b506102ab61074a366004612287565b6114fd565b34801561075b57600080fd5b506015546102819060ff1681565b34801561077557600080fd5b506102ab611563565b34801561078a57600080fd5b506102816107993660046126b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d357600080fd5b506103106107e2366004612401565b6115f1565b3480156107f357600080fd5b50610310611667565b60006001600160e01b0319821663780e9d6360e01b14806108215750610821826116b3565b92915050565b606060008054610836906126e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610862906126e2565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c482611703565b506000908152600460205260409020546001600160a01b031690565b60006108eb82611272565b9050806001600160a01b0316836001600160a01b03160361095d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061097957506109798133610799565b6109eb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610954565b6109f58383611762565b505050565b630a85bd0160e11b5b949350505050565b610a136117d0565b600c546001600160a01b03808316911603610a2d57600080fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fa0996c8f366a3f88476286c50826d9022cb8cd975f1079c957cb15c464effe0690600090a35050565b600080601054905047600f541015610aab57600f54610a9e9047612732565b610aa89082612749565b90505b600083815260116020526040902054600854601054610aca9190612777565b610ad49190612732565b9392505050565b610ae53382611839565b610b015760405162461bcd60e51b81526004016109549061278b565b6109f58383836118b7565b610b146117d0565b60155481151560ff909116151503610b2b57600080fd5b6015805460ff1916911515919091179055565b6000610b49836112d2565b8210610bab5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610954565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60155460ff16610be357600080fd5b33610bed83611272565b6001600160a01b031614610c0057600080fd5b6000816007811115610c1457610c14612571565b03610c1e57600080fd5b60008281526016602052604090205460ff166007811115610c4157610c41612571565b816007811115610c5357610c53612571565b03610c5d57600080fd5b6000828152601660205260409020805482919060ff19166001836007811115610c8857610c88612571565b0217905550817f2e3b8a5a9099c3ca2e47fccee3bf94e1611c2061f9de3c07c9307547170ca22182604051610cbd9190612587565b60405180910390a25050565b600080601054905047600f541015610cf557600f54610ce89047612732565b610cf29082612749565b90505b60008060005b8551811015610dc457336001600160a01b0316610d30878381518110610d2357610d236127d9565b6020026020010151611272565b6001600160a01b031614610d4357600080fd5b6000610d4e60085490565b601054610d5b9190612777565b9050600060116000898581518110610d7557610d756127d9565b6020026020010151815260200190815260200160002054905081811015610daf57610da08183612732565b9350610dac8486612749565b94505b50508080610dbc906127ef565b915050610cfb565b5090949350505050565b6109f5838383604051806020016040528060008152506113da565b610df16117d0565b60135460ff16610e0057600080fd5b60005b8151811015610e9c5760146000838381518110610e2257610e226127d9565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16610e8a576000610e5860085490565b9050610e88838381518110610e6f57610e6f6127d9565b60200260200101518383610e839190612749565b611a5e565b505b80610e94816127ef565b915050610e03565b5050565b6000610eab60085490565b8210610f0e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610954565b60088281548110610f2157610f216127d9565b90600052602060002001549050919050565b610f3b6117d0565b80604051602001610f4c9190612808565b60405160208183030381529060405280519060200120600d604051602001610f749190612824565b6040516020818303038152906040528051906020012003610f9457600080fd5b6000600d8054610fa3906126e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcf906126e2565b801561101c5780601f10610ff15761010080835404028352916020019161101c565b820191906000526020600020905b815481529060010190602001808311610fff57829003601f168201915b5050505050905081600d908161103291906128e8565b507f2e0a5b969d96a99aee0b35787d9a60516a02ca6f528a5f66d3f936468d8f038281836040516110649291906129a8565b60405180910390a15050565b611078611bac565b47600f5410156110a657600f5461108f9047612732565b601060008282546110a09190612749565b90915550505b60008060005b83518110156111f857336001600160a01b03166110d4858381518110610d2357610d236127d9565b6001600160a01b0316146110e757600080fd5b60006110f260085490565b6010546110ff9190612777565b9050600060116000878581518110611119576111196127d9565b60200260200101518152602001908152602001600020549050818110156111e3578160116000888681518110611151576111516127d9565b602002602001015181526020019081526020016000208190555080826111779190612732565b93506111838486612749565b9450336001600160a01b03168684815181106111a1576111a16127d9565b60200260200101517f3300bdb359cfb956935bca32e9db727413eab1ca84341f2e36caea85bb796968866040516111da91815260200190565b60405180910390a35b505080806111f0906127ef565b9150506110ac565b508115611263576112098247612732565b600f55604051600090339084908381818185875af1925050503d806000811461124e576040519150601f19603f3d011682016040523d82523d6000602084013e611253565b606091505b505090508061126157600080fd5b505b505061126f6001600b55565b50565b6000818152600260205260408120546001600160a01b0316806108215760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610954565b60006001600160a01b03821661133c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610954565b506001600160a01b031660009081526003602052604090205490565b6113606117d0565b61136a6000611c05565b565b6113746117d0565b601254810361138257600080fd5b601280549082905560408051828152602081018490527f8f52874cf73a908d17eb7b37a4f1bbf70a3c63f8a186935cb65908e83a3b1cde9101611064565b606060018054610836906126e2565b610e9c338383611c57565b6113e43383611839565b6114005760405162461bcd60e51b81526004016109549061278b565b61140c84848484611d25565b50505050565b6000818152600e602052604090205460ff161561142e57600080fd5b3361143882611272565b6001600160a01b03161461144b57600080fd5b601254341461145957600080fd5b600c546040516000916001600160a01b03169034908381818185875af1925050503d80600081146114a6576040519150601f19603f3d011682016040523d82523d6000602084013e6114ab565b606091505b50509050806114b957600080fd5b6000828152600e6020526040808220805460ff191660011790555183917ff03c5e9a7bca700fe035c5bedbbb637e54cf3f7710958ce3b269ae2da7405bba91a25050565b606061150882611703565b6000611512611d58565b905060008151116115325760405180602001604052806000815250610ad4565b8061153c84611d67565b60405160200161154d9291906129d6565b6040516020818303038152906040529392505050565b600d8054611570906126e2565b80601f016020809104026020016040519081016040528092919081815260200182805461159c906126e2565b80156115e95780601f106115be576101008083540402835291602001916115e9565b820191906000526020600020905b8154815290600101906020018083116115cc57829003601f168201915b505050505081565b6115f96117d0565b6001600160a01b03811661165e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610954565b61126f81611c05565b61166f6117d0565b60135460ff1661167e57600080fd5b6013805460ff191690556040517f200837fed758f962db406f2ba2a9d31b7bd77e6dfaf82347b1cf69e48511387a90600090a1565b60006001600160e01b031982166380ac58cd60e01b14806116e457506001600160e01b03198216635b5e139f60e01b145b8061082157506301ffc9a760e01b6001600160e01b0319831614610821565b6000818152600260205260409020546001600160a01b031661126f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610954565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179782611272565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b336117e3600a546001600160a01b031690565b6001600160a01b03161461136a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610954565b60008061184583611272565b9050806001600160a01b0316846001600160a01b0316148061188c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610a035750836001600160a01b03166118a5846108b9565b6001600160a01b031614949350505050565b826001600160a01b03166118ca82611272565b6001600160a01b03161461192e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610954565b6001600160a01b0382166119905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610954565b61199b838383611e68565b6119a6600082611762565b6001600160a01b03831660009081526003602052604081208054600192906119cf908490612732565b90915550506001600160a01b03821660009081526003602052604081208054600192906119fd908490612749565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611ab45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610954565b6000818152600260205260409020546001600160a01b031615611b195760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610954565b611b2560008383611e68565b6001600160a01b0382166000908152600360205260408120805460019290611b4e908490612749565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6002600b5403611bfe5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610954565b6002600b55565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611cb85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610954565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d308484846118b7565b611d3c84848484611ea3565b61140c5760405162461bcd60e51b815260040161095490612a05565b6060600d8054610836906126e2565b606081600003611d8e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db85780611da2816127ef565b9150611db19050600a83612777565b9150611d92565b60008167ffffffffffffffff811115611dd357611dd36122e6565b6040519080825280601f01601f191660200182016040528015611dfd576020820181803683370190505b5090505b8415610a0357611e12600183612732565b9150611e1f600a86612a57565b611e2a906030612749565b60f81b818381518110611e3f57611e3f6127d9565b60200101906001600160f81b031916908160001a905350611e61600a86612777565b9450611e01565b6000818152600e602052604090205460ff1680611e8f5750600a546001600160a01b031633145b611e9857600080fd5b6109f5838383611fa1565b60006001600160a01b0384163b15611f9957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee7903390899088908890600401612a6b565b6020604051808303816000875af1925050508015611f22575060408051601f3d908101601f19168201909252611f1f91810190612aa8565b60015b611f7f573d808015611f50576040519150601f19603f3d011682016040523d82523d6000602084013e611f55565b606091505b508051600003611f775760405162461bcd60e51b815260040161095490612a05565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a03565b506001610a03565b6001600160a01b038316611ffc57611ff781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61201f565b816001600160a01b0316836001600160a01b03161461201f5761201f8382612059565b6001600160a01b038216612036576109f5816120f6565b826001600160a01b0316826001600160a01b0316146109f5576109f582826121a5565b60006001612066846112d2565b6120709190612732565b6000838152600760205260409020549091508082146120c3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061210890600190612732565b60008381526009602052604081205460088054939450909284908110612130576121306127d9565b906000526020600020015490508060088381548110612151576121516127d9565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061218957612189612ac5565b6001900381819060005260206000200160009055905550505050565b60006121b0836112d2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b03198116811461126f57600080fd5b60006020828403121561221157600080fd5b8135610ad4816121e9565b60005b8381101561223757818101518382015260200161221f565b8381111561140c5750506000910152565b6000815180845261226081602086016020860161221c565b601f01601f19169290920160200192915050565b602081526000610ad46020830184612248565b60006020828403121561229957600080fd5b5035919050565b80356001600160a01b03811681146122b757600080fd5b919050565b600080604083850312156122cf57600080fd5b6122d8836122a0565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612325576123256122e6565b604052919050565b600067ffffffffffffffff831115612347576123476122e6565b61235a601f8401601f19166020016122fc565b905082815283838301111561236e57600080fd5b828260208301376000602084830101529392505050565b6000806000806080858703121561239b57600080fd5b6123a4856122a0565b93506123b2602086016122a0565b925060408501359150606085013567ffffffffffffffff8111156123d557600080fd5b8501601f810187136123e657600080fd5b6123f58782356020840161232d565b91505092959194509250565b60006020828403121561241357600080fd5b610ad4826122a0565b60008060006060848603121561243157600080fd5b61243a846122a0565b9250612448602085016122a0565b9150604084013590509250925092565b803580151581146122b757600080fd5b60006020828403121561247a57600080fd5b610ad482612458565b6000806040838503121561249657600080fd5b823591506020830135600881106124ac57600080fd5b809150509250929050565b600067ffffffffffffffff8211156124d1576124d16122e6565b5060051b60200190565b600060208083850312156124ee57600080fd5b823567ffffffffffffffff81111561250557600080fd5b8301601f8101851361251657600080fd5b8035612529612524826124b7565b6122fc565b81815260059190911b8201830190838101908783111561254857600080fd5b928401925b828410156125665783358252928401929084019061254d565b979650505050505050565b634e487b7160e01b600052602160045260246000fd5b60208101600883106125a957634e487b7160e01b600052602160045260246000fd5b91905290565b600060208083850312156125c257600080fd5b823567ffffffffffffffff8111156125d957600080fd5b8301601f810185136125ea57600080fd5b80356125f8612524826124b7565b81815260059190911b8201830190838101908783111561261757600080fd5b928401925b828410156125665761262d846122a0565b8252928401929084019061261c565b60006020828403121561264e57600080fd5b813567ffffffffffffffff81111561266557600080fd5b8201601f8101841361267657600080fd5b610a038482356020840161232d565b6000806040838503121561269857600080fd5b6126a1836122a0565b91506126af60208401612458565b90509250929050565b600080604083850312156126cb57600080fd5b6126d4836122a0565b91506126af602084016122a0565b600181811c908216806126f657607f821691505b60208210810361271657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156127445761274461271c565b500390565b6000821982111561275c5761275c61271c565b500190565b634e487b7160e01b600052601260045260246000fd5b60008261278657612786612761565b500490565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016128015761280161271c565b5060010190565b6000825161281a81846020870161221c565b9190910192915050565b6000808354612832816126e2565b6001828116801561284a576001811461285f5761288e565b60ff198416875282151583028701945061288e565b8760005260208060002060005b858110156128855781548a82015290840190820161286c565b50505082870194505b50929695505050505050565b601f8211156109f557600081815260208120601f850160051c810160208610156128c15750805b601f850160051c820191505b818110156128e0578281556001016128cd565b505050505050565b815167ffffffffffffffff811115612902576129026122e6565b6129168161291084546126e2565b8461289a565b602080601f83116001811461294b57600084156129335750858301515b600019600386901b1c1916600185901b1785556128e0565b600085815260208120601f198616915b8281101561297a5788860151825594840194600190910190840161295b565b50858210156129985787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6040815260006129bb6040830185612248565b82810360208401526129cd8185612248565b95945050505050565b600083516129e881846020880161221c565b8351908301906129fc81836020880161221c565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a6657612a66612761565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9e90830184612248565b9695505050505050565b600060208284031215612aba57600080fd5b8151610ad4816121e9565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c5674fb4760ba05dc99e7055a0ce59ceb76d82c7008ef41e1ff15ac8ca43f7ca64736f6c634300080f003300000000000000000000000070001ba1ba4d85739e7b6a7c646b8aba5ed6c888

Deployed Bytecode

0x6080604052600436106102555760003560e01c80635eac623911610139578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd1461072f578063dd97c6221461074f578063e45ec8ac14610769578063e985e9c51461077e578063f2fde38b146107c7578063f9a515c6146107e757600080fd5b8063a22cb4651461068c578063b88d4fde146106ac578063bd94ce04146106cc578063bed62f35146106fc578063c0a226671461070f57600080fd5b8063881adeff116100fd578063881adeff146106095780638da5cb5b1461061f57806390e9a5eb1461063d57806395d89b411461065d5780639843eae31461067257600080fd5b80635eac62391461057e57806361ad80c31461059e5780636352211e146105b457806370a08231146105d4578063715018a6146105f457600080fd5b80632e2c6101116101d257806344d2ed911161019657806344d2ed91146104845780634ee51a27146104c15780634f6ccce7146104e157806355a89b251461050157806355f804b3146105315780635685c4661461055157600080fd5b80632e2c6101146103e45780632f745c59146104045780633428db80146104245780633ce510a71461044457806342842e0e1461046457600080fd5b8063150b7a0211610219578063150b7a0214610336578063171a2ef61461036f5780631772188e1461038f57806318160ddd146103af57806323b872dd146103c457600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630e15561a1461031257600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c3660046121ff565b6107fc565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab610827565b60405161028d9190612274565b3480156102c457600080fd5b506102d86102d3366004612287565b6108b9565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046122bc565b6108e0565b005b34801561031e57600080fd5b5061032860105481565b60405190815260200161028d565b34801561034257600080fd5b50610356610351366004612385565b6109fa565b6040516001600160e01b0319909116815260200161028d565b34801561037b57600080fd5b5061031061038a366004612401565b610a0b565b34801561039b57600080fd5b506103286103aa366004612287565b610a7f565b3480156103bb57600080fd5b50600854610328565b3480156103d057600080fd5b506103106103df36600461241c565b610adb565b3480156103f057600080fd5b506103106103ff366004612468565b610b0c565b34801561041057600080fd5b5061032861041f3660046122bc565b610b3e565b34801561043057600080fd5b5061031061043f366004612483565b610bd4565b34801561045057600080fd5b5061032861045f3660046124db565b610cc9565b34801561047057600080fd5b5061031061047f36600461241c565b610dce565b34801561049057600080fd5b506104b461049f366004612287565b60166020526000908152604090205460ff1681565b60405161028d9190612587565b3480156104cd57600080fd5b506103106104dc3660046125af565b610de9565b3480156104ed57600080fd5b506103286104fc366004612287565b610ea0565b34801561050d57600080fd5b5061028161051c366004612401565b60146020526000908152604090205460ff1681565b34801561053d57600080fd5b5061031061054c36600461263c565b610f33565b34801561055d57600080fd5b5061032861056c366004612287565b60116020526000908152604090205481565b34801561058a57600080fd5b506103106105993660046124db565b611070565b3480156105aa57600080fd5b5061032860125481565b3480156105c057600080fd5b506102d86105cf366004612287565b611272565b3480156105e057600080fd5b506103286105ef366004612401565b6112d2565b34801561060057600080fd5b50610310611358565b34801561061557600080fd5b50610328600f5481565b34801561062b57600080fd5b50600a546001600160a01b03166102d8565b34801561064957600080fd5b50610310610658366004612287565b61136c565b34801561066957600080fd5b506102ab6113c0565b34801561067e57600080fd5b506013546102819060ff1681565b34801561069857600080fd5b506103106106a7366004612685565b6113cf565b3480156106b857600080fd5b506103106106c7366004612385565b6113da565b3480156106d857600080fd5b506102816106e7366004612287565b600e6020526000908152604090205460ff1681565b61031061070a366004612287565b611412565b34801561071b57600080fd5b50600c546102d8906001600160a01b031681565b34801561073b57600080fd5b506102ab61074a366004612287565b6114fd565b34801561075b57600080fd5b506015546102819060ff1681565b34801561077557600080fd5b506102ab611563565b34801561078a57600080fd5b506102816107993660046126b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d357600080fd5b506103106107e2366004612401565b6115f1565b3480156107f357600080fd5b50610310611667565b60006001600160e01b0319821663780e9d6360e01b14806108215750610821826116b3565b92915050565b606060008054610836906126e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610862906126e2565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c482611703565b506000908152600460205260409020546001600160a01b031690565b60006108eb82611272565b9050806001600160a01b0316836001600160a01b03160361095d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061097957506109798133610799565b6109eb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610954565b6109f58383611762565b505050565b630a85bd0160e11b5b949350505050565b610a136117d0565b600c546001600160a01b03808316911603610a2d57600080fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fa0996c8f366a3f88476286c50826d9022cb8cd975f1079c957cb15c464effe0690600090a35050565b600080601054905047600f541015610aab57600f54610a9e9047612732565b610aa89082612749565b90505b600083815260116020526040902054600854601054610aca9190612777565b610ad49190612732565b9392505050565b610ae53382611839565b610b015760405162461bcd60e51b81526004016109549061278b565b6109f58383836118b7565b610b146117d0565b60155481151560ff909116151503610b2b57600080fd5b6015805460ff1916911515919091179055565b6000610b49836112d2565b8210610bab5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610954565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60155460ff16610be357600080fd5b33610bed83611272565b6001600160a01b031614610c0057600080fd5b6000816007811115610c1457610c14612571565b03610c1e57600080fd5b60008281526016602052604090205460ff166007811115610c4157610c41612571565b816007811115610c5357610c53612571565b03610c5d57600080fd5b6000828152601660205260409020805482919060ff19166001836007811115610c8857610c88612571565b0217905550817f2e3b8a5a9099c3ca2e47fccee3bf94e1611c2061f9de3c07c9307547170ca22182604051610cbd9190612587565b60405180910390a25050565b600080601054905047600f541015610cf557600f54610ce89047612732565b610cf29082612749565b90505b60008060005b8551811015610dc457336001600160a01b0316610d30878381518110610d2357610d236127d9565b6020026020010151611272565b6001600160a01b031614610d4357600080fd5b6000610d4e60085490565b601054610d5b9190612777565b9050600060116000898581518110610d7557610d756127d9565b6020026020010151815260200190815260200160002054905081811015610daf57610da08183612732565b9350610dac8486612749565b94505b50508080610dbc906127ef565b915050610cfb565b5090949350505050565b6109f5838383604051806020016040528060008152506113da565b610df16117d0565b60135460ff16610e0057600080fd5b60005b8151811015610e9c5760146000838381518110610e2257610e226127d9565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16610e8a576000610e5860085490565b9050610e88838381518110610e6f57610e6f6127d9565b60200260200101518383610e839190612749565b611a5e565b505b80610e94816127ef565b915050610e03565b5050565b6000610eab60085490565b8210610f0e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610954565b60088281548110610f2157610f216127d9565b90600052602060002001549050919050565b610f3b6117d0565b80604051602001610f4c9190612808565b60405160208183030381529060405280519060200120600d604051602001610f749190612824565b6040516020818303038152906040528051906020012003610f9457600080fd5b6000600d8054610fa3906126e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcf906126e2565b801561101c5780601f10610ff15761010080835404028352916020019161101c565b820191906000526020600020905b815481529060010190602001808311610fff57829003601f168201915b5050505050905081600d908161103291906128e8565b507f2e0a5b969d96a99aee0b35787d9a60516a02ca6f528a5f66d3f936468d8f038281836040516110649291906129a8565b60405180910390a15050565b611078611bac565b47600f5410156110a657600f5461108f9047612732565b601060008282546110a09190612749565b90915550505b60008060005b83518110156111f857336001600160a01b03166110d4858381518110610d2357610d236127d9565b6001600160a01b0316146110e757600080fd5b60006110f260085490565b6010546110ff9190612777565b9050600060116000878581518110611119576111196127d9565b60200260200101518152602001908152602001600020549050818110156111e3578160116000888681518110611151576111516127d9565b602002602001015181526020019081526020016000208190555080826111779190612732565b93506111838486612749565b9450336001600160a01b03168684815181106111a1576111a16127d9565b60200260200101517f3300bdb359cfb956935bca32e9db727413eab1ca84341f2e36caea85bb796968866040516111da91815260200190565b60405180910390a35b505080806111f0906127ef565b9150506110ac565b508115611263576112098247612732565b600f55604051600090339084908381818185875af1925050503d806000811461124e576040519150601f19603f3d011682016040523d82523d6000602084013e611253565b606091505b505090508061126157600080fd5b505b505061126f6001600b55565b50565b6000818152600260205260408120546001600160a01b0316806108215760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610954565b60006001600160a01b03821661133c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610954565b506001600160a01b031660009081526003602052604090205490565b6113606117d0565b61136a6000611c05565b565b6113746117d0565b601254810361138257600080fd5b601280549082905560408051828152602081018490527f8f52874cf73a908d17eb7b37a4f1bbf70a3c63f8a186935cb65908e83a3b1cde9101611064565b606060018054610836906126e2565b610e9c338383611c57565b6113e43383611839565b6114005760405162461bcd60e51b81526004016109549061278b565b61140c84848484611d25565b50505050565b6000818152600e602052604090205460ff161561142e57600080fd5b3361143882611272565b6001600160a01b03161461144b57600080fd5b601254341461145957600080fd5b600c546040516000916001600160a01b03169034908381818185875af1925050503d80600081146114a6576040519150601f19603f3d011682016040523d82523d6000602084013e6114ab565b606091505b50509050806114b957600080fd5b6000828152600e6020526040808220805460ff191660011790555183917ff03c5e9a7bca700fe035c5bedbbb637e54cf3f7710958ce3b269ae2da7405bba91a25050565b606061150882611703565b6000611512611d58565b905060008151116115325760405180602001604052806000815250610ad4565b8061153c84611d67565b60405160200161154d9291906129d6565b6040516020818303038152906040529392505050565b600d8054611570906126e2565b80601f016020809104026020016040519081016040528092919081815260200182805461159c906126e2565b80156115e95780601f106115be576101008083540402835291602001916115e9565b820191906000526020600020905b8154815290600101906020018083116115cc57829003601f168201915b505050505081565b6115f96117d0565b6001600160a01b03811661165e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610954565b61126f81611c05565b61166f6117d0565b60135460ff1661167e57600080fd5b6013805460ff191690556040517f200837fed758f962db406f2ba2a9d31b7bd77e6dfaf82347b1cf69e48511387a90600090a1565b60006001600160e01b031982166380ac58cd60e01b14806116e457506001600160e01b03198216635b5e139f60e01b145b8061082157506301ffc9a760e01b6001600160e01b0319831614610821565b6000818152600260205260409020546001600160a01b031661126f5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610954565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061179782611272565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b336117e3600a546001600160a01b031690565b6001600160a01b03161461136a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610954565b60008061184583611272565b9050806001600160a01b0316846001600160a01b0316148061188c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610a035750836001600160a01b03166118a5846108b9565b6001600160a01b031614949350505050565b826001600160a01b03166118ca82611272565b6001600160a01b03161461192e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610954565b6001600160a01b0382166119905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610954565b61199b838383611e68565b6119a6600082611762565b6001600160a01b03831660009081526003602052604081208054600192906119cf908490612732565b90915550506001600160a01b03821660009081526003602052604081208054600192906119fd908490612749565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611ab45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610954565b6000818152600260205260409020546001600160a01b031615611b195760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610954565b611b2560008383611e68565b6001600160a01b0382166000908152600360205260408120805460019290611b4e908490612749565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6002600b5403611bfe5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610954565b6002600b55565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611cb85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610954565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d308484846118b7565b611d3c84848484611ea3565b61140c5760405162461bcd60e51b815260040161095490612a05565b6060600d8054610836906126e2565b606081600003611d8e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db85780611da2816127ef565b9150611db19050600a83612777565b9150611d92565b60008167ffffffffffffffff811115611dd357611dd36122e6565b6040519080825280601f01601f191660200182016040528015611dfd576020820181803683370190505b5090505b8415610a0357611e12600183612732565b9150611e1f600a86612a57565b611e2a906030612749565b60f81b818381518110611e3f57611e3f6127d9565b60200101906001600160f81b031916908160001a905350611e61600a86612777565b9450611e01565b6000818152600e602052604090205460ff1680611e8f5750600a546001600160a01b031633145b611e9857600080fd5b6109f5838383611fa1565b60006001600160a01b0384163b15611f9957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee7903390899088908890600401612a6b565b6020604051808303816000875af1925050508015611f22575060408051601f3d908101601f19168201909252611f1f91810190612aa8565b60015b611f7f573d808015611f50576040519150601f19603f3d011682016040523d82523d6000602084013e611f55565b606091505b508051600003611f775760405162461bcd60e51b815260040161095490612a05565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a03565b506001610a03565b6001600160a01b038316611ffc57611ff781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61201f565b816001600160a01b0316836001600160a01b03161461201f5761201f8382612059565b6001600160a01b038216612036576109f5816120f6565b826001600160a01b0316826001600160a01b0316146109f5576109f582826121a5565b60006001612066846112d2565b6120709190612732565b6000838152600760205260409020549091508082146120c3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061210890600190612732565b60008381526009602052604081205460088054939450909284908110612130576121306127d9565b906000526020600020015490508060088381548110612151576121516127d9565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061218957612189612ac5565b6001900381819060005260206000200160009055905550505050565b60006121b0836112d2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b03198116811461126f57600080fd5b60006020828403121561221157600080fd5b8135610ad4816121e9565b60005b8381101561223757818101518382015260200161221f565b8381111561140c5750506000910152565b6000815180845261226081602086016020860161221c565b601f01601f19169290920160200192915050565b602081526000610ad46020830184612248565b60006020828403121561229957600080fd5b5035919050565b80356001600160a01b03811681146122b757600080fd5b919050565b600080604083850312156122cf57600080fd5b6122d8836122a0565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612325576123256122e6565b604052919050565b600067ffffffffffffffff831115612347576123476122e6565b61235a601f8401601f19166020016122fc565b905082815283838301111561236e57600080fd5b828260208301376000602084830101529392505050565b6000806000806080858703121561239b57600080fd5b6123a4856122a0565b93506123b2602086016122a0565b925060408501359150606085013567ffffffffffffffff8111156123d557600080fd5b8501601f810187136123e657600080fd5b6123f58782356020840161232d565b91505092959194509250565b60006020828403121561241357600080fd5b610ad4826122a0565b60008060006060848603121561243157600080fd5b61243a846122a0565b9250612448602085016122a0565b9150604084013590509250925092565b803580151581146122b757600080fd5b60006020828403121561247a57600080fd5b610ad482612458565b6000806040838503121561249657600080fd5b823591506020830135600881106124ac57600080fd5b809150509250929050565b600067ffffffffffffffff8211156124d1576124d16122e6565b5060051b60200190565b600060208083850312156124ee57600080fd5b823567ffffffffffffffff81111561250557600080fd5b8301601f8101851361251657600080fd5b8035612529612524826124b7565b6122fc565b81815260059190911b8201830190838101908783111561254857600080fd5b928401925b828410156125665783358252928401929084019061254d565b979650505050505050565b634e487b7160e01b600052602160045260246000fd5b60208101600883106125a957634e487b7160e01b600052602160045260246000fd5b91905290565b600060208083850312156125c257600080fd5b823567ffffffffffffffff8111156125d957600080fd5b8301601f810185136125ea57600080fd5b80356125f8612524826124b7565b81815260059190911b8201830190838101908783111561261757600080fd5b928401925b828410156125665761262d846122a0565b8252928401929084019061261c565b60006020828403121561264e57600080fd5b813567ffffffffffffffff81111561266557600080fd5b8201601f8101841361267657600080fd5b610a038482356020840161232d565b6000806040838503121561269857600080fd5b6126a1836122a0565b91506126af60208401612458565b90509250929050565b600080604083850312156126cb57600080fd5b6126d4836122a0565b91506126af602084016122a0565b600181811c908216806126f657607f821691505b60208210810361271657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156127445761274461271c565b500390565b6000821982111561275c5761275c61271c565b500190565b634e487b7160e01b600052601260045260246000fd5b60008261278657612786612761565b500490565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016128015761280161271c565b5060010190565b6000825161281a81846020870161221c565b9190910192915050565b6000808354612832816126e2565b6001828116801561284a576001811461285f5761288e565b60ff198416875282151583028701945061288e565b8760005260208060002060005b858110156128855781548a82015290840190820161286c565b50505082870194505b50929695505050505050565b601f8211156109f557600081815260208120601f850160051c810160208610156128c15750805b601f850160051c820191505b818110156128e0578281556001016128cd565b505050505050565b815167ffffffffffffffff811115612902576129026122e6565b6129168161291084546126e2565b8461289a565b602080601f83116001811461294b57600084156129335750858301515b600019600386901b1c1916600185901b1785556128e0565b600085815260208120601f198616915b8281101561297a5788860151825594840194600190910190840161295b565b50858210156129985787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6040815260006129bb6040830185612248565b82810360208401526129cd8185612248565b95945050505050565b600083516129e881846020880161221c565b8351908301906129fc81836020880161221c565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a6657612a66612761565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9e90830184612248565b9695505050505050565b600060208284031215612aba57600080fd5b8151610ad4816121e9565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c5674fb4760ba05dc99e7055a0ce59ceb76d82c7008ef41e1ff15ac8ca43f7ca64736f6c634300080f0033

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

00000000000000000000000070001ba1ba4d85739e7b6a7c646b8aba5ed6c888

-----Decoded View---------------
Arg [0] : transferUnlockFeeDestination_ (address): 0x70001BA1BA4d85739E7B6A7C646B8aba5ed6c888

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000070001ba1ba4d85739e7b6a7c646b8aba5ed6c888


Deployed Bytecode Sourcemap

46585:6989:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39786:224;;;;;;;;;;-1:-1:-1;39786:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39786:224:0;;;;;;;;25849:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27362:171::-;;;;;;;;;;-1:-1:-1;27362:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27362:171:0;1528:203:1;26879:417:0;;;;;;;;;;-1:-1:-1;26879:417:0;;;;;:::i;:::-;;:::i;:::-;;47061:27;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;47061:27:0;2173:177:1;46371:207:0;;;;;;;;;;-1:-1:-1;46371:207:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;4011:33:1;;;3993:52;;3981:2;3966:18;46371:207:0;3849:202:1;48239:460:0;;;;;;;;;;-1:-1:-1;48239:460:0;;;;;:::i;:::-;;:::i;51619:340::-;;;;;;;;;;-1:-1:-1;51619:340:0;;;;;:::i;:::-;;:::i;40426:113::-;;;;;;;;;;-1:-1:-1;40514:10:0;:17;40426:113;;28062:336;;;;;;;;;;-1:-1:-1;28062:336:0;;;;;:::i;:::-;;:::i;49370:199::-;;;;;;;;;;-1:-1:-1;49370:199:0;;;;;:::i;:::-;;:::i;40094:256::-;;;;;;;;;;-1:-1:-1;40094:256:0;;;;;:::i;:::-;;:::i;52802:385::-;;;;;;;;;;-1:-1:-1;52802:385:0;;;;;:::i;:::-;;:::i;51967:827::-;;;;;;;;;;-1:-1:-1;51967:827:0;;;;;:::i;:::-;;:::i;28469:185::-;;;;;;;;;;-1:-1:-1;28469:185:0;;;;;:::i;:::-;;:::i;47443:55::-;;;;;;;;;;-1:-1:-1;47443:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;49577:377::-;;;;;;;;;;-1:-1:-1;49577:377:0;;;;;:::i;:::-;;:::i;40616:233::-;;;;;;;;;;-1:-1:-1;40616:233:0;;;;;:::i;:::-;;:::i;47301:47::-;;;;;;;;;;-1:-1:-1;47301:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48707:317;;;;;;;;;;-1:-1:-1;48707:317:0;;;;;:::i;:::-;;:::i;47133:49::-;;;;;;;;;;-1:-1:-1;47133:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;50527:1084;;;;;;;;;;-1:-1:-1;50527:1084:0;;;;;:::i;:::-;;:::i;47208:45::-;;;;;;;;;;;;;;;;25560:222;;;;;;;;;;-1:-1:-1;25560:222:0;;;;;:::i;:::-;;:::i;25291:207::-;;;;;;;;;;-1:-1:-1;25291:207:0;;;;;:::i;:::-;;:::i;2904:103::-;;;;;;;;;;;;;:::i;47025:29::-;;;;;;;;;;;;;;;;2671:87;;;;;;;;;;-1:-1:-1;2744:6:0;;-1:-1:-1;;;;;2744:6:0;2671:87;;49032:330;;;;;;;;;;-1:-1:-1;49032:330:0;;;;;:::i;:::-;;:::i;26018:104::-;;;;;;;;;;;;;:::i;47262:32::-;;;;;;;;;;-1:-1:-1;47262:32:0;;;;;;;;27605:155;;;;;;;;;;-1:-1:-1;27605:155:0;;;;;:::i;:::-;;:::i;28725:323::-;;;;;;;;;;-1:-1:-1;28725:323:0;;;;;:::i;:::-;;:::i;46968:48::-;;;;;;;;;;-1:-1:-1;46968:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50121:398;;;;;;:::i;:::-;;:::i;46871:51::-;;;;;;;;;;-1:-1:-1;46871:51:0;;;;-1:-1:-1;;;;;46871:51:0;;;26193:281;;;;;;;;;;-1:-1:-1;26193:281:0;;;;;:::i;:::-;;:::i;47357:50::-;;;;;;;;;;-1:-1:-1;47357:50:0;;;;;;;;46929:30;;;;;;;;;;;;;:::i;27831:164::-;;;;;;;;;;-1:-1:-1;27831:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27952:25:0;;;27928:4;27952:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27831:164;3015:201;;;;;;;;;;-1:-1:-1;3015:201:0;;;;;:::i;:::-;;:::i;49962:151::-;;;;;;;;;;;;;:::i;39786:224::-;39888:4;-1:-1:-1;;;;;;39912:50:0;;-1:-1:-1;;;39912:50:0;;:90;;;39966:36;39990:11;39966:23;:36::i;:::-;39905:97;39786:224;-1:-1:-1;;39786:224:0:o;25849:100::-;25903:13;25936:5;25929:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25849:100;:::o;27362:171::-;27438:7;27458:23;27473:7;27458:14;:23::i;:::-;-1:-1:-1;27501:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27501:24:0;;27362:171::o;26879:417::-;26960:13;26976:23;26991:7;26976:14;:23::i;:::-;26960:39;;27024:5;-1:-1:-1;;;;;27018:11:0;:2;-1:-1:-1;;;;;27018:11:0;;27010:57;;;;-1:-1:-1;;;27010:57:0;;9524:2:1;27010:57:0;;;9506:21:1;9563:2;9543:18;;;9536:30;9602:34;9582:18;;;9575:62;-1:-1:-1;;;9653:18:1;;;9646:31;9694:19;;27010:57:0;;;;;;;;;20368:10;-1:-1:-1;;;;;27102:21:0;;;;:62;;-1:-1:-1;27127:37:0;27144:5;20368:10;27831:164;:::i;27127:37::-;27080:174;;;;-1:-1:-1;;;27080:174:0;;9926:2:1;27080:174:0;;;9908:21:1;9965:2;9945:18;;;9938:30;10004:34;9984:18;;;9977:62;10075:32;10055:18;;;10048:60;10125:19;;27080:174:0;9724:426:1;27080:174:0;27267:21;27276:2;27280:7;27267:8;:21::i;:::-;26949:347;26879:417;;:::o;46371:207::-;-1:-1:-1;;;46371:207:0;;;;;;;:::o;48239:460::-;2630:13;:11;:13::i;:::-;48357:28:::1;::::0;-1:-1:-1;;;;;48357:61:0;;::::1;:28:::0;::::1;:61:::0;48349:70:::1;;;::::0;::::1;;48472:28;::::0;;-1:-1:-1;;;;;48511:69:0;;::::1;-1:-1:-1::0;;;;;;48511:69:0;::::1;::::0;::::1;::::0;;;48596:95:::1;::::0;48472:28;::::1;::::0;48511:69;48472:28;;48596:95:::1;::::0;48430:39:::1;::::0;48596:95:::1;48338:361;48239:460:::0;:::o;51619:340::-;51683:7;51703:21;51727:12;;51703:36;;51771:21;51754:14;;:38;51750:128;;;51851:14;;51827:38;;:21;:38;:::i;:::-;51809:57;;;;:::i;:::-;;;51750:128;51928:23;;;;:14;:23;;;;;;40514:10;:17;51896:12;;:28;;;;:::i;:::-;51895:56;;;;:::i;:::-;51888:63;51619:340;-1:-1:-1;;;51619:340:0:o;28062:336::-;28257:41;20368:10;28290:7;28257:18;:41::i;:::-;28249:100;;;;-1:-1:-1;;;28249:100:0;;;;;;;:::i;:::-;28362:28;28372:4;28378:2;28382:7;28362:9;:28::i;49370:199::-;2630:13;:11;:13::i;:::-;49466:31:::1;::::0;:42;::::1;;:31;::::0;;::::1;:42;;::::0;49458:51:::1;;;::::0;::::1;;49520:31;:41:::0;;-1:-1:-1;;49520:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49370:199::o;40094:256::-;40191:7;40227:23;40244:5;40227:16;:23::i;:::-;40219:5;:31;40211:87;;;;-1:-1:-1;;;40211:87:0;;11424:2:1;40211:87:0;;;11406:21:1;11463:2;11443:18;;;11436:30;11502:34;11482:18;;;11475:62;-1:-1:-1;;;11553:18:1;;;11546:41;11604:19;;40211:87:0;11222:407:1;40211:87:0;-1:-1:-1;;;;;;40316:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40094:256::o;52802:385::-;52887:31;;;;52879:40;;;;;;52958:10;52938:16;52946:7;52938;:16::i;:::-;-1:-1:-1;;;;;52938:30:0;;52930:39;;;;;;52999:20;52988:7;:31;;;;;;;;:::i;:::-;;52980:40;;;;;;53050:29;;;;:20;:29;;;;;;;;53039:40;;;;;;;;:::i;:::-;:7;:40;;;;;;;;:::i;:::-;;53031:49;;;;;;53091:29;;;;:20;:29;;;;;:39;;53123:7;;53091:29;-1:-1:-1;;53091:39:0;;53123:7;53091:39;;;;;;;;:::i;:::-;;;;;;53162:7;53146:33;53171:7;53146:33;;;;;;:::i;:::-;;;;;;;;52802:385;;:::o;51967:827::-;52038:7;52058:21;52082:12;;52058:36;;52126:21;52109:14;;:38;52105:128;;;52206:14;;52182:38;;:21;:38;:::i;:::-;52164:57;;;;:::i;:::-;;;52105:128;52245:17;52273:22;52313:6;52308:450;52327:8;:15;52323:1;:19;52308:450;;;52396:10;-1:-1:-1;;;;;52372:34:0;:20;52380:8;52389:1;52380:11;;;;;;;;:::i;:::-;;;;;;;52372:7;:20::i;:::-;-1:-1:-1;;;;;52372:34:0;;52364:43;;;;;;52422:25;52465:13;40514:10;:17;;40426:113;52465:13;52450:12;;:28;;;;:::i;:::-;52422:56;;52493:27;52523:14;:27;52538:8;52547:1;52538:11;;;;;;;;:::i;:::-;;;;;;;52523:27;;;;;;;;;;;;52493:57;;52591:17;52569:19;:39;52565:182;;;52646:39;52666:19;52646:17;:39;:::i;:::-;52629:56;-1:-1:-1;52704:27:0;52629:56;52704:27;;:::i;:::-;;;52565:182;52349:409;;52344:3;;;;;:::i;:::-;;;;52308:450;;;-1:-1:-1;52777:9:0;;51967:827;-1:-1:-1;;;;51967:827:0:o;28469:185::-;28607:39;28624:4;28630:2;28634:7;28607:39;;;;;;;;;;;;:16;:39::i;49577:377::-;2630:13;:11;:13::i;:::-;49667::::1;::::0;::::1;;49659:22;;;::::0;::::1;;49697:6;49692:255;49711:10;:17;49707:1;:21;49692:255;;;49755:15;:30;49771:10;49782:1;49771:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;49755:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;49755:30:0;;::::1;;49750:186;;49806:19;49828:30;40514:10:::0;:17;;40426:113;49828:30:::1;49806:52;;49877:43;49889:10;49900:1;49889:13;;;;;;;;:::i;:::-;;;;;;;49918:1;49904:11;:15;;;;:::i;:::-;49877:11;:43::i;:::-;49787:149;49750:186;49730:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49692:255;;;;49577:377:::0;:::o;40616:233::-;40691:7;40727:30;40514:10;:17;;40426:113;40727:30;40719:5;:38;40711:95;;;;-1:-1:-1;;;40711:95:0;;12108:2:1;40711:95:0;;;12090:21:1;12147:2;12127:18;;;12120:30;12186:34;12166:18;;;12159:62;-1:-1:-1;;;12237:18:1;;;12230:42;12289:19;;40711:95:0;11906:408:1;40711:95:0;40824:10;40835:5;40824:17;;;;;;;;:::i;:::-;;;;;;;;;40817:24;;40616:233;;;:::o;48707:317::-;2630:13;:11;:13::i;:::-;48865:8:::1;48848:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;48838:37;;;;;;48816:16;48799:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;48789:45;;;;;;:86:::0;48781:95:::1;;;::::0;::::1;;48887:24;48914:16;48887:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48960:8;48941:16;:27;;;;;;:::i;:::-;;48984:32;48995:10;49007:8;48984:32;;;;;;;:::i;:::-;;;;;;;;48770:254;48707:317:::0;:::o;50527:1084::-;3687:21;:19;:21::i;:::-;50628::::1;50611:14;;:38;50607:127;;;50707:14;::::0;50683:38:::1;::::0;:21:::1;:38;:::i;:::-;50666:12;;:56;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;50607:127:0::1;50746:17;50774:22:::0;50814:6:::1;50809:595;50828:8;:15;50824:1;:19;50809:595;;;50897:10;-1:-1:-1::0;;;;;50873:34:0::1;:20;50881:8;50890:1;50881:11;;;;;;;;:::i;50873:20::-;-1:-1:-1::0;;;;;50873:34:0::1;;50865:43;;;::::0;::::1;;50923:25;50966:13;40514:10:::0;:17;;40426:113;50966:13:::1;50951:12;;:28;;;;:::i;:::-;50923:56;;50994:27;51024:14;:27;51039:8;51048:1;51039:11;;;;;;;;:::i;:::-;;;;;;;51024:27;;;;;;;;;;;;50994:57;;51092:17;51070:19;:39;51066:327;;;51160:17;51130:14;:27;51145:8;51154:1;51145:11;;;;;;;;:::i;:::-;;;;;;;51130:27;;;;;;;;;;;:47;;;;51233:19;51213:17;:39;;;;:::i;:::-;51196:56:::0;-1:-1:-1;51271:27:0::1;51196:56:::0;51271:27;::::1;:::i;:::-;;;51350:10;-1:-1:-1::0;;;;;51322:55:0::1;51337:8;51346:1;51337:11;;;;;;;;:::i;:::-;;;;;;;51322:55;51362:14;51322:55;;;;2319:25:1::0;;2307:2;2292:18;;2173:177;51322:55:0::1;;;;;;;;51066:327;50850:554;;50845:3;;;;;:::i;:::-;;;;50809:595;;;-1:-1:-1::0;51420:13:0;;51416:188:::1;;51467:33;51491:9:::0;51467:21:::1;:33;:::i;:::-;51450:14;:50:::0;51529:37:::1;::::0;51516:7:::1;::::0;51529:10:::1;::::0;51552:9;;51516:7;51529:37;51516:7;51529:37;51552:9;51529:10;:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51515:51;;;51589:2;51581:11;;;::::0;::::1;;51435:169;51416:188;50596:1015;;3731:20:::0;3503:1;4251:7;:22;4068:213;3731:20;50527:1084;:::o;25560:222::-;25632:7;25668:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25668:16:0;;25695:56;;;;-1:-1:-1;;;25695:56:0;;16451:2:1;25695:56:0;;;16433:21:1;16490:2;16470:18;;;16463:30;-1:-1:-1;;;16509:18:1;;;16502:54;16573:18;;25695:56:0;16249:348:1;25291:207:0;25363:7;-1:-1:-1;;;;;25391:19:0;;25383:73;;;;-1:-1:-1;;;25383:73:0;;16804:2:1;25383:73:0;;;16786:21:1;16843:2;16823:18;;;16816:30;16882:34;16862:18;;;16855:62;-1:-1:-1;;;16933:18:1;;;16926:39;16982:19;;25383:73:0;16602:405:1;25383:73:0;-1:-1:-1;;;;;;25474:16:0;;;;;:9;:16;;;;;;;25291:207::o;2904:103::-;2630:13;:11;:13::i;:::-;2969:30:::1;2996:1;2969:18;:30::i;:::-;2904:103::o:0;49032:330::-;2630:13;:11;:13::i;:::-;49150:17:::1;;49128:18;:39:::0;49120:48:::1;;;::::0;::::1;;49210:17;::::0;;49238:38;;;;49292:62:::1;::::0;;17186:25:1;;;17242:2;17227:18;;17220:34;;;49292:62:0::1;::::0;17159:18:1;49292:62:0::1;17012:248:1::0;26018:104:0;26074:13;26107:7;26100:14;;;;;:::i;27605:155::-;27700:52;20368:10;27733:8;27743;27700:18;:52::i;28725:323::-;28899:41;20368:10;28932:7;28899:18;:41::i;:::-;28891:100;;;;-1:-1:-1;;;28891:100:0;;;;;;;:::i;:::-;29002:38;29016:4;29022:2;29026:7;29035:4;29002:13;:38::i;:::-;28725:323;;;;:::o;50121:398::-;50199:25;;;;:16;:25;;;;;;;;50198:26;50190:35;;;;;;50264:10;50244:16;50252:7;50244;:16::i;:::-;-1:-1:-1;;;;;50244:30:0;;50236:39;;;;;;50307:17;;50294:9;:30;50286:39;;;;;;50350:28;;:55;;50337:7;;-1:-1:-1;;;;;50350:28:0;;50391:9;;50337:7;50350:55;50337:7;50350:55;50391:9;50350:28;:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50336:69;;;50424:2;50416:11;;;;;;50438:25;;;;:16;:25;;;;;;:32;;-1:-1:-1;;50438:32:0;50466:4;50438:32;;;50486:25;50455:7;;50486:25;;;50179:340;50121:398;:::o;26193:281::-;26266:13;26292:23;26307:7;26292:14;:23::i;:::-;26328:21;26352:10;:8;:10::i;:::-;26328:34;;26404:1;26386:7;26380:21;:25;:86;;;;;;;;;;;;;;;;;26432:7;26441:18;:7;:16;:18::i;:::-;26415:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26373:93;26193:281;-1:-1:-1;;;26193:281:0:o;46929:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3015:201::-;2630:13;:11;:13::i;:::-;-1:-1:-1;;;;;3104:22:0;::::1;3096:73;;;::::0;-1:-1:-1;;;3096:73:0;;17942:2:1;3096:73:0::1;::::0;::::1;17924:21:1::0;17981:2;17961:18;;;17954:30;18020:34;18000:18;;;17993:62;-1:-1:-1;;;18071:18:1;;;18064:36;18117:19;;3096:73:0::1;17740:402:1::0;3096:73:0::1;3180:28;3199:8;3180:18;:28::i;49962:151::-:0;2630:13;:11;:13::i;:::-;50026::::1;::::0;::::1;;50018:22;;;::::0;::::1;;50051:13;:21:::0;;-1:-1:-1;;50051:21:0::1;::::0;;50088:17:::1;::::0;::::1;::::0;50067:5:::1;::::0;50088:17:::1;49962:151::o:0;24934:293::-;25036:4;-1:-1:-1;;;;;;25069:40:0;;-1:-1:-1;;;25069:40:0;;:101;;-1:-1:-1;;;;;;;25122:48:0;;-1:-1:-1;;;25122:48:0;25069:101;:150;;;-1:-1:-1;;;;;;;;;;23652:40:0;;;25183:36;23543:157;35337:135;30620:4;30644:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30644:16:0;35411:53;;;;-1:-1:-1;;;35411:53:0;;16451:2:1;35411:53:0;;;16433:21:1;16490:2;16470:18;;;16463:30;-1:-1:-1;;;16509:18:1;;;16502:54;16573:18;;35411:53:0;16249:348:1;34616:174:0;34691:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34691:29:0;-1:-1:-1;;;;;34691:29:0;;;;;;;;:24;;34745:23;34691:24;34745:14;:23::i;:::-;-1:-1:-1;;;;;34736:46:0;;;;;;;;;;;34616:174;;:::o;2766:130::-;2841:10;2830:7;2744:6;;-1:-1:-1;;;;;2744:6:0;;2671:87;2830:7;-1:-1:-1;;;;;2830:21:0;;2822:66;;;;-1:-1:-1;;;2822:66:0;;18349:2:1;2822:66:0;;;18331:21:1;;;18368:18;;;18361:30;18427:34;18407:18;;;18400:62;18479:18;;2822:66:0;18147:356:1;30849:264:0;30942:4;30959:13;30975:23;30990:7;30975:14;:23::i;:::-;30959:39;;31028:5;-1:-1:-1;;;;;31017:16:0;:7;-1:-1:-1;;;;;31017:16:0;;:52;;;-1:-1:-1;;;;;;27952:25:0;;;27928:4;27952:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31037:32;31017:87;;;;31097:7;-1:-1:-1;;;;;31073:31:0;:20;31085:7;31073:11;:20::i;:::-;-1:-1:-1;;;;;31073:31:0;;31009:96;30849:264;-1:-1:-1;;;;30849:264:0:o;33872:625::-;34031:4;-1:-1:-1;;;;;34004:31:0;:23;34019:7;34004:14;:23::i;:::-;-1:-1:-1;;;;;34004:31:0;;33996:81;;;;-1:-1:-1;;;33996:81:0;;18710:2:1;33996:81:0;;;18692:21:1;18749:2;18729:18;;;18722:30;18788:34;18768:18;;;18761:62;-1:-1:-1;;;18839:18:1;;;18832:35;18884:19;;33996:81:0;18508:401:1;33996:81:0;-1:-1:-1;;;;;34096:16:0;;34088:65;;;;-1:-1:-1;;;34088:65:0;;19116:2:1;34088:65:0;;;19098:21:1;19155:2;19135:18;;;19128:30;19194:34;19174:18;;;19167:62;-1:-1:-1;;;19245:18:1;;;19238:34;19289:19;;34088:65:0;18914:400:1;34088:65:0;34166:39;34187:4;34193:2;34197:7;34166:20;:39::i;:::-;34270:29;34287:1;34291:7;34270:8;:29::i;:::-;-1:-1:-1;;;;;34312:15:0;;;;;;:9;:15;;;;;:20;;34331:1;;34312:15;:20;;34331:1;;34312:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34343:13:0;;;;;;:9;:13;;;;;:18;;34360:1;;34343:13;:18;;34360:1;;34343:18;:::i;:::-;;;;-1:-1:-1;;34372:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34372:21:0;-1:-1:-1;;;;;34372:21:0;;;;;;;;;34411:27;;34372:16;;34411:27;;;;;;;26949:347;26879:417;;:::o;32447:439::-;-1:-1:-1;;;;;32527:16:0;;32519:61;;;;-1:-1:-1;;;32519:61:0;;19521:2:1;32519:61:0;;;19503:21:1;;;19540:18;;;19533:30;19599:34;19579:18;;;19572:62;19651:18;;32519:61:0;19319:356:1;32519:61:0;30620:4;30644:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30644:16:0;:30;32591:58;;;;-1:-1:-1;;;32591:58:0;;19882:2:1;32591:58:0;;;19864:21:1;19921:2;19901:18;;;19894:30;19960;19940:18;;;19933:58;20008:18;;32591:58:0;19680:352:1;32591:58:0;32662:45;32691:1;32695:2;32699:7;32662:20;:45::i;:::-;-1:-1:-1;;;;;32720:13:0;;;;;;:9;:13;;;;;:18;;32737:1;;32720:13;:18;;32737:1;;32720:18;:::i;:::-;;;;-1:-1:-1;;32749:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32749:21:0;-1:-1:-1;;;;;32749:21:0;;;;;;;;32788:33;;32749:16;;;32788:33;;32749:16;;32788:33;49692:255:::1;49577:377:::0;:::o;3767:293::-;3547:1;3901:7;;:19;3893:63;;;;-1:-1:-1;;;3893:63:0;;20239:2:1;3893:63:0;;;20221:21:1;20278:2;20258:18;;;20251:30;20317:33;20297:18;;;20290:61;20368:18;;3893:63:0;20037:355:1;3893:63:0;3547:1;4034:7;:18;3767:293::o;3224:191::-;3317:6;;;-1:-1:-1;;;;;3334:17:0;;;-1:-1:-1;;;;;;3334:17:0;;;;;;;3367:40;;3317:6;;;3334:17;3317:6;;3367:40;;3298:16;;3367:40;3287:128;3224:191;:::o;34933:315::-;35088:8;-1:-1:-1;;;;;35079:17:0;:5;-1:-1:-1;;;;;35079:17:0;;35071:55;;;;-1:-1:-1;;;35071:55:0;;20599:2:1;35071:55:0;;;20581:21:1;20638:2;20618:18;;;20611:30;20677:27;20657:18;;;20650:55;20722:18;;35071:55:0;20397:349:1;35071:55:0;-1:-1:-1;;;;;35137:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35137:46:0;;;;;;;;;;35199:41;;540::1;;;35199::0;;513:18:1;35199:41:0;;;;;;;34933:315;;;:::o;29929:313::-;30085:28;30095:4;30101:2;30105:7;30085:9;:28::i;:::-;30132:47;30155:4;30161:2;30165:7;30174:4;30132:22;:47::i;:::-;30124:110;;;;-1:-1:-1;;;30124:110:0;;;;;;;:::i;53462:109::-;53514:13;53547:16;53540:23;;;;;:::i;20778:723::-;20834:13;21055:5;21064:1;21055:10;21051:53;;-1:-1:-1;;21082:10:0;;;;;;;;;;;;-1:-1:-1;;;21082:10:0;;;;;20778:723::o;21051:53::-;21129:5;21114:12;21170:78;21177:9;;21170:78;;21203:8;;;;:::i;:::-;;-1:-1:-1;21226:10:0;;-1:-1:-1;21234:2:0;21226:10;;:::i;:::-;;;21170:78;;;21258:19;21290:6;21280:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21280:17:0;;21258:39;;21308:154;21315:10;;21308:154;;21342:11;21352:1;21342:11;;:::i;:::-;;-1:-1:-1;21411:10:0;21419:2;21411:5;:10;:::i;:::-;21398:24;;:2;:24;:::i;:::-;21385:39;;21368:6;21375;21368:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21368:56:0;;;;;;;;-1:-1:-1;21439:11:0;21448:2;21439:11;;:::i;:::-;;;21308:154;;53195:261;53339:25;;;;:16;:25;;;;;;;;;:50;;-1:-1:-1;2744:6:0;;-1:-1:-1;;;;;2744:6:0;53368:10;:21;53339:50;53331:59;;;;;;53401:45;53428:4;53434:2;53438:7;53401:26;:45::i;36036:853::-;36190:4;-1:-1:-1;;;;;36211:13:0;;12723:19;:23;36207:675;;36247:71;;-1:-1:-1;;;36247:71:0;;-1:-1:-1;;;;;36247:36:0;;;;;:71;;20368:10;;36298:4;;36304:7;;36313:4;;36247:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36247:71:0;;;;;;;;-1:-1:-1;;36247:71:0;;;;;;;;;;;;:::i;:::-;;;36243:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36488:6;:13;36505:1;36488:18;36484:328;;36531:60;;-1:-1:-1;;;36531:60:0;;;;;;;:::i;36484:328::-;36762:6;36756:13;36747:6;36743:2;36739:15;36732:38;36243:584;-1:-1:-1;;;;;;36369:51:0;-1:-1:-1;;;36369:51:0;;-1:-1:-1;36362:58:0;;36207:675;-1:-1:-1;36866:4:0;36859:11;;41462:589;-1:-1:-1;;;;;41668:18:0;;41664:187;;41703:40;41735:7;42878:10;:17;;42851:24;;;;:15;:24;;;;;:44;;;42906:24;;;;;;;;;;;;42774:164;41703:40;41664:187;;;41773:2;-1:-1:-1;;;;;41765:10:0;:4;-1:-1:-1;;;;;41765:10:0;;41761:90;;41792:47;41825:4;41831:7;41792:32;:47::i;:::-;-1:-1:-1;;;;;41865:16:0;;41861:183;;41898:45;41935:7;41898:36;:45::i;41861:183::-;41971:4;-1:-1:-1;;;;;41965:10:0;:2;-1:-1:-1;;;;;41965:10:0;;41961:83;;41992:40;42020:2;42024:7;41992:27;:40::i;43565:988::-;43831:22;43881:1;43856:22;43873:4;43856:16;:22::i;:::-;:26;;;;:::i;:::-;43893:18;43914:26;;;:17;:26;;;;;;43831:51;;-1:-1:-1;44047:28:0;;;44043:328;;-1:-1:-1;;;;;44114:18:0;;44092:19;44114:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44165:30;;;;;;:44;;;44282:30;;:17;:30;;;;;:43;;;44043:328;-1:-1:-1;44467:26:0;;;;:17;:26;;;;;;;;44460:33;;;-1:-1:-1;;;;;44511:18:0;;;;;:12;:18;;;;;:34;;;;;;;44504:41;43565:988::o;44848:1079::-;45126:10;:17;45101:22;;45126:21;;45146:1;;45126:21;:::i;:::-;45158:18;45179:24;;;:15;:24;;;;;;45552:10;:26;;45101:46;;-1:-1:-1;45179:24:0;;45101:46;;45552:26;;;;;;:::i;:::-;;;;;;;;;45530:48;;45616:11;45591:10;45602;45591:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45696:28;;;:15;:28;;;;;;;:41;;;45868:24;;;;;45861:31;45903:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44919:1008;;;44848:1079;:::o;42352:221::-;42437:14;42454:20;42471:2;42454:16;:20::i;:::-;-1:-1:-1;;;;;42485:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42530:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42352:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:406::-;2831:5;2865:18;2857:6;2854:30;2851:56;;;2887:18;;:::i;:::-;2925:57;2970:2;2949:15;;-1:-1:-1;;2945:29:1;2976:4;2941:40;2925:57;:::i;:::-;2916:66;;3005:6;2998:5;2991:21;3045:3;3036:6;3031:3;3027:16;3024:25;3021:45;;;3062:1;3059;3052:12;3021:45;3111:6;3106:3;3099:4;3092:5;3088:16;3075:43;3165:1;3158:4;3149:6;3142:5;3138:18;3134:29;3127:40;2767:406;;;;;:::o;3178:666::-;3273:6;3281;3289;3297;3350:3;3338:9;3329:7;3325:23;3321:33;3318:53;;;3367:1;3364;3357:12;3318:53;3390:29;3409:9;3390:29;:::i;:::-;3380:39;;3438:38;3472:2;3461:9;3457:18;3438:38;:::i;:::-;3428:48;;3523:2;3512:9;3508:18;3495:32;3485:42;;3578:2;3567:9;3563:18;3550:32;3605:18;3597:6;3594:30;3591:50;;;3637:1;3634;3627:12;3591:50;3660:22;;3713:4;3705:13;;3701:27;-1:-1:-1;3691:55:1;;3742:1;3739;3732:12;3691:55;3765:73;3830:7;3825:2;3812:16;3807:2;3803;3799:11;3765:73;:::i;:::-;3755:83;;;3178:666;;;;;;;:::o;4056:186::-;4115:6;4168:2;4156:9;4147:7;4143:23;4139:32;4136:52;;;4184:1;4181;4174:12;4136:52;4207:29;4226:9;4207:29;:::i;4247:328::-;4324:6;4332;4340;4393:2;4381:9;4372:7;4368:23;4364:32;4361:52;;;4409:1;4406;4399:12;4361:52;4432:29;4451:9;4432:29;:::i;:::-;4422:39;;4480:38;4514:2;4503:9;4499:18;4480:38;:::i;:::-;4470:48;;4565:2;4554:9;4550:18;4537:32;4527:42;;4247:328;;;;;:::o;4580:160::-;4645:20;;4701:13;;4694:21;4684:32;;4674:60;;4730:1;4727;4720:12;4745:180;4801:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:52;;;4870:1;4867;4860:12;4822:52;4893:26;4909:9;4893:26;:::i;4930:336::-;5010:6;5018;5071:2;5059:9;5050:7;5046:23;5042:32;5039:52;;;5087:1;5084;5077:12;5039:52;5123:9;5110:23;5100:33;;5183:2;5172:9;5168:18;5155:32;5216:1;5209:5;5206:12;5196:40;;5232:1;5229;5222:12;5196:40;5255:5;5245:15;;;4930:336;;;;;:::o;5271:183::-;5331:4;5364:18;5356:6;5353:30;5350:56;;;5386:18;;:::i;:::-;-1:-1:-1;5431:1:1;5427:14;5443:4;5423:25;;5271:183::o;5459:891::-;5543:6;5574:2;5617;5605:9;5596:7;5592:23;5588:32;5585:52;;;5633:1;5630;5623:12;5585:52;5673:9;5660:23;5706:18;5698:6;5695:30;5692:50;;;5738:1;5735;5728:12;5692:50;5761:22;;5814:4;5806:13;;5802:27;-1:-1:-1;5792:55:1;;5843:1;5840;5833:12;5792:55;5879:2;5866:16;5902:60;5918:43;5958:2;5918:43;:::i;:::-;5902:60;:::i;:::-;5996:15;;;6078:1;6074:10;;;;6066:19;;6062:28;;;6027:12;;;;6102:19;;;6099:39;;;6134:1;6131;6124:12;6099:39;6158:11;;;;6178:142;6194:6;6189:3;6186:15;6178:142;;;6260:17;;6248:30;;6211:12;;;;6298;;;;6178:142;;;6339:5;5459:891;-1:-1:-1;;;;;;;5459:891:1:o;6355:127::-;6416:10;6411:3;6407:20;6404:1;6397:31;6447:4;6444:1;6437:15;6471:4;6468:1;6461:15;6487:340;6631:2;6616:18;;6664:1;6653:13;;6643:144;;6709:10;6704:3;6700:20;6697:1;6690:31;6744:4;6741:1;6734:15;6772:4;6769:1;6762:15;6643:144;6796:25;;;6487:340;:::o;6832:897::-;6916:6;6947:2;6990;6978:9;6969:7;6965:23;6961:32;6958:52;;;7006:1;7003;6996:12;6958:52;7046:9;7033:23;7079:18;7071:6;7068:30;7065:50;;;7111:1;7108;7101:12;7065:50;7134:22;;7187:4;7179:13;;7175:27;-1:-1:-1;7165:55:1;;7216:1;7213;7206:12;7165:55;7252:2;7239:16;7275:60;7291:43;7331:2;7291:43;:::i;7275:60::-;7369:15;;;7451:1;7447:10;;;;7439:19;;7435:28;;;7400:12;;;;7475:19;;;7472:39;;;7507:1;7504;7497:12;7472:39;7531:11;;;;7551:148;7567:6;7562:3;7559:15;7551:148;;;7633:23;7652:3;7633:23;:::i;:::-;7621:36;;7584:12;;;;7677;;;;7551:148;;7734:450;7803:6;7856:2;7844:9;7835:7;7831:23;7827:32;7824:52;;;7872:1;7869;7862:12;7824:52;7912:9;7899:23;7945:18;7937:6;7934:30;7931:50;;;7977:1;7974;7967:12;7931:50;8000:22;;8053:4;8045:13;;8041:27;-1:-1:-1;8031:55:1;;8082:1;8079;8072:12;8031:55;8105:73;8170:7;8165:2;8152:16;8147:2;8143;8139:11;8105:73;:::i;8189:254::-;8254:6;8262;8315:2;8303:9;8294:7;8290:23;8286:32;8283:52;;;8331:1;8328;8321:12;8283:52;8354:29;8373:9;8354:29;:::i;:::-;8344:39;;8402:35;8433:2;8422:9;8418:18;8402:35;:::i;:::-;8392:45;;8189:254;;;;;:::o;8672:260::-;8740:6;8748;8801:2;8789:9;8780:7;8776:23;8772:32;8769:52;;;8817:1;8814;8807:12;8769:52;8840:29;8859:9;8840:29;:::i;:::-;8830:39;;8888:38;8922:2;8911:9;8907:18;8888:38;:::i;8937:380::-;9016:1;9012:12;;;;9059;;;9080:61;;9134:4;9126:6;9122:17;9112:27;;9080:61;9187:2;9179:6;9176:14;9156:18;9153:38;9150:161;;9233:10;9228:3;9224:20;9221:1;9214:31;9268:4;9265:1;9258:15;9296:4;9293:1;9286:15;9150:161;;8937:380;;;:::o;10155:127::-;10216:10;10211:3;10207:20;10204:1;10197:31;10247:4;10244:1;10237:15;10271:4;10268:1;10261:15;10287:125;10327:4;10355:1;10352;10349:8;10346:34;;;10360:18;;:::i;:::-;-1:-1:-1;10397:9:1;;10287:125::o;10417:128::-;10457:3;10488:1;10484:6;10481:1;10478:13;10475:39;;;10494:18;;:::i;:::-;-1:-1:-1;10530:9:1;;10417:128::o;10550:127::-;10611:10;10606:3;10602:20;10599:1;10592:31;10642:4;10639:1;10632:15;10666:4;10663:1;10656:15;10682:120;10722:1;10748;10738:35;;10753:18;;:::i;:::-;-1:-1:-1;10787:9:1;;10682:120::o;10807:410::-;11009:2;10991:21;;;11048:2;11028:18;;;11021:30;11087:34;11082:2;11067:18;;11060:62;-1:-1:-1;;;11153:2:1;11138:18;;11131:44;11207:3;11192:19;;10807:410::o;11634:127::-;11695:10;11690:3;11686:20;11683:1;11676:31;11726:4;11723:1;11716:15;11750:4;11747:1;11740:15;11766:135;11805:3;11826:17;;;11823:43;;11846:18;;:::i;:::-;-1:-1:-1;11893:1:1;11882:13;;11766:135::o;12319:276::-;12450:3;12488:6;12482:13;12504:53;12550:6;12545:3;12538:4;12530:6;12526:17;12504:53;:::i;:::-;12573:16;;;;;12319:276;-1:-1:-1;;12319:276:1:o;12726:842::-;12854:3;12883:1;12916:6;12910:13;12946:36;12972:9;12946:36;:::i;:::-;13001:1;13018:18;;;13045:133;;;;13192:1;13187:356;;;;13011:532;;13045:133;-1:-1:-1;;13078:24:1;;13066:37;;13151:14;;13144:22;13132:35;;13123:45;;;-1:-1:-1;13045:133:1;;13187:356;13218:6;13215:1;13208:17;13248:4;13293:2;13290:1;13280:16;13318:1;13332:165;13346:6;13343:1;13340:13;13332:165;;;13424:14;;13411:11;;;13404:35;13467:16;;;;13361:10;;13332:165;;;13336:3;;;13526:6;13521:3;13517:16;13510:23;;13011:532;-1:-1:-1;13559:3:1;;12726:842;-1:-1:-1;;;;;;12726:842:1:o;13573:545::-;13675:2;13670:3;13667:11;13664:448;;;13711:1;13736:5;13732:2;13725:17;13781:4;13777:2;13767:19;13851:2;13839:10;13835:19;13832:1;13828:27;13822:4;13818:38;13887:4;13875:10;13872:20;13869:47;;;-1:-1:-1;13910:4:1;13869:47;13965:2;13960:3;13956:12;13953:1;13949:20;13943:4;13939:31;13929:41;;14020:82;14038:2;14031:5;14028:13;14020:82;;;14083:17;;;14064:1;14053:13;14020:82;;;14024:3;;;13573:545;;;:::o;14294:1352::-;14420:3;14414:10;14447:18;14439:6;14436:30;14433:56;;;14469:18;;:::i;:::-;14498:97;14588:6;14548:38;14580:4;14574:11;14548:38;:::i;:::-;14542:4;14498:97;:::i;:::-;14650:4;;14714:2;14703:14;;14731:1;14726:663;;;;15433:1;15450:6;15447:89;;;-1:-1:-1;15502:19:1;;;15496:26;15447:89;-1:-1:-1;;14251:1:1;14247:11;;;14243:24;14239:29;14229:40;14275:1;14271:11;;;14226:57;15549:81;;14696:944;;14726:663;12673:1;12666:14;;;12710:4;12697:18;;-1:-1:-1;;14762:20:1;;;14880:236;14894:7;14891:1;14888:14;14880:236;;;14983:19;;;14977:26;14962:42;;15075:27;;;;15043:1;15031:14;;;;14910:19;;14880:236;;;14884:3;15144:6;15135:7;15132:19;15129:201;;;15205:19;;;15199:26;-1:-1:-1;;15288:1:1;15284:14;;;15300:3;15280:24;15276:37;15272:42;15257:58;15242:74;;15129:201;-1:-1:-1;;;;;15376:1:1;15360:14;;;15356:22;15343:36;;-1:-1:-1;14294:1352:1:o;15651:383::-;15848:2;15837:9;15830:21;15811:4;15874:45;15915:2;15904:9;15900:18;15892:6;15874:45;:::i;:::-;15967:9;15959:6;15955:22;15950:2;15939:9;15935:18;15928:50;15995:33;16021:6;16013;15995:33;:::i;:::-;15987:41;15651:383;-1:-1:-1;;;;;15651:383:1:o;17265:470::-;17444:3;17482:6;17476:13;17498:53;17544:6;17539:3;17532:4;17524:6;17520:17;17498:53;:::i;:::-;17614:13;;17573:16;;;;17636:57;17614:13;17573:16;17670:4;17658:17;;17636:57;:::i;:::-;17709:20;;17265:470;-1:-1:-1;;;;17265:470:1:o;20751:414::-;20953:2;20935:21;;;20992:2;20972:18;;;20965:30;21031:34;21026:2;21011:18;;21004:62;-1:-1:-1;;;21097:2:1;21082:18;;21075:48;21155:3;21140:19;;20751:414::o;21170:112::-;21202:1;21228;21218:35;;21233:18;;:::i;:::-;-1:-1:-1;21267:9:1;;21170:112::o;21287:489::-;-1:-1:-1;;;;;21556:15:1;;;21538:34;;21608:15;;21603:2;21588:18;;21581:43;21655:2;21640:18;;21633:34;;;21703:3;21698:2;21683:18;;21676:31;;;21481:4;;21724:46;;21750:19;;21742:6;21724:46;:::i;:::-;21716:54;21287:489;-1:-1:-1;;;;;;21287:489:1:o;21781:249::-;21850:6;21903:2;21891:9;21882:7;21878:23;21874:32;21871:52;;;21919:1;21916;21909:12;21871:52;21951:9;21945:16;21970:30;21994:5;21970:30;:::i;22035:127::-;22096:10;22091:3;22087:20;22084:1;22077:31;22127:4;22124:1;22117:15;22151:4;22148:1;22141:15

Swarm Source

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