ETH Price: $3,389.18 (-1.55%)
Gas: 1 Gwei

Token

BLOCK GAME CAPITAL (BGC)
 

Overview

Max Total Supply

4,118 BGC

Holders

1,983

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
reagentzero.eth
Balance
2 BGC
0xaAD1195adcEc96C05534C80069FA30d19E19B1f1
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:
BLOCKGAMECAPITAL

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-15
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^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 () {
        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.
     */

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract  BLOCKGAMECAPITAL  is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;
    using Address for address; 
    using Strings for uint256;

    uint public  maxSupply =9888;
    uint private  hotelSupply =1000;
    uint private  mansionSupply =88;
    uint private  apartmentSupply =3000;
    uint private  townHouseSupply =5800;
    uint public maxQuantity =5;
    uint256 public mansionPrice = 1.5 ether;
    uint256 public apartmentPrice = 0.2 ether;
    uint256 public hotelPrice = 0.5 ether;
    uint256 public townPrice = 0.088 ether; 
    bool public  isPaused = true;
    uint private tokenId=1;
    uint private hotelId=89;
    uint private apartmentId=1089;
    uint private townHouseId=4089;
    
    mapping(address=>bool) public _addressExist;


    constructor(string memory baseURI) ERC721("BLOCK GAME CAPITAL", "BGC")  {
        setBaseURI(baseURI);
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }

    function setMansionPrice(uint256 _newPrice) public onlyOwner() {
        mansionPrice = _newPrice;
    }
        function setApartmentPrice(uint256 _newPrice) public onlyOwner() {
        apartmentPrice = _newPrice;
    }
        function setHotelPrice(uint256 _newPrice) public onlyOwner() {
        hotelPrice = _newPrice;
    }
        function settownPrice(uint256 _newPrice) public onlyOwner() {
        townPrice = _newPrice;
    }

    function setMaxxQtPerTx(uint256 _quantity) public onlyOwner {
        maxQuantity=_quantity;
    }

    function setMaxSupply(uint256 _quantity) public onlyOwner {
        maxSupply=_quantity;
    }


    function flipPauseStatus() public onlyOwner {
        isPaused = !isPaused;
    }



        
  

    function mansionMint(uint chosenAmount) public payable {
        require(isPaused == false, "Sale is not active at the moment");
        require(totalSupply()+chosenAmount<=maxSupply,"Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= maxQuantity,"Chosen Amount exceeds MaxQuantity");
        require(mansionSupply>0,"mansion sold out");
        require(mansionPrice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, mansionnSupply());
            tokenId++;
            mansionSupply--;
            }
    }
        function hotelMint(uint chosenAmount) public payable {
        require(isPaused == false, "Sale is not active at the moment");
        require(totalSupply()+chosenAmount<=maxSupply,"Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= maxQuantity,"Chosen Amount exceeds MaxQuantity");
        require(hotelSupply>0,"hotel sold out");
        require(hotelPrice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, hotellSupply());
            hotelId++;
            hotelSupply--;
            }
    }
        function apartmentMint(uint chosenAmount) public payable {
        require(isPaused == false, "Sale is not active at the moment");
        require(totalSupply()+chosenAmount<=maxSupply,"Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= maxQuantity,"Chosen Amount exceeds MaxQuantity");
        require(apartmentSupply>0,"apartments sold out");
        require(apartmentPrice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, apartmenttSupply());
            apartmentId++;
            apartmentSupply--;
            }
    }
        function townHouseMint(uint chosenAmount) public payable {
        require(isPaused == false, "Sale is not active at the moment");
        require(totalSupply()+chosenAmount<=maxSupply,"Quantity must be lesser then MaxSupply");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= maxQuantity,"Chosen Amount exceeds MaxQuantity");
        require(townHouseeSupply()>=4589,"free minting is start");
        require(townHouseSupply>0,"townhouse sold out");
        require(townPrice.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        

        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, townHouseeSupply());
            townHouseId++;
            townHouseSupply--;
            }
    }
        function townHouseMintFree() public  {
        require(isPaused == false, "Sale is not active at the moment");
        require(totalSupply()<=maxSupply,"Quantity must be lesser then MaxSupply");
        require(townHouseeSupply()<4589,"free minting is closed");
        require(townHouseSupply>0,"townhouse sold out");
        require(_addressExist[msg.sender]==false,"user already minted");
            _safeMint(msg.sender, townHouseeSupply());
            townHouseId++;
            townHouseSupply--;
            _addressExist[msg.sender]=true;
    }
    
 
    function tokensOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 count = balanceOf(_owner);
        uint256[] memory result = new uint256[](count);
        for (uint256 index = 0; index < count; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    function mansionnSupply() private view returns (uint)
   
    {
        return tokenId;
    }
        function apartmenttSupply() private view returns (uint)
   
    {
        return apartmentId;
    }
        function hotellSupply() private view returns (uint)
   
    {
        return hotelId;
    }
        function townHouseeSupply() private view returns (uint)
   
    {
        return townHouseId;
    }
        function mansionnSupplyy() public view returns (uint)
   
    {
        return tokenId-1;
    }
        function apartmenttSupplyy() public view returns (uint)
   
    {
        return apartmentId-1089;
    }
        function hotellSupplyy() public view returns (uint)
   
    {
        return hotelId-89;
    }
        function townHouseeSupplyy() public view returns (uint)
   
    {
        return townHouseId-4089;
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_addressExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"apartmentMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"apartmentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apartmenttSupplyy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"hotelMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"hotelPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hotellSupplyy","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":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"mansionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mansionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mansionnSupplyy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setApartmentPrice","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setHotelPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMansionPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMaxxQtPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"settownPrice","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"townHouseMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"townHouseMintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"townHouseeSupplyy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"townPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526126a0600c556103e8600d556058600e55610bb8600f556116a860105560056011556714d1120d7b1600006012556702c68af0bb1400006013556706f05b59d3b20000601455670138a388a43c00006015556016805460ff191660019081179091556017556059601855610441601955610ff9601a553480156200008757600080fd5b5060405162002ff538038062002ff5833981016040819052620000aa91620002ac565b6040805180820182526012815271109313d0d2c811d053514810d0541255105360721b60208083019182528351808501909452600384526242474360e81b908401528151919291620000ff9160009162000206565b5080516200011590600190602084019062000206565b50505060006200012a6200018a60201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000183816200018e565b50620003db565b3390565b600b546001600160a01b03163314620001ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020290600690602084019062000206565b5050565b828054620002149062000388565b90600052602060002090601f01602090048101928262000238576000855562000283565b82601f106200025357805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028357825182559160200191906001019062000266565b506200029192915062000295565b5090565b5b8082111562000291576000815560010162000296565b60006020808385031215620002c057600080fd5b82516001600160401b0380821115620002d857600080fd5b818501915085601f830112620002ed57600080fd5b815181811115620003025762000302620003c5565b604051601f8201601f19908116603f011681019083821181831017156200032d576200032d620003c5565b8160405282815288868487010111156200034657600080fd5b600093505b828410156200036a57848401860151818501870152928501926200034b565b828411156200037c5760008684830101525b98975050505050505050565b600181811c908216806200039d57607f821691505b60208210811415620003bf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612c0a80620003eb6000396000f3fe60806040526004361061027d5760003560e01c806370403f131161014f578063b187bd26116100c1578063dbcee4fd1161007a578063dbcee4fd14610725578063e640cf7d1461073a578063e985e9c514610750578063ead6824014610799578063f2fde38b146107ac578063fa62884c146107cc57600080fd5b8063b187bd261461066f578063b88d4fde14610689578063bbcc95de146106a9578063c2f03776146106bf578063c87b56dd146106ef578063d5abeb011461070f57600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639d38fd2114610604578063a22cb46514610624578063a5cd807214610644578063a87517bb1461065a57600080fd5b806370403f131461054657806370a0823114610559578063743976a01461057957806374f7b5f81461058e5780638462151c146105a457600080fd5b80633ccfd60b116101f357806355f804b3116101ac57806355f804b31461049e5780636352211e146104be57806366739af8146104de578063686e5476146104f157806369695eab146105065780636f8b44b01461052657600080fd5b80633ccfd60b146103f45780633e43da801461040957806342842e0e146104295780634748d042146104495780634eb1aa291461045e5780634f6ccce71461047e57600080fd5b80630cce3a1c116102455780630cce3a1c14610346578063102046db1461036657806318160ddd1461038a57806323b872dd1461039f5780632c6327df146103bf5780632f745c59146103d457600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063084909e714610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d366004612698565b6107e1565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61080c565b6040516102ae9190612810565b3480156102e557600080fd5b506102f96102f436600461271b565b61089e565b6040516001600160a01b0390911681526020016102ae565b61032461031f36600461271b565b610938565b005b34801561033257600080fd5b5061032461034136600461266e565b610af5565b34801561035257600080fd5b5061032461036136600461271b565b610c0b565b34801561037257600080fd5b5061037c60155481565b6040519081526020016102ae565b34801561039657600080fd5b5060095461037c565b3480156103ab57600080fd5b506103246103ba36600461257a565b610c3a565b3480156103cb57600080fd5b5061037c610c6b565b3480156103e057600080fd5b5061037c6103ef36600461266e565b610c82565b34801561040057600080fd5b50610324610d18565b34801561041557600080fd5b5061032461042436600461271b565b610d71565b34801561043557600080fd5b5061032461044436600461257a565b610da0565b34801561045557600080fd5b5061037c610dbb565b34801561046a57600080fd5b5061032461047936600461271b565b610dcd565b34801561048a57600080fd5b5061037c61049936600461271b565b610dfc565b3480156104aa57600080fd5b506103246104b93660046126d2565b610e8f565b3480156104ca57600080fd5b506102f96104d936600461271b565b610ecc565b6103246104ec36600461271b565b610f43565b3480156104fd57600080fd5b506103246110a6565b34801561051257600080fd5b5061032461052136600461271b565b61122f565b34801561053257600080fd5b5061032461054136600461271b565b61125e565b61032461055436600461271b565b61128d565b34801561056557600080fd5b5061037c61057436600461252c565b6113eb565b34801561058557600080fd5b506102cc611472565b34801561059a57600080fd5b5061037c60125481565b3480156105b057600080fd5b506105c46105bf36600461252c565b611500565b6040516102ae91906127cc565b3480156105dd57600080fd5b50600b546001600160a01b03166102f9565b3480156105fb57600080fd5b506102cc6115a2565b34801561061057600080fd5b5061032461061f36600461271b565b6115b1565b34801561063057600080fd5b5061032461063f366004612632565b6115e0565b34801561065057600080fd5b5061037c60145481565b34801561066657600080fd5b5061037c6116a5565b34801561067b57600080fd5b506016546102a29060ff1681565b34801561069557600080fd5b506103246106a43660046125b6565b6116b6565b3480156106b557600080fd5b5061037c60135481565b3480156106cb57600080fd5b506102a26106da36600461252c565b601b6020526000908152604090205460ff1681565b3480156106fb57600080fd5b506102cc61070a36600461271b565b6116ee565b34801561071b57600080fd5b5061037c600c5481565b34801561073157600080fd5b5061037c6117c9565b34801561074657600080fd5b5061037c60115481565b34801561075c57600080fd5b506102a261076b366004612547565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103246107a736600461271b565b6117da565b3480156107b857600080fd5b506103246107c736600461252c565b61193a565b3480156107d857600080fd5b506103246119d5565b60006001600160e01b0319821663780e9d6360e01b1480610806575061080682611a13565b92915050565b60606000805461081b90612ae6565b80601f016020809104026020016040519081016040528092919081815260200182805461084790612ae6565b80156108945780601f1061086957610100808354040283529160200191610894565b820191906000526020600020905b81548152906001019060200180831161087757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60165460ff161561095b5760405162461bcd60e51b815260040161091390612a0c565b600c548161096860095490565b6109729190612a41565b11156109905760405162461bcd60e51b815260040161091390612975565b600081116109b05760405162461bcd60e51b815260040161091390612823565b6011548111156109d25760405162461bcd60e51b8152600401610913906128ff565b6111ed6109de601a5490565b1015610a245760405162461bcd60e51b8152602060048201526015602482015274199c9959481b5a5b9d1a5b99c81a5cc81cdd185c9d605a1b6044820152606401610913565b600060105411610a6b5760405162461bcd60e51b81526020600482015260126024820152711d1bdddb9a1bdd5cd9481cdbdb19081bdd5d60721b6044820152606401610913565b6015543490610a7a9083611a63565b14610a975760405162461bcd60e51b8152600401610913906128c8565b60005b81811015610af157610ab433610aaf601a5490565b611a6f565b601a8054906000610ac483612b21565b909155505060108054906000610ad983612acf565b91905055508080610ae990612b21565b915050610a9a565b5050565b6000610b0082610ecc565b9050806001600160a01b0316836001600160a01b03161415610b6e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610913565b336001600160a01b0382161480610b8a5750610b8a813361076b565b610bfc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610913565b610c068383611a89565b505050565b600b546001600160a01b03163314610c355760405162461bcd60e51b815260040161091390612940565b601255565b610c443382611af7565b610c605760405162461bcd60e51b8152600401610913906129bb565b610c06838383611bee565b6000610441601954610c7d9190612a8c565b905090565b6000610c8d836113eb565b8210610cef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610913565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b03163314610d425760405162461bcd60e51b815260040161091390612940565b6040514790339082156108fc029083906000818181858888f19350505050158015610af1573d6000803e3d6000fd5b600b546001600160a01b03163314610d9b5760405162461bcd60e51b815260040161091390612940565b601355565b610c06838383604051806020016040528060008152506116b6565b6000610ff9601a54610c7d9190612a8c565b600b546001600160a01b03163314610df75760405162461bcd60e51b815260040161091390612940565b601455565b6000610e0760095490565b8210610e6a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610913565b60098281548110610e7d57610e7d612b92565b90600052602060002001549050919050565b600b546001600160a01b03163314610eb95760405162461bcd60e51b815260040161091390612940565b8051610af1906006906020840190612401565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610913565b60165460ff1615610f665760405162461bcd60e51b815260040161091390612a0c565b600c5481610f7360095490565b610f7d9190612a41565b1115610f9b5760405162461bcd60e51b815260040161091390612975565b60008111610fbb5760405162461bcd60e51b815260040161091390612823565b601154811115610fdd5760405162461bcd60e51b8152600401610913906128ff565b6000600f54116110255760405162461bcd60e51b8152602060048201526013602482015272185c185c9d1b595b9d1cc81cdbdb19081bdd5d606a1b6044820152606401610913565b60135434906110349083611a63565b146110515760405162461bcd60e51b8152600401610913906128c8565b60005b81811015610af15761106933610aaf60195490565b6019805490600061107983612b21565b9091555050600f805490600061108e83612acf565b9190505550808061109e90612b21565b915050611054565b60165460ff16156110c95760405162461bcd60e51b815260040161091390612a0c565b600c5460095411156110ed5760405162461bcd60e51b815260040161091390612975565b6111ed6110f9601a5490565b1061113f5760405162461bcd60e51b8152602060048201526016602482015275199c9959481b5a5b9d1a5b99c81a5cc818db1bdcd95960521b6044820152606401610913565b6000601054116111865760405162461bcd60e51b81526020600482015260126024820152711d1bdddb9a1bdd5cd9481cdbdb19081bdd5d60721b6044820152606401610913565b336000908152601b602052604090205460ff16156111dc5760405162461bcd60e51b81526020600482015260136024820152721d5cd95c88185b1c9958591e481b5a5b9d1959606a1b6044820152606401610913565b6111e933610aaf601a5490565b601a80549060006111f983612b21565b90915550506010805490600061120e83612acf565b9091555050336000908152601b60205260409020805460ff19166001179055565b600b546001600160a01b031633146112595760405162461bcd60e51b815260040161091390612940565b601555565b600b546001600160a01b031633146112885760405162461bcd60e51b815260040161091390612940565b600c55565b60165460ff16156112b05760405162461bcd60e51b815260040161091390612a0c565b600c54816112bd60095490565b6112c79190612a41565b11156112e55760405162461bcd60e51b815260040161091390612975565b600081116113055760405162461bcd60e51b815260040161091390612823565b6011548111156113275760405162461bcd60e51b8152600401610913906128ff565b6000600d541161136a5760405162461bcd60e51b815260206004820152600e60248201526d1a1bdd195b081cdbdb19081bdd5d60921b6044820152606401610913565b60145434906113799083611a63565b146113965760405162461bcd60e51b8152600401610913906128c8565b60005b81811015610af1576113ae33610aaf60185490565b601880549060006113be83612b21565b9091555050600d80549060006113d383612acf565b919050555080806113e390612b21565b915050611399565b60006001600160a01b0382166114565760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610913565b506001600160a01b031660009081526003602052604090205490565b6006805461147f90612ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546114ab90612ae6565b80156114f85780601f106114cd576101008083540402835291602001916114f8565b820191906000526020600020905b8154815290600101906020018083116114db57829003601f168201915b505050505081565b6060600061150d836113eb565b905060008167ffffffffffffffff81111561152a5761152a612ba8565b604051908082528060200260200182016040528015611553578160200160208202803683370190505b50905060005b8281101561159a5761156b8582610c82565b82828151811061157d5761157d612b92565b60209081029190910101528061159281612b21565b915050611559565b509392505050565b60606001805461081b90612ae6565b600b546001600160a01b031633146115db5760405162461bcd60e51b815260040161091390612940565b601155565b6001600160a01b0382163314156116395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610913565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001601754610c7d9190612a8c565b6116c03383611af7565b6116dc5760405162461bcd60e51b8152600401610913906129bb565b6116e884848484611d99565b50505050565b6000818152600260205260409020546060906001600160a01b031661176d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610913565b6000611777611dcc565b9050600081511161179757604051806020016040528060008152506117c2565b806117a184611ddb565b6040516020016117b2929190612760565b6040516020818303038152906040525b9392505050565b60006059601854610c7d9190612a8c565b60165460ff16156117fd5760405162461bcd60e51b815260040161091390612a0c565b600c548161180a60095490565b6118149190612a41565b11156118325760405162461bcd60e51b815260040161091390612975565b600081116118525760405162461bcd60e51b815260040161091390612823565b6011548111156118745760405162461bcd60e51b8152600401610913906128ff565b6000600e54116118b95760405162461bcd60e51b815260206004820152601060248201526f1b585b9cda5bdb881cdbdb19081bdd5d60821b6044820152606401610913565b60125434906118c89083611a63565b146118e55760405162461bcd60e51b8152600401610913906128c8565b60005b81811015610af1576118fd33610aaf60175490565b6017805490600061190d83612b21565b9091555050600e805490600061192283612acf565b9190505550808061193290612b21565b9150506118e8565b600b546001600160a01b031633146119645760405162461bcd60e51b815260040161091390612940565b6001600160a01b0381166119c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610913565b6119d281611ed9565b50565b600b546001600160a01b031633146119ff5760405162461bcd60e51b815260040161091390612940565b6016805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b1480611a4457506001600160e01b03198216635b5e139f60e01b145b8061080657506301ffc9a760e01b6001600160e01b0319831614610806565b60006117c28284612a6d565b610af1828260405180602001604052806000815250611f2b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611abe82610ecc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610913565b6000611b7b83610ecc565b9050806001600160a01b0316846001600160a01b03161480611bb65750836001600160a01b0316611bab8461089e565b6001600160a01b0316145b80611be657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c0182610ecc565b6001600160a01b031614611c695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610913565b6001600160a01b038216611ccb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610913565b611cd6838383611f5e565b611ce1600082611a89565b6001600160a01b0383166000908152600360205260408120805460019290611d0a908490612a8c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d38908490612a41565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611da4848484611bee565b611db084848484612016565b6116e85760405162461bcd60e51b815260040161091390612876565b60606006805461081b90612ae6565b606081611dff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e295780611e1381612b21565b9150611e229050600a83612a59565b9150611e03565b60008167ffffffffffffffff811115611e4457611e44612ba8565b6040519080825280601f01601f191660200182016040528015611e6e576020820181803683370190505b5090505b8415611be657611e83600183612a8c565b9150611e90600a86612b3c565b611e9b906030612a41565b60f81b818381518110611eb057611eb0612b92565b60200101906001600160f81b031916908160001a905350611ed2600a86612a59565b9450611e72565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f358383612123565b611f426000848484612016565b610c065760405162461bcd60e51b815260040161091390612876565b6001600160a01b038316611fb957611fb481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611fdc565b816001600160a01b0316836001600160a01b031614611fdc57611fdc8382612271565b6001600160a01b038216611ff357610c068161230e565b826001600160a01b0316826001600160a01b031614610c0657610c0682826123bd565b60006001600160a01b0384163b1561211857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061205a90339089908890889060040161278f565b602060405180830381600087803b15801561207457600080fd5b505af19250505080156120a4575060408051601f3d908101601f191682019092526120a1918101906126b5565b60015b6120fe573d8080156120d2576040519150601f19603f3d011682016040523d82523d6000602084013e6120d7565b606091505b5080516120f65760405162461bcd60e51b815260040161091390612876565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be6565b506001949350505050565b6001600160a01b0382166121795760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610913565b6000818152600260205260409020546001600160a01b0316156121de5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610913565b6121ea60008383611f5e565b6001600160a01b0382166000908152600360205260408120805460019290612213908490612a41565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161227e846113eb565b6122889190612a8c565b6000838152600860205260409020549091508082146122db576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061232090600190612a8c565b6000838152600a60205260408120546009805493945090928490811061234857612348612b92565b90600052602060002001549050806009838154811061236957612369612b92565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806123a1576123a1612b7c565b6001900381819060005260206000200160009055905550505050565b60006123c8836113eb565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461240d90612ae6565b90600052602060002090601f01602090048101928261242f5760008555612475565b82601f1061244857805160ff1916838001178555612475565b82800160010185558215612475579182015b8281111561247557825182559160200191906001019061245a565b50612481929150612485565b5090565b5b808211156124815760008155600101612486565b600067ffffffffffffffff808411156124b5576124b5612ba8565b604051601f8501601f19908116603f011681019082821181831017156124dd576124dd612ba8565b816040528093508581528686860111156124f657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461252757600080fd5b919050565b60006020828403121561253e57600080fd5b6117c282612510565b6000806040838503121561255a57600080fd5b61256383612510565b915061257160208401612510565b90509250929050565b60008060006060848603121561258f57600080fd5b61259884612510565b92506125a660208501612510565b9150604084013590509250925092565b600080600080608085870312156125cc57600080fd5b6125d585612510565b93506125e360208601612510565b925060408501359150606085013567ffffffffffffffff81111561260657600080fd5b8501601f8101871361261757600080fd5b6126268782356020840161249a565b91505092959194509250565b6000806040838503121561264557600080fd5b61264e83612510565b91506020830135801515811461266357600080fd5b809150509250929050565b6000806040838503121561268157600080fd5b61268a83612510565b946020939093013593505050565b6000602082840312156126aa57600080fd5b81356117c281612bbe565b6000602082840312156126c757600080fd5b81516117c281612bbe565b6000602082840312156126e457600080fd5b813567ffffffffffffffff8111156126fb57600080fd5b8201601f8101841361270c57600080fd5b611be68482356020840161249a565b60006020828403121561272d57600080fd5b5035919050565b6000815180845261274c816020860160208601612aa3565b601f01601f19169290920160200192915050565b60008351612772818460208801612aa3565b835190830190612786818360208801612aa3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127c290830184612734565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612804578351835292840192918401916001016127e8565b50909695505050505050565b6020815260006117c26020830184612734565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b60008219821115612a5457612a54612b50565b500190565b600082612a6857612a68612b66565b500490565b6000816000190483118215151615612a8757612a87612b50565b500290565b600082821015612a9e57612a9e612b50565b500390565b60005b83811015612abe578181015183820152602001612aa6565b838111156116e85750506000910152565b600081612ade57612ade612b50565b506000190190565b600181811c90821680612afa57607f821691505b60208210811415612b1b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3557612b35612b50565b5060010190565b600082612b4b57612b4b612b66565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119d257600080fdfea26469706673582212205f1e15b7057764f413226852dfd9ade55977da4f220099042a16ba10af74f16a64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f626c6f636b67616d656361706974616c2e6865726f6b756170702e636f6d2f6170692f6e66742f0000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370403f131161014f578063b187bd26116100c1578063dbcee4fd1161007a578063dbcee4fd14610725578063e640cf7d1461073a578063e985e9c514610750578063ead6824014610799578063f2fde38b146107ac578063fa62884c146107cc57600080fd5b8063b187bd261461066f578063b88d4fde14610689578063bbcc95de146106a9578063c2f03776146106bf578063c87b56dd146106ef578063d5abeb011461070f57600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639d38fd2114610604578063a22cb46514610624578063a5cd807214610644578063a87517bb1461065a57600080fd5b806370403f131461054657806370a0823114610559578063743976a01461057957806374f7b5f81461058e5780638462151c146105a457600080fd5b80633ccfd60b116101f357806355f804b3116101ac57806355f804b31461049e5780636352211e146104be57806366739af8146104de578063686e5476146104f157806369695eab146105065780636f8b44b01461052657600080fd5b80633ccfd60b146103f45780633e43da801461040957806342842e0e146104295780634748d042146104495780634eb1aa291461045e5780634f6ccce71461047e57600080fd5b80630cce3a1c116102455780630cce3a1c14610346578063102046db1461036657806318160ddd1461038a57806323b872dd1461039f5780632c6327df146103bf5780632f745c59146103d457600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063084909e714610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d366004612698565b6107e1565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61080c565b6040516102ae9190612810565b3480156102e557600080fd5b506102f96102f436600461271b565b61089e565b6040516001600160a01b0390911681526020016102ae565b61032461031f36600461271b565b610938565b005b34801561033257600080fd5b5061032461034136600461266e565b610af5565b34801561035257600080fd5b5061032461036136600461271b565b610c0b565b34801561037257600080fd5b5061037c60155481565b6040519081526020016102ae565b34801561039657600080fd5b5060095461037c565b3480156103ab57600080fd5b506103246103ba36600461257a565b610c3a565b3480156103cb57600080fd5b5061037c610c6b565b3480156103e057600080fd5b5061037c6103ef36600461266e565b610c82565b34801561040057600080fd5b50610324610d18565b34801561041557600080fd5b5061032461042436600461271b565b610d71565b34801561043557600080fd5b5061032461044436600461257a565b610da0565b34801561045557600080fd5b5061037c610dbb565b34801561046a57600080fd5b5061032461047936600461271b565b610dcd565b34801561048a57600080fd5b5061037c61049936600461271b565b610dfc565b3480156104aa57600080fd5b506103246104b93660046126d2565b610e8f565b3480156104ca57600080fd5b506102f96104d936600461271b565b610ecc565b6103246104ec36600461271b565b610f43565b3480156104fd57600080fd5b506103246110a6565b34801561051257600080fd5b5061032461052136600461271b565b61122f565b34801561053257600080fd5b5061032461054136600461271b565b61125e565b61032461055436600461271b565b61128d565b34801561056557600080fd5b5061037c61057436600461252c565b6113eb565b34801561058557600080fd5b506102cc611472565b34801561059a57600080fd5b5061037c60125481565b3480156105b057600080fd5b506105c46105bf36600461252c565b611500565b6040516102ae91906127cc565b3480156105dd57600080fd5b50600b546001600160a01b03166102f9565b3480156105fb57600080fd5b506102cc6115a2565b34801561061057600080fd5b5061032461061f36600461271b565b6115b1565b34801561063057600080fd5b5061032461063f366004612632565b6115e0565b34801561065057600080fd5b5061037c60145481565b34801561066657600080fd5b5061037c6116a5565b34801561067b57600080fd5b506016546102a29060ff1681565b34801561069557600080fd5b506103246106a43660046125b6565b6116b6565b3480156106b557600080fd5b5061037c60135481565b3480156106cb57600080fd5b506102a26106da36600461252c565b601b6020526000908152604090205460ff1681565b3480156106fb57600080fd5b506102cc61070a36600461271b565b6116ee565b34801561071b57600080fd5b5061037c600c5481565b34801561073157600080fd5b5061037c6117c9565b34801561074657600080fd5b5061037c60115481565b34801561075c57600080fd5b506102a261076b366004612547565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103246107a736600461271b565b6117da565b3480156107b857600080fd5b506103246107c736600461252c565b61193a565b3480156107d857600080fd5b506103246119d5565b60006001600160e01b0319821663780e9d6360e01b1480610806575061080682611a13565b92915050565b60606000805461081b90612ae6565b80601f016020809104026020016040519081016040528092919081815260200182805461084790612ae6565b80156108945780601f1061086957610100808354040283529160200191610894565b820191906000526020600020905b81548152906001019060200180831161087757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60165460ff161561095b5760405162461bcd60e51b815260040161091390612a0c565b600c548161096860095490565b6109729190612a41565b11156109905760405162461bcd60e51b815260040161091390612975565b600081116109b05760405162461bcd60e51b815260040161091390612823565b6011548111156109d25760405162461bcd60e51b8152600401610913906128ff565b6111ed6109de601a5490565b1015610a245760405162461bcd60e51b8152602060048201526015602482015274199c9959481b5a5b9d1a5b99c81a5cc81cdd185c9d605a1b6044820152606401610913565b600060105411610a6b5760405162461bcd60e51b81526020600482015260126024820152711d1bdddb9a1bdd5cd9481cdbdb19081bdd5d60721b6044820152606401610913565b6015543490610a7a9083611a63565b14610a975760405162461bcd60e51b8152600401610913906128c8565b60005b81811015610af157610ab433610aaf601a5490565b611a6f565b601a8054906000610ac483612b21565b909155505060108054906000610ad983612acf565b91905055508080610ae990612b21565b915050610a9a565b5050565b6000610b0082610ecc565b9050806001600160a01b0316836001600160a01b03161415610b6e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610913565b336001600160a01b0382161480610b8a5750610b8a813361076b565b610bfc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610913565b610c068383611a89565b505050565b600b546001600160a01b03163314610c355760405162461bcd60e51b815260040161091390612940565b601255565b610c443382611af7565b610c605760405162461bcd60e51b8152600401610913906129bb565b610c06838383611bee565b6000610441601954610c7d9190612a8c565b905090565b6000610c8d836113eb565b8210610cef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610913565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b03163314610d425760405162461bcd60e51b815260040161091390612940565b6040514790339082156108fc029083906000818181858888f19350505050158015610af1573d6000803e3d6000fd5b600b546001600160a01b03163314610d9b5760405162461bcd60e51b815260040161091390612940565b601355565b610c06838383604051806020016040528060008152506116b6565b6000610ff9601a54610c7d9190612a8c565b600b546001600160a01b03163314610df75760405162461bcd60e51b815260040161091390612940565b601455565b6000610e0760095490565b8210610e6a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610913565b60098281548110610e7d57610e7d612b92565b90600052602060002001549050919050565b600b546001600160a01b03163314610eb95760405162461bcd60e51b815260040161091390612940565b8051610af1906006906020840190612401565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610913565b60165460ff1615610f665760405162461bcd60e51b815260040161091390612a0c565b600c5481610f7360095490565b610f7d9190612a41565b1115610f9b5760405162461bcd60e51b815260040161091390612975565b60008111610fbb5760405162461bcd60e51b815260040161091390612823565b601154811115610fdd5760405162461bcd60e51b8152600401610913906128ff565b6000600f54116110255760405162461bcd60e51b8152602060048201526013602482015272185c185c9d1b595b9d1cc81cdbdb19081bdd5d606a1b6044820152606401610913565b60135434906110349083611a63565b146110515760405162461bcd60e51b8152600401610913906128c8565b60005b81811015610af15761106933610aaf60195490565b6019805490600061107983612b21565b9091555050600f805490600061108e83612acf565b9190505550808061109e90612b21565b915050611054565b60165460ff16156110c95760405162461bcd60e51b815260040161091390612a0c565b600c5460095411156110ed5760405162461bcd60e51b815260040161091390612975565b6111ed6110f9601a5490565b1061113f5760405162461bcd60e51b8152602060048201526016602482015275199c9959481b5a5b9d1a5b99c81a5cc818db1bdcd95960521b6044820152606401610913565b6000601054116111865760405162461bcd60e51b81526020600482015260126024820152711d1bdddb9a1bdd5cd9481cdbdb19081bdd5d60721b6044820152606401610913565b336000908152601b602052604090205460ff16156111dc5760405162461bcd60e51b81526020600482015260136024820152721d5cd95c88185b1c9958591e481b5a5b9d1959606a1b6044820152606401610913565b6111e933610aaf601a5490565b601a80549060006111f983612b21565b90915550506010805490600061120e83612acf565b9091555050336000908152601b60205260409020805460ff19166001179055565b600b546001600160a01b031633146112595760405162461bcd60e51b815260040161091390612940565b601555565b600b546001600160a01b031633146112885760405162461bcd60e51b815260040161091390612940565b600c55565b60165460ff16156112b05760405162461bcd60e51b815260040161091390612a0c565b600c54816112bd60095490565b6112c79190612a41565b11156112e55760405162461bcd60e51b815260040161091390612975565b600081116113055760405162461bcd60e51b815260040161091390612823565b6011548111156113275760405162461bcd60e51b8152600401610913906128ff565b6000600d541161136a5760405162461bcd60e51b815260206004820152600e60248201526d1a1bdd195b081cdbdb19081bdd5d60921b6044820152606401610913565b60145434906113799083611a63565b146113965760405162461bcd60e51b8152600401610913906128c8565b60005b81811015610af1576113ae33610aaf60185490565b601880549060006113be83612b21565b9091555050600d80549060006113d383612acf565b919050555080806113e390612b21565b915050611399565b60006001600160a01b0382166114565760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610913565b506001600160a01b031660009081526003602052604090205490565b6006805461147f90612ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546114ab90612ae6565b80156114f85780601f106114cd576101008083540402835291602001916114f8565b820191906000526020600020905b8154815290600101906020018083116114db57829003601f168201915b505050505081565b6060600061150d836113eb565b905060008167ffffffffffffffff81111561152a5761152a612ba8565b604051908082528060200260200182016040528015611553578160200160208202803683370190505b50905060005b8281101561159a5761156b8582610c82565b82828151811061157d5761157d612b92565b60209081029190910101528061159281612b21565b915050611559565b509392505050565b60606001805461081b90612ae6565b600b546001600160a01b031633146115db5760405162461bcd60e51b815260040161091390612940565b601155565b6001600160a01b0382163314156116395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610913565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001601754610c7d9190612a8c565b6116c03383611af7565b6116dc5760405162461bcd60e51b8152600401610913906129bb565b6116e884848484611d99565b50505050565b6000818152600260205260409020546060906001600160a01b031661176d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610913565b6000611777611dcc565b9050600081511161179757604051806020016040528060008152506117c2565b806117a184611ddb565b6040516020016117b2929190612760565b6040516020818303038152906040525b9392505050565b60006059601854610c7d9190612a8c565b60165460ff16156117fd5760405162461bcd60e51b815260040161091390612a0c565b600c548161180a60095490565b6118149190612a41565b11156118325760405162461bcd60e51b815260040161091390612975565b600081116118525760405162461bcd60e51b815260040161091390612823565b6011548111156118745760405162461bcd60e51b8152600401610913906128ff565b6000600e54116118b95760405162461bcd60e51b815260206004820152601060248201526f1b585b9cda5bdb881cdbdb19081bdd5d60821b6044820152606401610913565b60125434906118c89083611a63565b146118e55760405162461bcd60e51b8152600401610913906128c8565b60005b81811015610af1576118fd33610aaf60175490565b6017805490600061190d83612b21565b9091555050600e805490600061192283612acf565b9190505550808061193290612b21565b9150506118e8565b600b546001600160a01b031633146119645760405162461bcd60e51b815260040161091390612940565b6001600160a01b0381166119c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610913565b6119d281611ed9565b50565b600b546001600160a01b031633146119ff5760405162461bcd60e51b815260040161091390612940565b6016805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b1480611a4457506001600160e01b03198216635b5e139f60e01b145b8061080657506301ffc9a760e01b6001600160e01b0319831614610806565b60006117c28284612a6d565b610af1828260405180602001604052806000815250611f2b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611abe82610ecc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610913565b6000611b7b83610ecc565b9050806001600160a01b0316846001600160a01b03161480611bb65750836001600160a01b0316611bab8461089e565b6001600160a01b0316145b80611be657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c0182610ecc565b6001600160a01b031614611c695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610913565b6001600160a01b038216611ccb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610913565b611cd6838383611f5e565b611ce1600082611a89565b6001600160a01b0383166000908152600360205260408120805460019290611d0a908490612a8c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d38908490612a41565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611da4848484611bee565b611db084848484612016565b6116e85760405162461bcd60e51b815260040161091390612876565b60606006805461081b90612ae6565b606081611dff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e295780611e1381612b21565b9150611e229050600a83612a59565b9150611e03565b60008167ffffffffffffffff811115611e4457611e44612ba8565b6040519080825280601f01601f191660200182016040528015611e6e576020820181803683370190505b5090505b8415611be657611e83600183612a8c565b9150611e90600a86612b3c565b611e9b906030612a41565b60f81b818381518110611eb057611eb0612b92565b60200101906001600160f81b031916908160001a905350611ed2600a86612a59565b9450611e72565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f358383612123565b611f426000848484612016565b610c065760405162461bcd60e51b815260040161091390612876565b6001600160a01b038316611fb957611fb481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611fdc565b816001600160a01b0316836001600160a01b031614611fdc57611fdc8382612271565b6001600160a01b038216611ff357610c068161230e565b826001600160a01b0316826001600160a01b031614610c0657610c0682826123bd565b60006001600160a01b0384163b1561211857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061205a90339089908890889060040161278f565b602060405180830381600087803b15801561207457600080fd5b505af19250505080156120a4575060408051601f3d908101601f191682019092526120a1918101906126b5565b60015b6120fe573d8080156120d2576040519150601f19603f3d011682016040523d82523d6000602084013e6120d7565b606091505b5080516120f65760405162461bcd60e51b815260040161091390612876565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be6565b506001949350505050565b6001600160a01b0382166121795760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610913565b6000818152600260205260409020546001600160a01b0316156121de5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610913565b6121ea60008383611f5e565b6001600160a01b0382166000908152600360205260408120805460019290612213908490612a41565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161227e846113eb565b6122889190612a8c565b6000838152600860205260409020549091508082146122db576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061232090600190612a8c565b6000838152600a60205260408120546009805493945090928490811061234857612348612b92565b90600052602060002001549050806009838154811061236957612369612b92565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806123a1576123a1612b7c565b6001900381819060005260206000200160009055905550505050565b60006123c8836113eb565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461240d90612ae6565b90600052602060002090601f01602090048101928261242f5760008555612475565b82601f1061244857805160ff1916838001178555612475565b82800160010185558215612475579182015b8281111561247557825182559160200191906001019061245a565b50612481929150612485565b5090565b5b808211156124815760008155600101612486565b600067ffffffffffffffff808411156124b5576124b5612ba8565b604051601f8501601f19908116603f011681019082821181831017156124dd576124dd612ba8565b816040528093508581528686860111156124f657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461252757600080fd5b919050565b60006020828403121561253e57600080fd5b6117c282612510565b6000806040838503121561255a57600080fd5b61256383612510565b915061257160208401612510565b90509250929050565b60008060006060848603121561258f57600080fd5b61259884612510565b92506125a660208501612510565b9150604084013590509250925092565b600080600080608085870312156125cc57600080fd5b6125d585612510565b93506125e360208601612510565b925060408501359150606085013567ffffffffffffffff81111561260657600080fd5b8501601f8101871361261757600080fd5b6126268782356020840161249a565b91505092959194509250565b6000806040838503121561264557600080fd5b61264e83612510565b91506020830135801515811461266357600080fd5b809150509250929050565b6000806040838503121561268157600080fd5b61268a83612510565b946020939093013593505050565b6000602082840312156126aa57600080fd5b81356117c281612bbe565b6000602082840312156126c757600080fd5b81516117c281612bbe565b6000602082840312156126e457600080fd5b813567ffffffffffffffff8111156126fb57600080fd5b8201601f8101841361270c57600080fd5b611be68482356020840161249a565b60006020828403121561272d57600080fd5b5035919050565b6000815180845261274c816020860160208601612aa3565b601f01601f19169290920160200192915050565b60008351612772818460208801612aa3565b835190830190612786818360208801612aa3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127c290830184612734565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612804578351835292840192918401916001016127e8565b50909695505050505050565b6020815260006117c26020830184612734565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b60008219821115612a5457612a54612b50565b500190565b600082612a6857612a68612b66565b500490565b6000816000190483118215151615612a8757612a87612b50565b500290565b600082821015612a9e57612a9e612b50565b500390565b60005b83811015612abe578181015183820152602001612aa6565b838111156116e85750506000910152565b600081612ade57612ade612b50565b506000190190565b600181811c90821680612afa57607f821691505b60208210811415612b1b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3557612b35612b50565b5060010190565b600082612b4b57612b4b612b66565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119d257600080fdfea26469706673582212205f1e15b7057764f413226852dfd9ade55977da4f220099042a16ba10af74f16a64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f626c6f636b67616d656361706974616c2e6865726f6b756170702e636f6d2f6170692f6e66742f0000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://blockgamecapital.herokuapp.com/api/nft/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [2] : 68747470733a2f2f626c6f636b67616d656361706974616c2e6865726f6b7561
Arg [3] : 70702e636f6d2f6170692f6e66742f0000000000000000000000000000000000


Deployed Bytecode Sourcemap

49061:6843:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42886:224;;;;;;;;;;-1:-1:-1;42886:224:0;;;;;:::i;:::-;;:::i;:::-;;;6283:14:1;;6276:22;6258:41;;6246:2;6231:18;42886:224:0;;;;;;;;30869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32422:221::-;;;;;;;;;;-1:-1:-1;32422:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;32422:221:0;4780:203:1;53097:823:0;;;;;;:::i;:::-;;:::i;:::-;;31945:411;;;;;;;;;;-1:-1:-1;31945:411:0;;;;;:::i;:::-;;:::i;50085:106::-;;;;;;;;;;-1:-1:-1;50085:106:0;;;;;:::i;:::-;;:::i;49592:38::-;;;;;;;;;;;;;;;;;;;18267:25:1;;;18255:2;18240:18;49592:38:0;18121:177:1;43526:113:0;;;;;;;;;;-1:-1:-1;43614:10:0;:17;43526:113;;33312:339;;;;;;;;;;-1:-1:-1;33312:339:0;;;;;:::i;:::-;;:::i;55561:108::-;;;;;;;;;;;;;:::i;43194:256::-;;;;;;;;;;-1:-1:-1;43194:256:0;;;;;:::i;:::-;;:::i;54868:140::-;;;;;;;;;;;;;:::i;50201:110::-;;;;;;;;;;-1:-1:-1;50201:110:0;;;;;:::i;:::-;;:::i;33722:185::-;;;;;;;;;;-1:-1:-1;33722:185:0;;;;;:::i;:::-;;:::i;55787:108::-;;;;;;;;;;;;;:::i;50321:102::-;;;;;;;;;;-1:-1:-1;50321:102:0;;;;;:::i;:::-;;:::i;43716:233::-;;;;;;;;;;-1:-1:-1;43716:233:0;;;;;:::i;:::-;;:::i;49980:97::-;;;;;;;;;;-1:-1:-1;49980:97:0;;;;;:::i;:::-;;:::i;30563:239::-;;;;;;;;;;-1:-1:-1;30563:239:0;;;;;:::i;:::-;;:::i;52338:749::-;;;;;;:::i;:::-;;:::i;53930:564::-;;;;;;;;;;;;;:::i;50433:100::-;;;;;;;;;;-1:-1:-1;50433:100:0;;;;;:::i;:::-;;:::i;50649:96::-;;;;;;;;;;-1:-1:-1;50649:96:0;;;;;:::i;:::-;;:::i;51608:720::-;;;;;;:::i;:::-;;:::i;30293:208::-;;;;;;;;;;-1:-1:-1;30293:208:0;;;;;:::i;:::-;;:::i;29591:22::-;;;;;;;;;;;;;:::i;49454:39::-;;;;;;;;;;;;;;;;54509:351;;;;;;;;;;-1:-1:-1;54509:351:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27459:87::-;;;;;;;;;;-1:-1:-1;27532:6:0;;-1:-1:-1;;;;;27532:6:0;27459:87;;31038:104;;;;;;;;;;;;;:::i;50541:100::-;;;;;;;;;;-1:-1:-1;50541:100:0;;;;;:::i;:::-;;:::i;32715:295::-;;;;;;;;;;-1:-1:-1;32715:295:0;;;;;:::i;:::-;;:::i;49548:37::-;;;;;;;;;;;;;;;;55452:99;;;;;;;;;;;;;:::i;49638:28::-;;;;;;;;;;-1:-1:-1;49638:28:0;;;;;;;;33978:328;;;;;;;;;;-1:-1:-1;33978:328:0;;;;;:::i;:::-;;:::i;49500:41::-;;;;;;;;;;;;;;;;49810:43;;;;;;;;;;-1:-1:-1;49810:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31213:323;;;;;;;;;;-1:-1:-1;31213:323:0;;;;;:::i;:::-;;:::i;49226:28::-;;;;;;;;;;;;;;;;55679:98;;;;;;;;;;;;;:::i;49421:26::-;;;;;;;;;;;;;;;;33081:164;;;;;;;;;;-1:-1:-1;33081:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33202:25:0;;;33178:4;33202:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33081:164;50866:732;;;;;;:::i;:::-;;:::i;28259:192::-;;;;;;;;;;-1:-1:-1;28259:192:0;;;;;:::i;:::-;;:::i;50755:83::-;;;;;;;;;;;;;:::i;42886:224::-;42988:4;-1:-1:-1;;;;;;43012:50:0;;-1:-1:-1;;;43012:50:0;;:90;;;43066:36;43090:11;43066:23;:36::i;:::-;43005:97;42886:224;-1:-1:-1;;42886:224:0:o;30869:100::-;30923:13;30956:5;30949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30869:100;:::o;32422:221::-;32498:7;35905:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35905:16:0;32518:73;;;;-1:-1:-1;;;32518:73:0;;14030:2:1;32518:73:0;;;14012:21:1;14069:2;14049:18;;;14042:30;14108:34;14088:18;;;14081:62;-1:-1:-1;;;14159:18:1;;;14152:42;14211:19;;32518:73:0;;;;;;;;;-1:-1:-1;32611:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32611:24:0;;32422:221::o;53097:823::-;53173:8;;;;:17;53165:62;;;;-1:-1:-1;;;53165:62:0;;;;;;;:::i;:::-;53274:9;;53260:12;53246:13;43614:10;:17;;43526:113;53246:13;:26;;;;:::i;:::-;:37;;53238:87;;;;-1:-1:-1;;;53238:87:0;;;;;;;:::i;:::-;53359:1;53344:12;:16;53336:80;;;;-1:-1:-1;;;53336:80:0;;;;;;;:::i;:::-;53451:11;;53435:12;:27;;53427:72;;;;-1:-1:-1;;;53427:72:0;;;;;;;:::i;:::-;53538:4;53518:18;55423:11;;;55339:103;53518:18;:24;;53510:57;;;;-1:-1:-1;;;53510:57:0;;12574:2:1;53510:57:0;;;12556:21:1;12613:2;12593:18;;;12586:30;-1:-1:-1;;;12632:18:1;;;12625:51;12693:18;;53510:57:0;12372:345:1;53510:57:0;53602:1;53586:15;;:17;53578:47;;;;-1:-1:-1;;;53578:47:0;;17615:2:1;53578:47:0;;;17597:21:1;17654:2;17634:18;;;17627:30;-1:-1:-1;;;17673:18:1;;;17666:48;17731:18;;53578:47:0;17413:342:1;53578:47:0;53644:9;;53675;;53644:27;;53658:12;53644:13;:27::i;:::-;:40;53636:82;;;;-1:-1:-1;;;53636:82:0;;;;;;;:::i;:::-;53746:6;53741:172;53762:12;53758:1;:16;53741:172;;;53796:41;53806:10;53818:18;55423:11;;;55339:103;53818:18;53796:9;:41::i;:::-;53852:11;:13;;;:11;:13;;;:::i;:::-;;;;-1:-1:-1;;53880:15:0;:17;;;:15;:17;;;:::i;:::-;;;;;;53776:3;;;;;:::i;:::-;;;;53741:172;;;;53097:823;:::o;31945:411::-;32026:13;32042:23;32057:7;32042:14;:23::i;:::-;32026:39;;32090:5;-1:-1:-1;;;;;32084:11:0;:2;-1:-1:-1;;;;;32084:11:0;;;32076:57;;;;-1:-1:-1;;;32076:57:0;;16382:2:1;32076:57:0;;;16364:21:1;16421:2;16401:18;;;16394:30;16460:34;16440:18;;;16433:62;-1:-1:-1;;;16511:18:1;;;16504:31;16552:19;;32076:57:0;16180:397:1;32076:57:0;26290:10;-1:-1:-1;;;;;32168:21:0;;;;:62;;-1:-1:-1;32193:37:0;32210:5;26290:10;33081:164;:::i;32193:37::-;32146:168;;;;-1:-1:-1;;;32146:168:0;;10970:2:1;32146:168:0;;;10952:21:1;11009:2;10989:18;;;10982:30;11048:34;11028:18;;;11021:62;11119:26;11099:18;;;11092:54;11163:19;;32146:168:0;10768:420:1;32146:168:0;32327:21;32336:2;32340:7;32327:8;:21::i;:::-;32015:341;31945:411;;:::o;50085:106::-;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;50159:12:::1;:24:::0;50085:106::o;33312:339::-;33507:41;26290:10;33540:7;33507:18;:41::i;:::-;33499:103;;;;-1:-1:-1;;;33499:103:0;;;;;;;:::i;:::-;33615:28;33625:4;33631:2;33635:7;33615:9;:28::i;55561:108::-;55611:4;55657;55645:11;;:16;;;;:::i;:::-;55638:23;;55561:108;:::o;43194:256::-;43291:7;43327:23;43344:5;43327:16;:23::i;:::-;43319:5;:31;43311:87;;;;-1:-1:-1;;;43311:87:0;;7855:2:1;43311:87:0;;;7837:21:1;7894:2;7874:18;;;7867:30;7933:34;7913:18;;;7906:62;-1:-1:-1;;;7984:18:1;;;7977:41;8035:19;;43311:87:0;7653:407:1;43311:87:0;-1:-1:-1;;;;;;43416:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43194:256::o;54868:140::-;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;54963:37:::1;::::0;54931:21:::1;::::0;54971:10:::1;::::0;54963:37;::::1;;;::::0;54931:21;;54916:12:::1;54963:37:::0;54916:12;54963:37;54931:21;54971:10;54963:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;50201:110:::0;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;50277:14:::1;:26:::0;50201:110::o;33722:185::-;33860:39;33877:4;33883:2;33887:7;33860:39;;;;;;;;;;;;:16;:39::i;55787:108::-;55837:4;55883;55871:11;;:16;;;;:::i;50321:102::-;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;50393:10:::1;:22:::0;50321:102::o;43716:233::-;43791:7;43827:30;43614:10;:17;;43526:113;43827:30;43819:5;:38;43811:95;;;;-1:-1:-1;;;43811:95:0;;17202:2:1;43811:95:0;;;17184:21:1;17241:2;17221:18;;;17214:30;17280:34;17260:18;;;17253:62;-1:-1:-1;;;17331:18:1;;;17324:42;17383:19;;43811:95:0;17000:408:1;43811:95:0;43924:10;43935:5;43924:17;;;;;;;;:::i;:::-;;;;;;;;;43917:24;;43716:233;;;:::o;49980:97::-;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;50051:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;30563:239::-:0;30635:7;30671:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30671:16:0;30706:19;30698:73;;;;-1:-1:-1;;;30698:73:0;;11806:2:1;30698:73:0;;;11788:21:1;11845:2;11825:18;;;11818:30;11884:34;11864:18;;;11857:62;-1:-1:-1;;;11935:18:1;;;11928:39;11984:19;;30698:73:0;11604:405:1;52338:749:0;52414:8;;;;:17;52406:62;;;;-1:-1:-1;;;52406:62:0;;;;;;;:::i;:::-;52515:9;;52501:12;52487:13;43614:10;:17;;43526:113;52487:13;:26;;;;:::i;:::-;:37;;52479:87;;;;-1:-1:-1;;;52479:87:0;;;;;;;:::i;:::-;52600:1;52585:12;:16;52577:80;;;;-1:-1:-1;;;52577:80:0;;;;;;;:::i;:::-;52692:11;;52676:12;:27;;52668:72;;;;-1:-1:-1;;;52668:72:0;;;;;;;:::i;:::-;52775:1;52759:15;;:17;52751:48;;;;-1:-1:-1;;;52751:48:0;;7507:2:1;52751:48:0;;;7489:21:1;7546:2;7526:18;;;7519:30;-1:-1:-1;;;7565:18:1;;;7558:49;7624:18;;52751:48:0;7305:343:1;52751:48:0;52818:14;;52854:9;;52818:32;;52837:12;52818:18;:32::i;:::-;:45;52810:87;;;;-1:-1:-1;;;52810:87:0;;;;;;;:::i;:::-;52913:6;52908:172;52929:12;52925:1;:16;52908:172;;;52963:41;52973:10;52985:18;55205:11;;;55121:103;52963:41;53019:11;:13;;;:11;:13;;;:::i;:::-;;;;-1:-1:-1;;53047:15:0;:17;;;:15;:17;;;:::i;:::-;;;;;;52943:3;;;;;:::i;:::-;;;;52908:172;;53930:564;53986:8;;;;:17;53978:62;;;;-1:-1:-1;;;53978:62:0;;;;;;;:::i;:::-;54074:9;;43614:10;:17;54059:24;;54051:74;;;;-1:-1:-1;;;54051:74:0;;;;;;;:::i;:::-;54163:4;54144:18;55423:11;;;55339:103;54144:18;:23;54136:57;;;;-1:-1:-1;;;54136:57:0;;6736:2:1;54136:57:0;;;6718:21:1;6775:2;6755:18;;;6748:30;-1:-1:-1;;;6794:18:1;;;6787:52;6856:18;;54136:57:0;6534:346:1;54136:57:0;54228:1;54212:15;;:17;54204:47;;;;-1:-1:-1;;;54204:47:0;;17615:2:1;54204:47:0;;;17597:21:1;17654:2;17634:18;;;17627:30;-1:-1:-1;;;17673:18:1;;;17666:48;17731:18;;54204:47:0;17413:342:1;54204:47:0;54284:10;54270:25;;;;:13;:25;;;;;;;;:32;54262:63;;;;-1:-1:-1;;;54262:63:0;;10209:2:1;54262:63:0;;;10191:21:1;10248:2;10228:18;;;10221:30;-1:-1:-1;;;10267:18:1;;;10260:49;10326:18;;54262:63:0;10007:343:1;54262:63:0;54340:41;54350:10;54362:18;55423:11;;;55339:103;54340:41;54396:11;:13;;;:11;:13;;;:::i;:::-;;;;-1:-1:-1;;54424:15:0;:17;;;:15;:17;;;:::i;:::-;;;;-1:-1:-1;;54470:10:0;54456:25;;;;:13;:25;;;;;:30;;-1:-1:-1;;54456:30:0;54482:4;54456:30;;;53930:564::o;50433:100::-;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;50504:9:::1;:21:::0;50433:100::o;50649:96::-;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;50718:9:::1;:19:::0;50649:96::o;51608:720::-;51680:8;;;;:17;51672:62;;;;-1:-1:-1;;;51672:62:0;;;;;;;:::i;:::-;51781:9;;51767:12;51753:13;43614:10;:17;;43526:113;51753:13;:26;;;;:::i;:::-;:37;;51745:87;;;;-1:-1:-1;;;51745:87:0;;;;;;;:::i;:::-;51866:1;51851:12;:16;51843:80;;;;-1:-1:-1;;;51843:80:0;;;;;;;:::i;:::-;51958:11;;51942:12;:27;;51934:72;;;;-1:-1:-1;;;51934:72:0;;;;;;;:::i;:::-;52037:1;52025:11;;:13;52017:39;;;;-1:-1:-1;;;52017:39:0;;12924:2:1;52017:39:0;;;12906:21:1;12963:2;12943:18;;;12936:30;-1:-1:-1;;;12982:18:1;;;12975:44;13036:18;;52017:39:0;12722:338:1;52017:39:0;52075:10;;52107:9;;52075:28;;52090:12;52075:14;:28::i;:::-;:41;52067:83;;;;-1:-1:-1;;;52067:83:0;;;;;;;:::i;:::-;52166:6;52161:160;52182:12;52178:1;:16;52161:160;;;52216:37;52226:10;52238:14;55314:7;;;55234:95;52216:37;52268:7;:9;;;:7;:9;;;:::i;:::-;;;;-1:-1:-1;;52292:11:0;:13;;;:11;:13;;;:::i;:::-;;;;;;52196:3;;;;;:::i;:::-;;;;52161:160;;30293:208;30365:7;-1:-1:-1;;;;;30393:19:0;;30385:74;;;;-1:-1:-1;;;30385:74:0;;11395:2:1;30385:74:0;;;11377:21:1;11434:2;11414:18;;;11407:30;11473:34;11453:18;;;11446:62;-1:-1:-1;;;11524:18:1;;;11517:40;11574:19;;30385:74:0;11193:406:1;30385:74:0;-1:-1:-1;;;;;;30477:16:0;;;;;:9;:16;;;;;;;30293:208::o;29591:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54509:351::-;54569:16;54603:13;54619:17;54629:6;54619:9;:17::i;:::-;54603:33;;54647:23;54687:5;54673:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54673:20:0;;54647:46;;54709:13;54704:125;54736:5;54728;:13;54704:125;;;54783:34;54803:6;54811:5;54783:19;:34::i;:::-;54767:6;54774:5;54767:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;54743:7;;;;:::i;:::-;;;;54704:125;;;-1:-1:-1;54846:6:0;54509:351;-1:-1:-1;;;54509:351:0:o;31038:104::-;31094:13;31127:7;31120:14;;;;;:::i;50541:100::-;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;50612:11:::1;:21:::0;50541:100::o;32715:295::-;-1:-1:-1;;;;;32818:24:0;;26290:10;32818:24;;32810:62;;;;-1:-1:-1;;;32810:62:0;;9855:2:1;32810:62:0;;;9837:21:1;9894:2;9874:18;;;9867:30;9933:27;9913:18;;;9906:55;9978:18;;32810:62:0;9653:349:1;32810:62:0;26290:10;32885:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32885:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32885:53:0;;;;;;;;;;32954:48;;6258:41:1;;;32885:42:0;;26290:10;32954:48;;6231:18:1;32954:48:0;;;;;;;32715:295;;:::o;55452:99::-;55500:4;55542:1;55534:7;;:9;;;;:::i;33978:328::-;34153:41;26290:10;34186:7;34153:18;:41::i;:::-;34145:103;;;;-1:-1:-1;;;34145:103:0;;;;;;;:::i;:::-;34259:39;34273:4;34279:2;34283:7;34292:5;34259:13;:39::i;:::-;33978:328;;;;:::o;31213:323::-;35881:4;35905:16;;;:7;:16;;;;;;31286:13;;-1:-1:-1;;;;;35905:16:0;31312:76;;;;-1:-1:-1;;;31312:76:0;;15621:2:1;31312:76:0;;;15603:21:1;15660:2;15640:18;;;15633:30;15699:34;15679:18;;;15672:62;-1:-1:-1;;;15750:18:1;;;15743:45;15805:19;;31312:76:0;15419:411:1;31312:76:0;31401:18;31422:9;:7;:9::i;:::-;31401:30;;31470:1;31455:4;31449:18;:22;:79;;;;;;;;;;;;;;;;;31498:4;31503:18;:7;:16;:18::i;:::-;31481:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31449:79;31442:86;31213:323;-1:-1:-1;;;31213:323:0:o;55679:98::-;55725:4;55767:2;55759:7;;:10;;;;:::i;50866:732::-;50940:8;;;;:17;50932:62;;;;-1:-1:-1;;;50932:62:0;;;;;;;:::i;:::-;51041:9;;51027:12;51013:13;43614:10;:17;;43526:113;51013:13;:26;;;;:::i;:::-;:37;;51005:87;;;;-1:-1:-1;;;51005:87:0;;;;;;;:::i;:::-;51126:1;51111:12;:16;51103:80;;;;-1:-1:-1;;;51103:80:0;;;;;;;:::i;:::-;51218:11;;51202:12;:27;;51194:72;;;;-1:-1:-1;;;51194:72:0;;;;;;;:::i;:::-;51299:1;51285:13;;:15;51277:43;;;;-1:-1:-1;;;51277:43:0;;16037:2:1;51277:43:0;;;16019:21:1;16076:2;16056:18;;;16049:30;-1:-1:-1;;;16095:18:1;;;16088:46;16151:18;;51277:43:0;15835:340:1;51277:43:0;51339:12;;51373:9;;51339:30;;51356:12;51339:16;:30::i;:::-;:43;51331:85;;;;-1:-1:-1;;;51331:85:0;;;;;;;:::i;:::-;51432:6;51427:164;51448:12;51444:1;:16;51427:164;;;51482:39;51492:10;51504:16;55096:7;;;55014:97;51482:39;51536:7;:9;;;:7;:9;;;:::i;:::-;;;;-1:-1:-1;;51560:13:0;:15;;;:13;:15;;;:::i;:::-;;;;;;51462:3;;;;;:::i;:::-;;;;51427:164;;28259:192;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28348:22:0;::::1;28340:73;;;::::0;-1:-1:-1;;;28340:73:0;;8686:2:1;28340:73:0::1;::::0;::::1;8668:21:1::0;8725:2;8705:18;;;8698:30;8764:34;8744:18;;;8737:62;-1:-1:-1;;;8815:18:1;;;8808:36;8861:19;;28340:73:0::1;8484:402:1::0;28340:73:0::1;28424:19;28434:8;28424:9;:19::i;:::-;28259:192:::0;:::o;50755:83::-;27532:6;;-1:-1:-1;;;;;27532:6:0;26290:10;27679:23;27671:68;;;;-1:-1:-1;;;27671:68:0;;;;;;;:::i;:::-;50822:8:::1;::::0;;-1:-1:-1;;50810:20:0;::::1;50822:8;::::0;;::::1;50821:9;50810:20;::::0;;50755:83::o;29924:305::-;30026:4;-1:-1:-1;;;;;;30063:40:0;;-1:-1:-1;;;30063:40:0;;:105;;-1:-1:-1;;;;;;;30120:48:0;;-1:-1:-1;;;30120:48:0;30063:105;:158;;;-1:-1:-1;;;;;;;;;;19305:40:0;;;30185:36;19196:157;3544:98;3602:7;3629:5;3633:1;3629;:5;:::i;36800:110::-;36876:26;36886:2;36890:7;36876:26;;;;;;;;;;;;:9;:26::i;39798:174::-;39873:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39873:29:0;-1:-1:-1;;;;;39873:29:0;;;;;;;;:24;;39927:23;39873:24;39927:14;:23::i;:::-;-1:-1:-1;;;;;39918:46:0;;;;;;;;;;;39798:174;;:::o;36110:348::-;36203:4;35905:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35905:16:0;36220:73;;;;-1:-1:-1;;;36220:73:0;;10557:2:1;36220:73:0;;;10539:21:1;10596:2;10576:18;;;10569:30;10635:34;10615:18;;;10608:62;-1:-1:-1;;;10686:18:1;;;10679:42;10738:19;;36220:73:0;10355:408:1;36220:73:0;36304:13;36320:23;36335:7;36320:14;:23::i;:::-;36304:39;;36373:5;-1:-1:-1;;;;;36362:16:0;:7;-1:-1:-1;;;;;36362:16:0;;:51;;;;36406:7;-1:-1:-1;;;;;36382:31:0;:20;36394:7;36382:11;:20::i;:::-;-1:-1:-1;;;;;36382:31:0;;36362:51;:87;;;-1:-1:-1;;;;;;33202:25:0;;;33178:4;33202:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36417:32;36354:96;36110:348;-1:-1:-1;;;;36110:348:0:o;39102:578::-;39261:4;-1:-1:-1;;;;;39234:31:0;:23;39249:7;39234:14;:23::i;:::-;-1:-1:-1;;;;;39234:31:0;;39226:85;;;;-1:-1:-1;;;39226:85:0;;15211:2:1;39226:85:0;;;15193:21:1;15250:2;15230:18;;;15223:30;15289:34;15269:18;;;15262:62;-1:-1:-1;;;15340:18:1;;;15333:39;15389:19;;39226:85:0;15009:405:1;39226:85:0;-1:-1:-1;;;;;39330:16:0;;39322:65;;;;-1:-1:-1;;;39322:65:0;;9450:2:1;39322:65:0;;;9432:21:1;9489:2;9469:18;;;9462:30;9528:34;9508:18;;;9501:62;-1:-1:-1;;;9579:18:1;;;9572:34;9623:19;;39322:65:0;9248:400:1;39322:65:0;39400:39;39421:4;39427:2;39431:7;39400:20;:39::i;:::-;39504:29;39521:1;39525:7;39504:8;:29::i;:::-;-1:-1:-1;;;;;39546:15:0;;;;;;:9;:15;;;;;:20;;39565:1;;39546:15;:20;;39565:1;;39546:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39577:13:0;;;;;;:9;:13;;;;;:18;;39594:1;;39577:13;:18;;39594:1;;39577:18;:::i;:::-;;;;-1:-1:-1;;39606:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39606:21:0;-1:-1:-1;;;;;39606:21:0;;;;;;;;;39645:27;;39606:16;;39645:27;;;;;;;39102:578;;;:::o;35188:315::-;35345:28;35355:4;35361:2;35365:7;35345:9;:28::i;:::-;35392:48;35415:4;35421:2;35425:7;35434:5;35392:22;:48::i;:::-;35384:111;;;;-1:-1:-1;;;35384:111:0;;;;;;;:::i;31784:99::-;31834:13;31867:8;31860:15;;;;;:::i;7224:723::-;7280:13;7501:10;7497:53;;-1:-1:-1;;7528:10:0;;;;;;;;;;;;-1:-1:-1;;;7528:10:0;;;;;7224:723::o;7497:53::-;7575:5;7560:12;7616:78;7623:9;;7616:78;;7649:8;;;;:::i;:::-;;-1:-1:-1;7672:10:0;;-1:-1:-1;7680:2:0;7672:10;;:::i;:::-;;;7616:78;;;7704:19;7736:6;7726:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7726:17:0;;7704:39;;7754:154;7761:10;;7754:154;;7788:11;7798:1;7788:11;;:::i;:::-;;-1:-1:-1;7857:10:0;7865:2;7857:5;:10;:::i;:::-;7844:24;;:2;:24;:::i;:::-;7831:39;;7814:6;7821;7814:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7814:56:0;;;;;;;;-1:-1:-1;7885:11:0;7894:2;7885:11;;:::i;:::-;;;7754:154;;28459:173;28534:6;;;-1:-1:-1;;;;;28551:17:0;;;-1:-1:-1;;;;;;28551:17:0;;;;;;;28584:40;;28534:6;;;28551:17;28534:6;;28584:40;;28515:16;;28584:40;28504:128;28459:173;:::o;37137:321::-;37267:18;37273:2;37277:7;37267:5;:18::i;:::-;37318:54;37349:1;37353:2;37357:7;37366:5;37318:22;:54::i;:::-;37296:154;;;;-1:-1:-1;;;37296:154:0;;;;;;;:::i;44562:589::-;-1:-1:-1;;;;;44768:18:0;;44764:187;;44803:40;44835:7;45978:10;:17;;45951:24;;;;:15;:24;;;;;:44;;;46006:24;;;;;;;;;;;;45874:164;44803:40;44764:187;;;44873:2;-1:-1:-1;;;;;44865:10:0;:4;-1:-1:-1;;;;;44865:10:0;;44861:90;;44892:47;44925:4;44931:7;44892:32;:47::i;:::-;-1:-1:-1;;;;;44965:16:0;;44961:183;;44998:45;45035:7;44998:36;:45::i;44961:183::-;45071:4;-1:-1:-1;;;;;45065:10:0;:2;-1:-1:-1;;;;;45065:10:0;;45061:83;;45092:40;45120:2;45124:7;45092:27;:40::i;40537:803::-;40692:4;-1:-1:-1;;;;;40713:13:0;;10014:20;10062:8;40709:624;;40749:72;;-1:-1:-1;;;40749:72:0;;-1:-1:-1;;;;;40749:36:0;;;;;:72;;26290:10;;40800:4;;40806:7;;40815:5;;40749:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40749:72:0;;;;;;;;-1:-1:-1;;40749:72:0;;;;;;;;;;;;:::i;:::-;;;40745:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40995:13:0;;40991:272;;41038:60;;-1:-1:-1;;;41038:60:0;;;;;;;:::i;40991:272::-;41213:6;41207:13;41198:6;41194:2;41190:15;41183:38;40745:533;-1:-1:-1;;;;;;40872:55:0;-1:-1:-1;;;40872:55:0;;-1:-1:-1;40865:62:0;;40709:624;-1:-1:-1;41317:4:0;40537:803;;;;;;:::o;37794:382::-;-1:-1:-1;;;;;37874:16:0;;37866:61;;;;-1:-1:-1;;;37866:61:0;;13267:2:1;37866:61:0;;;13249:21:1;;;13286:18;;;13279:30;13345:34;13325:18;;;13318:62;13397:18;;37866:61:0;13065:356:1;37866:61:0;35881:4;35905:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35905:16:0;:30;37938:58;;;;-1:-1:-1;;;37938:58:0;;9093:2:1;37938:58:0;;;9075:21:1;9132:2;9112:18;;;9105:30;9171;9151:18;;;9144:58;9219:18;;37938:58:0;8891:352:1;37938:58:0;38009:45;38038:1;38042:2;38046:7;38009:20;:45::i;:::-;-1:-1:-1;;;;;38067:13:0;;;;;;:9;:13;;;;;:18;;38084:1;;38067:13;:18;;38084:1;;38067:18;:::i;:::-;;;;-1:-1:-1;;38096:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38096:21:0;-1:-1:-1;;;;;38096:21:0;;;;;;;;38135:33;;38096:16;;;38135:33;;38096:16;;38135:33;37794:382;;:::o;46665:988::-;46931:22;46981:1;46956:22;46973:4;46956:16;:22::i;:::-;:26;;;;:::i;:::-;46993:18;47014:26;;;:17;:26;;;;;;46931:51;;-1:-1:-1;47147:28:0;;;47143:328;;-1:-1:-1;;;;;47214:18:0;;47192:19;47214:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47265:30;;;;;;:44;;;47382:30;;:17;:30;;;;;:43;;;47143:328;-1:-1:-1;47567:26:0;;;;:17;:26;;;;;;;;47560:33;;;-1:-1:-1;;;;;47611:18:0;;;;;:12;:18;;;;;:34;;;;;;;47604:41;46665:988::o;47948:1079::-;48226:10;:17;48201:22;;48226:21;;48246:1;;48226:21;:::i;:::-;48258:18;48279:24;;;:15;:24;;;;;;48652:10;:26;;48201:46;;-1:-1:-1;48279:24:0;;48201:46;;48652:26;;;;;;:::i;:::-;;;;;;;;;48630:48;;48716:11;48691:10;48702;48691:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48796:28;;;:15;:28;;;;;;;:41;;;48968:24;;;;;48961:31;49003:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48019:1008;;;47948:1079;:::o;45452:221::-;45537:14;45554:20;45571:2;45554:16;:20::i;:::-;-1:-1:-1;;;;;45585:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45630:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45452:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5481:632::-;5652:2;5704:21;;;5774:13;;5677:18;;;5796:22;;;5623:4;;5652:2;5875:15;;;;5849:2;5834:18;;;5623:4;5918:169;5932:6;5929:1;5926:13;5918:169;;;5993:13;;5981:26;;6062:15;;;;6027:12;;;;5954:1;5947:9;5918:169;;;-1:-1:-1;6104:3:1;;5481:632;-1:-1:-1;;;;;;5481:632:1:o;6310:219::-;6459:2;6448:9;6441:21;6422:4;6479:44;6519:2;6508:9;6504:18;6496:6;6479:44;:::i;6885:415::-;7087:2;7069:21;;;7126:2;7106:18;;;7099:30;7165:34;7160:2;7145:18;;7138:62;-1:-1:-1;;;7231:2:1;7216:18;;7209:49;7290:3;7275:19;;6885:415::o;8065:414::-;8267:2;8249:21;;;8306:2;8286:18;;;8279:30;8345:34;8340:2;8325:18;;8318:62;-1:-1:-1;;;8411:2:1;8396:18;;8389:48;8469:3;8454:19;;8065:414::o;12014:353::-;12216:2;12198:21;;;12255:2;12235:18;;;12228:30;12294:31;12289:2;12274:18;;12267:59;12358:2;12343:18;;12014:353::o;13426:397::-;13628:2;13610:21;;;13667:2;13647:18;;;13640:30;13706:34;13701:2;13686:18;;13679:62;-1:-1:-1;;;13772:2:1;13757:18;;13750:31;13813:3;13798:19;;13426:397::o;14241:356::-;14443:2;14425:21;;;14462:18;;;14455:30;14521:34;14516:2;14501:18;;14494:62;14588:2;14573:18;;14241:356::o;14602:402::-;14804:2;14786:21;;;14843:2;14823:18;;;14816:30;14882:34;14877:2;14862:18;;14855:62;-1:-1:-1;;;14948:2:1;14933:18;;14926:36;14994:3;14979:19;;14602:402::o;16582:413::-;16784:2;16766:21;;;16823:2;16803:18;;;16796:30;16862:34;16857:2;16842:18;;16835:62;-1:-1:-1;;;16928:2:1;16913:18;;16906:47;16985:3;16970:19;;16582:413::o;17760:356::-;17962:2;17944:21;;;17981:18;;;17974:30;18040:34;18035:2;18020:18;;18013:62;18107:2;18092:18;;17760:356::o;18303:128::-;18343:3;18374:1;18370:6;18367:1;18364:13;18361:39;;;18380:18;;:::i;:::-;-1:-1:-1;18416:9:1;;18303:128::o;18436:120::-;18476:1;18502;18492:35;;18507:18;;:::i;:::-;-1:-1:-1;18541:9:1;;18436:120::o;18561:168::-;18601:7;18667:1;18663;18659:6;18655:14;18652:1;18649:21;18644:1;18637:9;18630:17;18626:45;18623:71;;;18674:18;;:::i;:::-;-1:-1:-1;18714:9:1;;18561:168::o;18734:125::-;18774:4;18802:1;18799;18796:8;18793:34;;;18807:18;;:::i;:::-;-1:-1:-1;18844:9:1;;18734:125::o;18864:258::-;18936:1;18946:113;18960:6;18957:1;18954:13;18946:113;;;19036:11;;;19030:18;19017:11;;;19010:39;18982:2;18975:10;18946:113;;;19077:6;19074:1;19071:13;19068:48;;;-1:-1:-1;;19112:1:1;19094:16;;19087:27;18864:258::o;19127:136::-;19166:3;19194:5;19184:39;;19203:18;;:::i;:::-;-1:-1:-1;;;19239:18:1;;19127:136::o;19268:380::-;19347:1;19343:12;;;;19390;;;19411:61;;19465:4;19457:6;19453:17;19443:27;;19411:61;19518:2;19510:6;19507:14;19487:18;19484:38;19481:161;;;19564:10;19559:3;19555:20;19552:1;19545:31;19599:4;19596:1;19589:15;19627:4;19624:1;19617:15;19481:161;;19268:380;;;:::o;19653:135::-;19692:3;-1:-1:-1;;19713:17:1;;19710:43;;;19733:18;;:::i;:::-;-1:-1:-1;19780:1:1;19769:13;;19653:135::o;19793:112::-;19825:1;19851;19841:35;;19856:18;;:::i;:::-;-1:-1:-1;19890:9:1;;19793:112::o;19910:127::-;19971:10;19966:3;19962:20;19959:1;19952:31;20002:4;19999:1;19992:15;20026:4;20023:1;20016:15;20042:127;20103:10;20098:3;20094:20;20091:1;20084:31;20134:4;20131:1;20124:15;20158:4;20155:1;20148:15;20174:127;20235:10;20230:3;20226:20;20223:1;20216:31;20266:4;20263:1;20256:15;20290:4;20287:1;20280:15;20306:127;20367:10;20362:3;20358:20;20355:1;20348:31;20398:4;20395:1;20388:15;20422:4;20419:1;20412:15;20438:127;20499:10;20494:3;20490:20;20487:1;20480:31;20530:4;20527:1;20520:15;20554:4;20551:1;20544:15;20570:131;-1:-1:-1;;;;;;20644:32:1;;20634:43;;20624:71;;20691:1;20688;20681:12

Swarm Source

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