ETH Price: $2,956.22 (-1.87%)
Gas: 3 Gwei

Token

NFTDNS (NFTDNS)
 

Overview

Max Total Supply

138 NFTDNS

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 NFTDNS
0xfef5c1cd156902c3232d203c35d7434c47f55b27
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:
Nftdns

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/Context.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/introspection/IERC165.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

// File: @openzeppelin/contracts/introspection/ERC165.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/EnumerableSet.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: @openzeppelin/contracts/utils/EnumerableMap.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;












/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

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

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

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

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

// SPD-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

// File: contracts/Nftdns.sol

// SPD-License-Identifier: AGPL-3.0-or-later

pragma solidity ^0.6.8;





contract Nftdns is ERC721, Ownable, ReentrancyGuard {

  using SafeERC20 for IERC20;

  event RedirectChanged(string from, string to);

  mapping(uint256 => bytes) public names;
  mapping(bytes => string) public redirects;
  mapping(bytes => uint256) public idOfName;

  IERC20 public dns;
  uint256 public dnsFee;

  IERC20 public xmon;
  uint256 public xmonFee;

  bool public dnsOnly;

  constructor() ERC721("NFTDNS", "NFTDNS") public {
    dnsOnly = true;
    dns = IERC20(0xb5F3c3b138493473dbB9AA4Fd19F367Aa017FD3D);
    dnsFee = 1 ether;
    xmon = IERC20(0x3aaDA3e213aBf8529606924d8D1c55CbDc70Bf74);
    xmonFee = 0.05 ether;
  }

  function setRedirect(uint256 id, string memory s) public {
    require(ownerOf(id) == msg.sender, "Not owner");
    emit RedirectChanged(redirects[names[id]], s);
    redirects[names[id]] = s;
  }

  function buyNameWithDns(bytes memory s) public payable nonReentrant {
    dns.safeTransferFrom(msg.sender, address(this), dnsFee);
    _mintName(s);
  }

  function buyNameWithXmon(bytes memory s) public payable nonReentrant {
    require(! dnsOnly, "Not yet");
    xmon.safeTransferFrom(msg.sender, address(this), xmonFee);
    _mintName(s);
  }

  function _mintName(bytes memory s) internal {
    require(idOfName[s] == 0, "Name taken");
    uint256 newId = totalSupply()+1;
    names[newId] = s;
    idOfName[s] = newId;
    _mint(msg.sender, newId);
  }

  function setTokenURI(uint256 id, string memory uri) public onlyOwner {
    _setTokenURI(id, uri);
  }

  function setBaseURI(string memory uri) public onlyOwner {
    _setBaseURI(uri);
  }

  function setDns(address a) public onlyOwner {
    dns = IERC20(a);
  }

  function setXmon(address a) public onlyOwner {
    xmon = IERC20(a);
  }

  function setDnsOnly(bool b) public onlyOwner {
    dnsOnly = b;
  }

  function setDnsFee(uint256 f) public onlyOwner {
    dnsFee = f;
  }

  function setXmonFee(uint256 f) public onlyOwner {
    xmonFee = f;
  }

  function moveTokens(address tokenAddress, address to, uint256 numTokens) public onlyOwner {
    IERC20 _token = IERC20(tokenAddress);
    _token.safeTransfer(to, numTokens);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"from","type":"string"},{"indexed":false,"internalType":"string","name":"to","type":"string"}],"name":"RedirectChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"s","type":"bytes"}],"name":"buyNameWithDns","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"s","type":"bytes"}],"name":"buyNameWithXmon","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"dns","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dnsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dnsOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"idOfName","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"moveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"names","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"redirects","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"setDns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"f","type":"uint256"}],"name":"setDnsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"b","type":"bool"}],"name":"setDnsOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"s","type":"string"}],"name":"setRedirect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"setXmon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"f","type":"uint256"}],"name":"setXmonFee","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":"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":"xmon","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xmonFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526006808252654e4654444e5360d01b6020808401829052845180860190955291845290830152906200005d6301ffc9a760e01b6001600160e01b03620001b916565b81516200007290600690602085019062000243565b5080516200008890600790602084019062000243565b50620000a46380ac58cd60e01b6001600160e01b03620001b916565b620000bf635b5e139f60e01b6001600160e01b03620001b916565b620000da63780e9d6360e01b6001600160e01b03620001b916565b5060009050620000f26001600160e01b036200023e16565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600b8190556013805460ff19169091179055600f80546001600160a01b031990811673b5f3c3b138493473dbb9aa4fd19f367aa017fd3d17909155670de0b6b3a764000060105560118054909116733aada3e213abf8529606924d8d1c55cbdc70bf7417905566b1a2bc2ec50000601255620002e5565b6001600160e01b0319808216141562000219576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028657805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b657825182559160200191906001019062000299565b50620002c4929150620002c8565b5090565b6200024091905b80821115620002c45760008155600101620002cf565b61333a80620002f56000396000f3fe6080604052600436106102305760003560e01c80636c0360eb1161012e578063a08d36a6116100ab578063c87b56dd1161006f578063c87b56dd14610c7f578063d045676d14610ca9578063de3410d014610cdc578063e985e9c514610d06578063f2fde38b14610d4157610230565b8063a08d36a614610a98578063a22cb46514610b49578063a86b0ee114610b84578063b73f0ab414610b99578063b88d4fde14610bae57610230565b806371db6546116100f257806371db6546146109fc578063775612d314610a2657806388d6988d14610a595780638da5cb5b14610a6e57806395d89b4114610a8357610230565b80636c0360eb146109305780636f22993c1461094557806370a0823114610988578063715018a6146109bb5780637154ca4b146109d057610230565b806323b872dd116101bc5780634622ab03116101805780634622ab03146107495780634f6ccce71461077357806355f804b31461079d5780636352211e1461084e57806369afe44d1461087857610230565b806323b872dd146105355780632f745c59146105785780633379812c146105b15780633572510d1461065557806342842e0e1461070657610230565b80630b49839d116102035780630b49839d146103885780630bef23f51461039d578063162094c41461044157806318160ddd146104f95780631de7b7ad1461052057610230565b806301ffc9a71461023557806306fdde031461027d578063081812fc14610307578063095ea7b31461034d575b600080fd5b34801561024157600080fd5b506102696004803603602081101561025857600080fd5b50356001600160e01b031916610d74565b604080519115158252519081900360200190f35b34801561028957600080fd5b50610292610d97565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102cc5781810151838201526020016102b4565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103316004803603602081101561032a57600080fd5b5035610e2e565b604080516001600160a01b039092168252519081900360200190f35b34801561035957600080fd5b506103866004803603604081101561037057600080fd5b506001600160a01b038135169060200135610e90565b005b34801561039457600080fd5b50610331610f6b565b610386600480360360208110156103b357600080fd5b810190602081018135600160201b8111156103cd57600080fd5b8201836020820111156103df57600080fd5b803590602001918460018302840111600160201b8311171561040057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f7a945050505050565b34801561044d57600080fd5b506103866004803603604081101561046457600080fd5b81359190810190604081016020820135600160201b81111561048557600080fd5b82018360208201111561049757600080fd5b803590602001918460018302840111600160201b831117156104b857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061104f945050505050565b34801561050557600080fd5b5061050e6110bf565b60408051918252519081900360200190f35b34801561052c57600080fd5b5061050e6110d0565b34801561054157600080fd5b506103866004803603606081101561055857600080fd5b506001600160a01b038135811691602081013590911690604001356110d6565b34801561058457600080fd5b5061050e6004803603604081101561059b57600080fd5b506001600160a01b03813516906020013561112d565b610386600480360360208110156105c757600080fd5b810190602081018135600160201b8111156105e157600080fd5b8201836020820111156105f357600080fd5b803590602001918460018302840111600160201b8311171561061457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061115e945050505050565b34801561066157600080fd5b5061050e6004803603602081101561067857600080fd5b810190602081018135600160201b81111561069257600080fd5b8201836020820111156106a457600080fd5b803590602001918460018302840111600160201b831117156106c557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111e0945050505050565b34801561071257600080fd5b506103866004803603606081101561072957600080fd5b506001600160a01b038135811691602081013590911690604001356111fd565b34801561075557600080fd5b506102926004803603602081101561076c57600080fd5b5035611218565b34801561077f57600080fd5b5061050e6004803603602081101561079657600080fd5b50356112b3565b3480156107a957600080fd5b50610386600480360360208110156107c057600080fd5b810190602081018135600160201b8111156107da57600080fd5b8201836020820111156107ec57600080fd5b803590602001918460018302840111600160201b8311171561080d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506112cf945050505050565b34801561085a57600080fd5b506103316004803603602081101561087157600080fd5b503561133d565b34801561088457600080fd5b506103866004803603604081101561089b57600080fd5b81359190810190604081016020820135600160201b8111156108bc57600080fd5b8201836020820111156108ce57600080fd5b803590602001918460018302840111600160201b831117156108ef57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061136b945050505050565b34801561093c57600080fd5b506102926115e3565b34801561095157600080fd5b506103866004803603606081101561096857600080fd5b506001600160a01b03813581169160208101359091169060400135611644565b34801561099457600080fd5b5061050e600480360360208110156109ab57600080fd5b50356001600160a01b03166116c7565b3480156109c757600080fd5b5061038661172f565b3480156109dc57600080fd5b50610386600480360360208110156109f357600080fd5b503515156117db565b348015610a0857600080fd5b5061038660048036036020811015610a1f57600080fd5b5035611850565b348015610a3257600080fd5b5061038660048036036020811015610a4957600080fd5b50356001600160a01b03166118b7565b348015610a6557600080fd5b5061033161193b565b348015610a7a57600080fd5b5061033161194a565b348015610a8f57600080fd5b50610292611959565b348015610aa457600080fd5b5061029260048036036020811015610abb57600080fd5b810190602081018135600160201b811115610ad557600080fd5b820183602082011115610ae757600080fd5b803590602001918460018302840111600160201b83111715610b0857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506119ba945050505050565b348015610b5557600080fd5b5061038660048036036040811015610b6c57600080fd5b506001600160a01b0381351690602001351515611a2e565b348015610b9057600080fd5b50610269611b33565b348015610ba557600080fd5b5061050e611b3c565b348015610bba57600080fd5b5061038660048036036080811015610bd157600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610c0b57600080fd5b820183602082011115610c1d57600080fd5b803590602001918460018302840111600160201b83111715610c3e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b42945050505050565b348015610c8b57600080fd5b5061029260048036036020811015610ca257600080fd5b5035611b9a565b348015610cb557600080fd5b5061038660048036036020811015610ccc57600080fd5b50356001600160a01b0316611e1d565b348015610ce857600080fd5b5061038660048036036020811015610cff57600080fd5b5035611ea1565b348015610d1257600080fd5b5061026960048036036040811015610d2957600080fd5b506001600160a01b0381358116916020013516611f08565b348015610d4d57600080fd5b5061038660048036036020811015610d6457600080fd5b50356001600160a01b0316611f36565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e235780601f10610df857610100808354040283529160200191610e23565b820191906000526020600020905b815481529060010190602001808311610e0657829003601f168201915b505050505090505b90565b6000610e3982612039565b610e745760405162461bcd60e51b815260040180806020018281038252602c8152602001806131b9602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610e9b8261133d565b9050806001600160a01b0316836001600160a01b03161415610eee5760405162461bcd60e51b81526004018080602001828103825260218152602001806132896021913960400191505060405180910390fd5b806001600160a01b0316610f0061204c565b6001600160a01b03161480610f215750610f2181610f1c61204c565b611f08565b610f5c5760405162461bcd60e51b815260040180806020018281038252603881526020018061310c6038913960400191505060405180910390fd5b610f668383612050565b505050565b600f546001600160a01b031681565b6002600b541415610fd2576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b5560135460ff1615611019576040805162461bcd60e51b8152602060048201526007602482015266139bdd081e595d60ca1b604482015290519081900360640190fd5b60125460115461103e916001600160a01b03909116903390309063ffffffff6120be16565b61104781612118565b506001600b55565b61105761204c565b6001600160a01b031661106861194a565b6001600160a01b0316146110b1576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b6110bb828261225a565b5050565b60006110cb60026122bd565b905090565b60125481565b6110e76110e161204c565b826122c8565b6111225760405162461bcd60e51b81526004018080602001828103825260318152602001806132aa6031913960400191505060405180910390fd5b610f6683838361236c565b6001600160a01b0382166000908152600160205260408120611155908363ffffffff6124ca16565b90505b92915050565b6002600b5414156111b6576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b55601054600f5461103e916001600160a01b03909116903390309063ffffffff6120be16565b8051602081830181018051600e8252928201919093012091525481565b610f6683838360405180602001604052806000815250611b42565b600c6020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156112ab5780601f10611280576101008083540402835291602001916112ab565b820191906000526020600020905b81548152906001019060200180831161128e57829003601f168201915b505050505081565b6000806112c760028463ffffffff6124d616565b509392505050565b6112d761204c565b6001600160a01b03166112e861194a565b6001600160a01b031614611331576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b61133a816124f2565b50565b60006111588260405180606001604052806029815260200161316e602991396002919063ffffffff61250516565b336113758361133d565b6001600160a01b0316146113bc576040805162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b604482015290519081900360640190fd5b7f4219c245c3bb4c7a40b862958e058426c385865b8bf87ba625177f5a83c14f0e600d600c6000858152602001908152602001600020604051808280546001816001161561010002031660029004801561144d5780601f1061142b57610100808354040283529182019161144d565b820191906000526020600020905b815481529060010190602001808311611439575b50509283525050604080516020928190038301812082825280546002600182161561010002600019019091160492820183905292859282918201906060830190869080156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b5050838103825284518152845160209182019186019080838360005b838110156115105781810151838201526020016114f8565b50505050905090810190601f16801561153d5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a180600d600c600085815260200190815260200160002060405180828054600181600116156101000203166002900480156115bd5780601f1061159b5761010080835404028352918201916115bd565b820191906000526020600020905b8154815290600101906020018083116115a9575b505091505090815260200160405180910390209080519060200190610f66929190612f83565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e235780601f10610df857610100808354040283529160200191610e23565b61164c61204c565b6001600160a01b031661165d61194a565b6001600160a01b0316146116a6576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b826116c16001600160a01b038216848463ffffffff61251c16565b50505050565b60006001600160a01b03821661170e5760405162461bcd60e51b815260040180806020018281038252602a815260200180613144602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020611158906122bd565b61173761204c565b6001600160a01b031661174861194a565b6001600160a01b031614611791576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6117e361204c565b6001600160a01b03166117f461194a565b6001600160a01b03161461183d576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b6013805460ff1916911515919091179055565b61185861204c565b6001600160a01b031661186961194a565b6001600160a01b0316146118b2576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b601055565b6118bf61204c565b6001600160a01b03166118d061194a565b6001600160a01b031614611919576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6011546001600160a01b031681565b600a546001600160a01b031690565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e235780601f10610df857610100808354040283529160200191610e23565b8051602081830181018051600d8252928201938201939093209190925280546040805160026001841615610100026000190190931692909204601f810185900485028301850190915280825290928301828280156112ab5780601f10611280576101008083540402835291602001916112ab565b611a3661204c565b6001600160a01b0316826001600160a01b03161415611a9c576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060056000611aa961204c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611aed61204c565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b60135460ff1681565b60105481565b611b53611b4d61204c565b836122c8565b611b8e5760405162461bcd60e51b81526004018080602001828103825260318152602001806132aa6031913960400191505060405180910390fd5b6116c18484848461256e565b6060611ba582612039565b611be05760405162461bcd60e51b815260040180806020018281038252602f81526020018061325a602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611c755780601f10611c4a57610100808354040283529160200191611c75565b820191906000526020600020905b815481529060010190602001808311611c5857829003601f168201915b505050505090506060611c866115e3565b9050805160001415611c9a57509050610d92565b815115611d5b5780826040516020018083805190602001908083835b60208310611cd55780518252601f199092019160209182019101611cb6565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611d1d5780518252601f199092019160209182019101611cfe565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610d92565b80611d65856125c0565b6040516020018083805190602001908083835b60208310611d975780518252601f199092019160209182019101611d78565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611ddf5780518252601f199092019160209182019101611dc0565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b611e2561204c565b6001600160a01b0316611e3661194a565b6001600160a01b031614611e7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b611ea961204c565b6001600160a01b0316611eba61194a565b6001600160a01b031614611f03576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b601255565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611f3e61204c565b6001600160a01b0316611f4f61194a565b6001600160a01b031614611f98576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b6001600160a01b038116611fdd5760405162461bcd60e51b81526004018080602001828103825260268152602001806130706026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061115860028363ffffffff61269b16565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120858261133d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526116c19085906126a7565b600e816040518082805190602001908083835b6020831061214a5780518252601f19909201916020918201910161212b565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220541591506121b99050576040805162461bcd60e51b815260206004820152600a6024820152692730b6b2903a30b5b2b760b11b604482015290519081900360640190fd5b60006121c36110bf565b6001016000818152600c6020908152604090912084519293506121ea929091850190612f83565b5080600e836040518082805190602001908083835b6020831061221e5780518252601f1990920191602091820191016121ff565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092909255506110bb90503382612758565b61226382612039565b61229e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806131e5602c913960400191505060405180910390fd5b60008281526008602090815260409091208251610f6692840190612f83565b600061115882612892565b60006122d382612039565b61230e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806130e0602c913960400191505060405180910390fd5b60006123198361133d565b9050806001600160a01b0316846001600160a01b031614806123545750836001600160a01b031661234984610e2e565b6001600160a01b0316145b8061236457506123648185611f08565b949350505050565b826001600160a01b031661237f8261133d565b6001600160a01b0316146123c45760405162461bcd60e51b81526004018080602001828103825260298152602001806132316029913960400191505060405180910390fd5b6001600160a01b0382166124095760405162461bcd60e51b81526004018080602001828103825260248152602001806130966024913960400191505060405180910390fd5b612414838383610f66565b61241f600082612050565b6001600160a01b0383166000908152600160205260409020612447908263ffffffff61289616565b506001600160a01b0382166000908152600160205260409020612470908263ffffffff6128a216565b506124836002828463ffffffff6128ae16565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061115583836128c4565b60008080806124e58686612928565b9097909650945050505050565b80516110bb906009906020840190612f83565b60006125128484846129a3565b90505b9392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f669084906126a7565b61257984848461236c565b61258584848484612a6d565b6116c15760405162461bcd60e51b815260040180806020018281038252603281526020018061303e6032913960400191505060405180910390fd5b6060816125e557506040805180820190915260018152600360fc1b6020820152610d92565b8160005b81156125fd57600101600a820491506125e9565b60608167ffffffffffffffff8111801561261657600080fd5b506040519080825280601f01601f191660200182016040528015612641576020820181803683370190505b50859350905060001982015b831561269257600a840660300160f81b8282806001900393508151811061267057fe5b60200101906001600160f81b031916908160001a905350600a8404935061264d565b50949350505050565b60006111558383612bed565b60606126fc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c059092919063ffffffff16565b805190915015610f665780806020019051602081101561271b57600080fd5b5051610f665760405162461bcd60e51b815260040180806020018281038252602a8152602001806132db602a913960400191505060405180910390fd5b6001600160a01b0382166127b3576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6127bc81612039565b1561280e576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b61281a60008383610f66565b6001600160a01b0382166000908152600160205260409020612842908263ffffffff6128a216565b506128556002828463ffffffff6128ae16565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5490565b60006111558383612c14565b60006111558383612cda565b600061251284846001600160a01b038516612d24565b815460009082106129065760405162461bcd60e51b815260040180806020018281038252602281526020018061301c6022913960400191505060405180910390fd5b82600001828154811061291557fe5b9060005260206000200154905092915050565b81546000908190831061296c5760405162461bcd60e51b81526004018080602001828103825260228152602001806131976022913960400191505060405180910390fd5b600084600001848154811061297d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281612a3e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a035781810151838201526020016129eb565b50505050905090810190601f168015612a305780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110612a5157fe5b9060005260206000209060020201600101549150509392505050565b6000612a81846001600160a01b0316612dbb565b612a8d57506001612364565b6060612bb3630a85bd0160e11b612aa261204c565b88878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612b1b578181015183820152602001612b03565b50505050905090810190601f168015612b485780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161303e603291396001600160a01b038816919063ffffffff612c0516565b90506000818060200190516020811015612bcc57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60606125128484600085612dc1565b60008181526001830160205260408120548015612cd05783546000198083019190810190600090879083908110612c4757fe5b9060005260206000200154905080876000018481548110612c6457fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080612c9457fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611158565b6000915050611158565b6000612ce68383612bed565b612d1c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611158565b506000611158565b600082815260018401602052604081205480612d89575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612515565b82856000016001830381548110612d9c57fe5b9060005260206000209060020201600101819055506000915050612515565b3b151590565b606082471015612e025760405162461bcd60e51b81526004018080602001828103825260268152602001806130ba6026913960400191505060405180910390fd5b612e0b85612dbb565b612e5c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612e9b5780518252601f199092019160209182019101612e7c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612efd576040519150601f19603f3d011682016040523d82523d6000602084013e612f02565b606091505b5091509150612f12828286612f1d565b979650505050505050565b60608315612f2c575081612515565b825115612f3c5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612a035781810151838201526020016129eb565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612fc457805160ff1916838001178555612ff1565b82800160010185558215612ff1579182015b82811115612ff1578251825591602001919060010190612fd6565b50612ffd929150613001565b5090565b610e2b91905b80821115612ffd576000815560010161300756fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122061d403333949fbec9c5bfcbd4a953f5e2bb4ca172e4542777db7650e6c6887e164736f6c63430006080033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636c0360eb1161012e578063a08d36a6116100ab578063c87b56dd1161006f578063c87b56dd14610c7f578063d045676d14610ca9578063de3410d014610cdc578063e985e9c514610d06578063f2fde38b14610d4157610230565b8063a08d36a614610a98578063a22cb46514610b49578063a86b0ee114610b84578063b73f0ab414610b99578063b88d4fde14610bae57610230565b806371db6546116100f257806371db6546146109fc578063775612d314610a2657806388d6988d14610a595780638da5cb5b14610a6e57806395d89b4114610a8357610230565b80636c0360eb146109305780636f22993c1461094557806370a0823114610988578063715018a6146109bb5780637154ca4b146109d057610230565b806323b872dd116101bc5780634622ab03116101805780634622ab03146107495780634f6ccce71461077357806355f804b31461079d5780636352211e1461084e57806369afe44d1461087857610230565b806323b872dd146105355780632f745c59146105785780633379812c146105b15780633572510d1461065557806342842e0e1461070657610230565b80630b49839d116102035780630b49839d146103885780630bef23f51461039d578063162094c41461044157806318160ddd146104f95780631de7b7ad1461052057610230565b806301ffc9a71461023557806306fdde031461027d578063081812fc14610307578063095ea7b31461034d575b600080fd5b34801561024157600080fd5b506102696004803603602081101561025857600080fd5b50356001600160e01b031916610d74565b604080519115158252519081900360200190f35b34801561028957600080fd5b50610292610d97565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102cc5781810151838201526020016102b4565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103316004803603602081101561032a57600080fd5b5035610e2e565b604080516001600160a01b039092168252519081900360200190f35b34801561035957600080fd5b506103866004803603604081101561037057600080fd5b506001600160a01b038135169060200135610e90565b005b34801561039457600080fd5b50610331610f6b565b610386600480360360208110156103b357600080fd5b810190602081018135600160201b8111156103cd57600080fd5b8201836020820111156103df57600080fd5b803590602001918460018302840111600160201b8311171561040057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f7a945050505050565b34801561044d57600080fd5b506103866004803603604081101561046457600080fd5b81359190810190604081016020820135600160201b81111561048557600080fd5b82018360208201111561049757600080fd5b803590602001918460018302840111600160201b831117156104b857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061104f945050505050565b34801561050557600080fd5b5061050e6110bf565b60408051918252519081900360200190f35b34801561052c57600080fd5b5061050e6110d0565b34801561054157600080fd5b506103866004803603606081101561055857600080fd5b506001600160a01b038135811691602081013590911690604001356110d6565b34801561058457600080fd5b5061050e6004803603604081101561059b57600080fd5b506001600160a01b03813516906020013561112d565b610386600480360360208110156105c757600080fd5b810190602081018135600160201b8111156105e157600080fd5b8201836020820111156105f357600080fd5b803590602001918460018302840111600160201b8311171561061457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061115e945050505050565b34801561066157600080fd5b5061050e6004803603602081101561067857600080fd5b810190602081018135600160201b81111561069257600080fd5b8201836020820111156106a457600080fd5b803590602001918460018302840111600160201b831117156106c557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111e0945050505050565b34801561071257600080fd5b506103866004803603606081101561072957600080fd5b506001600160a01b038135811691602081013590911690604001356111fd565b34801561075557600080fd5b506102926004803603602081101561076c57600080fd5b5035611218565b34801561077f57600080fd5b5061050e6004803603602081101561079657600080fd5b50356112b3565b3480156107a957600080fd5b50610386600480360360208110156107c057600080fd5b810190602081018135600160201b8111156107da57600080fd5b8201836020820111156107ec57600080fd5b803590602001918460018302840111600160201b8311171561080d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506112cf945050505050565b34801561085a57600080fd5b506103316004803603602081101561087157600080fd5b503561133d565b34801561088457600080fd5b506103866004803603604081101561089b57600080fd5b81359190810190604081016020820135600160201b8111156108bc57600080fd5b8201836020820111156108ce57600080fd5b803590602001918460018302840111600160201b831117156108ef57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061136b945050505050565b34801561093c57600080fd5b506102926115e3565b34801561095157600080fd5b506103866004803603606081101561096857600080fd5b506001600160a01b03813581169160208101359091169060400135611644565b34801561099457600080fd5b5061050e600480360360208110156109ab57600080fd5b50356001600160a01b03166116c7565b3480156109c757600080fd5b5061038661172f565b3480156109dc57600080fd5b50610386600480360360208110156109f357600080fd5b503515156117db565b348015610a0857600080fd5b5061038660048036036020811015610a1f57600080fd5b5035611850565b348015610a3257600080fd5b5061038660048036036020811015610a4957600080fd5b50356001600160a01b03166118b7565b348015610a6557600080fd5b5061033161193b565b348015610a7a57600080fd5b5061033161194a565b348015610a8f57600080fd5b50610292611959565b348015610aa457600080fd5b5061029260048036036020811015610abb57600080fd5b810190602081018135600160201b811115610ad557600080fd5b820183602082011115610ae757600080fd5b803590602001918460018302840111600160201b83111715610b0857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506119ba945050505050565b348015610b5557600080fd5b5061038660048036036040811015610b6c57600080fd5b506001600160a01b0381351690602001351515611a2e565b348015610b9057600080fd5b50610269611b33565b348015610ba557600080fd5b5061050e611b3c565b348015610bba57600080fd5b5061038660048036036080811015610bd157600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610c0b57600080fd5b820183602082011115610c1d57600080fd5b803590602001918460018302840111600160201b83111715610c3e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611b42945050505050565b348015610c8b57600080fd5b5061029260048036036020811015610ca257600080fd5b5035611b9a565b348015610cb557600080fd5b5061038660048036036020811015610ccc57600080fd5b50356001600160a01b0316611e1d565b348015610ce857600080fd5b5061038660048036036020811015610cff57600080fd5b5035611ea1565b348015610d1257600080fd5b5061026960048036036040811015610d2957600080fd5b506001600160a01b0381358116916020013516611f08565b348015610d4d57600080fd5b5061038660048036036020811015610d6457600080fd5b50356001600160a01b0316611f36565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e235780601f10610df857610100808354040283529160200191610e23565b820191906000526020600020905b815481529060010190602001808311610e0657829003601f168201915b505050505090505b90565b6000610e3982612039565b610e745760405162461bcd60e51b815260040180806020018281038252602c8152602001806131b9602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610e9b8261133d565b9050806001600160a01b0316836001600160a01b03161415610eee5760405162461bcd60e51b81526004018080602001828103825260218152602001806132896021913960400191505060405180910390fd5b806001600160a01b0316610f0061204c565b6001600160a01b03161480610f215750610f2181610f1c61204c565b611f08565b610f5c5760405162461bcd60e51b815260040180806020018281038252603881526020018061310c6038913960400191505060405180910390fd5b610f668383612050565b505050565b600f546001600160a01b031681565b6002600b541415610fd2576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b5560135460ff1615611019576040805162461bcd60e51b8152602060048201526007602482015266139bdd081e595d60ca1b604482015290519081900360640190fd5b60125460115461103e916001600160a01b03909116903390309063ffffffff6120be16565b61104781612118565b506001600b55565b61105761204c565b6001600160a01b031661106861194a565b6001600160a01b0316146110b1576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b6110bb828261225a565b5050565b60006110cb60026122bd565b905090565b60125481565b6110e76110e161204c565b826122c8565b6111225760405162461bcd60e51b81526004018080602001828103825260318152602001806132aa6031913960400191505060405180910390fd5b610f6683838361236c565b6001600160a01b0382166000908152600160205260408120611155908363ffffffff6124ca16565b90505b92915050565b6002600b5414156111b6576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600b55601054600f5461103e916001600160a01b03909116903390309063ffffffff6120be16565b8051602081830181018051600e8252928201919093012091525481565b610f6683838360405180602001604052806000815250611b42565b600c6020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156112ab5780601f10611280576101008083540402835291602001916112ab565b820191906000526020600020905b81548152906001019060200180831161128e57829003601f168201915b505050505081565b6000806112c760028463ffffffff6124d616565b509392505050565b6112d761204c565b6001600160a01b03166112e861194a565b6001600160a01b031614611331576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b61133a816124f2565b50565b60006111588260405180606001604052806029815260200161316e602991396002919063ffffffff61250516565b336113758361133d565b6001600160a01b0316146113bc576040805162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b604482015290519081900360640190fd5b7f4219c245c3bb4c7a40b862958e058426c385865b8bf87ba625177f5a83c14f0e600d600c6000858152602001908152602001600020604051808280546001816001161561010002031660029004801561144d5780601f1061142b57610100808354040283529182019161144d565b820191906000526020600020905b815481529060010190602001808311611439575b50509283525050604080516020928190038301812082825280546002600182161561010002600019019091160492820183905292859282918201906060830190869080156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b5050838103825284518152845160209182019186019080838360005b838110156115105781810151838201526020016114f8565b50505050905090810190601f16801561153d5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a180600d600c600085815260200190815260200160002060405180828054600181600116156101000203166002900480156115bd5780601f1061159b5761010080835404028352918201916115bd565b820191906000526020600020905b8154815290600101906020018083116115a9575b505091505090815260200160405180910390209080519060200190610f66929190612f83565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e235780601f10610df857610100808354040283529160200191610e23565b61164c61204c565b6001600160a01b031661165d61194a565b6001600160a01b0316146116a6576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b826116c16001600160a01b038216848463ffffffff61251c16565b50505050565b60006001600160a01b03821661170e5760405162461bcd60e51b815260040180806020018281038252602a815260200180613144602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020611158906122bd565b61173761204c565b6001600160a01b031661174861194a565b6001600160a01b031614611791576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6117e361204c565b6001600160a01b03166117f461194a565b6001600160a01b03161461183d576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b6013805460ff1916911515919091179055565b61185861204c565b6001600160a01b031661186961194a565b6001600160a01b0316146118b2576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b601055565b6118bf61204c565b6001600160a01b03166118d061194a565b6001600160a01b031614611919576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6011546001600160a01b031681565b600a546001600160a01b031690565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e235780601f10610df857610100808354040283529160200191610e23565b8051602081830181018051600d8252928201938201939093209190925280546040805160026001841615610100026000190190931692909204601f810185900485028301850190915280825290928301828280156112ab5780601f10611280576101008083540402835291602001916112ab565b611a3661204c565b6001600160a01b0316826001600160a01b03161415611a9c576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060056000611aa961204c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611aed61204c565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b60135460ff1681565b60105481565b611b53611b4d61204c565b836122c8565b611b8e5760405162461bcd60e51b81526004018080602001828103825260318152602001806132aa6031913960400191505060405180910390fd5b6116c18484848461256e565b6060611ba582612039565b611be05760405162461bcd60e51b815260040180806020018281038252602f81526020018061325a602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611c755780601f10611c4a57610100808354040283529160200191611c75565b820191906000526020600020905b815481529060010190602001808311611c5857829003601f168201915b505050505090506060611c866115e3565b9050805160001415611c9a57509050610d92565b815115611d5b5780826040516020018083805190602001908083835b60208310611cd55780518252601f199092019160209182019101611cb6565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611d1d5780518252601f199092019160209182019101611cfe565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610d92565b80611d65856125c0565b6040516020018083805190602001908083835b60208310611d975780518252601f199092019160209182019101611d78565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611ddf5780518252601f199092019160209182019101611dc0565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b611e2561204c565b6001600160a01b0316611e3661194a565b6001600160a01b031614611e7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b611ea961204c565b6001600160a01b0316611eba61194a565b6001600160a01b031614611f03576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b601255565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611f3e61204c565b6001600160a01b0316611f4f61194a565b6001600160a01b031614611f98576040805162461bcd60e51b81526020600482018190526024820152600080516020613211833981519152604482015290519081900360640190fd5b6001600160a01b038116611fdd5760405162461bcd60e51b81526004018080602001828103825260268152602001806130706026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061115860028363ffffffff61269b16565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120858261133d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526116c19085906126a7565b600e816040518082805190602001908083835b6020831061214a5780518252601f19909201916020918201910161212b565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220541591506121b99050576040805162461bcd60e51b815260206004820152600a6024820152692730b6b2903a30b5b2b760b11b604482015290519081900360640190fd5b60006121c36110bf565b6001016000818152600c6020908152604090912084519293506121ea929091850190612f83565b5080600e836040518082805190602001908083835b6020831061221e5780518252601f1990920191602091820191016121ff565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092909255506110bb90503382612758565b61226382612039565b61229e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806131e5602c913960400191505060405180910390fd5b60008281526008602090815260409091208251610f6692840190612f83565b600061115882612892565b60006122d382612039565b61230e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806130e0602c913960400191505060405180910390fd5b60006123198361133d565b9050806001600160a01b0316846001600160a01b031614806123545750836001600160a01b031661234984610e2e565b6001600160a01b0316145b8061236457506123648185611f08565b949350505050565b826001600160a01b031661237f8261133d565b6001600160a01b0316146123c45760405162461bcd60e51b81526004018080602001828103825260298152602001806132316029913960400191505060405180910390fd5b6001600160a01b0382166124095760405162461bcd60e51b81526004018080602001828103825260248152602001806130966024913960400191505060405180910390fd5b612414838383610f66565b61241f600082612050565b6001600160a01b0383166000908152600160205260409020612447908263ffffffff61289616565b506001600160a01b0382166000908152600160205260409020612470908263ffffffff6128a216565b506124836002828463ffffffff6128ae16565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061115583836128c4565b60008080806124e58686612928565b9097909650945050505050565b80516110bb906009906020840190612f83565b60006125128484846129a3565b90505b9392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f669084906126a7565b61257984848461236c565b61258584848484612a6d565b6116c15760405162461bcd60e51b815260040180806020018281038252603281526020018061303e6032913960400191505060405180910390fd5b6060816125e557506040805180820190915260018152600360fc1b6020820152610d92565b8160005b81156125fd57600101600a820491506125e9565b60608167ffffffffffffffff8111801561261657600080fd5b506040519080825280601f01601f191660200182016040528015612641576020820181803683370190505b50859350905060001982015b831561269257600a840660300160f81b8282806001900393508151811061267057fe5b60200101906001600160f81b031916908160001a905350600a8404935061264d565b50949350505050565b60006111558383612bed565b60606126fc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c059092919063ffffffff16565b805190915015610f665780806020019051602081101561271b57600080fd5b5051610f665760405162461bcd60e51b815260040180806020018281038252602a8152602001806132db602a913960400191505060405180910390fd5b6001600160a01b0382166127b3576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6127bc81612039565b1561280e576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b61281a60008383610f66565b6001600160a01b0382166000908152600160205260409020612842908263ffffffff6128a216565b506128556002828463ffffffff6128ae16565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5490565b60006111558383612c14565b60006111558383612cda565b600061251284846001600160a01b038516612d24565b815460009082106129065760405162461bcd60e51b815260040180806020018281038252602281526020018061301c6022913960400191505060405180910390fd5b82600001828154811061291557fe5b9060005260206000200154905092915050565b81546000908190831061296c5760405162461bcd60e51b81526004018080602001828103825260228152602001806131976022913960400191505060405180910390fd5b600084600001848154811061297d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281612a3e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a035781810151838201526020016129eb565b50505050905090810190601f168015612a305780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110612a5157fe5b9060005260206000209060020201600101549150509392505050565b6000612a81846001600160a01b0316612dbb565b612a8d57506001612364565b6060612bb3630a85bd0160e11b612aa261204c565b88878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612b1b578181015183820152602001612b03565b50505050905090810190601f168015612b485780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161303e603291396001600160a01b038816919063ffffffff612c0516565b90506000818060200190516020811015612bcc57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60606125128484600085612dc1565b60008181526001830160205260408120548015612cd05783546000198083019190810190600090879083908110612c4757fe5b9060005260206000200154905080876000018481548110612c6457fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080612c9457fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611158565b6000915050611158565b6000612ce68383612bed565b612d1c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611158565b506000611158565b600082815260018401602052604081205480612d89575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612515565b82856000016001830381548110612d9c57fe5b9060005260206000209060020201600101819055506000915050612515565b3b151590565b606082471015612e025760405162461bcd60e51b81526004018080602001828103825260268152602001806130ba6026913960400191505060405180910390fd5b612e0b85612dbb565b612e5c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612e9b5780518252601f199092019160209182019101612e7c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612efd576040519150601f19603f3d011682016040523d82523d6000602084013e612f02565b606091505b5091509150612f12828286612f1d565b979650505050505050565b60608315612f2c575081612515565b825115612f3c5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612a035781810151838201526020016129eb565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612fc457805160ff1916838001178555612ff1565b82800160010185558215612ff1579182015b82811115612ff1578251825591602001919060010190612fd6565b50612ffd929150613001565b5090565b610e2b91905b80821115612ffd576000815560010161300756fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122061d403333949fbec9c5bfcbd4a953f5e2bb4ca172e4542777db7650e6c6887e164736f6c63430006080033

Deployed Bytecode Sourcemap

76656:2224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;13151:150:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;13151:150:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;13151:150:0;-1:-1:-1;;;;;;13151:150:0;;:::i;:::-;;;;;;;;;;;;;;;;;;54635:100;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54635:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8::-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;54635:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57421:221;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57421:221:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;57421:221:0;;:::i;:::-;;;;-1:-1:-1;;;;;57421:221:0;;;;;;;;;;;;;;56951:404;;5:9:-1;2:2;;;27:1;24;17:12;2:2;56951:404:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;56951:404:0;;;;;;;;:::i;:::-;;76937:17;;5:9:-1;2:2;;;27:1;24;17:12;2:2;76937:17:0;;;:::i;77690:194::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;77690:194:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;77690:194:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;77690:194:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;77690:194:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;77690:194:0;;-1:-1:-1;77690:194:0;;-1:-1:-1;;;;;77690:194:0:i;78110:103::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;78110:103:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;78110:103:0;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;78110:103:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;78110:103:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;78110:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;78110:103:0;;-1:-1:-1;78110:103:0;;-1:-1:-1;;;;;78110:103:0:i;56429:211::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;56429:211:0;;;:::i;:::-;;;;;;;;;;;;;;;;77010:22;;5:9:-1;2:2;;;27:1;24;17:12;2:2;77010:22:0;;;:::i;58311:305::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58311:305:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;58311:305:0;;;;;;;;;;;;;;;;;:::i;56191:162::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;56191:162:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;56191:162:0;;;;;;;;:::i;77529:155::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;77529:155:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;77529:155:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;77529:155:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;77529:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;77529:155:0;;-1:-1:-1;77529:155:0;;-1:-1:-1;;;;;77529:155:0:i;76889:41::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;76889:41:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;76889:41:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;76889:41:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;76889:41:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;76889:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;76889:41:0;;-1:-1:-1;76889:41:0;;-1:-1:-1;;;;;76889:41:0:i;58687:151::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58687:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;58687:151:0;;;;;;;;;;;;;;;;;:::i;76800:38::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;76800:38:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;76800:38:0;;:::i;56717:172::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;56717:172:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;56717:172:0;;:::i;78219:85::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;78219:85:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;78219:85:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;78219:85:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;78219:85:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;78219:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;78219:85:0;;-1:-1:-1;78219:85:0;;-1:-1:-1;;;;;78219:85:0:i;54391:177::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54391:177:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;54391:177:0;;:::i;77323:200::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;77323:200:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;77323:200:0;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;77323:200:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;77323:200:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;77323:200:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;77323:200:0;;-1:-1:-1;77323:200:0;;-1:-1:-1;;;;;77323:200:0:i;56010:97::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;56010:97:0;;;:::i;78697:180::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;78697:180:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;78697:180:0;;;;;;;;;;;;;;;;;:::i;54108:221::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54108:221:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;54108:221:0;-1:-1:-1;;;;;54108:221:0;;:::i;75986:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;75986:148:0;;;:::i;78468:69::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;78468:69:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;78468:69:0;;;;:::i;78543:70::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;78543:70:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;78543:70:0;;:::i;78388:74::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;78388:74:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;78388:74:0;-1:-1:-1;;;;;78388:74:0;;:::i;76987:18::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;76987:18:0;;;:::i;75335:87::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;75335:87:0;;;:::i;54804:104::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54804:104:0;;;:::i;76843:41::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;76843:41:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;76843:41:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;76843:41:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;76843:41:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;76843:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;76843:41:0;;-1:-1:-1;76843:41:0;;-1:-1:-1;;;;;76843:41:0:i;57714:295::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57714:295:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;57714:295:0;;;;;;;;;;:::i;77039:19::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;77039:19:0;;;:::i;76959:21::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;76959:21:0;;;:::i;58909:285::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58909:285:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;58909:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;58909:285:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;58909:285:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;58909:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;58909:285:0;;-1:-1:-1;58909:285:0;;-1:-1:-1;;;;;58909:285:0:i;54979:792::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54979:792:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;54979:792:0;;:::i;78310:72::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;78310:72:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;78310:72:0;-1:-1:-1;;;;;78310:72:0;;:::i;78619:::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;78619:72:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;78619:72:0;;:::i;58080:164::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;58080:164:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;58080:164:0;;;;;;;;;;:::i;76289:244::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;76289:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;76289:244:0;-1:-1:-1;;;;;76289:244:0;;:::i;13151:150::-;-1:-1:-1;;;;;;13260:33:0;;13236:4;13260:33;;;;;;;;;;;;;13151:150;;;;:::o;54635:100::-;54722:5;54715:12;;;;;;;;-1:-1:-1;;54715:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54689:13;;54715:12;;54722:5;;54715:12;;54722:5;54715:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54635:100;;:::o;57421:221::-;57497:7;57525:16;57533:7;57525;:16::i;:::-;57517:73;;;;-1:-1:-1;;;57517:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57610:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57610:24:0;;57421:221::o;56951:404::-;57032:13;57048:23;57063:7;57048:14;:23::i;:::-;57032:39;;57096:5;-1:-1:-1;;;;;57090:11:0;:2;-1:-1:-1;;;;;57090:11:0;;;57082:57;;;;-1:-1:-1;;;57082:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57176:5;-1:-1:-1;;;;;57160:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;57160:21:0;;:69;;;;57185:44;57209:5;57216:12;:10;:12::i;:::-;57185:23;:44::i;:::-;57152:161;;;;-1:-1:-1;;;57152:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57326:21;57335:2;57339:7;57326:8;:21::i;:::-;56951:404;;;:::o;76937:17::-;;;-1:-1:-1;;;;;76937:17:0;;:::o;77690:194::-;1782:1;2388:7;;:19;;2380:63;;;;;-1:-1:-1;;;2380:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1782:1;2521:7;:18;77776:7:::1;::::0;::::1;;77774:9;77766:29;;;::::0;;-1:-1:-1;;;77766:29:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;77766:29:0;;;;;;;;;;;;;::::1;;77851:7;::::0;77802:4:::1;::::0;:57:::1;::::0;-1:-1:-1;;;;;77802:4:0;;::::1;::::0;77824:10:::1;::::0;77844:4:::1;::::0;77802:57:::1;:21;:57;:::i;:::-;77866:12;77876:1;77866:9;:12::i;:::-;-1:-1:-1::0;1738:1:0;2700:7;:22;77690:194::o;78110:103::-;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;78186:21:::1;78199:2;78203:3;78186:12;:21::i;:::-;78110:103:::0;;:::o;56429:211::-;56490:7;56611:21;:12;:19;:21::i;:::-;56604:28;;56429:211;:::o;77010:22::-;;;;:::o;58311:305::-;58472:41;58491:12;:10;:12::i;:::-;58505:7;58472:18;:41::i;:::-;58464:103;;;;-1:-1:-1;;;58464:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58580:28;58590:4;58596:2;58600:7;58580:9;:28::i;56191:162::-;-1:-1:-1;;;;;56315:20:0;;56288:7;56315:20;;;:13;:20;;;;;:30;;56339:5;56315:30;:23;:30;:::i;:::-;56308:37;;56191:162;;;;;:::o;77529:155::-;1782:1;2388:7;;:19;;2380:63;;;;;-1:-1:-1;;;2380:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1782:1;2521:7;:18;77652:6:::1;::::0;77604:3:::1;::::0;:55:::1;::::0;-1:-1:-1;;;;;77604:3:0;;::::1;::::0;77625:10:::1;::::0;77645:4:::1;::::0;77604:55:::1;:20;:55;:::i;76889:41::-:0;22:14:-1;;169:4;143:32;;;;;198:20;;76889:41:0;224:31:-1;;156:18;;;283;;;;273:49;328:32;;76889:41:0;;:::o;58687:151::-;58791:39;58808:4;58814:2;58818:7;58791:39;;;;;;;;;;;;:16;:39::i;76800:38::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;76800:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56717:172::-;56792:7;;56834:22;:12;56850:5;56834:22;:15;:22;:::i;:::-;-1:-1:-1;56812:44:0;56717:172;-1:-1:-1;;;56717:172:0:o;78219:85::-;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;78282:16:::1;78294:3;78282:11;:16::i;:::-;78219:85:::0;:::o;54391:177::-;54463:7;54490:70;54507:7;54490:70;;;;;;;;;;;;;;;;;:12;;:70;;:16;:70;:::i;77323:200::-;77410:10;77395:11;77403:2;77395:7;:11::i;:::-;-1:-1:-1;;;;;77395:25:0;;77387:47;;;;;-1:-1:-1;;;77387:47:0;;;;;;;;;;;;-1:-1:-1;;;77387:47:0;;;;;;;;;;;;;;;77446:40;77462:9;77472:5;:9;77478:2;77472:9;;;;;;;;;;;77462:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;77462:20:0;;;-1:-1:-1;;77462:20:0;;;;;;;;;;;;77446:40;;;;;;;;;;;;-1:-1:-1;;77446:40:0;;;;;;;;;;;77462:20;77484:1;;77462:20;;77446:40;;;;;;;77462:20;;77446:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;77446:40:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;77446:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77516:1;77493:9;77503:5;:9;77509:2;77503:9;;;;;;;;;;;77493:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;:::i;56010:97::-;56091:8;56084:15;;;;;;;;-1:-1:-1;;56084:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56058:13;;56084:15;;56091:8;;56084:15;;56091:8;56084:15;;;;;;;;;;;;;;;;;;;;;;;;78697:180;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;78817:12;78837:34:::1;-1:-1:-1::0;;;;;78837:19:0;::::1;78857:2:::0;78861:9;78837:34:::1;:19;:34;:::i;:::-;75626:1;78697:180:::0;;;:::o;54108:221::-;54180:7;-1:-1:-1;;;;;54208:19:0;;54200:74;;;;-1:-1:-1;;;54200:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54292:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;75986:148::-;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;76077:6:::1;::::0;76056:40:::1;::::0;76093:1:::1;::::0;-1:-1:-1;;;;;76077:6:0::1;::::0;76056:40:::1;::::0;76093:1;;76056:40:::1;76107:6;:19:::0;;-1:-1:-1;;;;;;76107:19:0::1;::::0;;75986:148::o;78468:69::-;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;78520:7:::1;:11:::0;;-1:-1:-1;;78520:11:0::1;::::0;::::1;;::::0;;;::::1;::::0;;78468:69::o;78543:70::-;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;78597:6:::1;:10:::0;78543:70::o;78388:74::-;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;78440:4:::1;:16:::0;;-1:-1:-1;;;;;;78440:16:0::1;-1:-1:-1::0;;;;;78440:16:0;;;::::1;::::0;;;::::1;::::0;;78388:74::o;76987:18::-;;;-1:-1:-1;;;;;76987:18:0;;:::o;75335:87::-;75408:6;;-1:-1:-1;;;;;75408:6:0;75335:87;:::o;54804:104::-;54893:7;54886:14;;;;;;;;-1:-1:-1;;54886:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54860:13;;54886:14;;54893:7;;54886:14;;54893:7;54886:14;;;;;;;;;;;;;;;;;;;;;;;;76843:41;22:14:-1;;169:4;143:32;;;;;198:20;;76843:41:0;224:31:-1;;156:18;;;283;;;273:49;;;;328:32;;;;76843:41:0;;;;;;;;;;;;-1:-1:-1;;76843:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273:49:-1;76843:41:0;;;;;;;;;;;;;;;;;;;;;;;;57714:295;57829:12;:10;:12::i;:::-;-1:-1:-1;;;;;57817:24:0;:8;-1:-1:-1;;;;;57817:24:0;;;57809:62;;;;;-1:-1:-1;;;57809:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;57929:8;57884:18;:32;57903:12;:10;:12::i;:::-;-1:-1:-1;;;;;57884:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;57884:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;57884:53:0;;;;;;;;;;;57968:12;:10;:12::i;:::-;57953:48;;;;;;;;;;-1:-1:-1;;;;;57953:48:0;;;;;;;;;;;;;;57714:295;;:::o;77039:19::-;;;;;;:::o;76959:21::-;;;;:::o;58909:285::-;59041:41;59060:12;:10;:12::i;:::-;59074:7;59041:18;:41::i;:::-;59033:103;;;;-1:-1:-1;;;59033:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59147:39;59161:4;59167:2;59171:7;59180:5;59147:13;:39::i;54979:792::-;55052:13;55086:16;55094:7;55086;:16::i;:::-;55078:76;;;;-1:-1:-1;;;55078:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55193:19;;;;:10;:19;;;;;;;;;55167:45;;;;;;-1:-1:-1;;55167:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;55193:19;55167:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55223:18;55244:9;:7;:9::i;:::-;55223:30;;55335:4;55329:18;55351:1;55329:23;55325:72;;;-1:-1:-1;55376:9:0;-1:-1:-1;55369:16:0;;55325:72;55501:23;;:27;55497:108;;55576:4;55582:9;55559:33;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;55559::0;;;;;;;;;;-1:-1:-1;55559:33:0;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;55559:33:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;55559:33:0;;;55545:48;;;;;;55497:108;55737:4;55743:18;:7;:16;:18::i;:::-;55720:42;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;55720:42:0;;;;;;;;;;-1:-1:-1;55720:42:0;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;55720:42:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;55720:42:0;;;55706:57;;;;54979:792;;;:::o;78310:72::-;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;78361:3:::1;:15:::0;;-1:-1:-1;;;;;;78361:15:0::1;-1:-1:-1::0;;;;;78361:15:0;;;::::1;::::0;;;::::1;::::0;;78310:72::o;78619:::-;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;78674:7:::1;:11:::0;78619:72::o;58080:164::-;-1:-1:-1;;;;;58201:25:0;;;58177:4;58201:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;58080:164::o;76289:244::-;75566:12;:10;:12::i;:::-;-1:-1:-1;;;;;75555:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;75555:23:0;;75547:68;;;;;-1:-1:-1;;;75547:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;75547:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;76378:22:0;::::1;76370:73;;;;-1:-1:-1::0;;;76370:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76480:6;::::0;76459:38:::1;::::0;-1:-1:-1;;;;;76459:38:0;;::::1;::::0;76480:6:::1;::::0;76459:38:::1;::::0;76480:6:::1;::::0;76459:38:::1;76508:6;:17:::0;;-1:-1:-1;;;;;;76508:17:0::1;-1:-1:-1::0;;;;;76508:17:0;;;::::1;::::0;;;::::1;::::0;;76289:244::o;60661:127::-;60726:4;60750:30;:12;60772:7;60750:30;:21;:30;:::i;3403:106::-;3491:10;3403:106;:::o;66679:192::-;66754:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;66754:29:0;-1:-1:-1;;;;;66754:29:0;;;;;;;;:24;;66808:23;66754:24;66808:14;:23::i;:::-;-1:-1:-1;;;;;66799:46:0;;;;;;;;;;;66679:192;;:::o;71306:205::-;71434:68;;;-1:-1:-1;;;;;71434:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;71434:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;71407:96:0;;71427:5;;71407:19;:96::i;77890:214::-;77949:8;77958:1;77949:11;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;77949:11:0;;;;;-1:-1:-1;77949:11:0;;;;;;;;;;;:16;;-1:-1:-1;77941:39:0;;-1:-1:-1;77941:39:0;;;;-1:-1:-1;;;77941:39:0;;;;;;;;;;;;-1:-1:-1;;;77941:39:0;;;;;;;;;;;;;;;77987:13;78003;:11;:13::i;:::-;78017:1;78003:15;78025:12;;;;:5;:12;;;;;;;;:16;;78003:15;;-1:-1:-1;78025:16:0;;:12;;:16;;;;:::i;:::-;;78062:5;78048:8;78057:1;78048:11;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;78048:11:0;;;;;-1:-1:-1;78048:11:0;;;;;;;;;;:19;;;;-1:-1:-1;78074:24:0;;-1:-1:-1;78080:10:0;78092:5;78074;:24::i;64846:215::-;64946:16;64954:7;64946;:16::i;:::-;64938:73;;;;-1:-1:-1;;;64938:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65022:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;47314:123::-;47383:7;47410:19;47418:3;47410:7;:19::i;60955:355::-;61048:4;61073:16;61081:7;61073;:16::i;:::-;61065:73;;;;-1:-1:-1;;;61065:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61149:13;61165:23;61180:7;61165:14;:23::i;:::-;61149:39;;61218:5;-1:-1:-1;;;;;61207:16:0;:7;-1:-1:-1;;;;;61207:16:0;;:51;;;;61251:7;-1:-1:-1;;;;;61227:31:0;:20;61239:7;61227:11;:20::i;:::-;-1:-1:-1;;;;;61227:31:0;;61207:51;:94;;;;61262:39;61286:5;61293:7;61262:23;:39::i;:::-;61199:103;60955:355;-1:-1:-1;;;;60955:355:0:o;64091:599::-;64216:4;-1:-1:-1;;;;;64189:31:0;:23;64204:7;64189:14;:23::i;:::-;-1:-1:-1;;;;;64189:31:0;;64181:85;;;;-1:-1:-1;;;64181:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;64303:16:0;;64295:65;;;;-1:-1:-1;;;64295:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64373:39;64394:4;64400:2;64404:7;64373:20;:39::i;:::-;64477:29;64494:1;64498:7;64477:8;:29::i;:::-;-1:-1:-1;;;;;64519:19:0;;;;;;:13;:19;;;;;:35;;64546:7;64519:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;;64565:17:0;;;;;;:13;:17;;;;;:30;;64587:7;64565:30;:21;:30;:::i;:::-;-1:-1:-1;64608:29:0;:12;64625:7;64634:2;64608:29;:16;:29;:::i;:::-;;64674:7;64670:2;-1:-1:-1;;;;;64655:27:0;64664:4;-1:-1:-1;;;;;64655:27:0;;;;;;;;;;;64091:599;;;:::o;39075:137::-;39146:7;39181:22;39185:3;39197:5;39181:3;:22::i;47776:236::-;47856:7;;;;47916:22;47920:3;47932:5;47916:3;:22::i;:::-;47885:53;;;;-1:-1:-1;47776:236:0;-1:-1:-1;;;;;47776:236:0:o;65291:100::-;65364:19;;;;:8;;:19;;;;;:::i;49062:213::-;49169:7;49220:44;49225:3;49245;49251:12;49220:4;:44::i;:::-;49212:53;-1:-1:-1;49062:213:0;;;;;;:::o;71121:177::-;71231:58;;;-1:-1:-1;;;;;71231:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;71231:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;71204:86:0;;71224:5;;71204:19;:86::i;60076:272::-;60190:28;60200:4;60206:2;60210:7;60190:9;:28::i;:::-;60237:48;60260:4;60266:2;60270:7;60279:5;60237:22;:48::i;:::-;60229:111;;;;-1:-1:-1;;;60229:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49556:746;49612:13;49833:10;49829:53;;-1:-1:-1;49860:10:0;;;;;;;;;;;;-1:-1:-1;;;49860:10:0;;;;;;49829:53;49907:5;49892:12;49948:78;49955:9;;49948:78;;49981:8;;50012:2;50004:10;;;;49948:78;;;50036:19;50068:6;50058:17;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;50058:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;108:14;50058:17:0;87:42:-1;143:17;;-1:-1;50058:17:0;-1:-1:-1;50130:5:0;;-1:-1:-1;50036:39:0;-1:-1:-1;;;50102:10:0;;50146:117;50153:9;;50146:117;;50222:2;50215:4;:9;50210:2;:14;50197:29;;50179:6;50186:7;;;;;;;50179:15;;;;;;;;;;;:47;-1:-1:-1;;;;;50179:47:0;;;;;;;;-1:-1:-1;50249:2:0;50241:10;;;;50146:117;;;-1:-1:-1;50287:6:0;49556:746;-1:-1:-1;;;;49556:746:0:o;47075:151::-;47159:4;47183:35;47193:3;47213;47183:9;:35::i;73426:761::-;73850:23;73876:69;73904:4;73876:69;;;;;;;;;;;;;;;;;73884:5;-1:-1:-1;;;;;73876:27:0;;;:69;;;;;:::i;:::-;73960:17;;73850:95;;-1:-1:-1;73960:21:0;73956:224;;74102:10;74091:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;74091:30:0;74083:85;;;;-1:-1:-1;;;74083:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62576:404;-1:-1:-1;;;;;62656:16:0;;62648:61;;;;;-1:-1:-1;;;62648:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62729:16;62737:7;62729;:16::i;:::-;62728:17;62720:58;;;;;-1:-1:-1;;;62720:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;62791:45;62820:1;62824:2;62828:7;62791:20;:45::i;:::-;-1:-1:-1;;;;;62849:17:0;;;;;;:13;:17;;;;;:30;;62871:7;62849:30;:21;:30;:::i;:::-;-1:-1:-1;62892:29:0;:12;62909:7;62918:2;62892:29;:16;:29;:::i;:::-;-1:-1:-1;62939:33:0;;62964:7;;-1:-1:-1;;;;;62939:33:0;;;62956:1;;62939:33;;62956:1;;62939:33;62576:404;;:::o;43893:110::-;43976:19;;43893:110::o;38162:137::-;38232:4;38256:35;38264:3;38284:5;38256:7;:35::i;37855:131::-;37922:4;37946:32;37951:3;37971:5;37946:4;:32::i;46498:185::-;46587:4;46611:64;46616:3;46636;-1:-1:-1;;;;;46650:23:0;;46611:4;:64::i;34113:204::-;34208:18;;34180:7;;34208:26;-1:-1:-1;34200:73:0;;;;-1:-1:-1;;;34200:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34291:3;:11;;34303:5;34291:18;;;;;;;;;;;;;;;;34284:25;;34113:204;;;;:::o;44358:279::-;44462:19;;44425:7;;;;44462:27;-1:-1:-1;44454:74:0;;;;-1:-1:-1;;;44454:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44541:22;44566:3;:12;;44579:5;44566:19;;;;;;;;;;;;;;;;;;44541:44;;44604:5;:10;;;44616:5;:12;;;44596:33;;;;;44358:279;;;;;:::o;45855:319::-;45949:7;45988:17;;;:12;;;:17;;;;;;46039:12;46024:13;46016:36;;;;-1:-1:-1;;;46016:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;46016:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46106:3;:12;;46130:1;46119:8;:12;46106:26;;;;;;;;;;;;;;;;;;:33;;;46099:40;;;45855:319;;;;;:::o;65956:604::-;66077:4;66104:15;:2;-1:-1:-1;;;;;66104:13:0;;:15::i;:::-;66099:60;;-1:-1:-1;66143:4:0;66136:11;;66099:60;66169:23;66195:252;-1:-1:-1;;;66308:12:0;:10;:12::i;:::-;66335:4;66354:7;66376:5;66211:181;;;;;;-1:-1:-1;;;;;66211:181:0;-1:-1:-1;;;;;66211:181:0;;;;;;-1:-1:-1;;;;;66211:181:0;-1:-1:-1;;;;;66211:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;66211:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;66211:181:0;;;;-1:-1:-1;;;;;66211:181:0;;38:4:-1;29:7;25:18;67:10;61:17;-1:-1;;;;;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;66211:181:0;66195:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66195:15:0;;;:252;;:15;:252;:::i;:::-;66169:278;;66458:13;66485:10;66474:32;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;66474:32:0;-1:-1:-1;;;;;;66525:26:0;-1:-1:-1;;;66525:26:0;;-1:-1:-1;;;65956:604:0;;;;;;:::o;43673:125::-;43744:4;43768:17;;;:12;;;;;:17;;;;;;:22;;;43673:125::o;25132:195::-;25235:12;25267:52;25289:6;25297:4;25303:1;25306:12;25267:21;:52::i;31815:1544::-;31881:4;32020:19;;;:12;;;:19;;;;;;32056:15;;32052:1300;;32491:18;;-1:-1:-1;;32442:14:0;;;;32491:22;;;;32418:21;;32491:3;;:22;;32778;;;;;;;;;;;;;;32758:42;;32924:9;32895:3;:11;;32907:13;32895:26;;;;;;;;;;;;;;;;;;;:38;;;;33001:23;;;33043:1;33001:12;;;:23;;;;;;33027:17;;;33001:43;;33153:17;;33001:3;;33153:17;;;;;;;;;;;;;;;;;;;;;;33248:3;:12;;:19;33261:5;33248:19;;;;;;;;;;;33241:26;;;33291:4;33284:11;;;;;;;;32052:1300;33335:5;33328:12;;;;;31225:414;31288:4;31310:21;31320:3;31325:5;31310:9;:21::i;:::-;31305:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;31348:11:0;:23;;;;;;;;;;;;;31531:18;;31509:19;;;:12;;;:19;;;;;;:40;;;;31564:11;;31305:327;-1:-1:-1;31615:5:0;31608:12;;41173:692;41249:4;41384:17;;;:12;;;:17;;;;;;41418:13;41414:444;;-1:-1:-1;;41503:38:0;;;;;;;;;;;;;;;;;;27:10:-1;;39:1;23:18;;;45:23;;41485:12:0;:57;;;;;;;;;;;;;;;;;;;;;;;;41700:19;;41680:17;;;:12;;;:17;;;;;;;:39;41734:11;;41414:444;41814:5;41778:3;:12;;41802:1;41791:8;:12;41778:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;41841:5;41834:12;;;;;22214:422;22581:20;22620:8;;;22214:422::o;26184:530::-;26311:12;26369:5;26344:21;:30;;26336:81;;;;-1:-1:-1;;;26336:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26436:18;26447:6;26436:10;:18::i;:::-;26428:60;;;;;-1:-1:-1;;;26428:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26562:12;26576:23;26603:6;-1:-1:-1;;;;;26603:11:0;26623:5;26631:4;26603:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;26603:33:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;26561:75:0;;;;26654:52;26672:7;26681:10;26693:12;26654:17;:52::i;:::-;26647:59;26184:530;-1:-1:-1;;;;;;;26184:530:0:o;28724:742::-;28839:12;28868:7;28864:595;;;-1:-1:-1;28899:10:0;28892:17;;28864:595;29013:17;;:21;29009:439;;29276:10;29270:17;29337:15;29324:10;29320:2;29316:19;29309:44;29224:148;29412:20;;-1:-1:-1;;;29412:20:0;;;;;;;;;;;;;;;;;29419:12;;29412:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

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