ETH Price: $3,491.10 (+2.11%)
Gas: 12 Gwei

Token

Royalty Black Card (RBC)
 

Overview

Max Total Supply

1,941 RBC

Holders

413

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mdrfkr.eth
Balance
7 RBC
0x60314c86b99a2a108e5097fc2688aa1e3c30be30
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:
Royalty_Black_Card

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 Royalty_Black_Card  is ERC721Enumerable, Ownable
{

    uint public constant _TOTALSUPPLY =7777;
    uint public constant EarlyMembersNFTs_Suppply = 222;
   uint256 public EarlyMembersNFTs_counter=0;
    
    uint private constant mint_quantity= 500;
    uint public mint_price= 0.07 ether;
    uint public wl_mint_price =0.3 ether;
    uint public Early_Members_price = 0.145 ether;


    bool public ismintPaused = true;
    bool public Early_Members_sale = true;

    using SafeMath for uint256;
    using Strings for uint256;
    string private _uriBeforeRevel;

    uint public maxQuantity =10;
    uint public reserve = 100;
    uint public tokenId=1;
    mapping(address => bool) private __whiteList;

    bool public isPresale_mintPaused = true;
    bool public _revelNFT = false;
    // string private _contractURI="https://gateway.pinata.cloud/ipfs/QmYMRCoUvwEPn46RdKsbrDHU9Ts29HLVBpqJ9UoTFMc2a7/contract%20level%20metadata.json";
    string private _contractURI="https://royaltyblackcard.mypinata.cloud/ipfs/QmdF7SjNmJmtcbuS575NvgaXXTFhBaFd2QsqPDV9AquLA7";


 constructor() ERC721("Royalty Black Card", "RBC")  {
    _uriBeforeRevel = "https://royaltyblackcard.mypinata.cloud/ipfs/QmSRjE5UevSvgYeLqkegfG8jKESFJD3ChBy3N1maUVWGfo";
    contractURI();
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
    function setcontractURI(string memory baseuri) public onlyOwner{
        _contractURI = baseuri;
    }
    
 function setUriBeforeRevel (string memory u) public onlyOwner {
    _uriBeforeRevel = u;
    }
    
    function Change_Mint_Price(uint mintprice) public onlyOwner{
        mint_price=mintprice;
    }
     function Change_Presale_Mint_Price(uint mintprice) public onlyOwner{
        wl_mint_price=mintprice;
    }
     function Change_EarlyBirdMint_Price(uint mintprice) public onlyOwner{
        Early_Members_price=mintprice;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }
   function getearlymintprice() public view returns(uint256){
        return Early_Members_price;
    }
    
    function getmintprice() public view returns(uint256){
        return mint_price;
    }
    function getwlprice() public view returns(uint256){
        return wl_mint_price;
    }

     function airdrop(address a, uint q)public onlyOwner{
        for (uint i = 0; i < q; i++) {
                _safeMint(a, totalsupply());
                tokenId++;
                }
  }

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

     function setReserveTokens(uint256 _quantity) public onlyOwner {
        reserve=_quantity;
    }



    modifier isSaleOpen{
        require(totalSupply() < _TOTALSUPPLY, "Sale end");
        _;
    }

     function flip_early_members_sale() public onlyOwner {
        Early_Members_sale = !Early_Members_sale;
    }

    function flipmintStatus() public onlyOwner {
        ismintPaused = !ismintPaused;
    }
    function flipPresale_mintStatus() public onlyOwner {
        isPresale_mintPaused = !isPresale_mintPaused;
    }

    

     function reserveTokens(uint quantity) public onlyOwner {
        require(quantity <= reserve, "The quantity exceeds the reserve.");
        reserve -= quantity;
        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender,totalsupply());
            tokenId++;
        }
    }
    
  
    function tokenURI(uint256 tokenId) public
     view virtual override returns (string memory) 
    {
    require(_exists(tokenId)," URI query for nonexistent token");
    if(_revelNFT){
    string memory baseURI = _baseURI;
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
    } else{
      return _uriBeforeRevel;
    }
  }
    function changeRevelStatus() external onlyOwner {
      _revelNFT = !_revelNFT;
     }

    function Presale_mint(uint chosenAmount) public payable isSaleOpen{

                require(isWhiteListed(_msgSender()), "Not whitelisted");
                require(isPresale_mintPaused == false,"Pre sale not active");            
                require(totalSupply()+chosenAmount<=_TOTALSUPPLY-reserve,"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(wl_mint_price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
                
                for (uint i = 0; i < chosenAmount; i++) {
                _safeMint(msg.sender, totalsupply());
                tokenId++;
                }
    }

    function Early_mint(uint chosenAmount) public payable isSaleOpen{
            require(isWhiteListed(_msgSender()), "Not included whitelisted");
            require(Early_Members_sale == false,"Public sale not active");   
            require(EarlyMembersNFTs_counter<=220,"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(Early_Members_price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
            
            for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
                            tokenId++;

            EarlyMembersNFTs_counter++;
            }

    }

    function mint(uint chosenAmount) public payable isSaleOpen{
            require(ismintPaused == false,"Public sale not active");   
            require(totalSupply()+chosenAmount<=_TOTALSUPPLY-reserve,"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(mint_price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
            
            for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            }

    }
    
 
    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 isWhiteListed(address address_) public view returns (bool) {
        return __whiteList[address_] == true;
    }

    function addToWhiteList(address address_) public onlyOwner {
        if (!isWhiteListed(address_)) {
            __whiteList[address_] = true;
        }
    }
    function addWhiteList(address[] memory addresses_) public onlyOwner {
        uint256 length = addresses_.length;
        for (uint256 i = 0; i < length; i++) {
            if (!isWhiteListed(addresses_[i])) {
                __whiteList[addresses_[i]] = true;
            }
        }
    }

    function Bitcoin_payout(uint256 amount, uint256 id) public onlyOwner{  // Single_payout
        address ownerofid= ownerOf(id);
        payable(ownerofid).transfer(amount);
    }

    function reimbursment_passive_income(uint256 Newam) public onlyOwner{ //allpayout 
        uint256 numberofowners= tokenId;
        uint256 NewBalance = Newam / numberofowners;

        for(uint i=1; i<numberofowners;i++){
            address ownerofid= ownerOf(i);
            payable(ownerofid).transfer(NewBalance);
        }
    }

    function Multiple_Payout(uint256[] memory ids, uint256 _balance) public onlyOwner{ // reimbursment 
        uint256 len = ids.length;
        uint256 totalbalance= _balance*len;
        require(address(this).balance >= totalbalance, "eth must be less than or equal to total balance");
        // uint256 NewBal= _balance/len;
            // Something has been changed now only balance is to be transfered to that person
        for (uint i=0;i<len;i++){
            uint256 _ids = ids[i];
            address addofowner = ownerOf(_ids);

            payable(addofowner).transfer(_balance);
        }
    }

    function deposit() public payable{
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function totalsupply() private view returns (uint)
    {
        return tokenId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"Bitcoin_payout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintprice","type":"uint256"}],"name":"Change_EarlyBirdMint_Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintprice","type":"uint256"}],"name":"Change_Mint_Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintprice","type":"uint256"}],"name":"Change_Presale_Mint_Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"EarlyMembersNFTs_Suppply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EarlyMembersNFTs_counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Early_Members_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Early_Members_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"Early_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"Multiple_Payout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"Presale_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_TOTALSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revelNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"uint256","name":"q","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"changeRevelStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipPresale_mintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flip_early_members_sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipmintStatus","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":[],"name":"getearlymintprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getmintprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getwlprice","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":"isPresale_mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ismintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint_price","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":"uint256","name":"Newam","type":"uint256"}],"name":"reimbursment_passive_income","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMaxxQtPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setReserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"u","type":"string"}],"name":"setUriBeforeRevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri","type":"string"}],"name":"setcontractURI","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":[],"name":"tokenId","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":"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"},{"inputs":[],"name":"wl_mint_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6000600c5566f8b0a10e470000600d55670429d069189e0000600e5567020324bb546e8000600f556010805461ff001960ff1991821660019081178216610100908117909455600a601255606460135560148190556016805490931617169055604052605b60808181529062003acd60a0398051620000879160179160209091019062000244565b503480156200009557600080fd5b506040805180820182526012815271149bde585b1d1e48109b1858dac810d85c9960721b60208083019182528351808501909452600384526252424360e81b908401528151919291620000eb9160009162000244565b5080516200010190600190602084019062000244565b505050600062000116620001a660201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040518060800160405280605b815260200162003b28605b91398051620001949160119160209091019062000244565b506200019f620001aa565b5062000327565b3390565b606060178054620001bb90620002ea565b80601f0160208091040260200160405190810160405280929190818152602001828054620001e990620002ea565b80156200023a5780601f106200020e576101008083540402835291602001916200023a565b820191906000526020600020905b8154815290600101906020018083116200021c57829003601f168201915b5050505050905090565b8280546200025290620002ea565b90600052602060002090601f016020900481019282620002765760008555620002c1565b82601f106200029157805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c1578251825591602001919060010190620002a4565b50620002cf929150620002d3565b5090565b5b80821115620002cf5760008155600101620002d4565b600281046001821680620002ff57607f821691505b602082108114156200032157634e487b7160e01b600052602260045260246000fd5b50919050565b61379680620003376000396000f3fe6080604052600436106103ac5760003560e01c80636f9170f6116101e7578063bcad12cc1161010d578063d8d42bd9116100a0578063e8a3d4851161006f578063e8a3d485146109e0578063e985e9c5146109f5578063efa00ce714610a15578063f2fde38b14610a35576103ac565b8063d8d42bd914610981578063db4568e214610996578063e3c875b2146109ab578063e640cf7d146109cb576103ac565b8063d031370b116100dc578063d031370b14610919578063d0e30db014610939578063d0e7079514610941578063d194a9f914610961576103ac565b8063bcad12cc146108bc578063bd0a8439146108cf578063c87b56dd146108e4578063cd3293de14610904576103ac565b80638da5cb5b11610185578063a22cb46511610154578063a22cb46514610852578063aabd482014610872578063b390d81d14610887578063b88d4fde1461089c576103ac565b80638da5cb5b146107f557806395d89b411461080a5780639d38fd211461081f578063a0712d681461083f576103ac565b80638462151c116101c15780638462151c1461078057806386ab756d146107ad5780638745d7da146107c25780638ba4cc3c146107d5576103ac565b80636f9170f61461072b57806370a082311461074b578063743976a01461076b576103ac565b806342842e0e116102d75780635cd328eb1161026a5780636352211e116102395780636352211e146106b65780636417d962146106d657806369687f77146106f65780636a44e1731461070b576103ac565b80635cd328eb146106575780635e1045ec1461066c5780635fea6cdb1461068c57806362c6f7b9146106a1576103ac565b80634f6ccce7116102a65780634f6ccce7146105ed57806355f804b31461060d578063581a7d271461062d578063590d3f0814610642576103ac565b806342842e0e1461057857806347ee039414610598578063480078b5146105b85780634d2f7529146105d8576103ac565b806318160ddd1161034f5780632f02e7411161031e5780632f02e741146105035780632f745c59146105235780633b3191f3146105435780633ccfd60b14610563576103ac565b806318160ddd146104a45780631a4231a4146104b95780631c4df70e146104ce57806323b872dd146104e3576103ac565b8063081812fc1161038b578063081812fc14610420578063095ea7b31461044d5780630ee7f2761461046d57806317d70f7c1461048f576103ac565b8062744b6a146103b157806301ffc9a7146103c857806306fdde03146103fe575b600080fd5b3480156103bd57600080fd5b506103c6610a55565b005b3480156103d457600080fd5b506103e86103e3366004612c91565b610ab1565b6040516103f59190612e38565b60405180910390f35b34801561040a57600080fd5b50610413610ade565b6040516103f59190612e43565b34801561042c57600080fd5b5061044061043b366004612d0f565b610b70565b6040516103f59190612da3565b34801561045957600080fd5b506103c6610468366004612b36565b610bb3565b34801561047957600080fd5b50610482610c4b565b6040516103f591906135b9565b34801561049b57600080fd5b50610482610c51565b3480156104b057600080fd5b50610482610c57565b3480156104c557600080fd5b50610482610c5d565b3480156104da57600080fd5b50610482610c63565b3480156104ef57600080fd5b506103c66104fe366004612a48565b610c69565b34801561050f57600080fd5b506103c661051e366004612d0f565b610ca1565b34801561052f57600080fd5b5061048261053e366004612b36565b610ce5565b34801561054f57600080fd5b506103c661055e366004612d27565b610d37565b34801561056f57600080fd5b506103c6610dc0565b34801561058457600080fd5b506103c6610593366004612a48565b610e32565b3480156105a457600080fd5b506103c66105b33660046129fc565b610e4d565b3480156105c457600080fd5b506103c66105d3366004612d0f565b610ec0565b3480156105e457600080fd5b506103c6610f74565b3480156105f957600080fd5b50610482610608366004612d0f565b610fc7565b34801561061957600080fd5b506103c6610628366004612cc9565b611022565b34801561063957600080fd5b50610482611074565b34801561064e57600080fd5b5061048261107a565b34801561066357600080fd5b506103c6611080565b34801561067857600080fd5b506103c6610687366004612b5f565b6110dc565b34801561069857600080fd5b506104826111d4565b3480156106ad57600080fd5b506103e86111d9565b3480156106c257600080fd5b506104406106d1366004612d0f565b6111e7565b3480156106e257600080fd5b506103c66106f1366004612d0f565b61121c565b34801561070257600080fd5b506103e8611260565b34801561071757600080fd5b506103c6610726366004612d0f565b611269565b34801561073757600080fd5b506103e86107463660046129fc565b6112ad565b34801561075757600080fd5b506104826107663660046129fc565b6112d0565b34801561077757600080fd5b50610413611314565b34801561078c57600080fd5b506107a061079b3660046129fc565b6113a2565b6040516103f59190612df4565b3480156107b957600080fd5b506103e8611460565b6103c66107d0366004612d0f565b611469565b3480156107e157600080fd5b506103c66107f0366004612b36565b6115ca565b34801561080157600080fd5b50610440611648565b34801561081657600080fd5b50610413611657565b34801561082b57600080fd5b506103c661083a366004612d0f565b611666565b6103c661084d366004612d0f565b6116aa565b34801561085e57600080fd5b506103c661086d366004612afc565b6117e2565b34801561087e57600080fd5b506104826118b0565b34801561089357600080fd5b506103e86118b6565b3480156108a857600080fd5b506103c66108b7366004612a83565b6118c4565b6103c66108ca366004612d0f565b6118fd565b3480156108db57600080fd5b506103c6611a5c565b3480156108f057600080fd5b506104136108ff366004612d0f565b611ab8565b34801561091057600080fd5b50610482611c61565b34801561092557600080fd5b506103c6610934366004612d0f565b611c67565b6103c6611d1f565b34801561094d57600080fd5b506103c661095c366004612cc9565b611d21565b34801561096d57600080fd5b506103c661097c366004612d0f565b611d73565b34801561098d57600080fd5b50610482611db7565b3480156109a257600080fd5b50610482611dbd565b3480156109b757600080fd5b506103c66109c6366004612bfb565b611dc3565b3480156109d757600080fd5b50610482611eca565b3480156109ec57600080fd5b50610413611ed0565b348015610a0157600080fd5b506103e8610a10366004612a16565b611edf565b348015610a2157600080fd5b506103c6610a30366004612cc9565b611f0d565b348015610a4157600080fd5b506103c6610a503660046129fc565b611f5f565b610a5d611fcd565b6001600160a01b0316610a6e611648565b6001600160a01b031614610a9d5760405162461bcd60e51b8152600401610a949061335c565b60405180910390fd5b6016805460ff19811660ff90911615179055565b60006001600160e01b0319821663780e9d6360e01b1480610ad65750610ad682611fd1565b90505b919050565b606060008054610aed9061369e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b199061369e565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b7b82612011565b610b975760405162461bcd60e51b8152600401610a94906132e0565b506000908152600460205260409020546001600160a01b031690565b6000610bbe826111e7565b9050806001600160a01b0316836001600160a01b03161415610bf25760405162461bcd60e51b8152600401610a94906134db565b806001600160a01b0316610c04611fcd565b6001600160a01b03161480610c205750610c2081610a10611fcd565b610c3c5760405162461bcd60e51b8152600401610a94906130f8565b610c46838361202e565b505050565b600e5490565b60145481565b60095490565b600d5481565b600e5481565b610c7a610c74611fcd565b8261209c565b610c965760405162461bcd60e51b8152600401610a949061351c565b610c46838383612121565b610ca9611fcd565b6001600160a01b0316610cba611648565b6001600160a01b031614610ce05760405162461bcd60e51b8152600401610a949061335c565b600d55565b6000610cf0836112d0565b8210610d0e5760405162461bcd60e51b8152600401610a9490612ea9565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610d3f611fcd565b6001600160a01b0316610d50611648565b6001600160a01b031614610d765760405162461bcd60e51b8152600401610a949061335c565b6000610d81826111e7565b6040519091506001600160a01b0382169084156108fc029085906000818181858888f19350505050158015610dba573d6000803e3d6000fd5b50505050565b610dc8611fcd565b6001600160a01b0316610dd9611648565b6001600160a01b031614610dff5760405162461bcd60e51b8152600401610a949061335c565b6040514790339082156108fc029083906000818181858888f19350505050158015610e2e573d6000803e3d6000fd5b5050565b610c46838383604051806020016040528060008152506118c4565b610e55611fcd565b6001600160a01b0316610e66611648565b6001600160a01b031614610e8c5760405162461bcd60e51b8152600401610a949061335c565b610e95816112ad565b610ebd576001600160a01b0381166000908152601560205260409020805460ff191660011790555b50565b610ec8611fcd565b6001600160a01b0316610ed9611648565b6001600160a01b031614610eff5760405162461bcd60e51b8152600401610a949061335c565b6014546000610f0e8284613628565b905060015b82811015610dba576000610f26826111e7565b6040519091506001600160a01b0382169084156108fc029085906000818181858888f19350505050158015610f5f573d6000803e3d6000fd5b50508080610f6c906136d9565b915050610f13565b610f7c611fcd565b6001600160a01b0316610f8d611648565b6001600160a01b031614610fb35760405162461bcd60e51b8152600401610a949061335c565b6010805460ff19811660ff90911615179055565b6000610fd1610c57565b8210610fef5760405162461bcd60e51b8152600401610a949061356d565b6009828154811061101057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61102a611fcd565b6001600160a01b031661103b611648565b6001600160a01b0316146110615760405162461bcd60e51b8152600401610a949061335c565b8051610e2e9060069060208401906128f4565b600f5490565b600c5481565b611088611fcd565b6001600160a01b0316611099611648565b6001600160a01b0316146110bf5760405162461bcd60e51b8152600401610a949061335c565b6010805461ff001981166101009182900460ff1615909102179055565b6110e4611fcd565b6001600160a01b03166110f5611648565b6001600160a01b03161461111b5760405162461bcd60e51b8152600401610a949061335c565b805160005b81811015610c465761115883828151811061114b57634e487b7160e01b600052603260045260246000fd5b60200260200101516112ad565b6111c25760016015600085848151811061118257634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b806111cc816136d9565b915050611120565b60de81565b601654610100900460ff1681565b6000818152600260205260408120546001600160a01b031680610ad65760405162461bcd60e51b8152600401610a94906131c8565b611224611fcd565b6001600160a01b0316611235611648565b6001600160a01b03161461125b5760405162461bcd60e51b8152600401610a949061335c565b600e55565b60105460ff1681565b611271611fcd565b6001600160a01b0316611282611648565b6001600160a01b0316146112a85760405162461bcd60e51b8152600401610a949061335c565b601355565b6001600160a01b031660009081526015602052604090205460ff16151560011490565b60006001600160a01b0382166112f85760405162461bcd60e51b8152600401610a949061317e565b506001600160a01b031660009081526003602052604090205490565b600680546113219061369e565b80601f016020809104026020016040519081016040528092919081815260200182805461134d9061369e565b801561139a5780601f1061136f5761010080835404028352916020019161139a565b820191906000526020600020905b81548152906001019060200180831161137d57829003601f168201915b505050505081565b606060006113af836112d0565b905060008167ffffffffffffffff8111156113da57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611403578160200160208202803683370190505b50905060005b828110156114585761141b8582610ce5565b82828151811061143b57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611450816136d9565b915050611409565b509392505050565b60165460ff1681565b611e61611474610c57565b106114915760405162461bcd60e51b8152600401610a949061327d565b61149c610746611fcd565b6114b85760405162461bcd60e51b8152600401610a94906133d7565b601054610100900460ff16156114e05760405162461bcd60e51b8152600401610a949061332c565b60dc600c5411156115035760405162461bcd60e51b8152600401610a9490613391565b600081116115235760405162461bcd60e51b8152600401610a9490612e56565b6012548111156115455760405162461bcd60e51b8152600401610a949061329f565b600f543490611554908361224e565b146115715760405162461bcd60e51b8152600401610a9490613211565b60005b81811015610e2e5761158d33611588612261565b612267565b6014805490600061159d836136d9565b9091555050600c80549060006115b2836136d9565b919050555080806115c2906136d9565b915050611574565b6115d2611fcd565b6001600160a01b03166115e3611648565b6001600160a01b0316146116095760405162461bcd60e51b8152600401610a949061335c565b60005b81811015610c465761162083611588612261565b60148054906000611630836136d9565b91905055508080611640906136d9565b91505061160c565b600b546001600160a01b031690565b606060018054610aed9061369e565b61166e611fcd565b6001600160a01b031661167f611648565b6001600160a01b0316146116a55760405162461bcd60e51b8152600401610a949061335c565b601255565b611e616116b5610c57565b106116d25760405162461bcd60e51b8152600401610a949061327d565b60105460ff16156116f55760405162461bcd60e51b8152600401610a949061332c565b60135461170490611e6161365b565b8161170d610c57565b6117179190613610565b11156117355760405162461bcd60e51b8152600401610a9490613391565b600081116117555760405162461bcd60e51b8152600401610a9490612e56565b6012548111156117775760405162461bcd60e51b8152600401610a949061329f565b600d543490611786908361224e565b146117a35760405162461bcd60e51b8152600401610a9490613211565b60005b81811015610e2e576117ba33611588612261565b601480549060006117ca836136d9565b919050555080806117da906136d9565b9150506117a6565b6117ea611fcd565b6001600160a01b0316826001600160a01b0316141561181b5760405162461bcd60e51b8152600401610a9490613075565b8060056000611828611fcd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561186c611fcd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a49190612e38565b60405180910390a35050565b600d5490565b601054610100900460ff1681565b6118d56118cf611fcd565b8361209c565b6118f15760405162461bcd60e51b8152600401610a949061351c565b610dba84848484612281565b611e61611908610c57565b106119255760405162461bcd60e51b8152600401610a949061327d565b611930610746611fcd565b61194c5760405162461bcd60e51b8152600401610a9490613155565b60165460ff161561196f5760405162461bcd60e51b8152600401610a9490612fc3565b60135461197e90611e6161365b565b81611987610c57565b6119919190613610565b11156119af5760405162461bcd60e51b8152600401610a9490613391565b600081116119cf5760405162461bcd60e51b8152600401610a9490612e56565b6012548111156119f15760405162461bcd60e51b8152600401610a949061329f565b600e543490611a00908361224e565b14611a1d5760405162461bcd60e51b8152600401610a9490613211565b60005b81811015610e2e57611a3433611588612261565b60148054906000611a44836136d9565b91905055508080611a54906136d9565b915050611a20565b611a64611fcd565b6001600160a01b0316611a75611648565b6001600160a01b031614611a9b5760405162461bcd60e51b8152600401610a949061335c565b6016805461ff001981166101009182900460ff1615909102179055565b6060611ac382612011565b611adf5760405162461bcd60e51b8152600401610a94906134a6565b601654610100900460ff1615611bcf57600060068054611afe9061369e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2a9061369e565b8015611b775780601f10611b4c57610100808354040283529160200191611b77565b820191906000526020600020905b815481529060010190602001808311611b5a57829003601f168201915b505050505090506000815111611b9c5760405180602001604052806000815250611bc7565b80611ba6846122b4565b604051602001611bb7929190612d74565b6040516020818303038152906040525b915050610ad9565b60118054611bdc9061369e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c089061369e565b8015611c555780601f10611c2a57610100808354040283529160200191611c55565b820191906000526020600020905b815481529060010190602001808311611c3857829003601f168201915b50505050509050610ad9565b60135481565b611c6f611fcd565b6001600160a01b0316611c80611648565b6001600160a01b031614611ca65760405162461bcd60e51b8152600401610a949061335c565b601354811115611cc85760405162461bcd60e51b8152600401610a9490612ff0565b8060136000828254611cda919061365b565b90915550600090505b81811015610e2e57611cf733611588612261565b60148054906000611d07836136d9565b91905055508080611d17906136d9565b915050611ce3565b565b611d29611fcd565b6001600160a01b0316611d3a611648565b6001600160a01b031614611d605760405162461bcd60e51b8152600401610a949061335c565b8051610e2e9060119060208401906128f4565b611d7b611fcd565b6001600160a01b0316611d8c611648565b6001600160a01b031614611db25760405162461bcd60e51b8152600401610a949061335c565b600f55565b600f5481565b611e6181565b611dcb611fcd565b6001600160a01b0316611ddc611648565b6001600160a01b031614611e025760405162461bcd60e51b8152600401610a949061335c565b81516000611e10828461363c565b905080471015611e325760405162461bcd60e51b8152600401610a949061340e565b60005b82811015611ec3576000858281518110611e5f57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000611e74826111e7565b6040519091506001600160a01b0382169087156108fc029088906000818181858888f19350505050158015611ead573d6000803e3d6000fd5b5050508080611ebb906136d9565b915050611e35565b5050505050565b60125481565b606060178054610aed9061369e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611f15611fcd565b6001600160a01b0316611f26611648565b6001600160a01b031614611f4c5760405162461bcd60e51b8152600401610a949061335c565b8051610e2e9060179060208401906128f4565b611f67611fcd565b6001600160a01b0316611f78611648565b6001600160a01b031614611f9e5760405162461bcd60e51b8152600401610a949061335c565b6001600160a01b038116611fc45760405162461bcd60e51b8152600401610a9490612f46565b610ebd816123cf565b3390565b60006001600160e01b031982166380ac58cd60e01b148061200257506001600160e01b03198216635b5e139f60e01b145b80610ad65750610ad682612421565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612063826111e7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120a782612011565b6120c35760405162461bcd60e51b8152600401610a94906130ac565b60006120ce836111e7565b9050806001600160a01b0316846001600160a01b031614806121095750836001600160a01b03166120fe84610b70565b6001600160a01b0316145b8061211957506121198185611edf565b949350505050565b826001600160a01b0316612134826111e7565b6001600160a01b03161461215a5760405162461bcd60e51b8152600401610a949061345d565b6001600160a01b0382166121805760405162461bcd60e51b8152600401610a9490613031565b61218b83838361243a565b61219660008261202e565b6001600160a01b03831660009081526003602052604081208054600192906121bf90849061365b565b90915550506001600160a01b03821660009081526003602052604081208054600192906121ed908490613610565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061225a828461363c565b9392505050565b60145490565b610e2e8282604051806020016040528060008152506124c3565b61228c848484612121565b612298848484846124f6565b610dba5760405162461bcd60e51b8152600401610a9490612ef4565b6060816122d957506040805180820190915260018152600360fc1b6020820152610ad9565b8160005b811561230357806122ed816136d9565b91506122fc9050600a83613628565b91506122dd565b60008167ffffffffffffffff81111561232c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612356576020820181803683370190505b5090505b84156121195761236b60018361365b565b9150612378600a866136f4565b612383906030613610565b60f81b8183815181106123a657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506123c8600a86613628565b945061235a565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160e01b031981166301ffc9a760e01b14919050565b612445838383610c46565b6001600160a01b0383166124615761245c81612611565b612484565b816001600160a01b0316836001600160a01b031614612484576124848382612655565b6001600160a01b0382166124a05761249b816126f2565b610c46565b826001600160a01b0316826001600160a01b031614610c4657610c4682826127cb565b6124cd838361280f565b6124da60008484846124f6565b610c465760405162461bcd60e51b8152600401610a9490612ef4565b600061250a846001600160a01b03166128ee565b1561260657836001600160a01b031663150b7a02612526611fcd565b8786866040518563ffffffff1660e01b81526004016125489493929190612db7565b602060405180830381600087803b15801561256257600080fd5b505af1925050508015612592575060408051601f3d908101601f1916820190925261258f91810190612cad565b60015b6125ec573d8080156125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b5080516125e45760405162461bcd60e51b8152600401610a9490612ef4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612119565b506001949350505050565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001612662846112d0565b61266c919061365b565b6000838152600860205260409020549091508082146126bf576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906127049060019061365b565b6000838152600a60205260408120546009805493945090928490811061273a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061276957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806127af57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127d6836112d0565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166128355760405162461bcd60e51b8152600401610a9490613248565b61283e81612011565b1561285b5760405162461bcd60e51b8152600401610a9490612f8c565b6128676000838361243a565b6001600160a01b0382166000908152600360205260408120805460019290612890908490613610565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546129009061369e565b90600052602060002090601f0160209004810192826129225760008555612968565b82601f1061293b57805160ff1916838001178555612968565b82800160010185558215612968579182015b8281111561296857825182559160200191906001019061294d565b50612974929150612978565b5090565b5b808211156129745760008155600101612979565b600067ffffffffffffffff8311156129a7576129a7613734565b6129ba601f8401601f19166020016135c2565b90508281528383830111156129ce57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610ad957600080fd5b600060208284031215612a0d578081fd5b61225a826129e5565b60008060408385031215612a28578081fd5b612a31836129e5565b9150612a3f602084016129e5565b90509250929050565b600080600060608486031215612a5c578081fd5b612a65846129e5565b9250612a73602085016129e5565b9150604084013590509250925092565b60008060008060808587031215612a98578081fd5b612aa1856129e5565b9350612aaf602086016129e5565b925060408501359150606085013567ffffffffffffffff811115612ad1578182fd5b8501601f81018713612ae1578182fd5b612af08782356020840161298d565b91505092959194509250565b60008060408385031215612b0e578182fd5b612b17836129e5565b915060208301358015158114612b2b578182fd5b809150509250929050565b60008060408385031215612b48578182fd5b612b51836129e5565b946020939093013593505050565b60006020808385031215612b71578182fd5b823567ffffffffffffffff811115612b87578283fd5b8301601f81018513612b97578283fd5b8035612baa612ba5826135ec565b6135c2565b8181528381019083850185840285018601891015612bc6578687fd5b8694505b83851015612bef57612bdb816129e5565b835260019490940193918501918501612bca565b50979650505050505050565b60008060408385031215612c0d578182fd5b823567ffffffffffffffff811115612c23578283fd5b8301601f81018513612c33578283fd5b80356020612c43612ba5836135ec565b82815281810190848301838502860184018a1015612c5f578788fd5b8795505b84861015612c81578035835260019590950194918301918301612c63565b5098969091013596505050505050565b600060208284031215612ca2578081fd5b813561225a8161374a565b600060208284031215612cbe578081fd5b815161225a8161374a565b600060208284031215612cda578081fd5b813567ffffffffffffffff811115612cf0578182fd5b8201601f81018413612d00578182fd5b6121198482356020840161298d565b600060208284031215612d20578081fd5b5035919050565b60008060408385031215612d39578182fd5b50508035926020909101359150565b60008151808452612d60816020860160208601613672565b601f01601f19169290920160200192915050565b60008351612d86818460208801613672565b835190830190612d9a818360208801613672565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dea90830184612d48565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e2c57835183529284019291840191600101612e10565b50909695505050505050565b901515815260200190565b60006020825261225a6020830184612d48565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601390820152725072652073616c65206e6f742061637469766560681b604082015260600190565b60208082526021908201527f546865207175616e7469747920657863656564732074686520726573657276656040820152601760f91b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755075626c69632073616c65206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526018908201527f4e6f7420696e636c756465642077686974656c69737465640000000000000000604082015260600190565b6020808252602f908201527f657468206d757374206265206c657373207468616e206f7220657175616c207460408201526e6f20746f74616c2062616c616e636560881b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252818101527f2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff811182821017156135e4576135e4613734565b604052919050565b600067ffffffffffffffff82111561360657613606613734565b5060209081020190565b6000821982111561362357613623613708565b500190565b6000826136375761363761371e565b500490565b600081600019048311821515161561365657613656613708565b500290565b60008282101561366d5761366d613708565b500390565b60005b8381101561368d578181015183820152602001613675565b83811115610dba5750506000910152565b6002810460018216806136b257607f821691505b602082108114156136d357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136ed576136ed613708565b5060010190565b6000826137035761370361371e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ebd57600080fdfea2646970667358221220b4eca56a2ae0b735c4fdd0e0e2285070fdd10d870f446ac11473f019bcf78f6164736f6c6343000800003368747470733a2f2f726f79616c7479626c61636b636172642e6d7970696e6174612e636c6f75642f697066732f516d644637536a4e6d4a6d74636275533537354e76676158585446684261466432517371504456394171754c413768747470733a2f2f726f79616c7479626c61636b636172642e6d7970696e6174612e636c6f75642f697066732f516d53526a453555657653766759654c716b65676647386a4b4553464a443343684279334e316d6155565747666f

Deployed Bytecode

0x6080604052600436106103ac5760003560e01c80636f9170f6116101e7578063bcad12cc1161010d578063d8d42bd9116100a0578063e8a3d4851161006f578063e8a3d485146109e0578063e985e9c5146109f5578063efa00ce714610a15578063f2fde38b14610a35576103ac565b8063d8d42bd914610981578063db4568e214610996578063e3c875b2146109ab578063e640cf7d146109cb576103ac565b8063d031370b116100dc578063d031370b14610919578063d0e30db014610939578063d0e7079514610941578063d194a9f914610961576103ac565b8063bcad12cc146108bc578063bd0a8439146108cf578063c87b56dd146108e4578063cd3293de14610904576103ac565b80638da5cb5b11610185578063a22cb46511610154578063a22cb46514610852578063aabd482014610872578063b390d81d14610887578063b88d4fde1461089c576103ac565b80638da5cb5b146107f557806395d89b411461080a5780639d38fd211461081f578063a0712d681461083f576103ac565b80638462151c116101c15780638462151c1461078057806386ab756d146107ad5780638745d7da146107c25780638ba4cc3c146107d5576103ac565b80636f9170f61461072b57806370a082311461074b578063743976a01461076b576103ac565b806342842e0e116102d75780635cd328eb1161026a5780636352211e116102395780636352211e146106b65780636417d962146106d657806369687f77146106f65780636a44e1731461070b576103ac565b80635cd328eb146106575780635e1045ec1461066c5780635fea6cdb1461068c57806362c6f7b9146106a1576103ac565b80634f6ccce7116102a65780634f6ccce7146105ed57806355f804b31461060d578063581a7d271461062d578063590d3f0814610642576103ac565b806342842e0e1461057857806347ee039414610598578063480078b5146105b85780634d2f7529146105d8576103ac565b806318160ddd1161034f5780632f02e7411161031e5780632f02e741146105035780632f745c59146105235780633b3191f3146105435780633ccfd60b14610563576103ac565b806318160ddd146104a45780631a4231a4146104b95780631c4df70e146104ce57806323b872dd146104e3576103ac565b8063081812fc1161038b578063081812fc14610420578063095ea7b31461044d5780630ee7f2761461046d57806317d70f7c1461048f576103ac565b8062744b6a146103b157806301ffc9a7146103c857806306fdde03146103fe575b600080fd5b3480156103bd57600080fd5b506103c6610a55565b005b3480156103d457600080fd5b506103e86103e3366004612c91565b610ab1565b6040516103f59190612e38565b60405180910390f35b34801561040a57600080fd5b50610413610ade565b6040516103f59190612e43565b34801561042c57600080fd5b5061044061043b366004612d0f565b610b70565b6040516103f59190612da3565b34801561045957600080fd5b506103c6610468366004612b36565b610bb3565b34801561047957600080fd5b50610482610c4b565b6040516103f591906135b9565b34801561049b57600080fd5b50610482610c51565b3480156104b057600080fd5b50610482610c57565b3480156104c557600080fd5b50610482610c5d565b3480156104da57600080fd5b50610482610c63565b3480156104ef57600080fd5b506103c66104fe366004612a48565b610c69565b34801561050f57600080fd5b506103c661051e366004612d0f565b610ca1565b34801561052f57600080fd5b5061048261053e366004612b36565b610ce5565b34801561054f57600080fd5b506103c661055e366004612d27565b610d37565b34801561056f57600080fd5b506103c6610dc0565b34801561058457600080fd5b506103c6610593366004612a48565b610e32565b3480156105a457600080fd5b506103c66105b33660046129fc565b610e4d565b3480156105c457600080fd5b506103c66105d3366004612d0f565b610ec0565b3480156105e457600080fd5b506103c6610f74565b3480156105f957600080fd5b50610482610608366004612d0f565b610fc7565b34801561061957600080fd5b506103c6610628366004612cc9565b611022565b34801561063957600080fd5b50610482611074565b34801561064e57600080fd5b5061048261107a565b34801561066357600080fd5b506103c6611080565b34801561067857600080fd5b506103c6610687366004612b5f565b6110dc565b34801561069857600080fd5b506104826111d4565b3480156106ad57600080fd5b506103e86111d9565b3480156106c257600080fd5b506104406106d1366004612d0f565b6111e7565b3480156106e257600080fd5b506103c66106f1366004612d0f565b61121c565b34801561070257600080fd5b506103e8611260565b34801561071757600080fd5b506103c6610726366004612d0f565b611269565b34801561073757600080fd5b506103e86107463660046129fc565b6112ad565b34801561075757600080fd5b506104826107663660046129fc565b6112d0565b34801561077757600080fd5b50610413611314565b34801561078c57600080fd5b506107a061079b3660046129fc565b6113a2565b6040516103f59190612df4565b3480156107b957600080fd5b506103e8611460565b6103c66107d0366004612d0f565b611469565b3480156107e157600080fd5b506103c66107f0366004612b36565b6115ca565b34801561080157600080fd5b50610440611648565b34801561081657600080fd5b50610413611657565b34801561082b57600080fd5b506103c661083a366004612d0f565b611666565b6103c661084d366004612d0f565b6116aa565b34801561085e57600080fd5b506103c661086d366004612afc565b6117e2565b34801561087e57600080fd5b506104826118b0565b34801561089357600080fd5b506103e86118b6565b3480156108a857600080fd5b506103c66108b7366004612a83565b6118c4565b6103c66108ca366004612d0f565b6118fd565b3480156108db57600080fd5b506103c6611a5c565b3480156108f057600080fd5b506104136108ff366004612d0f565b611ab8565b34801561091057600080fd5b50610482611c61565b34801561092557600080fd5b506103c6610934366004612d0f565b611c67565b6103c6611d1f565b34801561094d57600080fd5b506103c661095c366004612cc9565b611d21565b34801561096d57600080fd5b506103c661097c366004612d0f565b611d73565b34801561098d57600080fd5b50610482611db7565b3480156109a257600080fd5b50610482611dbd565b3480156109b757600080fd5b506103c66109c6366004612bfb565b611dc3565b3480156109d757600080fd5b50610482611eca565b3480156109ec57600080fd5b50610413611ed0565b348015610a0157600080fd5b506103e8610a10366004612a16565b611edf565b348015610a2157600080fd5b506103c6610a30366004612cc9565b611f0d565b348015610a4157600080fd5b506103c6610a503660046129fc565b611f5f565b610a5d611fcd565b6001600160a01b0316610a6e611648565b6001600160a01b031614610a9d5760405162461bcd60e51b8152600401610a949061335c565b60405180910390fd5b6016805460ff19811660ff90911615179055565b60006001600160e01b0319821663780e9d6360e01b1480610ad65750610ad682611fd1565b90505b919050565b606060008054610aed9061369e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b199061369e565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b7b82612011565b610b975760405162461bcd60e51b8152600401610a94906132e0565b506000908152600460205260409020546001600160a01b031690565b6000610bbe826111e7565b9050806001600160a01b0316836001600160a01b03161415610bf25760405162461bcd60e51b8152600401610a94906134db565b806001600160a01b0316610c04611fcd565b6001600160a01b03161480610c205750610c2081610a10611fcd565b610c3c5760405162461bcd60e51b8152600401610a94906130f8565b610c46838361202e565b505050565b600e5490565b60145481565b60095490565b600d5481565b600e5481565b610c7a610c74611fcd565b8261209c565b610c965760405162461bcd60e51b8152600401610a949061351c565b610c46838383612121565b610ca9611fcd565b6001600160a01b0316610cba611648565b6001600160a01b031614610ce05760405162461bcd60e51b8152600401610a949061335c565b600d55565b6000610cf0836112d0565b8210610d0e5760405162461bcd60e51b8152600401610a9490612ea9565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610d3f611fcd565b6001600160a01b0316610d50611648565b6001600160a01b031614610d765760405162461bcd60e51b8152600401610a949061335c565b6000610d81826111e7565b6040519091506001600160a01b0382169084156108fc029085906000818181858888f19350505050158015610dba573d6000803e3d6000fd5b50505050565b610dc8611fcd565b6001600160a01b0316610dd9611648565b6001600160a01b031614610dff5760405162461bcd60e51b8152600401610a949061335c565b6040514790339082156108fc029083906000818181858888f19350505050158015610e2e573d6000803e3d6000fd5b5050565b610c46838383604051806020016040528060008152506118c4565b610e55611fcd565b6001600160a01b0316610e66611648565b6001600160a01b031614610e8c5760405162461bcd60e51b8152600401610a949061335c565b610e95816112ad565b610ebd576001600160a01b0381166000908152601560205260409020805460ff191660011790555b50565b610ec8611fcd565b6001600160a01b0316610ed9611648565b6001600160a01b031614610eff5760405162461bcd60e51b8152600401610a949061335c565b6014546000610f0e8284613628565b905060015b82811015610dba576000610f26826111e7565b6040519091506001600160a01b0382169084156108fc029085906000818181858888f19350505050158015610f5f573d6000803e3d6000fd5b50508080610f6c906136d9565b915050610f13565b610f7c611fcd565b6001600160a01b0316610f8d611648565b6001600160a01b031614610fb35760405162461bcd60e51b8152600401610a949061335c565b6010805460ff19811660ff90911615179055565b6000610fd1610c57565b8210610fef5760405162461bcd60e51b8152600401610a949061356d565b6009828154811061101057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61102a611fcd565b6001600160a01b031661103b611648565b6001600160a01b0316146110615760405162461bcd60e51b8152600401610a949061335c565b8051610e2e9060069060208401906128f4565b600f5490565b600c5481565b611088611fcd565b6001600160a01b0316611099611648565b6001600160a01b0316146110bf5760405162461bcd60e51b8152600401610a949061335c565b6010805461ff001981166101009182900460ff1615909102179055565b6110e4611fcd565b6001600160a01b03166110f5611648565b6001600160a01b03161461111b5760405162461bcd60e51b8152600401610a949061335c565b805160005b81811015610c465761115883828151811061114b57634e487b7160e01b600052603260045260246000fd5b60200260200101516112ad565b6111c25760016015600085848151811061118257634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b806111cc816136d9565b915050611120565b60de81565b601654610100900460ff1681565b6000818152600260205260408120546001600160a01b031680610ad65760405162461bcd60e51b8152600401610a94906131c8565b611224611fcd565b6001600160a01b0316611235611648565b6001600160a01b03161461125b5760405162461bcd60e51b8152600401610a949061335c565b600e55565b60105460ff1681565b611271611fcd565b6001600160a01b0316611282611648565b6001600160a01b0316146112a85760405162461bcd60e51b8152600401610a949061335c565b601355565b6001600160a01b031660009081526015602052604090205460ff16151560011490565b60006001600160a01b0382166112f85760405162461bcd60e51b8152600401610a949061317e565b506001600160a01b031660009081526003602052604090205490565b600680546113219061369e565b80601f016020809104026020016040519081016040528092919081815260200182805461134d9061369e565b801561139a5780601f1061136f5761010080835404028352916020019161139a565b820191906000526020600020905b81548152906001019060200180831161137d57829003601f168201915b505050505081565b606060006113af836112d0565b905060008167ffffffffffffffff8111156113da57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611403578160200160208202803683370190505b50905060005b828110156114585761141b8582610ce5565b82828151811061143b57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611450816136d9565b915050611409565b509392505050565b60165460ff1681565b611e61611474610c57565b106114915760405162461bcd60e51b8152600401610a949061327d565b61149c610746611fcd565b6114b85760405162461bcd60e51b8152600401610a94906133d7565b601054610100900460ff16156114e05760405162461bcd60e51b8152600401610a949061332c565b60dc600c5411156115035760405162461bcd60e51b8152600401610a9490613391565b600081116115235760405162461bcd60e51b8152600401610a9490612e56565b6012548111156115455760405162461bcd60e51b8152600401610a949061329f565b600f543490611554908361224e565b146115715760405162461bcd60e51b8152600401610a9490613211565b60005b81811015610e2e5761158d33611588612261565b612267565b6014805490600061159d836136d9565b9091555050600c80549060006115b2836136d9565b919050555080806115c2906136d9565b915050611574565b6115d2611fcd565b6001600160a01b03166115e3611648565b6001600160a01b0316146116095760405162461bcd60e51b8152600401610a949061335c565b60005b81811015610c465761162083611588612261565b60148054906000611630836136d9565b91905055508080611640906136d9565b91505061160c565b600b546001600160a01b031690565b606060018054610aed9061369e565b61166e611fcd565b6001600160a01b031661167f611648565b6001600160a01b0316146116a55760405162461bcd60e51b8152600401610a949061335c565b601255565b611e616116b5610c57565b106116d25760405162461bcd60e51b8152600401610a949061327d565b60105460ff16156116f55760405162461bcd60e51b8152600401610a949061332c565b60135461170490611e6161365b565b8161170d610c57565b6117179190613610565b11156117355760405162461bcd60e51b8152600401610a9490613391565b600081116117555760405162461bcd60e51b8152600401610a9490612e56565b6012548111156117775760405162461bcd60e51b8152600401610a949061329f565b600d543490611786908361224e565b146117a35760405162461bcd60e51b8152600401610a9490613211565b60005b81811015610e2e576117ba33611588612261565b601480549060006117ca836136d9565b919050555080806117da906136d9565b9150506117a6565b6117ea611fcd565b6001600160a01b0316826001600160a01b0316141561181b5760405162461bcd60e51b8152600401610a9490613075565b8060056000611828611fcd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561186c611fcd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a49190612e38565b60405180910390a35050565b600d5490565b601054610100900460ff1681565b6118d56118cf611fcd565b8361209c565b6118f15760405162461bcd60e51b8152600401610a949061351c565b610dba84848484612281565b611e61611908610c57565b106119255760405162461bcd60e51b8152600401610a949061327d565b611930610746611fcd565b61194c5760405162461bcd60e51b8152600401610a9490613155565b60165460ff161561196f5760405162461bcd60e51b8152600401610a9490612fc3565b60135461197e90611e6161365b565b81611987610c57565b6119919190613610565b11156119af5760405162461bcd60e51b8152600401610a9490613391565b600081116119cf5760405162461bcd60e51b8152600401610a9490612e56565b6012548111156119f15760405162461bcd60e51b8152600401610a949061329f565b600e543490611a00908361224e565b14611a1d5760405162461bcd60e51b8152600401610a9490613211565b60005b81811015610e2e57611a3433611588612261565b60148054906000611a44836136d9565b91905055508080611a54906136d9565b915050611a20565b611a64611fcd565b6001600160a01b0316611a75611648565b6001600160a01b031614611a9b5760405162461bcd60e51b8152600401610a949061335c565b6016805461ff001981166101009182900460ff1615909102179055565b6060611ac382612011565b611adf5760405162461bcd60e51b8152600401610a94906134a6565b601654610100900460ff1615611bcf57600060068054611afe9061369e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2a9061369e565b8015611b775780601f10611b4c57610100808354040283529160200191611b77565b820191906000526020600020905b815481529060010190602001808311611b5a57829003601f168201915b505050505090506000815111611b9c5760405180602001604052806000815250611bc7565b80611ba6846122b4565b604051602001611bb7929190612d74565b6040516020818303038152906040525b915050610ad9565b60118054611bdc9061369e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c089061369e565b8015611c555780601f10611c2a57610100808354040283529160200191611c55565b820191906000526020600020905b815481529060010190602001808311611c3857829003601f168201915b50505050509050610ad9565b60135481565b611c6f611fcd565b6001600160a01b0316611c80611648565b6001600160a01b031614611ca65760405162461bcd60e51b8152600401610a949061335c565b601354811115611cc85760405162461bcd60e51b8152600401610a9490612ff0565b8060136000828254611cda919061365b565b90915550600090505b81811015610e2e57611cf733611588612261565b60148054906000611d07836136d9565b91905055508080611d17906136d9565b915050611ce3565b565b611d29611fcd565b6001600160a01b0316611d3a611648565b6001600160a01b031614611d605760405162461bcd60e51b8152600401610a949061335c565b8051610e2e9060119060208401906128f4565b611d7b611fcd565b6001600160a01b0316611d8c611648565b6001600160a01b031614611db25760405162461bcd60e51b8152600401610a949061335c565b600f55565b600f5481565b611e6181565b611dcb611fcd565b6001600160a01b0316611ddc611648565b6001600160a01b031614611e025760405162461bcd60e51b8152600401610a949061335c565b81516000611e10828461363c565b905080471015611e325760405162461bcd60e51b8152600401610a949061340e565b60005b82811015611ec3576000858281518110611e5f57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000611e74826111e7565b6040519091506001600160a01b0382169087156108fc029088906000818181858888f19350505050158015611ead573d6000803e3d6000fd5b5050508080611ebb906136d9565b915050611e35565b5050505050565b60125481565b606060178054610aed9061369e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611f15611fcd565b6001600160a01b0316611f26611648565b6001600160a01b031614611f4c5760405162461bcd60e51b8152600401610a949061335c565b8051610e2e9060179060208401906128f4565b611f67611fcd565b6001600160a01b0316611f78611648565b6001600160a01b031614611f9e5760405162461bcd60e51b8152600401610a949061335c565b6001600160a01b038116611fc45760405162461bcd60e51b8152600401610a9490612f46565b610ebd816123cf565b3390565b60006001600160e01b031982166380ac58cd60e01b148061200257506001600160e01b03198216635b5e139f60e01b145b80610ad65750610ad682612421565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612063826111e7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120a782612011565b6120c35760405162461bcd60e51b8152600401610a94906130ac565b60006120ce836111e7565b9050806001600160a01b0316846001600160a01b031614806121095750836001600160a01b03166120fe84610b70565b6001600160a01b0316145b8061211957506121198185611edf565b949350505050565b826001600160a01b0316612134826111e7565b6001600160a01b03161461215a5760405162461bcd60e51b8152600401610a949061345d565b6001600160a01b0382166121805760405162461bcd60e51b8152600401610a9490613031565b61218b83838361243a565b61219660008261202e565b6001600160a01b03831660009081526003602052604081208054600192906121bf90849061365b565b90915550506001600160a01b03821660009081526003602052604081208054600192906121ed908490613610565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061225a828461363c565b9392505050565b60145490565b610e2e8282604051806020016040528060008152506124c3565b61228c848484612121565b612298848484846124f6565b610dba5760405162461bcd60e51b8152600401610a9490612ef4565b6060816122d957506040805180820190915260018152600360fc1b6020820152610ad9565b8160005b811561230357806122ed816136d9565b91506122fc9050600a83613628565b91506122dd565b60008167ffffffffffffffff81111561232c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612356576020820181803683370190505b5090505b84156121195761236b60018361365b565b9150612378600a866136f4565b612383906030613610565b60f81b8183815181106123a657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506123c8600a86613628565b945061235a565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160e01b031981166301ffc9a760e01b14919050565b612445838383610c46565b6001600160a01b0383166124615761245c81612611565b612484565b816001600160a01b0316836001600160a01b031614612484576124848382612655565b6001600160a01b0382166124a05761249b816126f2565b610c46565b826001600160a01b0316826001600160a01b031614610c4657610c4682826127cb565b6124cd838361280f565b6124da60008484846124f6565b610c465760405162461bcd60e51b8152600401610a9490612ef4565b600061250a846001600160a01b03166128ee565b1561260657836001600160a01b031663150b7a02612526611fcd565b8786866040518563ffffffff1660e01b81526004016125489493929190612db7565b602060405180830381600087803b15801561256257600080fd5b505af1925050508015612592575060408051601f3d908101601f1916820190925261258f91810190612cad565b60015b6125ec573d8080156125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b5080516125e45760405162461bcd60e51b8152600401610a9490612ef4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612119565b506001949350505050565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001612662846112d0565b61266c919061365b565b6000838152600860205260409020549091508082146126bf576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906127049060019061365b565b6000838152600a60205260408120546009805493945090928490811061273a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061276957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806127af57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127d6836112d0565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166128355760405162461bcd60e51b8152600401610a9490613248565b61283e81612011565b1561285b5760405162461bcd60e51b8152600401610a9490612f8c565b6128676000838361243a565b6001600160a01b0382166000908152600360205260408120805460019290612890908490613610565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546129009061369e565b90600052602060002090601f0160209004810192826129225760008555612968565b82601f1061293b57805160ff1916838001178555612968565b82800160010185558215612968579182015b8281111561296857825182559160200191906001019061294d565b50612974929150612978565b5090565b5b808211156129745760008155600101612979565b600067ffffffffffffffff8311156129a7576129a7613734565b6129ba601f8401601f19166020016135c2565b90508281528383830111156129ce57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610ad957600080fd5b600060208284031215612a0d578081fd5b61225a826129e5565b60008060408385031215612a28578081fd5b612a31836129e5565b9150612a3f602084016129e5565b90509250929050565b600080600060608486031215612a5c578081fd5b612a65846129e5565b9250612a73602085016129e5565b9150604084013590509250925092565b60008060008060808587031215612a98578081fd5b612aa1856129e5565b9350612aaf602086016129e5565b925060408501359150606085013567ffffffffffffffff811115612ad1578182fd5b8501601f81018713612ae1578182fd5b612af08782356020840161298d565b91505092959194509250565b60008060408385031215612b0e578182fd5b612b17836129e5565b915060208301358015158114612b2b578182fd5b809150509250929050565b60008060408385031215612b48578182fd5b612b51836129e5565b946020939093013593505050565b60006020808385031215612b71578182fd5b823567ffffffffffffffff811115612b87578283fd5b8301601f81018513612b97578283fd5b8035612baa612ba5826135ec565b6135c2565b8181528381019083850185840285018601891015612bc6578687fd5b8694505b83851015612bef57612bdb816129e5565b835260019490940193918501918501612bca565b50979650505050505050565b60008060408385031215612c0d578182fd5b823567ffffffffffffffff811115612c23578283fd5b8301601f81018513612c33578283fd5b80356020612c43612ba5836135ec565b82815281810190848301838502860184018a1015612c5f578788fd5b8795505b84861015612c81578035835260019590950194918301918301612c63565b5098969091013596505050505050565b600060208284031215612ca2578081fd5b813561225a8161374a565b600060208284031215612cbe578081fd5b815161225a8161374a565b600060208284031215612cda578081fd5b813567ffffffffffffffff811115612cf0578182fd5b8201601f81018413612d00578182fd5b6121198482356020840161298d565b600060208284031215612d20578081fd5b5035919050565b60008060408385031215612d39578182fd5b50508035926020909101359150565b60008151808452612d60816020860160208601613672565b601f01601f19169290920160200192915050565b60008351612d86818460208801613672565b835190830190612d9a818360208801613672565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dea90830184612d48565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e2c57835183529284019291840191600101612e10565b50909695505050505050565b901515815260200190565b60006020825261225a6020830184612d48565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601390820152725072652073616c65206e6f742061637469766560681b604082015260600190565b60208082526021908201527f546865207175616e7469747920657863656564732074686520726573657276656040820152601760f91b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755075626c69632073616c65206e6f742061637469766560501b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526018908201527f4e6f7420696e636c756465642077686974656c69737465640000000000000000604082015260600190565b6020808252602f908201527f657468206d757374206265206c657373207468616e206f7220657175616c207460408201526e6f20746f74616c2062616c616e636560881b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252818101527f2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff811182821017156135e4576135e4613734565b604052919050565b600067ffffffffffffffff82111561360657613606613734565b5060209081020190565b6000821982111561362357613623613708565b500190565b6000826136375761363761371e565b500490565b600081600019048311821515161561365657613656613708565b500290565b60008282101561366d5761366d613708565b500390565b60005b8381101561368d578181015183820152602001613675565b83811115610dba5750506000910152565b6002810460018216806136b257607f821691505b602082108114156136d357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136ed576136ed613708565b5060010190565b6000826137035761370361371e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ebd57600080fdfea2646970667358221220b4eca56a2ae0b735c4fdd0e0e2285070fdd10d870f446ac11473f019bcf78f6164736f6c63430008000033

Deployed Bytecode Sourcemap

49019:8896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52152:114;;;;;;;;;;;;;:::i;:::-;;42844:224;;;;;;;;;;-1:-1:-1;42844:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30826:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32380:221::-;;;;;;;;;;-1:-1:-1;32380:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;31903:411::-;;;;;;;;;;-1:-1:-1;31903:411:0;;;;;:::i;:::-;;:::i;51314:89::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49685:21::-;;;;;;;;;;;;;:::i;43484:113::-;;;;;;;;;;;;;:::i;49291:34::-;;;;;;;;;;;;;:::i;49332:36::-;;;;;;;;;;;;;:::i;33270:339::-;;;;;;;;;;-1:-1:-1;33270:339:0;;;;;:::i;:::-;;:::i;50659:98::-;;;;;;;;;;-1:-1:-1;50659:98:0;;;;;:::i;:::-;;:::i;43152:256::-;;;;;;;;;;-1:-1:-1;43152:256:0;;;;;:::i;:::-;;:::i;56462:181::-;;;;;;;;;;-1:-1:-1;56462:181:0;;;;;:::i;:::-;;:::i;57675:140::-;;;;;;;;;;;;;:::i;33680:185::-;;;;;;;;;;-1:-1:-1;33680:185:0;;;;;:::i;:::-;;:::i;55989:162::-;;;;;;;;;;-1:-1:-1;55989:162:0;;;;;:::i;:::-;;:::i;56651:342::-;;;;;;;;;;-1:-1:-1;56651:342:0;;;;;:::i;:::-;;:::i;52056:90::-;;;;;;;;;;;;;:::i;43674:233::-;;;;;;;;;;-1:-1:-1;43674:233:0;;;;;:::i;:::-;;:::i;51004:97::-;;;;;;;;;;-1:-1:-1;51004:97:0;;;;;:::i;:::-;;:::i;51106:102::-;;;;;;;;;;;;;:::i;49190:41::-;;;;;;;;;;;;;:::i;51937:111::-;;;;;;;;;;;;;:::i;56157:297::-;;;;;;;;;;-1:-1:-1;56157:297:0;;;;;:::i;:::-;;:::i;49133:51::-;;;;;;;;;;;;;:::i;49812:29::-;;;;;;;;;;;;;:::i;30520:239::-;;;;;;;;;;-1:-1:-1;30520:239:0;;;;;:::i;:::-;;:::i;50764:109::-;;;;;;;;;;-1:-1:-1;50764:109:0;;;;;:::i;:::-;;:::i;49431:31::-;;;;;;;;;;;;;:::i;51719:98::-;;;;;;;;;;-1:-1:-1;51719:98:0;;;;;:::i;:::-;;:::i;55858:123::-;;;;;;;;;;-1:-1:-1;55858:123:0;;;;;:::i;:::-;;:::i;30250:208::-;;;;;;;;;;-1:-1:-1;30250:208:0;;;;;:::i;:::-;;:::i;29548:22::-;;;;;;;;;;;;;:::i;55499:351::-;;;;;;;;;;-1:-1:-1;55499:351:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49766:39::-;;;;;;;;;;;;;:::i;53950:833::-;;;;;;:::i;:::-;;:::i;51412:190::-;;;;;;;;;;-1:-1:-1;51412:190:0;;;;;:::i;:::-;;:::i;27416:87::-;;;;;;;;;;;;;:::i;30995:104::-;;;;;;;;;;;;;:::i;51610:100::-;;;;;;;;;;-1:-1:-1;51610:100:0;;;;;:::i;:::-;;:::i;54791:693::-;;;;;;:::i;:::-;;:::i;32673:295::-;;;;;;;;;;-1:-1:-1;32673:295:0;;;;;:::i;:::-;;:::i;51220:88::-;;;;;;;;;;;;;:::i;49469:37::-;;;;;;;;;;;;;:::i;33936:328::-;;;;;;;;;;-1:-1:-1;33936:328:0;;;;;:::i;:::-;;:::i;53110:832::-;;;;;;:::i;:::-;;:::i;53014:88::-;;;;;;;;;;;;;:::i;52600:408::-;;;;;;;;;;-1:-1:-1;52600:408:0;;;;;:::i;:::-;;:::i;49653:25::-;;;;;;;;;;;;;:::i;52283:301::-;;;;;;;;;;-1:-1:-1;52283:301:0;;;;;:::i;:::-;;:::i;57626:41::-;;;:::i;50551:96::-;;;;;;;;;;-1:-1:-1;50551:96:0;;;;;:::i;:::-;;:::i;50880:116::-;;;;;;;;;;-1:-1:-1;50880:116:0;;;;;:::i;:::-;;:::i;49375:45::-;;;;;;;;;;;;;:::i;49087:39::-;;;;;;;;;;;;;:::i;57001:617::-;;;;;;;;;;-1:-1:-1;57001:617:0;;;;;:::i;:::-;;:::i;49619:27::-;;;;;;;;;;;;;:::i;50335:97::-;;;;;;;;;;;;;:::i;33039:164::-;;;;;;;;;;-1:-1:-1;33039:164:0;;;;;:::i;:::-;;:::i;50438:104::-;;;;;;;;;;-1:-1:-1;50438:104:0;;;;;:::i;:::-;;:::i;28216:192::-;;;;;;;;;;-1:-1:-1;28216:192:0;;;;;:::i;:::-;;:::i;52152:114::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;;;;;;;;;52238:20:::1;::::0;;-1:-1:-1;;52214:44:0;::::1;52238:20;::::0;;::::1;52237:21;52214:44;::::0;;52152:114::o;42844:224::-;42946:4;-1:-1:-1;;;;;;42970:50:0;;-1:-1:-1;;;42970:50:0;;:90;;;43024:36;43048:11;43024:23;:36::i;:::-;42963:97;;42844:224;;;;:::o;30826:100::-;30880:13;30913:5;30906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30826:100;:::o;32380:221::-;32456:7;32484:16;32492:7;32484;:16::i;:::-;32476:73;;;;-1:-1:-1;;;32476:73:0;;;;;;;:::i;:::-;-1:-1:-1;32569:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32569:24:0;;32380:221::o;31903:411::-;31984:13;32000:23;32015:7;32000:14;:23::i;:::-;31984:39;;32048:5;-1:-1:-1;;;;;32042:11:0;:2;-1:-1:-1;;;;;32042:11:0;;;32034:57;;;;-1:-1:-1;;;32034:57:0;;;;;;;:::i;:::-;32142:5;-1:-1:-1;;;;;32126:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;32126:21:0;;:62;;;;32151:37;32168:5;32175:12;:10;:12::i;32151:37::-;32104:168;;;;-1:-1:-1;;;32104:168:0;;;;;;;:::i;:::-;32285:21;32294:2;32298:7;32285:8;:21::i;:::-;31903:411;;;:::o;51314:89::-;51382:13;;51314:89;:::o;49685:21::-;;;;:::o;43484:113::-;43572:10;:17;43484:113;:::o;49291:34::-;;;;:::o;49332:36::-;;;;:::o;33270:339::-;33465:41;33484:12;:10;:12::i;:::-;33498:7;33465:18;:41::i;:::-;33457:103;;;;-1:-1:-1;;;33457:103:0;;;;;;;:::i;:::-;33573:28;33583:4;33589:2;33593:7;33573:9;:28::i;50659:98::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50729:10:::1;:20:::0;50659:98::o;43152:256::-;43249:7;43285:23;43302:5;43285:16;:23::i;:::-;43277:5;:31;43269:87;;;;-1:-1:-1;;;43269:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;43374:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43152:256::o;56462:181::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;56559:17:::1;56578:11;56586:2;56578:7;:11::i;:::-;56600:35;::::0;56559:30;;-1:-1:-1;;;;;;56600:27:0;::::1;::::0;:35;::::1;;;::::0;56628:6;;56600:35:::1;::::0;;;56628:6;56600:27;:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27707:1;56462:181:::0;;:::o;57675:140::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;57770:37:::1;::::0;57738:21:::1;::::0;57778:10:::1;::::0;57770:37;::::1;;;::::0;57738:21;;57723:12:::1;57770:37:::0;57723:12;57770:37;57738:21;57778:10;57770:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27707:1;57675:140::o:0;33680:185::-;33818:39;33835:4;33841:2;33845:7;33818:39;;;;;;;;;;;;:16;:39::i;55989:162::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;56064:23:::1;56078:8;56064:13;:23::i;:::-;56059:85;;-1:-1:-1::0;;;;;56104:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;:28;;-1:-1:-1;;56104:28:0::1;56128:4;56104:28;::::0;;56059:85:::1;55989:162:::0;:::o;56651:342::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;56767:7:::1;::::0;56743:22:::1;56806;56767:7:::0;56806:5;:22:::1;:::i;:::-;56785:43:::0;-1:-1:-1;56852:1:0::1;56841:145;56857:14;56855:1;:16;56841:145;;;56891:17;56910:10;56918:1;56910:7;:10::i;:::-;56935:39;::::0;56891:29;;-1:-1:-1;;;;;;56935:27:0;::::1;::::0;:39;::::1;;;::::0;56963:10;;56935:39:::1;::::0;;;56963:10;56935:27;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56841:145;56872:3;;;;;:::i;:::-;;;;56841:145;;52056:90:::0;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;52126:12:::1;::::0;;-1:-1:-1;;52110:28:0;::::1;52126:12;::::0;;::::1;52125:13;52110:28;::::0;;52056:90::o;43674:233::-;43749:7;43785:30;:28;:30::i;:::-;43777:5;:38;43769:95;;;;-1:-1:-1;;;43769:95:0;;;;;;;:::i;:::-;43882:10;43893:5;43882:17;;;;;;-1:-1:-1;;;43882:17:0;;;;;;;;;;;;;;;;;43875:24;;43674:233;;;:::o;51004:97::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;51075:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;51106:102::-:0;51181:19;;51106:102;:::o;49190:41::-;;;;:::o;51937:111::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;52022:18:::1;::::0;;-1:-1:-1;;52000:40:0;::::1;52022:18;::::0;;;::::1;;;52021:19;52000:40:::0;;::::1;;::::0;;51937:111::o;56157:297::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;56253:17;;56236:14:::1;56281:166;56305:6;56301:1;:10;56281:166;;;56338:28;56352:10;56363:1;56352:13;;;;;;-1:-1:-1::0;;;56352:13:0::1;;;;;;;;;;;;;;;56338;:28::i;:::-;56333:103;;56416:4;56387:11;:26;56399:10;56410:1;56399:13;;;;;;-1:-1:-1::0;;;56399:13:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;56387:26:0::1;-1:-1:-1::0;;;;;56387:26:0::1;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;56333:103;56313:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56281:166;;49133:51:::0;49181:3;49133:51;:::o;49812:29::-;;;;;;;;;:::o;30520:239::-;30592:7;30628:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30628:16:0;30663:19;30655:73;;;;-1:-1:-1;;;30655:73:0;;;;;;;:::i;50764:109::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50842:13:::1;:23:::0;50764:109::o;49431:31::-;;;;;;:::o;51719:98::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;51792:7:::1;:17:::0;51719:98::o;55858:123::-;-1:-1:-1;;;;;55944:21:0;55920:4;55944:21;;;:11;:21;;;;;;;;:29;;:21;:29;;55858:123::o;30250:208::-;30322:7;-1:-1:-1;;;;;30350:19:0;;30342:74;;;;-1:-1:-1;;;30342:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;30434:16:0;;;;;:9;:16;;;;;;;30250:208::o;29548:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55499:351::-;55559:16;55593:13;55609:17;55619:6;55609:9;:17::i;:::-;55593:33;;55637:23;55677:5;55663:20;;;;;;-1:-1:-1;;;55663:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55663:20:0;;55637:46;;55699:13;55694:125;55726:5;55718;:13;55694:125;;;55773:34;55793:6;55801:5;55773:19;:34::i;:::-;55757:6;55764:5;55757:13;;;;;;-1:-1:-1;;;55757:13:0;;;;;;;;;;;;;;;;;;:50;55733:7;;;;:::i;:::-;;;;55694:125;;;-1:-1:-1;55836:6:0;55499:351;-1:-1:-1;;;55499:351:0:o;49766:39::-;;;;;;:::o;53950:833::-;49122:4;51867:13;:11;:13::i;:::-;:28;51859:49;;;;-1:-1:-1;;;51859:49:0;;;;;;;:::i;:::-;54037:27:::1;54051:12;:10;:12::i;54037:27::-;54029:64;;;;-1:-1:-1::0;;;54029:64:0::1;;;;;;;:::i;:::-;54116:18;::::0;::::1;::::0;::::1;;;:27;54108:61;;;;-1:-1:-1::0;;;54108:61:0::1;;;;;;;:::i;:::-;54221:3;54195:24;;:29;;54187:79;;;;-1:-1:-1::0;;;54187:79:0::1;;;;;;;:::i;:::-;54304:1;54289:12;:16;54281:80;;;;-1:-1:-1::0;;;54281:80:0::1;;;;;;;:::i;:::-;54400:11;;54384:12;:27;;54376:72;;;;-1:-1:-1::0;;;54376:72:0::1;;;;;;;:::i;:::-;54471:19;::::0;54512:9:::1;::::0;54471:37:::1;::::0;54495:12;54471:23:::1;:37::i;:::-;:50;54463:92;;;;-1:-1:-1::0;;;54463:92:0::1;;;;;;;:::i;:::-;54589:6;54584:190;54605:12;54601:1;:16;54584:190;;;54639:36;54649:10;54661:13;:11;:13::i;:::-;54639:9;:36::i;:::-;54706:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;54732:24:0::1;:26:::0;;;:24:::1;:26;::::0;::::1;:::i;:::-;;;;;;54619:3;;;;;:::i;:::-;;;;54584:190;;51412::::0;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;51479:6:::1;51474:123;51495:1;51491;:5;51474:123;;;51522:27;51532:1;51535:13;:11;:13::i;51522:27::-;51568:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;51498:3;;;;;:::i;:::-;;;;51474:123;;27416:87:::0;27489:6;;-1:-1:-1;;;;;27489:6:0;27416:87;:::o;30995:104::-;31051:13;31084:7;31077:14;;;;;:::i;51610:100::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;51681:11:::1;:21:::0;51610:100::o;54791:693::-;49122:4;51867:13;:11;:13::i;:::-;:28;51859:49;;;;-1:-1:-1;;;51859:49:0;;;;;;;:::i;:::-;54872:12:::1;::::0;::::1;;:21;54864:55;;;;-1:-1:-1::0;;;54864:55:0::1;;;;;;;:::i;:::-;54986:7;::::0;54973:20:::1;::::0;49122:4:::1;54973:20;:::i;:::-;54959:12;54945:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:48;;54937:98;;;;-1:-1:-1::0;;;54937:98:0::1;;;;;;;:::i;:::-;55073:1;55058:12;:16;55050:80;;;;-1:-1:-1::0;;;55050:80:0::1;;;;;;;:::i;:::-;55169:11;;55153:12;:27;;55145:72;;;;-1:-1:-1::0;;;55145:72:0::1;;;;;;;:::i;:::-;55240:10;::::0;55272:9:::1;::::0;55240:28:::1;::::0;55255:12;55240:14:::1;:28::i;:::-;:41;55232:83;;;;-1:-1:-1::0;;;55232:83:0::1;;;;;;;:::i;:::-;55349:6;55344:131;55365:12;55361:1;:16;55344:131;;;55399:36;55409:10;55421:13;:11;:13::i;55399:36::-;55450:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;55379:3;;;;;:::i;:::-;;;;55344:131;;32673:295:::0;32788:12;:10;:12::i;:::-;-1:-1:-1;;;;;32776:24:0;:8;-1:-1:-1;;;;;32776:24:0;;;32768:62;;;;-1:-1:-1;;;32768:62:0;;;;;;;:::i;:::-;32888:8;32843:18;:32;32862:12;:10;:12::i;:::-;-1:-1:-1;;;;;32843:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;32843:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;32843:53:0;;;;;;;;;;;32927:12;:10;:12::i;:::-;-1:-1:-1;;;;;32912:48:0;;32951:8;32912:48;;;;;;:::i;:::-;;;;;;;;32673:295;;:::o;51220:88::-;51290:10;;51220:88;:::o;49469:37::-;;;;;;;;;:::o;33936:328::-;34111:41;34130:12;:10;:12::i;:::-;34144:7;34111:18;:41::i;:::-;34103:103;;;;-1:-1:-1;;;34103:103:0;;;;;;;:::i;:::-;34217:39;34231:4;34237:2;34241:7;34250:5;34217:13;:39::i;53110:832::-;49122:4;51867:13;:11;:13::i;:::-;:28;51859:49;;;;-1:-1:-1;;;51859:49:0;;;;;;;:::i;:::-;53205:27:::1;53219:12;:10;:12::i;53205:27::-;53197:55;;;;-1:-1:-1::0;;;53197:55:0::1;;;;;;;:::i;:::-;53279:20;::::0;::::1;;:29;53271:60;;;;-1:-1:-1::0;;;53271:60:0::1;;;;;;;:::i;:::-;53411:7;::::0;53398:20:::1;::::0;49122:4:::1;53398:20;:::i;:::-;53384:12;53370:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:48;;53362:98;;;;-1:-1:-1::0;;;53362:98:0::1;;;;;;;:::i;:::-;53502:1;53487:12;:16;53479:80;;;;-1:-1:-1::0;;;53479:80:0::1;;;;;;;:::i;:::-;53602:11;;53586:12;:27;;53578:72;;;;-1:-1:-1::0;;;53578:72:0::1;;;;;;;:::i;:::-;53677:13;::::0;53712:9:::1;::::0;53677:31:::1;::::0;53695:12;53677:17:::1;:31::i;:::-;:44;53669:86;;;;-1:-1:-1::0;;;53669:86:0::1;;;;;;;:::i;:::-;53797:6;53792:143;53813:12;53809:1;:16;53792:143;;;53851:36;53861:10;53873:13;:11;:13::i;53851:36::-;53906:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;53827:3;;;;;:::i;:::-;;;;53792:143;;53014:88:::0;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;53084:9:::1;::::0;;-1:-1:-1;;53071:22:0;::::1;53084:9;::::0;;;::::1;;;53083:10;53071:22:::0;;::::1;;::::0;;53014:88::o;52600:408::-;52679:13;52715:16;52723:7;52715;:16::i;:::-;52707:60;;;;-1:-1:-1;;;52707:60:0;;;;;;;:::i;:::-;52777:9;;;;;;;52774:229;;;52794:21;52818:8;52794:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52871:1;52853:7;52847:21;:25;:104;;;;;;;;;;;;;;;;;52908:7;52917:18;:7;:16;:18::i;:::-;52891:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52847:104;52833:118;;;;;52774:229;52980:15;52973:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49653:25;;;;:::o;52283:301::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;52369:7:::1;;52357:8;:19;;52349:65;;;;-1:-1:-1::0;;;52349:65:0::1;;;;;;;:::i;:::-;52436:8;52425:7;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;52460:6:0::1;::::0;-1:-1:-1;52455:122:0::1;52476:8;52472:1;:12;52455:122;;;52506:35;52516:10;52527:13;:11;:13::i;52506:35::-;52556:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;52486:3;;;;;:::i;:::-;;;;52455:122;;57626:41:::0;:::o;50551:96::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50620:19;;::::1;::::0;:15:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;50880:116::-:0;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50959:19:::1;:29:::0;50880:116::o;49375:45::-;;;;:::o;49087:39::-;49122:4;49087:39;:::o;57001:617::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;57124:10;;57110:11:::1;57167:12;57124:10:::0;57167:8;:12:::1;:::i;:::-;57145:34;;57223:12;57198:21;:37;;57190:97;;;;-1:-1:-1::0;;;57190:97:0::1;;;;;;;:::i;:::-;57440:6;57435:176;57451:3;57449:1;:5;57435:176;;;57474:12;57489:3;57493:1;57489:6;;;;;;-1:-1:-1::0;;;57489:6:0::1;;;;;;;;;;;;;;;57474:21;;57510:18;57531:13;57539:4;57531:7;:13::i;:::-;57561:38;::::0;57510:34;;-1:-1:-1;;;;;;57561:28:0;::::1;::::0;:38;::::1;;;::::0;57590:8;;57561:38:::1;::::0;;;57590:8;57561:28;:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57435:176;;57455:3;;;;;:::i;:::-;;;;57435:176;;;;27707:1;;57001:617:::0;;:::o;49619:27::-;;;;:::o;50335:97::-;50379:13;50412:12;50405:19;;;;;:::i;33039:164::-;-1:-1:-1;;;;;33160:25:0;;;33136:4;33160:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33039:164::o;50438:104::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50512:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28216:192::-:0;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28305:22:0;::::1;28297:73;;;;-1:-1:-1::0;;;28297:73:0::1;;;;;;;:::i;:::-;28381:19;28391:8;28381:9;:19::i;26167:98::-:0;26247:10;26167:98;:::o;29881:305::-;29983:4;-1:-1:-1;;;;;;30020:40:0;;-1:-1:-1;;;30020:40:0;;:105;;-1:-1:-1;;;;;;;30077:48:0;;-1:-1:-1;;;30077:48:0;30020:105;:158;;;;30142:36;30166:11;30142:23;:36::i;35774:127::-;35839:4;35863:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35863:16:0;:30;;;35774:127::o;39756:174::-;39831:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39831:29:0;-1:-1:-1;;;;;39831:29:0;;;;;;;;:24;;39885:23;39831:24;39885:14;:23::i;:::-;-1:-1:-1;;;;;39876:46:0;;;;;;;;;;;39756:174;;:::o;36068:348::-;36161:4;36186:16;36194:7;36186;:16::i;:::-;36178:73;;;;-1:-1:-1;;;36178:73:0;;;;;;;:::i;:::-;36262:13;36278:23;36293:7;36278:14;:23::i;:::-;36262:39;;36331:5;-1:-1:-1;;;;;36320:16:0;:7;-1:-1:-1;;;;;36320:16:0;;:51;;;;36364:7;-1:-1:-1;;;;;36340:31:0;:20;36352:7;36340:11;:20::i;:::-;-1:-1:-1;;;;;36340:31:0;;36320:51;:87;;;;36375:32;36392:5;36399:7;36375:16;:32::i;:::-;36312:96;36068:348;-1:-1:-1;;;;36068:348:0:o;39060:578::-;39219:4;-1:-1:-1;;;;;39192:31:0;:23;39207:7;39192:14;:23::i;:::-;-1:-1:-1;;;;;39192:31:0;;39184:85;;;;-1:-1:-1;;;39184:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39288:16:0;;39280:65;;;;-1:-1:-1;;;39280:65:0;;;;;;;:::i;:::-;39358:39;39379:4;39385:2;39389:7;39358:20;:39::i;:::-;39462:29;39479:1;39483:7;39462:8;:29::i;:::-;-1:-1:-1;;;;;39504:15:0;;;;;;:9;:15;;;;;:20;;39523:1;;39504:15;:20;;39523:1;;39504:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39535:13:0;;;;;;:9;:13;;;;;:18;;39552:1;;39535:13;:18;;39552:1;;39535:18;:::i;:::-;;;;-1:-1:-1;;39564:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39564:21:0;-1:-1:-1;;;;;39564:21:0;;;;;;;;;39603:27;;39564:16;;39603:27;;;;;;;39060:578;;;:::o;3501:98::-;3559:7;3586:5;3590:1;3586;:5;:::i;:::-;3579:12;3501:98;-1:-1:-1;;;3501:98:0:o;57823:89::-;57897:7;;57823:89;:::o;36758:110::-;36834:26;36844:2;36848:7;36834:26;;;;;;;;;;;;:9;:26::i;35146:315::-;35303:28;35313:4;35319:2;35323:7;35303:9;:28::i;:::-;35350:48;35373:4;35379:2;35383:7;35392:5;35350:22;:48::i;:::-;35342:111;;;;-1:-1:-1;;;35342:111:0;;;;;;;:::i;7181:723::-;7237:13;7458:10;7454:53;;-1:-1:-1;7485:10:0;;;;;;;;;;;;-1:-1:-1;;;7485:10:0;;;;;;7454:53;7532:5;7517:12;7573:78;7580:9;;7573:78;;7606:8;;;;:::i;:::-;;-1:-1:-1;7629:10:0;;-1:-1:-1;7637:2:0;7629:10;;:::i;:::-;;;7573:78;;;7661:19;7693:6;7683:17;;;;;;-1:-1:-1;;;7683:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7683:17:0;;7661:39;;7711:154;7718:10;;7711:154;;7745:11;7755:1;7745:11;;:::i;:::-;;-1:-1:-1;7814:10:0;7822:2;7814:5;:10;:::i;:::-;7801:24;;:2;:24;:::i;:::-;7788:39;;7771:6;7778;7771:14;;;;;;-1:-1:-1;;;7771:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;7771:56:0;;;;;;;;-1:-1:-1;7842:11:0;7851:2;7842:11;;:::i;:::-;;;7711:154;;28416:173;28491:6;;;-1:-1:-1;;;;;28508:17:0;;;-1:-1:-1;;;;;;28508:17:0;;;;;;;28541:40;;28491:6;;;28508:17;28491:6;;28541:40;;28472:16;;28541:40;28416:173;;:::o;19153:157::-;-1:-1:-1;;;;;;19262:40:0;;-1:-1:-1;;;19262:40:0;19153:157;;;:::o;44520:589::-;44664:45;44691:4;44697:2;44701:7;44664:26;:45::i;:::-;-1:-1:-1;;;;;44726:18:0;;44722:187;;44761:40;44793:7;44761:31;:40::i;:::-;44722:187;;;44831:2;-1:-1:-1;;;;;44823:10:0;:4;-1:-1:-1;;;;;44823:10:0;;44819:90;;44850:47;44883:4;44889:7;44850:32;:47::i;:::-;-1:-1:-1;;;;;44923:16:0;;44919:183;;44956:45;44993:7;44956:36;:45::i;:::-;44919:183;;;45029:4;-1:-1:-1;;;;;45023:10:0;:2;-1:-1:-1;;;;;45023:10:0;;45019:83;;45050:40;45078:2;45082:7;45050:27;:40::i;37095:321::-;37225:18;37231:2;37235:7;37225:5;:18::i;:::-;37276:54;37307:1;37311:2;37315:7;37324:5;37276:22;:54::i;:::-;37254:154;;;;-1:-1:-1;;;37254:154:0;;;;;;;:::i;40495:803::-;40650:4;40671:15;:2;-1:-1:-1;;;;;40671:13:0;;:15::i;:::-;40667:624;;;40723:2;-1:-1:-1;;;;;40707:36:0;;40744:12;:10;:12::i;:::-;40758:4;40764:7;40773:5;40707:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40707:72:0;;;;;;;;-1:-1:-1;;40707:72:0;;;;;;;;;;;;:::i;:::-;;;40703:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40953:13:0;;40949:272;;40996:60;;-1:-1:-1;;;40996:60:0;;;;;;;:::i;40949:272::-;41171:6;41165:13;41156:6;41152:2;41148:15;41141:38;40703:533;-1:-1:-1;;;;;;40830:55:0;-1:-1:-1;;;40830:55:0;;-1:-1:-1;40823:62:0;;40667:624;-1:-1:-1;41275:4:0;40495:803;;;;;;:::o;45832:164::-;45936:10;:17;;45909:24;;;;:15;:24;;;;;:44;;;45964:24;;;;;;;;;;;;45832:164::o;46623:988::-;46889:22;46939:1;46914:22;46931:4;46914:16;:22::i;:::-;:26;;;;:::i;:::-;46951:18;46972:26;;;:17;:26;;;;;;46889:51;;-1:-1:-1;47105:28:0;;;47101:328;;-1:-1:-1;;;;;47172:18:0;;47150:19;47172:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47223:30;;;;;;:44;;;47340:30;;:17;:30;;;;;:43;;;47101:328;-1:-1:-1;47525:26:0;;;;:17;:26;;;;;;;;47518:33;;;-1:-1:-1;;;;;47569:18:0;;;;;:12;:18;;;;;:34;;;;;;;47562:41;46623:988::o;47906:1079::-;48184:10;:17;48159:22;;48184:21;;48204:1;;48184:21;:::i;:::-;48216:18;48237:24;;;:15;:24;;;;;;48610:10;:26;;48159:46;;-1:-1:-1;48237:24:0;;48159:46;;48610:26;;;;-1:-1:-1;;;48610:26:0;;;;;;;;;;;;;;;;;48588:48;;48674:11;48649:10;48660;48649:22;;;;;;-1:-1:-1;;;48649:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;48754:28;;;:15;:28;;;;;;;:41;;;48926:24;;;;;48919:31;48961:10;:16;;;;;-1:-1:-1;;;48961:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;47906:1079;;;;:::o;45410:221::-;45495:14;45512:20;45529:2;45512:16;:20::i;:::-;-1:-1:-1;;;;;45543:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45588:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45410:221:0:o;37752:382::-;-1:-1:-1;;;;;37832:16:0;;37824:61;;;;-1:-1:-1;;;37824:61:0;;;;;;;:::i;:::-;37905:16;37913:7;37905;:16::i;:::-;37904:17;37896:58;;;;-1:-1:-1;;;37896:58:0;;;;;;;:::i;:::-;37967:45;37996:1;38000:2;38004:7;37967:20;:45::i;:::-;-1:-1:-1;;;;;38025:13:0;;;;;;:9;:13;;;;;:18;;38042:1;;38025:13;:18;;38042:1;;38025:18;:::i;:::-;;;;-1:-1:-1;;38054:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38054:21:0;-1:-1:-1;;;;;38054:21:0;;;;;;;;38093:33;;38054:16;;;38093:33;;38054:16;;38093:33;37752:382;;:::o;9648:387::-;9971:20;10019:8;;;9648:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:198;;720:2;708:9;699:7;695:23;691:32;688:2;;;741:6;733;726:22;688:2;769:31;790:9;769:31;:::i;811:274::-;;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:31;1010:9;989:31;:::i;:::-;979:41;;1039:40;1075:2;1064:9;1060:18;1039:40;:::i;:::-;1029:50;;898:187;;;;;:::o;1090:342::-;;;;1236:2;1224:9;1215:7;1211:23;1207:32;1204:2;;;1257:6;1249;1242:22;1204:2;1285:31;1306:9;1285:31;:::i;:::-;1275:41;;1335:40;1371:2;1360:9;1356:18;1335:40;:::i;:::-;1325:50;;1422:2;1411:9;1407:18;1394:32;1384:42;;1194:238;;;;;:::o;1437:702::-;;;;;1609:3;1597:9;1588:7;1584:23;1580:33;1577:2;;;1631:6;1623;1616:22;1577:2;1659:31;1680:9;1659:31;:::i;:::-;1649:41;;1709:40;1745:2;1734:9;1730:18;1709:40;:::i;:::-;1699:50;;1796:2;1785:9;1781:18;1768:32;1758:42;;1851:2;1840:9;1836:18;1823:32;1878:18;1870:6;1867:30;1864:2;;;1915:6;1907;1900:22;1864:2;1943:22;;1996:4;1988:13;;1984:27;-1:-1:-1;1974:2:1;;2030:6;2022;2015:22;1974:2;2058:75;2125:7;2120:2;2107:16;2102:2;2098;2094:11;2058:75;:::i;:::-;2048:85;;;1567:572;;;;;;;:::o;2144:369::-;;;2270:2;2258:9;2249:7;2245:23;2241:32;2238:2;;;2291:6;2283;2276:22;2238:2;2319:31;2340:9;2319:31;:::i;:::-;2309:41;;2400:2;2389:9;2385:18;2372:32;2447:5;2440:13;2433:21;2426:5;2423:32;2413:2;;2474:6;2466;2459:22;2413:2;2502:5;2492:15;;;2228:285;;;;;:::o;2518:266::-;;;2647:2;2635:9;2626:7;2622:23;2618:32;2615:2;;;2668:6;2660;2653:22;2615:2;2696:31;2717:9;2696:31;:::i;:::-;2686:41;2774:2;2759:18;;;;2746:32;;-1:-1:-1;;;2605:179:1:o;2789:961::-;;2904:2;2947;2935:9;2926:7;2922:23;2918:32;2915:2;;;2968:6;2960;2953:22;2915:2;3013:9;3000:23;3046:18;3038:6;3035:30;3032:2;;;3083:6;3075;3068:22;3032:2;3111:22;;3164:4;3156:13;;3152:27;-1:-1:-1;3142:2:1;;3198:6;3190;3183:22;3142:2;3239;3226:16;3262:65;3277:49;3323:2;3277:49;:::i;:::-;3262:65;:::i;:::-;3361:15;;;3392:12;;;;3424:11;;;3462;;;3454:20;;3450:29;;3447:42;-1:-1:-1;3444:2:1;;;3507:6;3499;3492:22;3444:2;3534:6;3525:15;;3549:171;3563:2;3560:1;3557:9;3549:171;;;3620:25;3641:3;3620:25;:::i;:::-;3608:38;;3581:1;3574:9;;;;;3666:12;;;;3698;;3549:171;;;-1:-1:-1;3739:5:1;2884:866;-1:-1:-1;;;;;;;2884:866:1:o;3755:1023::-;;;3909:2;3897:9;3888:7;3884:23;3880:32;3877:2;;;3930:6;3922;3915:22;3877:2;3975:9;3962:23;4008:18;4000:6;3997:30;3994:2;;;4045:6;4037;4030:22;3994:2;4073:22;;4126:4;4118:13;;4114:27;-1:-1:-1;4104:2:1;;4160:6;4152;4145:22;4104:2;4201;4188:16;4223:4;4247:65;4262:49;4308:2;4262:49;:::i;4247:65::-;4346:15;;;4377:12;;;;4409:11;;;4447;;;4439:20;;4435:29;;4432:42;-1:-1:-1;4429:2:1;;;4492:6;4484;4477:22;4429:2;4519:6;4510:15;;4534:163;4548:2;4545:1;4542:9;4534:163;;;4605:17;;4593:30;;4566:1;4559:9;;;;;4643:12;;;;4675;;4534:163;;;-1:-1:-1;4716:5:1;4753:18;;;;4740:32;;-1:-1:-1;;;;;;3867:911:1:o;4783:257::-;;4894:2;4882:9;4873:7;4869:23;4865:32;4862:2;;;4915:6;4907;4900:22;4862:2;4959:9;4946:23;4978:32;5004:5;4978:32;:::i;5045:261::-;;5167:2;5155:9;5146:7;5142:23;5138:32;5135:2;;;5188:6;5180;5173:22;5135:2;5225:9;5219:16;5244:32;5270:5;5244:32;:::i;5311:482::-;;5433:2;5421:9;5412:7;5408:23;5404:32;5401:2;;;5454:6;5446;5439:22;5401:2;5499:9;5486:23;5532:18;5524:6;5521:30;5518:2;;;5569:6;5561;5554:22;5518:2;5597:22;;5650:4;5642:13;;5638:27;-1:-1:-1;5628:2:1;;5684:6;5676;5669:22;5628:2;5712:75;5779:7;5774:2;5761:16;5756:2;5752;5748:11;5712:75;:::i;5798:190::-;;5910:2;5898:9;5889:7;5885:23;5881:32;5878:2;;;5931:6;5923;5916:22;5878:2;-1:-1:-1;5959:23:1;;5868:120;-1:-1:-1;5868:120:1:o;5993:258::-;;;6122:2;6110:9;6101:7;6097:23;6093:32;6090:2;;;6143:6;6135;6128:22;6090:2;-1:-1:-1;;6171:23:1;;;6241:2;6226:18;;;6213:32;;-1:-1:-1;6080:171:1:o;6256:259::-;;6337:5;6331:12;6364:6;6359:3;6352:19;6380:63;6436:6;6429:4;6424:3;6420:14;6413:4;6406:5;6402:16;6380:63;:::i;:::-;6497:2;6476:15;-1:-1:-1;;6472:29:1;6463:39;;;;6504:4;6459:50;;6307:208;-1:-1:-1;;6307:208:1:o;6520:470::-;;6737:6;6731:13;6753:53;6799:6;6794:3;6787:4;6779:6;6775:17;6753:53;:::i;:::-;6869:13;;6828:16;;;;6891:57;6869:13;6828:16;6925:4;6913:17;;6891:57;:::i;:::-;6964:20;;6707:283;-1:-1:-1;;;;6707:283:1:o;6995:203::-;-1:-1:-1;;;;;7159:32:1;;;;7141:51;;7129:2;7114:18;;7096:102::o;7203:490::-;-1:-1:-1;;;;;7472:15:1;;;7454:34;;7524:15;;7519:2;7504:18;;7497:43;7571:2;7556:18;;7549:34;;;7619:3;7614:2;7599:18;;7592:31;;;7203:490;;7640:47;;7667:19;;7659:6;7640:47;:::i;:::-;7632:55;7406:287;-1:-1:-1;;;;;;7406:287:1:o;7698:635::-;7869:2;7921:21;;;7991:13;;7894:18;;;8013:22;;;7698:635;;7869:2;8092:15;;;;8066:2;8051:18;;;7698:635;8138:169;8152:6;8149:1;8146:13;8138:169;;;8213:13;;8201:26;;8282:15;;;;8247:12;;;;8174:1;8167:9;8138:169;;;-1:-1:-1;8324:3:1;;7849:484;-1:-1:-1;;;;;;7849:484:1:o;8338:187::-;8503:14;;8496:22;8478:41;;8466:2;8451:18;;8433:92::o;8530:221::-;;8679:2;8668:9;8661:21;8699:46;8741:2;8730:9;8726:18;8718:6;8699:46;:::i;8756:415::-;8958:2;8940:21;;;8997:2;8977:18;;;8970:30;9036:34;9031:2;9016:18;;9009:62;-1:-1:-1;;;9102:2:1;9087:18;;9080:49;9161:3;9146:19;;8930:241::o;9176:407::-;9378:2;9360:21;;;9417:2;9397:18;;;9390:30;9456:34;9451:2;9436:18;;9429:62;-1:-1:-1;;;9522:2:1;9507:18;;9500:41;9573:3;9558:19;;9350:233::o;9588:414::-;9790:2;9772:21;;;9829:2;9809:18;;;9802:30;9868:34;9863:2;9848:18;;9841:62;-1:-1:-1;;;9934:2:1;9919:18;;9912:48;9992:3;9977:19;;9762:240::o;10007:402::-;10209:2;10191:21;;;10248:2;10228:18;;;10221:30;10287:34;10282:2;10267:18;;10260:62;-1:-1:-1;;;10353:2:1;10338:18;;10331:36;10399:3;10384:19;;10181:228::o;10414:352::-;10616:2;10598:21;;;10655:2;10635:18;;;10628:30;10694;10689:2;10674:18;;10667:58;10757:2;10742:18;;10588:178::o;10771:343::-;10973:2;10955:21;;;11012:2;10992:18;;;10985:30;-1:-1:-1;;;11046:2:1;11031:18;;11024:49;11105:2;11090:18;;10945:169::o;11119:397::-;11321:2;11303:21;;;11360:2;11340:18;;;11333:30;11399:34;11394:2;11379:18;;11372:62;-1:-1:-1;;;11465:2:1;11450:18;;11443:31;11506:3;11491:19;;11293:223::o;11521:400::-;11723:2;11705:21;;;11762:2;11742:18;;;11735:30;11801:34;11796:2;11781:18;;11774:62;-1:-1:-1;;;11867:2:1;11852:18;;11845:34;11911:3;11896:19;;11695:226::o;11926:349::-;12128:2;12110:21;;;12167:2;12147:18;;;12140:30;12206:27;12201:2;12186:18;;12179:55;12266:2;12251:18;;12100:175::o;12280:408::-;12482:2;12464:21;;;12521:2;12501:18;;;12494:30;12560:34;12555:2;12540:18;;12533:62;-1:-1:-1;;;12626:2:1;12611:18;;12604:42;12678:3;12663:19;;12454:234::o;12693:420::-;12895:2;12877:21;;;12934:2;12914:18;;;12907:30;12973:34;12968:2;12953:18;;12946:62;13044:26;13039:2;13024:18;;13017:54;13103:3;13088:19;;12867:246::o;13118:339::-;13320:2;13302:21;;;13359:2;13339:18;;;13332:30;-1:-1:-1;;;13393:2:1;13378:18;;13371:45;13448:2;13433:18;;13292:165::o;13462:406::-;13664:2;13646:21;;;13703:2;13683:18;;;13676:30;13742:34;13737:2;13722:18;;13715:62;-1:-1:-1;;;13808:2:1;13793:18;;13786:40;13858:3;13843:19;;13636:232::o;13873:405::-;14075:2;14057:21;;;14114:2;14094:18;;;14087:30;14153:34;14148:2;14133:18;;14126:62;-1:-1:-1;;;14219:2:1;14204:18;;14197:39;14268:3;14253:19;;14047:231::o;14283:353::-;14485:2;14467:21;;;14524:2;14504:18;;;14497:30;14563:31;14558:2;14543:18;;14536:59;14627:2;14612:18;;14457:179::o;14641:356::-;14843:2;14825:21;;;14862:18;;;14855:30;14921:34;14916:2;14901:18;;14894:62;14988:2;14973:18;;14815:182::o;15002:331::-;15204:2;15186:21;;;15243:1;15223:18;;;15216:29;-1:-1:-1;;;15276:2:1;15261:18;;15254:38;15324:2;15309:18;;15176:157::o;15338:397::-;15540:2;15522:21;;;15579:2;15559:18;;;15552:30;15618:34;15613:2;15598:18;;15591:62;-1:-1:-1;;;15684:2:1;15669:18;;15662:31;15725:3;15710:19;;15512:223::o;15740:408::-;15942:2;15924:21;;;15981:2;15961:18;;;15954:30;16020:34;16015:2;16000:18;;15993:62;-1:-1:-1;;;16086:2:1;16071:18;;16064:42;16138:3;16123:19;;15914:234::o;16153:346::-;16355:2;16337:21;;;16394:2;16374:18;;;16367:30;-1:-1:-1;;;16428:2:1;16413:18;;16406:52;16490:2;16475:18;;16327:172::o;16504:356::-;16706:2;16688:21;;;16725:18;;;16718:30;16784:34;16779:2;16764:18;;16757:62;16851:2;16836:18;;16678:182::o;16865:402::-;17067:2;17049:21;;;17106:2;17086:18;;;17079:30;17145:34;17140:2;17125:18;;17118:62;-1:-1:-1;;;17211:2:1;17196:18;;17189:36;17257:3;17242:19;;17039:228::o;17272:348::-;17474:2;17456:21;;;17513:2;17493:18;;;17486:30;17552:26;17547:2;17532:18;;17525:54;17611:2;17596:18;;17446:174::o;17625:411::-;17827:2;17809:21;;;17866:2;17846:18;;;17839:30;17905:34;17900:2;17885:18;;17878:62;-1:-1:-1;;;17971:2:1;17956:18;;17949:45;18026:3;18011:19;;17799:237::o;18041:405::-;18243:2;18225:21;;;18282:2;18262:18;;;18255:30;18321:34;18316:2;18301:18;;18294:62;-1:-1:-1;;;18387:2:1;18372:18;;18365:39;18436:3;18421:19;;18215:231::o;18451:356::-;18653:2;18635:21;;;18672:18;;;18665:30;18731:34;18726:2;18711:18;;18704:62;18798:2;18783:18;;18625:182::o;18812:397::-;19014:2;18996:21;;;19053:2;19033:18;;;19026:30;19092:34;19087:2;19072:18;;19065:62;-1:-1:-1;;;19158:2:1;19143:18;;19136:31;19199:3;19184:19;;18986:223::o;19214:413::-;19416:2;19398:21;;;19455:2;19435:18;;;19428:30;19494:34;19489:2;19474:18;;19467:62;-1:-1:-1;;;19560:2:1;19545:18;;19538:47;19617:3;19602:19;;19388:239::o;19632:408::-;19834:2;19816:21;;;19873:2;19853:18;;;19846:30;19912:34;19907:2;19892:18;;19885:62;-1:-1:-1;;;19978:2:1;19963:18;;19956:42;20030:3;20015:19;;19806:234::o;20045:177::-;20191:25;;;20179:2;20164:18;;20146:76::o;20227:251::-;20297:2;20291:9;20327:17;;;20374:18;20359:34;;20395:22;;;20356:62;20353:2;;;20421:18;;:::i;:::-;20457:2;20450:22;20271:207;;-1:-1:-1;20271:207:1:o;20483:192::-;;20582:18;20574:6;20571:30;20568:2;;;20604:18;;:::i;:::-;-1:-1:-1;20664:4:1;20645:17;;;20641:28;;20558:117::o;20680:128::-;;20751:1;20747:6;20744:1;20741:13;20738:2;;;20757:18;;:::i;:::-;-1:-1:-1;20793:9:1;;20728:80::o;20813:120::-;;20879:1;20869:2;;20884:18;;:::i;:::-;-1:-1:-1;20918:9:1;;20859:74::o;20938:168::-;;21044:1;21040;21036:6;21032:14;21029:1;21026:21;21021:1;21014:9;21007:17;21003:45;21000:2;;;21051:18;;:::i;:::-;-1:-1:-1;21091:9:1;;20990:116::o;21111:125::-;;21179:1;21176;21173:8;21170:2;;;21184:18;;:::i;:::-;-1:-1:-1;21221:9:1;;21160:76::o;21241:258::-;21313:1;21323:113;21337:6;21334:1;21331:13;21323:113;;;21413:11;;;21407:18;21394:11;;;21387:39;21359:2;21352:10;21323:113;;;21454:6;21451:1;21448:13;21445:2;;;-1:-1:-1;;21489:1:1;21471:16;;21464:27;21294:205::o;21504:380::-;21589:1;21579:12;;21636:1;21626:12;;;21647:2;;21701:4;21693:6;21689:17;21679:27;;21647:2;21754;21746:6;21743:14;21723:18;21720:38;21717:2;;;21800:10;21795:3;21791:20;21788:1;21781:31;21835:4;21832:1;21825:15;21863:4;21860:1;21853:15;21717:2;;21559:325;;;:::o;21889:135::-;;-1:-1:-1;;21949:17:1;;21946:2;;;21969:18;;:::i;:::-;-1:-1:-1;22016:1:1;22005:13;;21936:88::o;22029:112::-;;22087:1;22077:2;;22092:18;;:::i;:::-;-1:-1:-1;22126:9:1;;22067:74::o;22146:127::-;22207:10;22202:3;22198:20;22195:1;22188:31;22238:4;22235:1;22228:15;22262:4;22259:1;22252:15;22278:127;22339:10;22334:3;22330:20;22327:1;22320:31;22370:4;22367:1;22360:15;22394:4;22391:1;22384:15;22410:127;22471:10;22466:3;22462:20;22459:1;22452:31;22502:4;22499:1;22492:15;22526:4;22523:1;22516:15;22542:133;-1:-1:-1;;;;;;22618:32:1;;22608:43;;22598:2;;22665:1;22662;22655:12

Swarm Source

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