ETH Price: $3,309.40 (+1.15%)
Gas: 3 Gwei

Token

Billionaire Sheep Club (BSC)
 

Overview

Max Total Supply

6 BSC

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
donjovani.eth
Balance
1 BSC
0x494a7a4c5710f620b816110adb23a9fafbfd7478
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:
Billionaire_Sheep_Club

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-24
*/

/**
 *Submitted for verification at Etherscan.io on 2022-04-23
*/

/**
 *Submitted for verification at Etherscan.io on 2022-04-06
*/

// 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 Billionaire_Sheep_Club  is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;
    using Strings for uint256;

    uint private constant _TOTALSUPPLY = 10000;
    uint public Event_supply=100;
    uint public WlMint_supply=900;
    uint public Round1_mint_supply=2000;
    uint public Round2_mint_supply=3000;

    uint256 public Wl_price= 0.35 ether; 
    uint256 public Round1_price=  0.5 ether; //0.5 
    uint256 public Round2_price = 0.75 ether;
    uint256 public Round3_price = 1 ether;

    uint private tokenId=1;
    uint256 private __maxMintPerAddress=10;

    bool public Wl_status = false;
    bool public Round1_status = false;
    bool public Round2_status = false;   
    bool public Round3_status = false;   
    
    bool public _revelNFT = false;
    string private _uriBeforeRevel;

    mapping(address => bool) private __giveawaywhiteList;

    uint256 public Event_counter=0;
    uint256 public Wl_counter=0;
    uint256 public Round1_counter=0;
    uint256 public Round2_counter=0;

    string private _contractURI="https://gateway.pinata.cloud/ipfs/QmbjiMMmGugBs8uMh4ipH8QupupdUUixZ5m98kfKfbL1CZ/contract%20level%20metadata.json/";

    constructor() ERC721("Billionaire Sheep Club", "BSC")  {
        _uriBeforeRevel = "https://gateway.pinata.cloud/ipfs/QmVNiFGzaNYV5h2kDKta8x7f1tiiF7UorxwhHi2xXsXANP/";
        contractURI();
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }

    function flip_Wl_status() public onlyOwner{
        Wl_status = !Wl_status;
    }
    function flip_Round1_status() public onlyOwner{
        Round1_status = !Round1_status;
    }
    function flip_Round2_status() public onlyOwner{
        Round2_status = !Round2_status;
    }
    function flip_Round3_status() public onlyOwner{
        Round3_status = !Round3_status;
    }


    function setPrice_Wl(uint256 _newPrice) public onlyOwner() {
        Wl_price = _newPrice;
    }
    function getPrice_Wl(uint256 _quantity) public view returns (uint256) {
       
           return _quantity*Wl_price;
    }

    function setPrice_Round1(uint256 _newPrice) public onlyOwner() {
        Round1_price = _newPrice;
    }
    function getPrice_Round1(uint256 _quantity) public view returns (uint256) {
       
           return _quantity*Round1_price;
    }

    function setPrice_Round2(uint256 _newPrice) public onlyOwner() {
        Round2_price = _newPrice;
    }
    function getPrice_Round2(uint256 _quantity) public view returns (uint256) {
       
           return _quantity*Round2_price;
    }

    function setPrice_Round3(uint256 _newPrice) public onlyOwner() {
        Round1_price = _newPrice;
    }
    function getPrice_Round3(uint256 _quantity) public view returns (uint256) {
       
           return _quantity*Round3_price;
    }



    modifier isSaleOpen{
        require(totalSupply() < _TOTALSUPPLY, "Sale end");
        _;
    }
    
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    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(), ".json")): "";
    } else{
      return _uriBeforeRevel;
    }
  }
  
 function changeRevelStatus() external onlyOwner {
    _revelNFT = !_revelNFT;
  }

    
    function Event_mint(uint256 chosenAmount, address add) public onlyOwner{
        require(Event_counter <= 100, "Round 1 Sale is Over");
        require(chosenAmount > 0, "Amount is not valid");
        require(
            totalSupply() + chosenAmount <= _TOTALSUPPLY,
            "Mint requested more than max supply"
        );
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(add, totalsupply());
            tokenId++;
            Event_counter++;
        }
    }    

    function Wl_Mint(uint256 chosenAmount) public payable{
        require(balanceOf(_msgSender()) + chosenAmount < 21, "You can't Mint More than 20 nfts");
        require(Wl_counter <= 900, "Round 1 Sale is Over");
        require(Wl_status == true, "Sale is not active at the moment");
        require(chosenAmount > 0, "Amount is not valid");
        require(chosenAmount <= 20, "You can only mint 20");
        require(Wl_price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        require(
            balanceOf(_msgSender()) < 21,
            "No more tokens for this address"
        );
        require(
            totalSupply() + chosenAmount <= _TOTALSUPPLY,
            "Mint requested more than max supply"
        );
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            Wl_counter++;
        }
    }

    function Round1_mint(uint256 chosenAmount) public payable{
        require(balanceOf(_msgSender()) + chosenAmount < 21, "You can't Mint More than 20 nfts");
        require(Round1_counter <= 2000, "Round 1 Sale is Over");
        require(Round1_status == true, "Sale is not active at the moment");
        require(chosenAmount > 0, "Amount is not valid");
        require(chosenAmount <= 20, "You can only mint 20");
        require(Round1_price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        require(
            balanceOf(_msgSender()) < 21,
            "No more tokens for this address"
        );
        require(
            totalSupply() + chosenAmount <= _TOTALSUPPLY,
            "Mint requested more than max supply"
        );
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            Round1_counter++;
        }
    }

    function Round2_Mint(uint256 chosenAmount) public payable{
        require(balanceOf(_msgSender()) + chosenAmount < 21, "You can't Mint More than 20 nfts");
        require(Round2_counter <= 3000, "Private Sale is Over");
        require(Round2_status == true, "Sale is not active at the moment");
        require(chosenAmount > 0, "Amount is not valid");
        require(chosenAmount <= 20, "You can only mint 20");
        require(Round2_price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        require(
            balanceOf(_msgSender()) < 21,
            "No more tokens for this address"
        );
        require(
            totalSupply() + chosenAmount <= _TOTALSUPPLY,
            "Mint requested more than max supply"
        );
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            Round2_counter++;
        }
    }

    function Round3_mint(uint chosenAmount) public payable{
        require(balanceOf(_msgSender()) + chosenAmount < 21, "You can't Mint More than 20 nfts");
        require(totalSupply()+chosenAmount<=_TOTALSUPPLY,"Quantity must be lesser then MaxSupply");
        require(Round3_status == true, "Sale is not active at the moment");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= 20, "Number of tokens can not be less than or equal to 0");
        require(Round3_price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        require(
            balanceOf(_msgSender()) < 10,
            "No more tokens for this address"
        );
        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 __giveawaywhiteList[address_] == true;
    }

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

    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":[],"name":"Event_counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"},{"internalType":"address","name":"add","type":"address"}],"name":"Event_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Event_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Round1_counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"Round1_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Round1_mint_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Round1_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Round1_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"Round2_Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Round2_counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Round2_mint_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Round2_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Round2_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"Round3_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Round3_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Round3_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlMint_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"Wl_Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Wl_counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Wl_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Wl_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"addresses_","type":"address[]"}],"name":"addMultipleWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"addSingleWl","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":"flip_Round1_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flip_Round2_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flip_Round3_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flip_Wl_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice_Round1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice_Round2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice_Round3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice_Wl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice_Round1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice_Round2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice_Round3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice_Wl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"}]

6064600c55610384600d556107d0600e55610bb8600f556704db7325476300006010556706f05b59d3b20000601155670a688906bd8b0000601255670de0b6b3a76400006013556001601455600a6015556016805464ffffffffff1916905560006019819055601a819055601b819055601c5561012060405260726080818152906200374f60a03980516200009d91601d9160209091019062000265565b50348015620000ab57600080fd5b50604080518082018252601681527f42696c6c696f6e6169726520536865657020436c75620000000000000000000060208083019182528351808501909452600384526242534360e81b9084015281519192916200010c9160009162000265565b5080516200012290600190602084019062000265565b505050600062000137620001c760201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051806080016040528060518152602001620036fe605191398051620001b59160179160209091019062000265565b50620001c0620001cb565b5062000348565b3390565b6060601d8054620001dc906200030b565b80601f01602080910402602001604051908101604052809291908181526020018280546200020a906200030b565b80156200025b5780601f106200022f576101008083540402835291602001916200025b565b820191906000526020600020905b8154815290600101906020018083116200023d57829003601f168201915b5050505050905090565b82805462000273906200030b565b90600052602060002090601f016020900481019282620002975760008555620002e2565b82601f10620002b257805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e2578251825591602001919060010190620002c5565b50620002f0929150620002f4565b5090565b5b80821115620002f05760008155600101620002f5565b600181811c908216806200032057607f821691505b602082108114156200034257634e487b7160e01b600052602260045260246000fd5b50919050565b6133a680620003586000396000f3fe6080604052600436106103a25760003560e01c8063758fb274116101e7578063b683b3611161010d578063cec3a4f6116100a0578063e985e9c51161006f578063e985e9c5146109fb578063ebdf4f6114610a44578063f1bacdf614610a64578063f2fde38b14610a7a57600080fd5b8063cec3a4f6146109a0578063d85d951a146109b3578063dc136139146109d3578063e8a3d485146109e657600080fd5b8063be1672e7116100dc578063be1672e714610935578063c36347c51461094b578063c87b56dd14610961578063c9c189631461098157600080fd5b8063b683b361146108d4578063b88d4fde146108ea578063b8ef8c4c1461090a578063bd0a84391461092057600080fd5b806394d9f3dd116101855780639c8a89df116101545780639c8a89df1461085e578063a057f1861461087e578063a22cb4651461089e578063a734900b146108be57600080fd5b806394d9f3dd1461080457806394ea7a061461081957806395d89b411461083357806398d1315e1461084857600080fd5b80638da5cb5b116101c15780638da5cb5b1461079b57806390cb155e146107b9578063915d4e57146107ce578063945a7547146107ee57600080fd5b8063758fb2741461073b5780637bb65a2b1461074e5780638462151c1461076e57600080fd5b80633ccfd60b116102cc5780636352211e1161026a5780636f9170f6116102395780636f9170f6146106a857806370a08231146106e6578063743976a014610706578063755c8dba1461071b57600080fd5b80636352211e146106525780636715bb61146104fa57806367f6feb6146106725780636afa03b71461069257600080fd5b80634f6ccce7116102a65780634f6ccce7146105db57806355f804b3146105fb57806359aa1f3d1461061b57806362c6f7b91461063057600080fd5b80633ccfd60b146105905780633d5b44c5146105a557806342842e0e146105bb57600080fd5b806316473d8d1161034457806323b872dd1161031357806323b872dd1461051a5780632971ecb91461053a5780632f745c591461055a5780633a977c8b1461057a57600080fd5b806316473d8d146104af57806317fcdd89146104d057806318160ddd146104e5578063195488f9146104fa57600080fd5b8063081812fc11610380578063081812fc14610413578063095ea7b31461044b57806311e233dd1461046b57806311ea5a3d1461049957600080fd5b806301861453146103a757806301ffc9a7146103bc57806306fdde03146103f1575b600080fd5b6103ba6103b5366004612db9565b610a9a565b005b3480156103c857600080fd5b506103dc6103d7366004612d36565b610c49565b60405190151581526020015b60405180910390f35b3480156103fd57600080fd5b50610406610c74565b6040516103e89190612ee1565b34801561041f57600080fd5b5061043361042e366004612db9565b610d06565b6040516001600160a01b0390911681526020016103e8565b34801561045757600080fd5b506103ba610466366004612c58565b610d9b565b34801561047757600080fd5b5061048b610486366004612db9565b610eb1565b6040519081526020016103e8565b3480156104a557600080fd5b5061048b60115481565b3480156104bb57600080fd5b506016546103dc906301000000900460ff1681565b3480156104dc57600080fd5b506103ba610ec1565b3480156104f157600080fd5b5060095461048b565b34801561050657600080fd5b506103ba610515366004612db9565b610f08565b34801561052657600080fd5b506103ba610535366004612b64565b610f37565b34801561054657600080fd5b506103ba610555366004612db9565b610f68565b34801561056657600080fd5b5061048b610575366004612c58565b610f97565b34801561058657600080fd5b5061048b601c5481565b34801561059c57600080fd5b506103ba61102d565b3480156105b157600080fd5b5061048b601a5481565b3480156105c757600080fd5b506103ba6105d6366004612b64565b611086565b3480156105e757600080fd5b5061048b6105f6366004612db9565b6110a1565b34801561060757600080fd5b506103ba610616366004612d70565b611134565b34801561062757600080fd5b506103ba611171565b34801561063c57600080fd5b506016546103dc90640100000000900460ff1681565b34801561065e57600080fd5b5061043361066d366004612db9565b6111af565b34801561067e57600080fd5b5061048b61068d366004612db9565b611226565b34801561069e57600080fd5b5061048b600c5481565b3480156106b457600080fd5b506103dc6106c3366004612b16565b6001600160a01b031660009081526018602052604090205460ff16151560011490565b3480156106f257600080fd5b5061048b610701366004612b16565b611236565b34801561071257600080fd5b506104066112bd565b34801561072757600080fd5b506103ba610736366004612dd2565b61134b565b6103ba610749366004612db9565b611442565b34801561075a57600080fd5b5061048b610769366004612db9565b6115e5565b34801561077a57600080fd5b5061078e610789366004612b16565b6115f5565b6040516103e89190612e9d565b3480156107a757600080fd5b50600b546001600160a01b0316610433565b3480156107c557600080fd5b506103ba611697565b3480156107da57600080fd5b506103ba6107e9366004612db9565b6116e2565b3480156107fa57600080fd5b5061048b600f5481565b34801561081057600080fd5b506103ba611711565b34801561082557600080fd5b506016546103dc9060ff1681565b34801561083f57600080fd5b5061040661175a565b34801561085457600080fd5b5061048b600d5481565b34801561086a57600080fd5b5061048b610879366004612db9565b611769565b34801561088a57600080fd5b506103ba610899366004612b16565b611779565b3480156108aa57600080fd5b506103ba6108b9366004612c1c565b6117f5565b3480156108ca57600080fd5b5061048b60195481565b3480156108e057600080fd5b5061048b601b5481565b3480156108f657600080fd5b506103ba610905366004612ba0565b6118ba565b34801561091657600080fd5b5061048b60105481565b34801561092c57600080fd5b506103ba6118f2565b34801561094157600080fd5b5061048b60135481565b34801561095757600080fd5b5061048b600e5481565b34801561096d57600080fd5b5061040661097c366004612db9565b61193f565b34801561098d57600080fd5b506016546103dc90610100900460ff1681565b6103ba6109ae366004612db9565b611b2f565b3480156109bf57600080fd5b506016546103dc9062010000900460ff1681565b6103ba6109e1366004612db9565b611cf9565b3480156109f257600080fd5b50610406611ea3565b348015610a0757600080fd5b506103dc610a16366004612b31565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a5057600080fd5b506103ba610a5f366004612c82565b611eb2565b348015610a7057600080fd5b5061048b60125481565b348015610a8657600080fd5b506103ba610a95366004612b16565b611f97565b601581610aa633611236565b610ab091906131f4565b10610ad65760405162461bcd60e51b8152600401610acd90612fc7565b60405180910390fd5b610384601a541115610afa5760405162461bcd60e51b8152600401610acd90613160565b60165460ff161515600114610b215760405162461bcd60e51b8152600401610acd9061318e565b60008111610b415760405162461bcd60e51b8152600401610acd90613133565b6014811115610b625760405162461bcd60e51b8152600401610acd90612f99565b6010543490610b71908361202f565b14610b8e5760405162461bcd60e51b8152600401610acd90613033565b6015610b9933611236565b10610bb65760405162461bcd60e51b8152600401610acd90612ffc565b61271081610bc360095490565b610bcd91906131f4565b1115610beb5760405162461bcd60e51b8152600401610acd9061306a565b60005b81811015610c4557610c0833610c0360145490565b61203b565b60148054906000610c18836132bd565b9091555050601a8054906000610c2d836132bd565b91905055508080610c3d906132bd565b915050610bee565b5050565b60006001600160e01b0319821663780e9d6360e01b1480610c6e5750610c6e82612055565b92915050565b606060008054610c8390613282565b80601f0160208091040260200160405190810160405280929190818152602001828054610caf90613282565b8015610cfc5780601f10610cd157610100808354040283529160200191610cfc565b820191906000526020600020905b815481529060010190602001808311610cdf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d7f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b506000908152600460205260409020546001600160a01b031690565b6000610da6826111af565b9050806001600160a01b0316836001600160a01b03161415610e145760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610acd565b336001600160a01b0382161480610e305750610e308133610a16565b610ea25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610acd565b610eac83836120a5565b505050565b600060125482610c6e9190613220565b600b546001600160a01b03163314610eeb5760405162461bcd60e51b8152600401610acd906130ad565b6016805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03163314610f325760405162461bcd60e51b8152600401610acd906130ad565b601155565b610f413382612113565b610f5d5760405162461bcd60e51b8152600401610acd906130e2565b610eac83838361220a565b600b546001600160a01b03163314610f925760405162461bcd60e51b8152600401610acd906130ad565b601255565b6000610fa283611236565b82106110045760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610acd565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146110575760405162461bcd60e51b8152600401610acd906130ad565b6040514790339082156108fc029083906000818181858888f19350505050158015610c45573d6000803e3d6000fd5b610eac838383604051806020016040528060008152506118ba565b60006110ac60095490565b821061110f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610acd565b600982815481106111225761112261332e565b90600052602060002001549050919050565b600b546001600160a01b0316331461115e5760405162461bcd60e51b8152600401610acd906130ad565b8051610c45906006906020840190612a0e565b600b546001600160a01b0316331461119b5760405162461bcd60e51b8152600401610acd906130ad565b6016805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b031680610c6e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610acd565b600060105482610c6e9190613220565b60006001600160a01b0382166112a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610acd565b506001600160a01b031660009081526003602052604090205490565b600680546112ca90613282565b80601f01602080910402602001604051908101604052809291908181526020018280546112f690613282565b80156113435780601f1061131857610100808354040283529160200191611343565b820191906000526020600020905b81548152906001019060200180831161132657829003601f168201915b505050505081565b600b546001600160a01b031633146113755760405162461bcd60e51b8152600401610acd906130ad565b606460195411156113985760405162461bcd60e51b8152600401610acd90613160565b600082116113b85760405162461bcd60e51b8152600401610acd90613133565b612710826113c560095490565b6113cf91906131f4565b11156113ed5760405162461bcd60e51b8152600401610acd9061306a565b60005b82811015610eac5761140582610c0360145490565b60148054906000611415836132bd565b90915550506019805490600061142a836132bd565b9190505550808061143a906132bd565b9150506113f0565b60158161144e33611236565b61145891906131f4565b106114755760405162461bcd60e51b8152600401610acd90612fc7565b6107d0601b5411156114995760405162461bcd60e51b8152600401610acd90613160565b60165460ff6101009091041615156001146114c65760405162461bcd60e51b8152600401610acd9061318e565b600081116114e65760405162461bcd60e51b8152600401610acd90613133565b60148111156115075760405162461bcd60e51b8152600401610acd90612f99565b6011543490611516908361202f565b146115335760405162461bcd60e51b8152600401610acd90613033565b601561153e33611236565b1061155b5760405162461bcd60e51b8152600401610acd90612ffc565b6127108161156860095490565b61157291906131f4565b11156115905760405162461bcd60e51b8152600401610acd9061306a565b60005b81811015610c45576115a833610c0360145490565b601480549060006115b8836132bd565b9091555050601b80549060006115cd836132bd565b919050555080806115dd906132bd565b915050611593565b600060115482610c6e9190613220565b6060600061160283611236565b905060008167ffffffffffffffff81111561161f5761161f613344565b604051908082528060200260200182016040528015611648578160200160208202803683370190505b50905060005b8281101561168f576116608582610f97565b8282815181106116725761167261332e565b602090810291909101015280611687816132bd565b91505061164e565b509392505050565b600b546001600160a01b031633146116c15760405162461bcd60e51b8152600401610acd906130ad565b6016805463ff00000019811663010000009182900460ff1615909102179055565b600b546001600160a01b0316331461170c5760405162461bcd60e51b8152600401610acd906130ad565b601055565b600b546001600160a01b0316331461173b5760405162461bcd60e51b8152600401610acd906130ad565b6016805462ff0000198116620100009182900460ff1615909102179055565b606060018054610c8390613282565b600060135482610c6e9190613220565b600b546001600160a01b031633146117a35760405162461bcd60e51b8152600401610acd906130ad565b6117ca816001600160a01b031660009081526018602052604090205460ff16151560011490565b6117f2576001600160a01b0381166000908152601860205260409020805460ff191660011790555b50565b6001600160a01b03821633141561184e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610acd565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118c43383612113565b6118e05760405162461bcd60e51b8152600401610acd906130e2565b6118ec848484846123b5565b50505050565b600b546001600160a01b0316331461191c5760405162461bcd60e51b8152600401610acd906130ad565b6016805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166119a65760405162461bcd60e51b815260206004820181905260248201527f2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e6044820152606401610acd565b601654640100000000900460ff1615611a98576000600680546119c890613282565b80601f01602080910402602001604051908101604052809291908181526020018280546119f490613282565b8015611a415780601f10611a1657610100808354040283529160200191611a41565b820191906000526020600020905b815481529060010190602001808311611a2457829003601f168201915b505050505090506000815111611a665760405180602001604052806000815250611a91565b80611a70846123e8565b604051602001611a81929190612e21565b6040516020818303038152906040525b9392505050565b60178054611aa590613282565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad190613282565b8015611b1e5780601f10611af357610100808354040283529160200191611b1e565b820191906000526020600020905b815481529060010190602001808311611b0157829003601f168201915b50505050509050919050565b919050565b601581611b3b33611236565b611b4591906131f4565b10611b625760405162461bcd60e51b8152600401610acd90612fc7565b610bb8601c541115611bad5760405162461bcd60e51b8152602060048201526014602482015273283934bb30ba329029b0b6329034b99027bb32b960611b6044820152606401610acd565b60165462010000900460ff161515600114611bda5760405162461bcd60e51b8152600401610acd9061318e565b60008111611bfa5760405162461bcd60e51b8152600401610acd90613133565b6014811115611c1b5760405162461bcd60e51b8152600401610acd90612f99565b6012543490611c2a908361202f565b14611c475760405162461bcd60e51b8152600401610acd90613033565b6015611c5233611236565b10611c6f5760405162461bcd60e51b8152600401610acd90612ffc565b61271081611c7c60095490565b611c8691906131f4565b1115611ca45760405162461bcd60e51b8152600401610acd9061306a565b60005b81811015610c4557611cbc33610c0360145490565b60148054906000611ccc836132bd565b9091555050601c8054906000611ce1836132bd565b91905055508080611cf1906132bd565b915050611ca7565b601581611d0533611236565b611d0f91906131f4565b10611d2c5760405162461bcd60e51b8152600401610acd90612fc7565b61271081611d3960095490565b611d4391906131f4565b1115611da05760405162461bcd60e51b815260206004820152602660248201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604482015265537570706c7960d01b6064820152608401610acd565b6016546301000000900460ff161515600114611dce5760405162461bcd60e51b8152600401610acd9061318e565b60008111611dee5760405162461bcd60e51b8152600401610acd90612ef4565b6014811115611e0f5760405162461bcd60e51b8152600401610acd90612ef4565b6013543490611e1e908361202f565b14611e3b5760405162461bcd60e51b8152600401610acd90613033565b600a611e4633611236565b10611e635760405162461bcd60e51b8152600401610acd90612ffc565b60005b81811015610c4557611e7b33610c0360145490565b60148054906000611e8b836132bd565b91905055508080611e9b906132bd565b915050611e66565b6060601d8054610c8390613282565b600b546001600160a01b03163314611edc5760405162461bcd60e51b8152600401610acd906130ad565b805160005b81811015610eac57611f29838281518110611efe57611efe61332e565b60200260200101516001600160a01b031660009081526018602052604090205460ff16151560011490565b611f8557600160186000858481518110611f4557611f4561332e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80611f8f816132bd565b915050611ee1565b600b546001600160a01b03163314611fc15760405162461bcd60e51b8152600401610acd906130ad565b6001600160a01b0381166120265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acd565b6117f2816124e6565b6000611a918284613220565b610c45828260405180602001604052806000815250612538565b60006001600160e01b031982166380ac58cd60e01b148061208657506001600160e01b03198216635b5e139f60e01b145b80610c6e57506301ffc9a760e01b6001600160e01b0319831614610c6e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120da826111af565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661218c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b6000612197836111af565b9050806001600160a01b0316846001600160a01b031614806121d25750836001600160a01b03166121c784610d06565b6001600160a01b0316145b8061220257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661221d826111af565b6001600160a01b0316146122855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610acd565b6001600160a01b0382166122e75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610acd565b6122f283838361256b565b6122fd6000826120a5565b6001600160a01b038316600090815260036020526040812080546001929061232690849061323f565b90915550506001600160a01b03821660009081526003602052604081208054600192906123549084906131f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6123c084848461220a565b6123cc84848484612623565b6118ec5760405162461bcd60e51b8152600401610acd90612f47565b60608161240c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124365780612420816132bd565b915061242f9050600a8361320c565b9150612410565b60008167ffffffffffffffff81111561245157612451613344565b6040519080825280601f01601f19166020018201604052801561247b576020820181803683370190505b5090505b84156122025761249060018361323f565b915061249d600a866132d8565b6124a89060306131f4565b60f81b8183815181106124bd576124bd61332e565b60200101906001600160f81b031916908160001a9053506124df600a8661320c565b945061247f565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6125428383612730565b61254f6000848484612623565b610eac5760405162461bcd60e51b8152600401610acd90612f47565b6001600160a01b0383166125c6576125c181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6125e9565b816001600160a01b0316836001600160a01b0316146125e9576125e9838261287e565b6001600160a01b03821661260057610eac8161291b565b826001600160a01b0316826001600160a01b031614610eac57610eac82826129ca565b60006001600160a01b0384163b1561272557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612667903390899088908890600401612e60565b602060405180830381600087803b15801561268157600080fd5b505af19250505080156126b1575060408051601f3d908101601f191682019092526126ae91810190612d53565b60015b61270b573d8080156126df576040519150601f19603f3d011682016040523d82523d6000602084013e6126e4565b606091505b5080516127035760405162461bcd60e51b8152600401610acd90612f47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612202565b506001949350505050565b6001600160a01b0382166127865760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610acd565b6000818152600260205260409020546001600160a01b0316156127eb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610acd565b6127f76000838361256b565b6001600160a01b03821660009081526003602052604081208054600192906128209084906131f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161288b84611236565b612895919061323f565b6000838152600860205260409020549091508082146128e8576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061292d9060019061323f565b6000838152600a6020526040812054600980549394509092849081106129555761295561332e565b9060005260206000200154905080600983815481106129765761297661332e565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806129ae576129ae613318565b6001900381819060005260206000200160009055905550505050565b60006129d583611236565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054612a1a90613282565b90600052602060002090601f016020900481019282612a3c5760008555612a82565b82601f10612a5557805160ff1916838001178555612a82565b82800160010185558215612a82579182015b82811115612a82578251825591602001919060010190612a67565b50612a8e929150612a92565b5090565b5b80821115612a8e5760008155600101612a93565b600067ffffffffffffffff831115612ac157612ac1613344565b612ad4601f8401601f19166020016131c3565b9050828152838383011115612ae857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b2a57600080fd5b600060208284031215612b2857600080fd5b611a9182612aff565b60008060408385031215612b4457600080fd5b612b4d83612aff565b9150612b5b60208401612aff565b90509250929050565b600080600060608486031215612b7957600080fd5b612b8284612aff565b9250612b9060208501612aff565b9150604084013590509250925092565b60008060008060808587031215612bb657600080fd5b612bbf85612aff565b9350612bcd60208601612aff565b925060408501359150606085013567ffffffffffffffff811115612bf057600080fd5b8501601f81018713612c0157600080fd5b612c1087823560208401612aa7565b91505092959194509250565b60008060408385031215612c2f57600080fd5b612c3883612aff565b915060208301358015158114612c4d57600080fd5b809150509250929050565b60008060408385031215612c6b57600080fd5b612c7483612aff565b946020939093013593505050565b60006020808385031215612c9557600080fd5b823567ffffffffffffffff80821115612cad57600080fd5b818501915085601f830112612cc157600080fd5b813581811115612cd357612cd3613344565b8060051b9150612ce48483016131c3565b8181528481019084860184860187018a1015612cff57600080fd5b600095505b83861015612d2957612d1581612aff565b835260019590950194918601918601612d04565b5098975050505050505050565b600060208284031215612d4857600080fd5b8135611a918161335a565b600060208284031215612d6557600080fd5b8151611a918161335a565b600060208284031215612d8257600080fd5b813567ffffffffffffffff811115612d9957600080fd5b8201601f81018413612daa57600080fd5b61220284823560208401612aa7565b600060208284031215612dcb57600080fd5b5035919050565b60008060408385031215612de557600080fd5b82359150612b5b60208401612aff565b60008151808452612e0d816020860160208601613256565b601f01601f19169290920160200192915050565b60008351612e33818460208801613256565b835190830190612e47818360208801613256565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e9390830184612df5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ed557835183529284019291840191600101612eb9565b50909695505050505050565b602081526000611a916020830184612df5565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601490820152730596f752063616e206f6e6c79206d696e742032360641b604082015260600190565b6020808252818101527f596f752063616e2774204d696e74204d6f7265207468616e203230206e667473604082015260600190565b6020808252601f908201527f4e6f206d6f726520746f6b656e7320666f722074686973206164647265737300604082015260600190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b60208082526023908201527f4d696e7420726571756573746564206d6f7265207468616e206d617820737570604082015262706c7960e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272105b5bdd5b9d081a5cc81b9bdd081d985b1a59606a1b604082015260600190565b6020808252601490820152732937bab73210189029b0b6329034b99027bb32b960611b604082015260600190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156131ec576131ec613344565b604052919050565b60008219821115613207576132076132ec565b500190565b60008261321b5761321b613302565b500490565b600081600019048311821515161561323a5761323a6132ec565b500290565b600082821015613251576132516132ec565b500390565b60005b83811015613271578181015183820152602001613259565b838111156118ec5750506000910152565b600181811c9082168061329657607f821691505b602082108114156132b757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132d1576132d16132ec565b5060010190565b6000826132e7576132e7613302565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117f257600080fdfea2646970667358221220ac2d9cf23212c8d34dada4eefeeaf91ac500d4dde9dc96266e2db732ff90769764736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d564e6946477a614e59563568326b444b746138783766317469694637556f7278776848693278587358414e502f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d626a694d4d6d477567427338754d683469704838517570757064555569785a356d39386b664b66624c31435a2f636f6e74726163742532306c6576656c2532306d657461646174612e6a736f6e2f

Deployed Bytecode

0x6080604052600436106103a25760003560e01c8063758fb274116101e7578063b683b3611161010d578063cec3a4f6116100a0578063e985e9c51161006f578063e985e9c5146109fb578063ebdf4f6114610a44578063f1bacdf614610a64578063f2fde38b14610a7a57600080fd5b8063cec3a4f6146109a0578063d85d951a146109b3578063dc136139146109d3578063e8a3d485146109e657600080fd5b8063be1672e7116100dc578063be1672e714610935578063c36347c51461094b578063c87b56dd14610961578063c9c189631461098157600080fd5b8063b683b361146108d4578063b88d4fde146108ea578063b8ef8c4c1461090a578063bd0a84391461092057600080fd5b806394d9f3dd116101855780639c8a89df116101545780639c8a89df1461085e578063a057f1861461087e578063a22cb4651461089e578063a734900b146108be57600080fd5b806394d9f3dd1461080457806394ea7a061461081957806395d89b411461083357806398d1315e1461084857600080fd5b80638da5cb5b116101c15780638da5cb5b1461079b57806390cb155e146107b9578063915d4e57146107ce578063945a7547146107ee57600080fd5b8063758fb2741461073b5780637bb65a2b1461074e5780638462151c1461076e57600080fd5b80633ccfd60b116102cc5780636352211e1161026a5780636f9170f6116102395780636f9170f6146106a857806370a08231146106e6578063743976a014610706578063755c8dba1461071b57600080fd5b80636352211e146106525780636715bb61146104fa57806367f6feb6146106725780636afa03b71461069257600080fd5b80634f6ccce7116102a65780634f6ccce7146105db57806355f804b3146105fb57806359aa1f3d1461061b57806362c6f7b91461063057600080fd5b80633ccfd60b146105905780633d5b44c5146105a557806342842e0e146105bb57600080fd5b806316473d8d1161034457806323b872dd1161031357806323b872dd1461051a5780632971ecb91461053a5780632f745c591461055a5780633a977c8b1461057a57600080fd5b806316473d8d146104af57806317fcdd89146104d057806318160ddd146104e5578063195488f9146104fa57600080fd5b8063081812fc11610380578063081812fc14610413578063095ea7b31461044b57806311e233dd1461046b57806311ea5a3d1461049957600080fd5b806301861453146103a757806301ffc9a7146103bc57806306fdde03146103f1575b600080fd5b6103ba6103b5366004612db9565b610a9a565b005b3480156103c857600080fd5b506103dc6103d7366004612d36565b610c49565b60405190151581526020015b60405180910390f35b3480156103fd57600080fd5b50610406610c74565b6040516103e89190612ee1565b34801561041f57600080fd5b5061043361042e366004612db9565b610d06565b6040516001600160a01b0390911681526020016103e8565b34801561045757600080fd5b506103ba610466366004612c58565b610d9b565b34801561047757600080fd5b5061048b610486366004612db9565b610eb1565b6040519081526020016103e8565b3480156104a557600080fd5b5061048b60115481565b3480156104bb57600080fd5b506016546103dc906301000000900460ff1681565b3480156104dc57600080fd5b506103ba610ec1565b3480156104f157600080fd5b5060095461048b565b34801561050657600080fd5b506103ba610515366004612db9565b610f08565b34801561052657600080fd5b506103ba610535366004612b64565b610f37565b34801561054657600080fd5b506103ba610555366004612db9565b610f68565b34801561056657600080fd5b5061048b610575366004612c58565b610f97565b34801561058657600080fd5b5061048b601c5481565b34801561059c57600080fd5b506103ba61102d565b3480156105b157600080fd5b5061048b601a5481565b3480156105c757600080fd5b506103ba6105d6366004612b64565b611086565b3480156105e757600080fd5b5061048b6105f6366004612db9565b6110a1565b34801561060757600080fd5b506103ba610616366004612d70565b611134565b34801561062757600080fd5b506103ba611171565b34801561063c57600080fd5b506016546103dc90640100000000900460ff1681565b34801561065e57600080fd5b5061043361066d366004612db9565b6111af565b34801561067e57600080fd5b5061048b61068d366004612db9565b611226565b34801561069e57600080fd5b5061048b600c5481565b3480156106b457600080fd5b506103dc6106c3366004612b16565b6001600160a01b031660009081526018602052604090205460ff16151560011490565b3480156106f257600080fd5b5061048b610701366004612b16565b611236565b34801561071257600080fd5b506104066112bd565b34801561072757600080fd5b506103ba610736366004612dd2565b61134b565b6103ba610749366004612db9565b611442565b34801561075a57600080fd5b5061048b610769366004612db9565b6115e5565b34801561077a57600080fd5b5061078e610789366004612b16565b6115f5565b6040516103e89190612e9d565b3480156107a757600080fd5b50600b546001600160a01b0316610433565b3480156107c557600080fd5b506103ba611697565b3480156107da57600080fd5b506103ba6107e9366004612db9565b6116e2565b3480156107fa57600080fd5b5061048b600f5481565b34801561081057600080fd5b506103ba611711565b34801561082557600080fd5b506016546103dc9060ff1681565b34801561083f57600080fd5b5061040661175a565b34801561085457600080fd5b5061048b600d5481565b34801561086a57600080fd5b5061048b610879366004612db9565b611769565b34801561088a57600080fd5b506103ba610899366004612b16565b611779565b3480156108aa57600080fd5b506103ba6108b9366004612c1c565b6117f5565b3480156108ca57600080fd5b5061048b60195481565b3480156108e057600080fd5b5061048b601b5481565b3480156108f657600080fd5b506103ba610905366004612ba0565b6118ba565b34801561091657600080fd5b5061048b60105481565b34801561092c57600080fd5b506103ba6118f2565b34801561094157600080fd5b5061048b60135481565b34801561095757600080fd5b5061048b600e5481565b34801561096d57600080fd5b5061040661097c366004612db9565b61193f565b34801561098d57600080fd5b506016546103dc90610100900460ff1681565b6103ba6109ae366004612db9565b611b2f565b3480156109bf57600080fd5b506016546103dc9062010000900460ff1681565b6103ba6109e1366004612db9565b611cf9565b3480156109f257600080fd5b50610406611ea3565b348015610a0757600080fd5b506103dc610a16366004612b31565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a5057600080fd5b506103ba610a5f366004612c82565b611eb2565b348015610a7057600080fd5b5061048b60125481565b348015610a8657600080fd5b506103ba610a95366004612b16565b611f97565b601581610aa633611236565b610ab091906131f4565b10610ad65760405162461bcd60e51b8152600401610acd90612fc7565b60405180910390fd5b610384601a541115610afa5760405162461bcd60e51b8152600401610acd90613160565b60165460ff161515600114610b215760405162461bcd60e51b8152600401610acd9061318e565b60008111610b415760405162461bcd60e51b8152600401610acd90613133565b6014811115610b625760405162461bcd60e51b8152600401610acd90612f99565b6010543490610b71908361202f565b14610b8e5760405162461bcd60e51b8152600401610acd90613033565b6015610b9933611236565b10610bb65760405162461bcd60e51b8152600401610acd90612ffc565b61271081610bc360095490565b610bcd91906131f4565b1115610beb5760405162461bcd60e51b8152600401610acd9061306a565b60005b81811015610c4557610c0833610c0360145490565b61203b565b60148054906000610c18836132bd565b9091555050601a8054906000610c2d836132bd565b91905055508080610c3d906132bd565b915050610bee565b5050565b60006001600160e01b0319821663780e9d6360e01b1480610c6e5750610c6e82612055565b92915050565b606060008054610c8390613282565b80601f0160208091040260200160405190810160405280929190818152602001828054610caf90613282565b8015610cfc5780601f10610cd157610100808354040283529160200191610cfc565b820191906000526020600020905b815481529060010190602001808311610cdf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d7f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b506000908152600460205260409020546001600160a01b031690565b6000610da6826111af565b9050806001600160a01b0316836001600160a01b03161415610e145760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610acd565b336001600160a01b0382161480610e305750610e308133610a16565b610ea25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610acd565b610eac83836120a5565b505050565b600060125482610c6e9190613220565b600b546001600160a01b03163314610eeb5760405162461bcd60e51b8152600401610acd906130ad565b6016805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03163314610f325760405162461bcd60e51b8152600401610acd906130ad565b601155565b610f413382612113565b610f5d5760405162461bcd60e51b8152600401610acd906130e2565b610eac83838361220a565b600b546001600160a01b03163314610f925760405162461bcd60e51b8152600401610acd906130ad565b601255565b6000610fa283611236565b82106110045760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610acd565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b031633146110575760405162461bcd60e51b8152600401610acd906130ad565b6040514790339082156108fc029083906000818181858888f19350505050158015610c45573d6000803e3d6000fd5b610eac838383604051806020016040528060008152506118ba565b60006110ac60095490565b821061110f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610acd565b600982815481106111225761112261332e565b90600052602060002001549050919050565b600b546001600160a01b0316331461115e5760405162461bcd60e51b8152600401610acd906130ad565b8051610c45906006906020840190612a0e565b600b546001600160a01b0316331461119b5760405162461bcd60e51b8152600401610acd906130ad565b6016805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b031680610c6e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610acd565b600060105482610c6e9190613220565b60006001600160a01b0382166112a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610acd565b506001600160a01b031660009081526003602052604090205490565b600680546112ca90613282565b80601f01602080910402602001604051908101604052809291908181526020018280546112f690613282565b80156113435780601f1061131857610100808354040283529160200191611343565b820191906000526020600020905b81548152906001019060200180831161132657829003601f168201915b505050505081565b600b546001600160a01b031633146113755760405162461bcd60e51b8152600401610acd906130ad565b606460195411156113985760405162461bcd60e51b8152600401610acd90613160565b600082116113b85760405162461bcd60e51b8152600401610acd90613133565b612710826113c560095490565b6113cf91906131f4565b11156113ed5760405162461bcd60e51b8152600401610acd9061306a565b60005b82811015610eac5761140582610c0360145490565b60148054906000611415836132bd565b90915550506019805490600061142a836132bd565b9190505550808061143a906132bd565b9150506113f0565b60158161144e33611236565b61145891906131f4565b106114755760405162461bcd60e51b8152600401610acd90612fc7565b6107d0601b5411156114995760405162461bcd60e51b8152600401610acd90613160565b60165460ff6101009091041615156001146114c65760405162461bcd60e51b8152600401610acd9061318e565b600081116114e65760405162461bcd60e51b8152600401610acd90613133565b60148111156115075760405162461bcd60e51b8152600401610acd90612f99565b6011543490611516908361202f565b146115335760405162461bcd60e51b8152600401610acd90613033565b601561153e33611236565b1061155b5760405162461bcd60e51b8152600401610acd90612ffc565b6127108161156860095490565b61157291906131f4565b11156115905760405162461bcd60e51b8152600401610acd9061306a565b60005b81811015610c45576115a833610c0360145490565b601480549060006115b8836132bd565b9091555050601b80549060006115cd836132bd565b919050555080806115dd906132bd565b915050611593565b600060115482610c6e9190613220565b6060600061160283611236565b905060008167ffffffffffffffff81111561161f5761161f613344565b604051908082528060200260200182016040528015611648578160200160208202803683370190505b50905060005b8281101561168f576116608582610f97565b8282815181106116725761167261332e565b602090810291909101015280611687816132bd565b91505061164e565b509392505050565b600b546001600160a01b031633146116c15760405162461bcd60e51b8152600401610acd906130ad565b6016805463ff00000019811663010000009182900460ff1615909102179055565b600b546001600160a01b0316331461170c5760405162461bcd60e51b8152600401610acd906130ad565b601055565b600b546001600160a01b0316331461173b5760405162461bcd60e51b8152600401610acd906130ad565b6016805462ff0000198116620100009182900460ff1615909102179055565b606060018054610c8390613282565b600060135482610c6e9190613220565b600b546001600160a01b031633146117a35760405162461bcd60e51b8152600401610acd906130ad565b6117ca816001600160a01b031660009081526018602052604090205460ff16151560011490565b6117f2576001600160a01b0381166000908152601860205260409020805460ff191660011790555b50565b6001600160a01b03821633141561184e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610acd565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118c43383612113565b6118e05760405162461bcd60e51b8152600401610acd906130e2565b6118ec848484846123b5565b50505050565b600b546001600160a01b0316331461191c5760405162461bcd60e51b8152600401610acd906130ad565b6016805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166119a65760405162461bcd60e51b815260206004820181905260248201527f2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e6044820152606401610acd565b601654640100000000900460ff1615611a98576000600680546119c890613282565b80601f01602080910402602001604051908101604052809291908181526020018280546119f490613282565b8015611a415780601f10611a1657610100808354040283529160200191611a41565b820191906000526020600020905b815481529060010190602001808311611a2457829003601f168201915b505050505090506000815111611a665760405180602001604052806000815250611a91565b80611a70846123e8565b604051602001611a81929190612e21565b6040516020818303038152906040525b9392505050565b60178054611aa590613282565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad190613282565b8015611b1e5780601f10611af357610100808354040283529160200191611b1e565b820191906000526020600020905b815481529060010190602001808311611b0157829003601f168201915b50505050509050919050565b919050565b601581611b3b33611236565b611b4591906131f4565b10611b625760405162461bcd60e51b8152600401610acd90612fc7565b610bb8601c541115611bad5760405162461bcd60e51b8152602060048201526014602482015273283934bb30ba329029b0b6329034b99027bb32b960611b6044820152606401610acd565b60165462010000900460ff161515600114611bda5760405162461bcd60e51b8152600401610acd9061318e565b60008111611bfa5760405162461bcd60e51b8152600401610acd90613133565b6014811115611c1b5760405162461bcd60e51b8152600401610acd90612f99565b6012543490611c2a908361202f565b14611c475760405162461bcd60e51b8152600401610acd90613033565b6015611c5233611236565b10611c6f5760405162461bcd60e51b8152600401610acd90612ffc565b61271081611c7c60095490565b611c8691906131f4565b1115611ca45760405162461bcd60e51b8152600401610acd9061306a565b60005b81811015610c4557611cbc33610c0360145490565b60148054906000611ccc836132bd565b9091555050601c8054906000611ce1836132bd565b91905055508080611cf1906132bd565b915050611ca7565b601581611d0533611236565b611d0f91906131f4565b10611d2c5760405162461bcd60e51b8152600401610acd90612fc7565b61271081611d3960095490565b611d4391906131f4565b1115611da05760405162461bcd60e51b815260206004820152602660248201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604482015265537570706c7960d01b6064820152608401610acd565b6016546301000000900460ff161515600114611dce5760405162461bcd60e51b8152600401610acd9061318e565b60008111611dee5760405162461bcd60e51b8152600401610acd90612ef4565b6014811115611e0f5760405162461bcd60e51b8152600401610acd90612ef4565b6013543490611e1e908361202f565b14611e3b5760405162461bcd60e51b8152600401610acd90613033565b600a611e4633611236565b10611e635760405162461bcd60e51b8152600401610acd90612ffc565b60005b81811015610c4557611e7b33610c0360145490565b60148054906000611e8b836132bd565b91905055508080611e9b906132bd565b915050611e66565b6060601d8054610c8390613282565b600b546001600160a01b03163314611edc5760405162461bcd60e51b8152600401610acd906130ad565b805160005b81811015610eac57611f29838281518110611efe57611efe61332e565b60200260200101516001600160a01b031660009081526018602052604090205460ff16151560011490565b611f8557600160186000858481518110611f4557611f4561332e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80611f8f816132bd565b915050611ee1565b600b546001600160a01b03163314611fc15760405162461bcd60e51b8152600401610acd906130ad565b6001600160a01b0381166120265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acd565b6117f2816124e6565b6000611a918284613220565b610c45828260405180602001604052806000815250612538565b60006001600160e01b031982166380ac58cd60e01b148061208657506001600160e01b03198216635b5e139f60e01b145b80610c6e57506301ffc9a760e01b6001600160e01b0319831614610c6e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120da826111af565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661218c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610acd565b6000612197836111af565b9050806001600160a01b0316846001600160a01b031614806121d25750836001600160a01b03166121c784610d06565b6001600160a01b0316145b8061220257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661221d826111af565b6001600160a01b0316146122855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610acd565b6001600160a01b0382166122e75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610acd565b6122f283838361256b565b6122fd6000826120a5565b6001600160a01b038316600090815260036020526040812080546001929061232690849061323f565b90915550506001600160a01b03821660009081526003602052604081208054600192906123549084906131f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6123c084848461220a565b6123cc84848484612623565b6118ec5760405162461bcd60e51b8152600401610acd90612f47565b60608161240c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124365780612420816132bd565b915061242f9050600a8361320c565b9150612410565b60008167ffffffffffffffff81111561245157612451613344565b6040519080825280601f01601f19166020018201604052801561247b576020820181803683370190505b5090505b84156122025761249060018361323f565b915061249d600a866132d8565b6124a89060306131f4565b60f81b8183815181106124bd576124bd61332e565b60200101906001600160f81b031916908160001a9053506124df600a8661320c565b945061247f565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6125428383612730565b61254f6000848484612623565b610eac5760405162461bcd60e51b8152600401610acd90612f47565b6001600160a01b0383166125c6576125c181600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6125e9565b816001600160a01b0316836001600160a01b0316146125e9576125e9838261287e565b6001600160a01b03821661260057610eac8161291b565b826001600160a01b0316826001600160a01b031614610eac57610eac82826129ca565b60006001600160a01b0384163b1561272557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612667903390899088908890600401612e60565b602060405180830381600087803b15801561268157600080fd5b505af19250505080156126b1575060408051601f3d908101601f191682019092526126ae91810190612d53565b60015b61270b573d8080156126df576040519150601f19603f3d011682016040523d82523d6000602084013e6126e4565b606091505b5080516127035760405162461bcd60e51b8152600401610acd90612f47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612202565b506001949350505050565b6001600160a01b0382166127865760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610acd565b6000818152600260205260409020546001600160a01b0316156127eb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610acd565b6127f76000838361256b565b6001600160a01b03821660009081526003602052604081208054600192906128209084906131f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161288b84611236565b612895919061323f565b6000838152600860205260409020549091508082146128e8576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061292d9060019061323f565b6000838152600a6020526040812054600980549394509092849081106129555761295561332e565b9060005260206000200154905080600983815481106129765761297661332e565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806129ae576129ae613318565b6001900381819060005260206000200160009055905550505050565b60006129d583611236565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054612a1a90613282565b90600052602060002090601f016020900481019282612a3c5760008555612a82565b82601f10612a5557805160ff1916838001178555612a82565b82800160010185558215612a82579182015b82811115612a82578251825591602001919060010190612a67565b50612a8e929150612a92565b5090565b5b80821115612a8e5760008155600101612a93565b600067ffffffffffffffff831115612ac157612ac1613344565b612ad4601f8401601f19166020016131c3565b9050828152838383011115612ae857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611b2a57600080fd5b600060208284031215612b2857600080fd5b611a9182612aff565b60008060408385031215612b4457600080fd5b612b4d83612aff565b9150612b5b60208401612aff565b90509250929050565b600080600060608486031215612b7957600080fd5b612b8284612aff565b9250612b9060208501612aff565b9150604084013590509250925092565b60008060008060808587031215612bb657600080fd5b612bbf85612aff565b9350612bcd60208601612aff565b925060408501359150606085013567ffffffffffffffff811115612bf057600080fd5b8501601f81018713612c0157600080fd5b612c1087823560208401612aa7565b91505092959194509250565b60008060408385031215612c2f57600080fd5b612c3883612aff565b915060208301358015158114612c4d57600080fd5b809150509250929050565b60008060408385031215612c6b57600080fd5b612c7483612aff565b946020939093013593505050565b60006020808385031215612c9557600080fd5b823567ffffffffffffffff80821115612cad57600080fd5b818501915085601f830112612cc157600080fd5b813581811115612cd357612cd3613344565b8060051b9150612ce48483016131c3565b8181528481019084860184860187018a1015612cff57600080fd5b600095505b83861015612d2957612d1581612aff565b835260019590950194918601918601612d04565b5098975050505050505050565b600060208284031215612d4857600080fd5b8135611a918161335a565b600060208284031215612d6557600080fd5b8151611a918161335a565b600060208284031215612d8257600080fd5b813567ffffffffffffffff811115612d9957600080fd5b8201601f81018413612daa57600080fd5b61220284823560208401612aa7565b600060208284031215612dcb57600080fd5b5035919050565b60008060408385031215612de557600080fd5b82359150612b5b60208401612aff565b60008151808452612e0d816020860160208601613256565b601f01601f19169290920160200192915050565b60008351612e33818460208801613256565b835190830190612e47818360208801613256565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e9390830184612df5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ed557835183529284019291840191600101612eb9565b50909695505050505050565b602081526000611a916020830184612df5565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601490820152730596f752063616e206f6e6c79206d696e742032360641b604082015260600190565b6020808252818101527f596f752063616e2774204d696e74204d6f7265207468616e203230206e667473604082015260600190565b6020808252601f908201527f4e6f206d6f726520746f6b656e7320666f722074686973206164647265737300604082015260600190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b60208082526023908201527f4d696e7420726571756573746564206d6f7265207468616e206d617820737570604082015262706c7960e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272105b5bdd5b9d081a5cc81b9bdd081d985b1a59606a1b604082015260600190565b6020808252601490820152732937bab73210189029b0b6329034b99027bb32b960611b604082015260600190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156131ec576131ec613344565b604052919050565b60008219821115613207576132076132ec565b500190565b60008261321b5761321b613302565b500490565b600081600019048311821515161561323a5761323a6132ec565b500290565b600082821015613251576132516132ec565b500390565b60005b83811015613271578181015183820152602001613259565b838111156118ec5750506000910152565b600181811c9082168061329657607f821691505b602082108114156132b757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132d1576132d16132ec565b5060010190565b6000826132e7576132e7613302565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117f257600080fdfea2646970667358221220ac2d9cf23212c8d34dada4eefeeaf91ac500d4dde9dc96266e2db732ff90769764736f6c63430008070033

Deployed Bytecode Sourcemap

49163:9140:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53318:931;;;;;;:::i;:::-;;:::i;:::-;;42986:224;;;;;;;;;;-1:-1:-1;42986:224:0;;;;;:::i;:::-;;:::i;:::-;;;7452:14:1;;7445:22;7427:41;;7415:2;7400:18;42986:224:0;;;;;;;;30968:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32522:221::-;;;;;;;;;;-1:-1:-1;32522:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6113:32:1;;;6095:51;;6083:2;6068:18;32522:221:0;5949:203:1;32045:411:0;;;;;;;;;;-1:-1:-1;32045:411:0;;;;;:::i;:::-;;:::i;51687:134::-;;;;;;;;;;-1:-1:-1;51687:134:0;;;;;:::i;:::-;;:::i;:::-;;;19067:25:1;;;19055:2;19040:18;51687:134:0;18921:177:1;49549:39:0;;;;;;;;;;;;;;;;49890:33;;;;;;;;;;-1:-1:-1;49890:33:0;;;;;;;;;;;50776:95;;;;;;;;;;;;;:::i;43626:113::-;;;;;;;;;;-1:-1:-1;43714:10:0;:17;43626:113;;51829:106;;;;;;;;;;-1:-1:-1;51829:106:0;;;;;:::i;:::-;;:::i;33412:339::-;;;;;;;;;;-1:-1:-1;33412:339:0;;;;;:::i;:::-;;:::i;51575:106::-;;;;;;;;;;-1:-1:-1;51575:106:0;;;;;:::i;:::-;;:::i;43294:256::-;;;;;;;;;;-1:-1:-1;43294:256:0;;;;;:::i;:::-;;:::i;50184:31::-;;;;;;;;;;;;;;;;58061:140;;;;;;;;;;;;;:::i;50112:27::-;;;;;;;;;;;;;;;;33822:185;;;;;;;;;;-1:-1:-1;33822:185:0;;;;;:::i;:::-;;:::i;43816:233::-;;;;;;;;;;-1:-1:-1;43816:233:0;;;;;:::i;:::-;;:::i;50582:97::-;;;;;;;;;;-1:-1:-1;50582:97:0;;;;;:::i;:::-;;:::i;50687:83::-;;;;;;;;;;;;;:::i;49939:29::-;;;;;;;;;;-1:-1:-1;49939:29:0;;;;;;;;;;;30662:239;;;;;;;;;;-1:-1:-1;30662:239:0;;;;;:::i;:::-;;:::i;51187:126::-;;;;;;;;;;-1:-1:-1;51187:126:0;;;;;:::i;:::-;;:::i;49349:28::-;;;;;;;;;;;;;;;;57435:131;;;;;;;;;;-1:-1:-1;57435:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;57521:29:0;57497:4;57521:29;;;:19;:29;;;;;;;;:37;;:29;:37;;57435:131;30392:208;;;;;;;;;;-1:-1:-1;30392:208:0;;;;;:::i;:::-;;:::i;29690:22::-;;;;;;;;;;;;;:::i;52804:502::-;;;;;;;;;;-1:-1:-1;52804:502:0;;;;;:::i;:::-;;:::i;54257:952::-;;;;;;:::i;:::-;;:::i;51433:134::-;;;;;;;;;;-1:-1:-1;51433:134:0;;;;;:::i;:::-;;:::i;57074:351::-;;;;;;;;;;-1:-1:-1;57074:351:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27558:87::-;;;;;;;;;;-1:-1:-1;27631:6:0;;-1:-1:-1;;;;;27631:6:0;27558:87;;50978:95;;;;;;;;;;;;;:::i;51083:98::-;;;;;;;;;;-1:-1:-1;51083:98:0;;;;;:::i;:::-;;:::i;49462:35::-;;;;;;;;;;;;;;;;50877:95;;;;;;;;;;;;;:::i;49771:29::-;;;;;;;;;;-1:-1:-1;49771:29:0;;;;;;;;31137:104;;;;;;;;;;;;;:::i;49384:29::-;;;;;;;;;;;;;;;;51941:134;;;;;;;;;;-1:-1:-1;51941:134:0;;;;;:::i;:::-;;:::i;57574:167::-;;;;;;;;;;-1:-1:-1;57574:167:0;;;;;:::i;:::-;;:::i;32815:295::-;;;;;;;;;;-1:-1:-1;32815:295:0;;;;;:::i;:::-;;:::i;50075:30::-;;;;;;;;;;;;;;;;50146:31;;;;;;;;;;;;;;;;34078:328;;;;;;;;;;-1:-1:-1;34078:328:0;;;;;:::i;:::-;;:::i;49506:35::-;;;;;;;;;;;;;;;;52707:83;;;;;;;;;;;;;:::i;49649:37::-;;;;;;;;;;;;;;;;49420:35;;;;;;;;;;;;;;;;52303:397;;;;;;;;;;-1:-1:-1;52303:397:0;;;;;:::i;:::-;;:::i;49807:33::-;;;;;;;;;;-1:-1:-1;49807:33:0;;;;;;;;;;;55217:952;;;;;;:::i;:::-;;:::i;49847:33::-;;;;;;;;;;-1:-1:-1;49847:33:0;;;;;;;;;;;56177:880;;;;;;:::i;:::-;;:::i;52198:97::-;;;;;;;;;;;;;:::i;33181:164::-;;;;;;;;;;-1:-1:-1;33181:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33302:25:0;;;33278:4;33302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33181:164;57747:306;;;;;;;;;;-1:-1:-1;57747:306:0;;;;;:::i;:::-;;:::i;49602:40::-;;;;;;;;;;;;;;;;28358:192;;;;;;;;;;-1:-1:-1;28358:192:0;;;;;:::i;:::-;;:::i;53318:931::-;53431:2;53416:12;53390:23;26389:10;30392:208;:::i;53390:23::-;:38;;;;:::i;:::-;:43;53382:88;;;;-1:-1:-1;;;53382:88:0;;;;;;;:::i;:::-;;;;;;;;;53503:3;53489:10;;:17;;53481:50;;;;-1:-1:-1;;;53481:50:0;;;;;;;:::i;:::-;53550:9;;;;:17;;:9;:17;53542:62;;;;-1:-1:-1;;;53542:62:0;;;;;;;:::i;:::-;53638:1;53623:12;:16;53615:48;;;;-1:-1:-1;;;53615:48:0;;;;;;;:::i;:::-;53698:2;53682:12;:18;;53674:51;;;;-1:-1:-1;;;53674:51:0;;;;;;;:::i;:::-;53744:8;;53774:9;;53744:26;;53757:12;53744;:26::i;:::-;:39;53736:81;;;;-1:-1:-1;;;53736:81:0;;;;;;;:::i;:::-;53876:2;53850:23;26389:10;30392:208;:::i;53850:23::-;:28;53828:109;;;;-1:-1:-1;;;53828:109:0;;;;;;;:::i;:::-;49337:5;53986:12;53970:13;43714:10;:17;;43626:113;53970:13;:28;;;;:::i;:::-;:44;;53948:129;;;;-1:-1:-1;;;53948:129:0;;;;;;;:::i;:::-;54093:6;54088:154;54109:12;54105:1;:16;54088:154;;;54143:36;54153:10;54165:13;58285:7;;;58211:89;54165:13;54143:9;:36::i;:::-;54194:7;:9;;;:7;:9;;;:::i;:::-;;;;-1:-1:-1;;54218:10:0;:12;;;:10;:12;;;:::i;:::-;;;;;;54123:3;;;;;:::i;:::-;;;;54088:154;;;;53318:931;:::o;42986:224::-;43088:4;-1:-1:-1;;;;;;43112:50:0;;-1:-1:-1;;;43112:50:0;;:90;;;43166:36;43190:11;43166:23;:36::i;:::-;43105:97;42986:224;-1:-1:-1;;42986:224:0:o;30968:100::-;31022:13;31055:5;31048:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30968:100;:::o;32522:221::-;32598:7;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;32618:73;;;;-1:-1:-1;;;32618:73:0;;14476:2:1;32618:73:0;;;14458:21:1;14515:2;14495:18;;;14488:30;14554:34;14534:18;;;14527:62;-1:-1:-1;;;14605:18:1;;;14598:42;14657:19;;32618:73:0;14274:408:1;32618:73:0;-1:-1:-1;32711:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32711:24:0;;32522:221::o;32045:411::-;32126:13;32142:23;32157:7;32142:14;:23::i;:::-;32126:39;;32190:5;-1:-1:-1;;;;;32184:11:0;:2;-1:-1:-1;;;;;32184:11:0;;;32176:57;;;;-1:-1:-1;;;32176:57:0;;16832:2:1;32176:57:0;;;16814:21:1;16871:2;16851:18;;;16844:30;16910:34;16890:18;;;16883:62;-1:-1:-1;;;16961:18:1;;;16954:31;17002:19;;32176:57:0;16630:397:1;32176:57:0;26389:10;-1:-1:-1;;;;;32268:21:0;;;;:62;;-1:-1:-1;32293:37:0;32310:5;26389:10;33181:164;:::i;32293:37::-;32246:168;;;;-1:-1:-1;;;32246:168:0;;12151:2:1;32246:168:0;;;12133:21:1;12190:2;12170:18;;;12163:30;12229:34;12209:18;;;12202:62;12300:26;12280:18;;;12273:54;12344:19;;32246:168:0;11949:420:1;32246:168:0;32427:21;32436:2;32440:7;32427:8;:21::i;:::-;32115:341;32045:411;;:::o;51687:134::-;51752:7;51801:12;;51791:9;:22;;;;:::i;50776:95::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50850:13:::1;::::0;;-1:-1:-1;;50833:30:0;::::1;50850:13;::::0;;;::::1;;;50849:14;50833:30:::0;;::::1;;::::0;;50776:95::o;51829:106::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51903:12:::1;:24:::0;51829:106::o;33412:339::-;33607:41;26389:10;33640:7;33607:18;:41::i;:::-;33599:103;;;;-1:-1:-1;;;33599:103:0;;;;;;;:::i;:::-;33715:28;33725:4;33731:2;33735:7;33715:9;:28::i;51575:106::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51649:12:::1;:24:::0;51575:106::o;43294:256::-;43391:7;43427:23;43444:5;43427:16;:23::i;:::-;43419:5;:31;43411:87;;;;-1:-1:-1;;;43411:87:0;;8325:2:1;43411:87:0;;;8307:21:1;8364:2;8344:18;;;8337:30;8403:34;8383:18;;;8376:62;-1:-1:-1;;;8454:18:1;;;8447:41;8505:19;;43411:87:0;8123:407:1;43411:87:0;-1:-1:-1;;;;;;43516:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43294:256::o;58061:140::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;58156:37:::1;::::0;58124:21:::1;::::0;58164:10:::1;::::0;58156:37;::::1;;;::::0;58124:21;;58109:12:::1;58156:37:::0;58109:12;58156:37;58124:21;58164:10;58156:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;33822:185:::0;33960:39;33977:4;33983:2;33987:7;33960:39;;;;;;;;;;;;:16;:39::i;43816:233::-;43891:7;43927:30;43714:10;:17;;43626:113;43927:30;43919:5;:38;43911:95;;;;-1:-1:-1;;;43911:95:0;;18000:2:1;43911:95:0;;;17982:21:1;18039:2;18019:18;;;18012:30;18078:34;18058:18;;;18051:62;-1:-1:-1;;;18129:18:1;;;18122:42;18181:19;;43911:95:0;17798:408:1;43911:95:0;44024:10;44035:5;44024:17;;;;;;;;:::i;:::-;;;;;;;;;44017:24;;43816:233;;;:::o;50582:97::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50653:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;50687:83::-:0;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50753:9:::1;::::0;;-1:-1:-1;;50740:22:0;::::1;50753:9;::::0;;::::1;50752:10;50740:22;::::0;;50687:83::o;30662:239::-;30734:7;30770:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30770:16:0;30805:19;30797:73;;;;-1:-1:-1;;;30797:73:0;;12987:2:1;30797:73:0;;;12969:21:1;13026:2;13006:18;;;12999:30;13065:34;13045:18;;;13038:62;-1:-1:-1;;;13116:18:1;;;13109:39;13165:19;;30797:73:0;12785:405:1;51187:126:0;51248:7;51297:8;;51287:9;:18;;;;:::i;30392:208::-;30464:7;-1:-1:-1;;;;;30492:19:0;;30484:74;;;;-1:-1:-1;;;30484:74:0;;12576:2:1;30484:74:0;;;12558:21:1;12615:2;12595:18;;;12588:30;12654:34;12634:18;;;12627:62;-1:-1:-1;;;12705:18:1;;;12698:40;12755:19;;30484:74:0;12374:406:1;30484:74:0;-1:-1:-1;;;;;;30576:16:0;;;;;:9;:16;;;;;;;30392:208::o;29690:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52804:502::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;52911:3:::1;52894:13;;:20;;52886:53;;;;-1:-1:-1::0;;;52886:53:0::1;;;;;;;:::i;:::-;52973:1;52958:12;:16;52950:48;;;;-1:-1:-1::0;;;52950:48:0::1;;;;;;;:::i;:::-;49337:5;53047:12;53031:13;43714:10:::0;:17;;43626:113;53031:13:::1;:28;;;;:::i;:::-;:44;;53009:129;;;;-1:-1:-1::0;;;53009:129:0::1;;;;;;;:::i;:::-;53154:6;53149:150;53170:12;53166:1;:16;53149:150;;;53204:29;53214:3;53219:13;58285:7:::0;;;58211:89;53204:29:::1;53248:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;53272:13:0::1;:15:::0;;;:13:::1;:15;::::0;::::1;:::i;:::-;;;;;;53184:3;;;;;:::i;:::-;;;;53149:150;;54257:952:::0;54374:2;54359:12;54333:23;26389:10;30392:208;:::i;54333:23::-;:38;;;;:::i;:::-;:43;54325:88;;;;-1:-1:-1;;;54325:88:0;;;;;;;:::i;:::-;54450:4;54432:14;;:22;;54424:55;;;;-1:-1:-1;;;54424:55:0;;;;;;;:::i;:::-;54498:13;;;;;;;;:21;;:13;:21;54490:66;;;;-1:-1:-1;;;54490:66:0;;;;;;;:::i;:::-;54590:1;54575:12;:16;54567:48;;;;-1:-1:-1;;;54567:48:0;;;;;;;:::i;:::-;54650:2;54634:12;:18;;54626:51;;;;-1:-1:-1;;;54626:51:0;;;;;;;:::i;:::-;54696:12;;54730:9;;54696:30;;54713:12;54696:16;:30::i;:::-;:43;54688:85;;;;-1:-1:-1;;;54688:85:0;;;;;;;:::i;:::-;54832:2;54806:23;26389:10;30392:208;:::i;54806:23::-;:28;54784:109;;;;-1:-1:-1;;;54784:109:0;;;;;;;:::i;:::-;49337:5;54942:12;54926:13;43714:10;:17;;43626:113;54926:13;:28;;;;:::i;:::-;:44;;54904:129;;;;-1:-1:-1;;;54904:129:0;;;;;;;:::i;:::-;55049:6;55044:158;55065:12;55061:1;:16;55044:158;;;55099:36;55109:10;55121:13;58285:7;;;58211:89;55099:36;55150:7;:9;;;:7;:9;;;:::i;:::-;;;;-1:-1:-1;;55174:14:0;:16;;;:14;:16;;;:::i;:::-;;;;;;55079:3;;;;;:::i;:::-;;;;55044:158;;51433:134;51498:7;51547:12;;51537:9;:22;;;;:::i;57074:351::-;57134:16;57168:13;57184:17;57194:6;57184:9;:17::i;:::-;57168:33;;57212:23;57252:5;57238:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57238:20:0;;57212:46;;57274:13;57269:125;57301:5;57293;:13;57269:125;;;57348:34;57368:6;57376:5;57348:19;:34::i;:::-;57332:6;57339:5;57332:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;57308:7;;;;:::i;:::-;;;;57269:125;;;-1:-1:-1;57411:6:0;57074:351;-1:-1:-1;;;57074:351:0:o;50978:95::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51052:13:::1;::::0;;-1:-1:-1;;51035:30:0;::::1;51052:13:::0;;;;::::1;;;51051:14;51035:30:::0;;::::1;;::::0;;50978:95::o;51083:98::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51153:8:::1;:20:::0;51083:98::o;50877:95::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50951:13:::1;::::0;;-1:-1:-1;;50934:30:0;::::1;50951:13:::0;;;;::::1;;;50950:14;50934:30:::0;;::::1;;::::0;;50877:95::o;31137:104::-;31193:13;31226:7;31219:14;;;;;:::i;51941:134::-;52006:7;52055:12;;52045:9;:22;;;;:::i;57574:167::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;57646:23:::1;57660:8;-1:-1:-1::0;;;;;57521:29:0;57497:4;57521:29;;;:19;:29;;;;;;;;:37;;:29;:37;;57435:131;57646:23:::1;57641:93;;-1:-1:-1::0;;;;;57686:29:0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:36;;-1:-1:-1;;57686:36:0::1;57718:4;57686:36;::::0;;57641:93:::1;57574:167:::0;:::o;32815:295::-;-1:-1:-1;;;;;32918:24:0;;26389:10;32918:24;;32910:62;;;;-1:-1:-1;;;32910:62:0;;10325:2:1;32910:62:0;;;10307:21:1;10364:2;10344:18;;;10337:30;10403:27;10383:18;;;10376:55;10448:18;;32910:62:0;10123:349:1;32910:62:0;26389:10;32985:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32985:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32985:53:0;;;;;;;;;;33054:48;;7427:41:1;;;32985:42:0;;26389:10;33054:48;;7400:18:1;33054:48:0;;;;;;;32815:295;;:::o;34078:328::-;34253:41;26389:10;34286:7;34253:18;:41::i;:::-;34245:103;;;;-1:-1:-1;;;34245:103:0;;;;;;;:::i;:::-;34359:39;34373:4;34379:2;34383:7;34392:5;34359:13;:39::i;:::-;34078:328;;;;:::o;52707:83::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;52775:9:::1;::::0;;-1:-1:-1;;52762:22:0;::::1;52775:9:::0;;;;::::1;;;52774:10;52762:22:::0;;::::1;;::::0;;52707:83::o;52303:397::-;35981:4;36005:16;;;:7;:16;;;;;;52382:13;;-1:-1:-1;;;;;36005:16:0;52410:60;;;;-1:-1:-1;;;52410:60:0;;16471:2:1;52410:60:0;;;16453:21:1;;;16490:18;;;16483:30;16549:34;16529:18;;;16522:62;16601:18;;52410:60:0;16269:356:1;52410:60:0;52480:9;;;;;;;52477:218;;;52497:21;52521:8;52497:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52574:1;52556:7;52550:21;:25;:93;;;;;;;;;;;;;;;;;52601:7;52610:18;:7;:16;:18::i;:::-;52584:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52550:93;52536:107;52303:397;-1:-1:-1;;;52303:397:0:o;52477:218::-;52672:15;52665:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52303:397;;;:::o;52477:218::-;52303:397;;;:::o;55217:952::-;55334:2;55319:12;55293:23;26389:10;30392:208;:::i;55293:23::-;:38;;;;:::i;:::-;:43;55285:88;;;;-1:-1:-1;;;55285:88:0;;;;;;;:::i;:::-;55410:4;55392:14;;:22;;55384:55;;;;-1:-1:-1;;;55384:55:0;;11028:2:1;55384:55:0;;;11010:21:1;11067:2;11047:18;;;11040:30;-1:-1:-1;;;11086:18:1;;;11079:50;11146:18;;55384:55:0;10826:344:1;55384:55:0;55458:13;;;;;;;:21;;55475:4;55458:21;55450:66;;;;-1:-1:-1;;;55450:66:0;;;;;;;:::i;:::-;55550:1;55535:12;:16;55527:48;;;;-1:-1:-1;;;55527:48:0;;;;;;;:::i;:::-;55610:2;55594:12;:18;;55586:51;;;;-1:-1:-1;;;55586:51:0;;;;;;;:::i;:::-;55656:12;;55690:9;;55656:30;;55673:12;55656:16;:30::i;:::-;:43;55648:85;;;;-1:-1:-1;;;55648:85:0;;;;;;;:::i;:::-;55792:2;55766:23;26389:10;30392:208;:::i;55766:23::-;:28;55744:109;;;;-1:-1:-1;;;55744:109:0;;;;;;;:::i;:::-;49337:5;55902:12;55886:13;43714:10;:17;;43626:113;55886:13;:28;;;;:::i;:::-;:44;;55864:129;;;;-1:-1:-1;;;55864:129:0;;;;;;;:::i;:::-;56009:6;56004:158;56025:12;56021:1;:16;56004:158;;;56059:36;56069:10;56081:13;58285:7;;;58211:89;56059:36;56110:7;:9;;;:7;:9;;;:::i;:::-;;;;-1:-1:-1;;56134:14:0;:16;;;:14;:16;;;:::i;:::-;;;;;;56039:3;;;;;:::i;:::-;;;;56004:158;;56177:880;56291:2;56276:12;56250:23;26389:10;30392:208;:::i;56250:23::-;:38;;;;:::i;:::-;:43;56242:88;;;;-1:-1:-1;;;56242:88:0;;;;;;;:::i;:::-;49337:5;56363:12;56349:13;43714:10;:17;;43626:113;56349:13;:26;;;;:::i;:::-;:40;;56341:90;;;;-1:-1:-1;;;56341:90:0;;15654:2:1;56341:90:0;;;15636:21:1;15693:2;15673:18;;;15666:30;15732:34;15712:18;;;15705:62;-1:-1:-1;;;15783:18:1;;;15776:36;15829:19;;56341:90:0;15452:402:1;56341:90:0;56450:13;;;;;;;:21;;56467:4;56450:21;56442:66;;;;-1:-1:-1;;;56442:66:0;;;;;;;:::i;:::-;56542:1;56527:12;:16;56519:80;;;;-1:-1:-1;;;56519:80:0;;;;;;;:::i;:::-;56634:2;56618:12;:18;;56610:82;;;;-1:-1:-1;;;56610:82:0;;;;;;;:::i;:::-;56711:12;;56745:9;;56711:30;;56728:12;56711:16;:30::i;:::-;:43;56703:85;;;;-1:-1:-1;;;56703:85:0;;;;;;;:::i;:::-;56847:2;56821:23;26389:10;30392:208;:::i;56821:23::-;:28;56799:109;;;;-1:-1:-1;;;56799:109:0;;;;;;;:::i;:::-;56924:6;56919:131;56940:12;56936:1;:16;56919:131;;;56974:36;56984:10;56996:13;58285:7;;;58211:89;56974:36;57025:7;:9;;;:7;:9;;;:::i;:::-;;;;;;56954:3;;;;;:::i;:::-;;;;56919:131;;52198:97;52242:13;52275:12;52268:19;;;;;:::i;57747:306::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;57844:17;;57827:14:::1;57872:174;57896:6;57892:1;:10;57872:174;;;57929:28;57943:10;57954:1;57943:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;57521:29:0;57497:4;57521:29;;;:19;:29;;;;;;;;:37;;:29;:37;;57435:131;57929:28:::1;57924:111;;58015:4;57978:19;:34;57998:10;58009:1;57998:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;57978:34:0::1;-1:-1:-1::0;;;;;57978:34:0::1;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;57924:111;57904:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57872:174;;28358:192:::0;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28447:22:0;::::1;28439:73;;;::::0;-1:-1:-1;;;28439:73:0;;9156:2:1;28439:73:0::1;::::0;::::1;9138:21:1::0;9195:2;9175:18;;;9168:30;9234:34;9214:18;;;9207:62;-1:-1:-1;;;9285:18:1;;;9278:36;9331:19;;28439:73:0::1;8954:402:1::0;28439:73:0::1;28523:19;28533:8;28523:9;:19::i;3643:98::-:0;3701:7;3728:5;3732:1;3728;:5;:::i;36900:110::-;36976:26;36986:2;36990:7;36976:26;;;;;;;;;;;;:9;:26::i;30023:305::-;30125:4;-1:-1:-1;;;;;;30162:40:0;;-1:-1:-1;;;30162:40:0;;:105;;-1:-1:-1;;;;;;;30219:48:0;;-1:-1:-1;;;30219:48:0;30162:105;:158;;;-1:-1:-1;;;;;;;;;;19404:40:0;;;30284:36;19295:157;39898:174;39973:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39973:29:0;-1:-1:-1;;;;;39973:29:0;;;;;;;;:24;;40027:23;39973:24;40027:14;:23::i;:::-;-1:-1:-1;;;;;40018:46:0;;;;;;;;;;;39898:174;;:::o;36210:348::-;36303:4;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;36320:73;;;;-1:-1:-1;;;36320:73:0;;11377:2:1;36320:73:0;;;11359:21:1;11416:2;11396:18;;;11389:30;11455:34;11435:18;;;11428:62;-1:-1:-1;;;11506:18:1;;;11499:42;11558:19;;36320:73:0;11175:408:1;36320:73:0;36404:13;36420:23;36435:7;36420:14;:23::i;:::-;36404:39;;36473:5;-1:-1:-1;;;;;36462:16:0;:7;-1:-1:-1;;;;;36462:16:0;;:51;;;;36506:7;-1:-1:-1;;;;;36482:31:0;:20;36494:7;36482:11;:20::i;:::-;-1:-1:-1;;;;;36482:31:0;;36462:51;:87;;;-1:-1:-1;;;;;;33302:25:0;;;33278:4;33302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36517:32;36454:96;36210:348;-1:-1:-1;;;;36210:348:0:o;39202:578::-;39361:4;-1:-1:-1;;;;;39334:31:0;:23;39349:7;39334:14;:23::i;:::-;-1:-1:-1;;;;;39334:31:0;;39326:85;;;;-1:-1:-1;;;39326:85:0;;16061:2:1;39326:85:0;;;16043:21:1;16100:2;16080:18;;;16073:30;16139:34;16119:18;;;16112:62;-1:-1:-1;;;16190:18:1;;;16183:39;16239:19;;39326:85:0;15859:405:1;39326:85:0;-1:-1:-1;;;;;39430:16:0;;39422:65;;;;-1:-1:-1;;;39422:65:0;;9920:2:1;39422:65:0;;;9902:21:1;9959:2;9939:18;;;9932:30;9998:34;9978:18;;;9971:62;-1:-1:-1;;;10049:18:1;;;10042:34;10093:19;;39422:65:0;9718:400:1;39422:65:0;39500:39;39521:4;39527:2;39531:7;39500:20;:39::i;:::-;39604:29;39621:1;39625:7;39604:8;:29::i;:::-;-1:-1:-1;;;;;39646:15:0;;;;;;:9;:15;;;;;:20;;39665:1;;39646:15;:20;;39665:1;;39646:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39677:13:0;;;;;;:9;:13;;;;;:18;;39694:1;;39677:13;:18;;39694:1;;39677:18;:::i;:::-;;;;-1:-1:-1;;39706:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39706:21:0;-1:-1:-1;;;;;39706:21:0;;;;;;;;;39745:27;;39706:16;;39745:27;;;;;;;39202:578;;;:::o;35288:315::-;35445:28;35455:4;35461:2;35465:7;35445:9;:28::i;:::-;35492:48;35515:4;35521:2;35525:7;35534:5;35492:22;:48::i;:::-;35484:111;;;;-1:-1:-1;;;35484:111:0;;;;;;;:::i;7323:723::-;7379:13;7600:10;7596:53;;-1:-1:-1;;7627:10:0;;;;;;;;;;;;-1:-1:-1;;;7627:10:0;;;;;7323:723::o;7596:53::-;7674:5;7659:12;7715:78;7722:9;;7715:78;;7748:8;;;;:::i;:::-;;-1:-1:-1;7771:10:0;;-1:-1:-1;7779:2:0;7771:10;;:::i;:::-;;;7715:78;;;7803:19;7835:6;7825:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7825:17:0;;7803:39;;7853:154;7860:10;;7853:154;;7887:11;7897:1;7887:11;;:::i;:::-;;-1:-1:-1;7956:10:0;7964:2;7956:5;:10;:::i;:::-;7943:24;;:2;:24;:::i;:::-;7930:39;;7913:6;7920;7913:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7913:56:0;;;;;;;;-1:-1:-1;7984:11:0;7993:2;7984:11;;:::i;:::-;;;7853:154;;28558:173;28633:6;;;-1:-1:-1;;;;;28650:17:0;;;-1:-1:-1;;;;;;28650:17:0;;;;;;;28683:40;;28633:6;;;28650:17;28633:6;;28683:40;;28614:16;;28683:40;28603:128;28558:173;:::o;37237:321::-;37367:18;37373:2;37377:7;37367:5;:18::i;:::-;37418:54;37449:1;37453:2;37457:7;37466:5;37418:22;:54::i;:::-;37396:154;;;;-1:-1:-1;;;37396:154:0;;;;;;;:::i;44662:589::-;-1:-1:-1;;;;;44868:18:0;;44864:187;;44903:40;44935:7;46078:10;:17;;46051:24;;;;:15;:24;;;;;:44;;;46106:24;;;;;;;;;;;;45974:164;44903:40;44864:187;;;44973:2;-1:-1:-1;;;;;44965:10:0;:4;-1:-1:-1;;;;;44965:10:0;;44961:90;;44992:47;45025:4;45031:7;44992:32;:47::i;:::-;-1:-1:-1;;;;;45065:16:0;;45061:183;;45098:45;45135:7;45098:36;:45::i;45061:183::-;45171:4;-1:-1:-1;;;;;45165:10:0;:2;-1:-1:-1;;;;;45165:10:0;;45161:83;;45192:40;45220:2;45224:7;45192:27;:40::i;40637:803::-;40792:4;-1:-1:-1;;;;;40813:13:0;;10113:20;10161:8;40809:624;;40849:72;;-1:-1:-1;;;40849:72:0;;-1:-1:-1;;;;;40849:36:0;;;;;:72;;26389:10;;40900:4;;40906:7;;40915:5;;40849:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40849:72:0;;;;;;;;-1:-1:-1;;40849:72:0;;;;;;;;;;;;:::i;:::-;;;40845:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41095:13:0;;41091:272;;41138:60;;-1:-1:-1;;;41138:60:0;;;;;;;:::i;41091:272::-;41313:6;41307:13;41298:6;41294:2;41290:15;41283:38;40845:533;-1:-1:-1;;;;;;40972:55:0;-1:-1:-1;;;40972:55:0;;-1:-1:-1;40965:62:0;;40809:624;-1:-1:-1;41417:4:0;40637:803;;;;;;:::o;37894:382::-;-1:-1:-1;;;;;37974:16:0;;37966:61;;;;-1:-1:-1;;;37966:61:0;;14115:2:1;37966:61:0;;;14097:21:1;;;14134:18;;;14127:30;14193:34;14173:18;;;14166:62;14245:18;;37966:61:0;13913:356:1;37966:61:0;35981:4;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;:30;38038:58;;;;-1:-1:-1;;;38038:58:0;;9563:2:1;38038:58:0;;;9545:21:1;9602:2;9582:18;;;9575:30;9641;9621:18;;;9614:58;9689:18;;38038:58:0;9361:352:1;38038:58:0;38109:45;38138:1;38142:2;38146:7;38109:20;:45::i;:::-;-1:-1:-1;;;;;38167:13:0;;;;;;:9;:13;;;;;:18;;38184:1;;38167:13;:18;;38184:1;;38167:18;:::i;:::-;;;;-1:-1:-1;;38196:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38196:21:0;-1:-1:-1;;;;;38196:21:0;;;;;;;;38235:33;;38196:16;;;38235:33;;38196:16;;38235:33;37894:382;;:::o;46765:988::-;47031:22;47081:1;47056:22;47073:4;47056:16;:22::i;:::-;:26;;;;:::i;:::-;47093:18;47114:26;;;:17;:26;;;;;;47031:51;;-1:-1:-1;47247:28:0;;;47243:328;;-1:-1:-1;;;;;47314:18:0;;47292:19;47314:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47365:30;;;;;;:44;;;47482:30;;:17;:30;;;;;:43;;;47243:328;-1:-1:-1;47667:26:0;;;;:17;:26;;;;;;;;47660:33;;;-1:-1:-1;;;;;47711:18:0;;;;;:12;:18;;;;;:34;;;;;;;47704:41;46765:988::o;48048:1079::-;48326:10;:17;48301:22;;48326:21;;48346:1;;48326:21;:::i;:::-;48358:18;48379:24;;;:15;:24;;;;;;48752:10;:26;;48301:46;;-1:-1:-1;48379:24:0;;48301:46;;48752:26;;;;;;:::i;:::-;;;;;;;;;48730:48;;48816:11;48791:10;48802;48791:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48896:28;;;:15;:28;;;;;;;:41;;;49068:24;;;;;49061:31;49103:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48119:1008;;;48048:1079;:::o;45552:221::-;45637:14;45654:20;45671:2;45654:16;:20::i;:::-;-1:-1:-1;;;;;45685:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45730:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45552:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:186;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1:o;4786:254::-;4854:6;4862;4915:2;4903:9;4894:7;4890:23;4886:32;4883:52;;;4931:1;4928;4921:12;4883:52;4967:9;4954:23;4944:33;;4996:38;5030:2;5019:9;5015:18;4996:38;:::i;5045:257::-;5086:3;5124:5;5118:12;5151:6;5146:3;5139:19;5167:63;5223:6;5216:4;5211:3;5207:14;5200:4;5193:5;5189:16;5167:63;:::i;:::-;5284:2;5263:15;-1:-1:-1;;5259:29:1;5250:39;;;;5291:4;5246:50;;5045:257;-1:-1:-1;;5045:257:1:o;5307:637::-;5587:3;5625:6;5619:13;5641:53;5687:6;5682:3;5675:4;5667:6;5663:17;5641:53;:::i;:::-;5757:13;;5716:16;;;;5779:57;5757:13;5716:16;5813:4;5801:17;;5779:57;:::i;:::-;-1:-1:-1;;;5858:20:1;;5887:22;;;5936:1;5925:13;;5307:637;-1:-1:-1;;;;5307:637:1:o;6157:488::-;-1:-1:-1;;;;;6426:15:1;;;6408:34;;6478:15;;6473:2;6458:18;;6451:43;6525:2;6510:18;;6503:34;;;6573:3;6568:2;6553:18;;6546:31;;;6351:4;;6594:45;;6619:19;;6611:6;6594:45;:::i;:::-;6586:53;6157:488;-1:-1:-1;;;;;;6157:488:1:o;6650:632::-;6821:2;6873:21;;;6943:13;;6846:18;;;6965:22;;;6792:4;;6821:2;7044:15;;;;7018:2;7003:18;;;6792:4;7087:169;7101:6;7098:1;7095:13;7087:169;;;7162:13;;7150:26;;7231:15;;;;7196:12;;;;7123:1;7116:9;7087:169;;;-1:-1:-1;7273:3:1;;6650:632;-1:-1:-1;;;;;;6650:632:1:o;7479:219::-;7628:2;7617:9;7610:21;7591:4;7648:44;7688:2;7677:9;7673:18;7665:6;7648:44;:::i;7703:415::-;7905:2;7887:21;;;7944:2;7924:18;;;7917:30;7983:34;7978:2;7963:18;;7956:62;-1:-1:-1;;;8049:2:1;8034:18;;8027:49;8108:3;8093:19;;7703:415::o;8535:414::-;8737:2;8719:21;;;8776:2;8756:18;;;8749:30;8815:34;8810:2;8795:18;;8788:62;-1:-1:-1;;;8881:2:1;8866:18;;8859:48;8939:3;8924:19;;8535:414::o;10477:344::-;10679:2;10661:21;;;10718:2;10698:18;;;10691:30;-1:-1:-1;;;10752:2:1;10737:18;;10730:50;10812:2;10797:18;;10477:344::o;11588:356::-;11790:2;11772:21;;;11809:18;;;11802:30;11868:34;11863:2;11848:18;;11841:62;11935:2;11920:18;;11588:356::o;13195:355::-;13397:2;13379:21;;;13436:2;13416:18;;;13409:30;13475:33;13470:2;13455:18;;13448:61;13541:2;13526:18;;13195:355::o;13555:353::-;13757:2;13739:21;;;13796:2;13776:18;;;13769:30;13835:31;13830:2;13815:18;;13808:59;13899:2;13884:18;;13555:353::o;14687:399::-;14889:2;14871:21;;;14928:2;14908:18;;;14901:30;14967:34;14962:2;14947:18;;14940:62;-1:-1:-1;;;15033:2:1;15018:18;;15011:33;15076:3;15061:19;;14687:399::o;15091:356::-;15293:2;15275:21;;;15312:18;;;15305:30;15371:34;15366:2;15351:18;;15344:62;15438:2;15423:18;;15091:356::o;17032:413::-;17234:2;17216:21;;;17273:2;17253:18;;;17246:30;17312:34;17307:2;17292:18;;17285:62;-1:-1:-1;;;17378:2:1;17363:18;;17356:47;17435:3;17420:19;;17032:413::o;17450:343::-;17652:2;17634:21;;;17691:2;17671:18;;;17664:30;-1:-1:-1;;;17725:2:1;17710:18;;17703:49;17784:2;17769:18;;17450:343::o;18211:344::-;18413:2;18395:21;;;18452:2;18432:18;;;18425:30;-1:-1:-1;;;18486:2:1;18471:18;;18464:50;18546:2;18531:18;;18211:344::o;18560:356::-;18762:2;18744:21;;;18781:18;;;18774:30;18840:34;18835:2;18820:18;;18813:62;18907:2;18892:18;;18560:356::o;19103:275::-;19174:2;19168:9;19239:2;19220:13;;-1:-1:-1;;19216:27:1;19204:40;;19274:18;19259:34;;19295:22;;;19256:62;19253:88;;;19321:18;;:::i;:::-;19357:2;19350:22;19103:275;;-1:-1:-1;19103:275:1:o;19383:128::-;19423:3;19454:1;19450:6;19447:1;19444:13;19441:39;;;19460:18;;:::i;:::-;-1:-1:-1;19496:9:1;;19383:128::o;19516:120::-;19556:1;19582;19572:35;;19587:18;;:::i;:::-;-1:-1:-1;19621:9:1;;19516:120::o;19641:168::-;19681:7;19747:1;19743;19739:6;19735:14;19732:1;19729:21;19724:1;19717:9;19710:17;19706:45;19703:71;;;19754:18;;:::i;:::-;-1:-1:-1;19794:9:1;;19641:168::o;19814:125::-;19854:4;19882:1;19879;19876:8;19873:34;;;19887:18;;:::i;:::-;-1:-1:-1;19924:9:1;;19814:125::o;19944:258::-;20016:1;20026:113;20040:6;20037:1;20034:13;20026:113;;;20116:11;;;20110:18;20097:11;;;20090:39;20062:2;20055:10;20026:113;;;20157:6;20154:1;20151:13;20148:48;;;-1:-1:-1;;20192:1:1;20174:16;;20167:27;19944:258::o;20207:380::-;20286:1;20282:12;;;;20329;;;20350:61;;20404:4;20396:6;20392:17;20382:27;;20350:61;20457:2;20449:6;20446:14;20426:18;20423:38;20420:161;;;20503:10;20498:3;20494:20;20491:1;20484:31;20538:4;20535:1;20528:15;20566:4;20563:1;20556:15;20420:161;;20207:380;;;:::o;20592:135::-;20631:3;-1:-1:-1;;20652:17:1;;20649:43;;;20672:18;;:::i;:::-;-1:-1:-1;20719:1:1;20708:13;;20592:135::o;20732:112::-;20764:1;20790;20780:35;;20795:18;;:::i;:::-;-1:-1:-1;20829:9:1;;20732:112::o;20849:127::-;20910:10;20905:3;20901:20;20898:1;20891:31;20941:4;20938:1;20931:15;20965:4;20962:1;20955:15;20981:127;21042:10;21037:3;21033:20;21030:1;21023:31;21073:4;21070:1;21063:15;21097:4;21094:1;21087:15;21113:127;21174:10;21169:3;21165:20;21162:1;21155:31;21205:4;21202:1;21195:15;21229:4;21226:1;21219:15;21245:127;21306:10;21301:3;21297:20;21294:1;21287:31;21337:4;21334:1;21327:15;21361:4;21358:1;21351:15;21377:127;21438:10;21433:3;21429:20;21426:1;21419:31;21469:4;21466:1;21459:15;21493:4;21490:1;21483:15;21509:131;-1:-1:-1;;;;;;21583:32:1;;21573:43;;21563:71;;21630:1;21627;21620:12

Swarm Source

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