ETH Price: $3,337.19 (-3.29%)

Token

The Merge Warrior (TMW)
 

Overview

Max Total Supply

5 TMW

Holders

5

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
TheMergeWarrior

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

/**
████████ ██   ██ ███████     ███    ███ ███████ ██████   ██████  ███████     ██     ██  █████  ██████  ██████  ██  ██████  ██████  
   ██    ██   ██ ██          ████  ████ ██      ██   ██ ██       ██          ██     ██ ██   ██ ██   ██ ██   ██ ██ ██    ██ ██   ██ 
   ██    ███████ █████       ██ ████ ██ █████   ██████  ██   ███ █████       ██  █  ██ ███████ ██████  ██████  ██ ██    ██ ██████  
   ██    ██   ██ ██          ██  ██  ██ ██      ██   ██ ██    ██ ██          ██ ███ ██ ██   ██ ██   ██ ██   ██ ██ ██    ██ ██   ██ 
   ██    ██   ██ ███████     ██      ██ ███████ ██   ██  ██████  ███████      ███ ███  ██   ██ ██   ██ ██   ██ ██  ██████  ██   ██                                                                                                                                                                                                                                    
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

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;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

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

// File: mergewarrior.sol


pragma solidity >=0.7.0 <0.9.0;



contract TheMergeWarrior is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.03 ether;
  uint256 public maxSupply = 100;
  uint256 public maxMintAmount = 1;
  uint256 public nftPerAddressLimit = 1;
  bool public paused = false;
  bool public revealed = true;
  bool public onlyWhitelisted = false;
  address[] public whitelistedAddresses;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused);
    uint256 supply = totalSupply();
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
      if (onlyWhitelisted == true) {
        require(isWhitelisted(msg.sender), "user is not whitelisted");
        uint256 ownerTokenCount = balanceOf(msg.sender);
        require(ownerTokenCount < nftPerAddressLimit);

      }
          require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function isWhitelisted(address _user) public view returns (bool) {
  for(uint256 i = 0; i < whitelistedAddresses.length; i++) {
    if (whitelistedAddresses[i] == _user) {
      return true;
      }
  }
  return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
    
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function whitelistUsers(address[] calldata _users) public onlyOwner {
  delete whitelistedAddresses;
  whitelistedAddresses = _users;
  }
 

  function withdraw() public payable onlyOwner {
    // =============================================================================
    (bool hs, ) = payable(0xB98660921820485bCfb913E2536e446DF257dDFA).call{value: address(this).balance * 100 / 100}("");
    require(hs);
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

/**
["0xB98660921820485bCfb913E2536e446DF257dDFA",
"0x7212865A479Ab81B5BD819554Ca539Bb168120Ed",
"0xdbDe66F957CB70E7b507a39a3405601ff202b3C2",
"0x1abA9B3Fe3315935f720BDf0c3697D908AD2fEEA"]
*/

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000353565b50666a94d74f430000600e556064600f55600160105560016011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550348015620000ca57600080fd5b5060405162004cd138038062004cd18339818101604052810190620000f0919062000481565b838381600090805190602001906200010a92919062000353565b5080600190805190602001906200012392919062000353565b505050620001466200013a6200017260201b60201c565b6200017a60201b60201c565b62000157826200024060201b60201c565b62000168816200026c60201b60201c565b5050505062000776565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002506200029860201b60201c565b80600b90805190602001906200026892919062000353565b5050565b6200027c6200029860201b60201c565b80600d90805190602001906200029492919062000353565b5050565b620002a86200017260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ce6200032960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000327576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031e9062000596565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000361906200065e565b90600052602060002090601f016020900481019282620003855760008555620003d1565b82601f10620003a057805160ff1916838001178555620003d1565b82800160010185558215620003d1579182015b82811115620003d0578251825591602001919060010190620003b3565b5b509050620003e09190620003e4565b5090565b5b80821115620003ff576000816000905550600101620003e5565b5090565b60006200041a6200041484620005e1565b620005b8565b9050828152602081018484840111156200043957620004386200072d565b5b6200044684828562000628565b509392505050565b600082601f83011262000466576200046562000728565b5b81516200047884826020860162000403565b91505092915050565b600080600080608085870312156200049e576200049d62000737565b5b600085015167ffffffffffffffff811115620004bf57620004be62000732565b5b620004cd878288016200044e565b945050602085015167ffffffffffffffff811115620004f157620004f062000732565b5b620004ff878288016200044e565b935050604085015167ffffffffffffffff81111562000523576200052262000732565b5b62000531878288016200044e565b925050606085015167ffffffffffffffff81111562000555576200055462000732565b5b62000563878288016200044e565b91505092959194509250565b60006200057e60208362000617565b91506200058b826200074d565b602082019050919050565b60006020820190508181036000830152620005b1816200056f565b9050919050565b6000620005c4620005d7565b9050620005d2828262000694565b919050565b6000604051905090565b600067ffffffffffffffff821115620005ff57620005fe620006f9565b5b6200060a826200073c565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006485780820151818401526020810190506200062b565b8381111562000658576000848401525b50505050565b600060028204905060018216806200067757607f821691505b602082108114156200068e576200068d620006ca565b5b50919050565b6200069f826200073c565b810181811067ffffffffffffffff82111715620006c157620006c0620006f9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61454b80620007866000396000f3fe6080604052600436106102675760003560e01c80636c0360eb11610144578063ba4e5c49116100b6578063d5abeb011161007a578063d5abeb0114610914578063da3ef23f1461093f578063e985e9c514610968578063edec5f27146109a5578063f2c4ce1e146109ce578063f2fde38b146109f757610267565b8063ba4e5c491461081b578063ba7d2c7614610858578063c668286214610883578063c87b56dd146108ae578063d0eb26b0146108eb57610267565b806395d89b411161010857806395d89b41146107405780639c70b5121461076b578063a0712d6814610796578063a22cb465146107b2578063a475b5dd146107db578063b88d4fde146107f257610267565b80636c0360eb1461066d57806370a0823114610698578063715018a6146106d55780637f00c7a6146106ec5780638da5cb5b1461071557610267565b80633af32abf116101dd57806344a0d68a116101a157806344a0d68a1461054b5780634f6ccce71461057457806351830227146105b157806355f804b3146105dc5780635c975abb146106055780636352211e1461063057610267565b80633af32abf146104755780633c952764146104b25780633ccfd60b146104db57806342842e0e146104e5578063438b63001461050e57610267565b8063095ea7b31161022f578063095ea7b31461036557806313faede61461038e57806318160ddd146103b9578063239c70ae146103e457806323b872dd1461040f5780632f745c591461043857610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906132e6565b610a20565b6040516102a091906138cf565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb91906132b9565b610a9a565b005b3480156102de57600080fd5b506102e7610abf565b6040516102f491906138ea565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613389565b610b51565b6040516103319190613846565b60405180910390f35b34801561034657600080fd5b5061034f610b97565b60405161035c91906138ea565b60405180910390f35b34801561037157600080fd5b5061038c6004803603810190610387919061322c565b610c25565b005b34801561039a57600080fd5b506103a3610d3d565b6040516103b09190613b2c565b60405180910390f35b3480156103c557600080fd5b506103ce610d43565b6040516103db9190613b2c565b60405180910390f35b3480156103f057600080fd5b506103f9610d50565b6040516104069190613b2c565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613116565b610d56565b005b34801561044457600080fd5b5061045f600480360381019061045a919061322c565b610db6565b60405161046c9190613b2c565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906130a9565b610e5b565b6040516104a991906138cf565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d491906132b9565b610f0a565b005b6104e3610f2f565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613116565b611059565b005b34801561051a57600080fd5b50610535600480360381019061053091906130a9565b611079565b60405161054291906138ad565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613389565b611127565b005b34801561058057600080fd5b5061059b60048036038101906105969190613389565b611139565b6040516105a89190613b2c565b60405180910390f35b3480156105bd57600080fd5b506105c66111aa565b6040516105d391906138cf565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613340565b6111bd565b005b34801561061157600080fd5b5061061a6111df565b60405161062791906138cf565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613389565b6111f2565b6040516106649190613846565b60405180910390f35b34801561067957600080fd5b506106826112a4565b60405161068f91906138ea565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba91906130a9565b611332565b6040516106cc9190613b2c565b60405180910390f35b3480156106e157600080fd5b506106ea6113ea565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613389565b6113fe565b005b34801561072157600080fd5b5061072a611410565b6040516107379190613846565b60405180910390f35b34801561074c57600080fd5b5061075561143a565b60405161076291906138ea565b60405180910390f35b34801561077757600080fd5b506107806114cc565b60405161078d91906138cf565b60405180910390f35b6107b060048036038101906107ab9190613389565b6114df565b005b3480156107be57600080fd5b506107d960048036038101906107d491906131ec565b61164c565b005b3480156107e757600080fd5b506107f0611662565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613169565b611687565b005b34801561082757600080fd5b50610842600480360381019061083d9190613389565b6116e9565b60405161084f9190613846565b60405180910390f35b34801561086457600080fd5b5061086d611728565b60405161087a9190613b2c565b60405180910390f35b34801561088f57600080fd5b5061089861172e565b6040516108a591906138ea565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613389565b6117bc565b6040516108e291906138ea565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613389565b611915565b005b34801561092057600080fd5b50610929611927565b6040516109369190613b2c565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190613340565b61192d565b005b34801561097457600080fd5b5061098f600480360381019061098a91906130d6565b61194f565b60405161099c91906138cf565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c7919061326c565b6119e3565b005b3480156109da57600080fd5b506109f560048036038101906109f09190613340565b611a0f565b005b348015610a0357600080fd5b50610a1e6004803603810190610a1991906130a9565b611a31565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a935750610a9282611ab5565b5b9050919050565b610aa2611b97565b80601260006101000a81548160ff02191690831515021790555050565b606060008054610ace90613e35565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa90613e35565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b6000610b5c82611c15565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610ba490613e35565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd090613e35565b8015610c1d5780601f10610bf257610100808354040283529160200191610c1d565b820191906000526020600020905b815481529060010190602001808311610c0057829003601f168201915b505050505081565b6000610c30826111f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613aac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc0611c60565b73ffffffffffffffffffffffffffffffffffffffff161480610cef5750610cee81610ce9611c60565b61194f565b5b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590613a0c565b60405180910390fd5b610d388383611c68565b505050565b600e5481565b6000600880549050905090565b60105481565b610d67610d61611c60565b82611d21565b610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613b0c565b60405180910390fd5b610db1838383611db6565b505050565b6000610dc183611332565b8210610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df99061390c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015610eff578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610e9b57610e9a613fce565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610eec576001915050610f05565b8080610ef790613e98565b915050610e63565b50600090505b919050565b610f12611b97565b80601260026101000a81548160ff02191690831515021790555050565b610f37611b97565b600073b98660921820485bcfb913e2536e446df257ddfa73ffffffffffffffffffffffffffffffffffffffff1660648047610f729190613cf1565b610f7c9190613cc0565b604051610f8890613831565b60006040518083038185875af1925050503d8060008114610fc5576040519150601f19603f3d011682016040523d82523d6000602084013e610fca565b606091505b5050905080610fd857600080fd5b6000610fe2611410565b73ffffffffffffffffffffffffffffffffffffffff164760405161100590613831565b60006040518083038185875af1925050503d8060008114611042576040519150601f19603f3d011682016040523d82523d6000602084013e611047565b606091505b505090508061105557600080fd5b5050565b61107483838360405180602001604052806000815250611687565b505050565b6060600061108683611332565b905060008167ffffffffffffffff8111156110a4576110a3613ffd565b5b6040519080825280602002602001820160405280156110d25781602001602082028036833780820191505090505b50905060005b8281101561111c576110ea8582610db6565b8282815181106110fd576110fc613fce565b5b602002602001018181525050808061111490613e98565b9150506110d8565b508092505050919050565b61112f611b97565b80600e8190555050565b6000611143610d43565b8210611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90613acc565b60405180910390fd5b6008828154811061119857611197613fce565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6111c5611b97565b80600b90805190602001906111db929190612da6565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613a8c565b60405180910390fd5b80915050919050565b600b80546112b190613e35565b80601f01602080910402602001604051908101604052809291908181526020018280546112dd90613e35565b801561132a5780601f106112ff5761010080835404028352916020019161132a565b820191906000526020600020905b81548152906001019060200180831161130d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a906139ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f2611b97565b6113fc600061201d565b565b611406611b97565b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461144990613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461147590613e35565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b601260009054906101000a900460ff16156114f957600080fd5b6000611503610d43565b90506000821161151257600080fd5b60105482111561152157600080fd5b600f5482826115309190613c6a565b111561153b57600080fd5b611543611410565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116115760011515601260029054906101000a900460ff16151514156115f65761159a33610e5b565b6115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090613aec565b60405180910390fd5b60006115e433611332565b905060115481106115f457600080fd5b505b81600e546116049190613cf1565b34101561161057600080fd5b5b6000600190505b8281116116475761163433828461162f9190613c6a565b6120e3565b808061163f90613e98565b915050611618565b505050565b61165e611657611c60565b8383612101565b5050565b61166a611b97565b6001601260016101000a81548160ff021916908315150217905550565b611698611692611c60565b83611d21565b6116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613b0c565b60405180910390fd5b6116e38484848461226e565b50505050565b601381815481106116f957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c805461173b90613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461176790613e35565b80156117b45780601f10611789576101008083540402835291602001916117b4565b820191906000526020600020905b81548152906001019060200180831161179757829003601f168201915b505050505081565b60606117c7826122ca565b611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90613a6c565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156118b457600d805461182f90613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461185b90613e35565b80156118a85780601f1061187d576101008083540402835291602001916118a8565b820191906000526020600020905b81548152906001019060200180831161188b57829003601f168201915b50505050509050611910565b60006118be612336565b905060008151116118de576040518060200160405280600081525061190c565b806118e8846123c8565b600c6040516020016118fc93929190613800565b6040516020818303038152906040525b9150505b919050565b61191d611b97565b8060118190555050565b600f5481565b611935611b97565b80600c908051906020019061194b929190612da6565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119eb611b97565b601360006119f99190612e2c565b818160139190611a0a929190612e4d565b505050565b611a17611b97565b80600d9080519060200190611a2d929190612da6565b5050565b611a39611b97565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa09061394c565b60405180910390fd5b611ab28161201d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b8057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b905750611b8f82612529565b5b9050919050565b611b9f611c60565b73ffffffffffffffffffffffffffffffffffffffff16611bbd611410565b73ffffffffffffffffffffffffffffffffffffffff1614611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90613a4c565b60405180910390fd5b565b611c1e816122ca565b611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613a8c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cdb836111f2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611d2d836111f2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6f5750611d6e818561194f565b5b80611dad57508373ffffffffffffffffffffffffffffffffffffffff16611d9584610b51565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dd6826111f2565b73ffffffffffffffffffffffffffffffffffffffff1614611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e239061396c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e93906139ac565b60405180910390fd5b611ea7838383612593565b611eb2600082611c68565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f029190613d4b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f599190613c6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120188383836126a7565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120fd8282604051806020016040528060008152506126ac565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612167906139cc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161226191906138cf565b60405180910390a3505050565b612279848484611db6565b61228584848484612707565b6122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb9061392c565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b805461234590613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461237190613e35565b80156123be5780601f10612393576101008083540402835291602001916123be565b820191906000526020600020905b8154815290600101906020018083116123a157829003601f168201915b5050505050905090565b60606000821415612410576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612524565b600082905060005b6000821461244257808061242b90613e98565b915050600a8261243b9190613cc0565b9150612418565b60008167ffffffffffffffff81111561245e5761245d613ffd565b5b6040519080825280601f01601f1916602001820160405280156124905781602001600182028036833780820191505090505b5090505b6000851461251d576001826124a99190613d4b565b9150600a856124b89190613ee1565b60306124c49190613c6a565b60f81b8183815181106124da576124d9613fce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125169190613cc0565b9450612494565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61259e83838361289e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e1576125dc816128a3565b612620565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461261f5761261e83826128ec565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126635761265e81612a59565b6126a2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146126a1576126a08282612b2a565b5b5b505050565b505050565b6126b68383612ba9565b6126c36000848484612707565b612702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f99061392c565b60405180910390fd5b505050565b60006127288473ffffffffffffffffffffffffffffffffffffffff16612d83565b15612891578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612751611c60565b8786866040518563ffffffff1660e01b81526004016127739493929190613861565b602060405180830381600087803b15801561278d57600080fd5b505af19250505080156127be57506040513d601f19601f820116820180604052508101906127bb9190613313565b60015b612841573d80600081146127ee576040519150601f19603f3d011682016040523d82523d6000602084013e6127f3565b606091505b50600081511415612839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128309061392c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612896565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128f984611332565b6129039190613d4b565b90506000600760008481526020019081526020016000205490508181146129e8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a6d9190613d4b565b9050600060096000848152602001908152602001600020549050600060088381548110612a9d57612a9c613fce565b5b906000526020600020015490508060088381548110612abf57612abe613fce565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b0e57612b0d613f9f565b5b6001900381819060005260206000200160009055905550505050565b6000612b3583611332565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1090613a2c565b60405180910390fd5b612c22816122ca565b15612c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c599061398c565b60405180910390fd5b612c6e60008383612593565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cbe9190613c6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7f600083836126a7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612db290613e35565b90600052602060002090601f016020900481019282612dd45760008555612e1b565b82601f10612ded57805160ff1916838001178555612e1b565b82800160010185558215612e1b579182015b82811115612e1a578251825591602001919060010190612dff565b5b509050612e289190612eed565b5090565b5080546000825590600052602060002090810190612e4a9190612eed565b50565b828054828255906000526020600020908101928215612edc579160200282015b82811115612edb57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612e6d565b5b509050612ee99190612eed565b5090565b5b80821115612f06576000816000905550600101612eee565b5090565b6000612f1d612f1884613b6c565b613b47565b905082815260208101848484011115612f3957612f3861403b565b5b612f44848285613df3565b509392505050565b6000612f5f612f5a84613b9d565b613b47565b905082815260208101848484011115612f7b57612f7a61403b565b5b612f86848285613df3565b509392505050565b600081359050612f9d816144b9565b92915050565b60008083601f840112612fb957612fb8614031565b5b8235905067ffffffffffffffff811115612fd657612fd561402c565b5b602083019150836020820283011115612ff257612ff1614036565b5b9250929050565b600081359050613008816144d0565b92915050565b60008135905061301d816144e7565b92915050565b600081519050613032816144e7565b92915050565b600082601f83011261304d5761304c614031565b5b813561305d848260208601612f0a565b91505092915050565b600082601f83011261307b5761307a614031565b5b813561308b848260208601612f4c565b91505092915050565b6000813590506130a3816144fe565b92915050565b6000602082840312156130bf576130be614045565b5b60006130cd84828501612f8e565b91505092915050565b600080604083850312156130ed576130ec614045565b5b60006130fb85828601612f8e565b925050602061310c85828601612f8e565b9150509250929050565b60008060006060848603121561312f5761312e614045565b5b600061313d86828701612f8e565b935050602061314e86828701612f8e565b925050604061315f86828701613094565b9150509250925092565b6000806000806080858703121561318357613182614045565b5b600061319187828801612f8e565b94505060206131a287828801612f8e565b93505060406131b387828801613094565b925050606085013567ffffffffffffffff8111156131d4576131d3614040565b5b6131e087828801613038565b91505092959194509250565b6000806040838503121561320357613202614045565b5b600061321185828601612f8e565b925050602061322285828601612ff9565b9150509250929050565b6000806040838503121561324357613242614045565b5b600061325185828601612f8e565b925050602061326285828601613094565b9150509250929050565b6000806020838503121561328357613282614045565b5b600083013567ffffffffffffffff8111156132a1576132a0614040565b5b6132ad85828601612fa3565b92509250509250929050565b6000602082840312156132cf576132ce614045565b5b60006132dd84828501612ff9565b91505092915050565b6000602082840312156132fc576132fb614045565b5b600061330a8482850161300e565b91505092915050565b60006020828403121561332957613328614045565b5b600061333784828501613023565b91505092915050565b60006020828403121561335657613355614045565b5b600082013567ffffffffffffffff81111561337457613373614040565b5b61338084828501613066565b91505092915050565b60006020828403121561339f5761339e614045565b5b60006133ad84828501613094565b91505092915050565b60006133c283836137e2565b60208301905092915050565b6133d781613d7f565b82525050565b60006133e882613bf3565b6133f28185613c21565b93506133fd83613bce565b8060005b8381101561342e57815161341588826133b6565b975061342083613c14565b925050600181019050613401565b5085935050505092915050565b61344481613d91565b82525050565b600061345582613bfe565b61345f8185613c32565b935061346f818560208601613e02565b6134788161404a565b840191505092915050565b600061348e82613c09565b6134988185613c4e565b93506134a8818560208601613e02565b6134b18161404a565b840191505092915050565b60006134c782613c09565b6134d18185613c5f565b93506134e1818560208601613e02565b80840191505092915050565b600081546134fa81613e35565b6135048186613c5f565b9450600182166000811461351f576001811461353057613563565b60ff19831686528186019350613563565b61353985613bde565b60005b8381101561355b5781548189015260018201915060208101905061353c565b838801955050505b50505092915050565b6000613579602b83613c4e565b91506135848261405b565b604082019050919050565b600061359c603283613c4e565b91506135a7826140aa565b604082019050919050565b60006135bf602683613c4e565b91506135ca826140f9565b604082019050919050565b60006135e2602583613c4e565b91506135ed82614148565b604082019050919050565b6000613605601c83613c4e565b915061361082614197565b602082019050919050565b6000613628602483613c4e565b9150613633826141c0565b604082019050919050565b600061364b601983613c4e565b91506136568261420f565b602082019050919050565b600061366e602983613c4e565b915061367982614238565b604082019050919050565b6000613691603e83613c4e565b915061369c82614287565b604082019050919050565b60006136b4602083613c4e565b91506136bf826142d6565b602082019050919050565b60006136d7602083613c4e565b91506136e2826142ff565b602082019050919050565b60006136fa602f83613c4e565b915061370582614328565b604082019050919050565b600061371d601883613c4e565b915061372882614377565b602082019050919050565b6000613740602183613c4e565b915061374b826143a0565b604082019050919050565b6000613763600083613c43565b915061376e826143ef565b600082019050919050565b6000613786602c83613c4e565b9150613791826143f2565b604082019050919050565b60006137a9601783613c4e565b91506137b482614441565b602082019050919050565b60006137cc602e83613c4e565b91506137d78261446a565b604082019050919050565b6137eb81613de9565b82525050565b6137fa81613de9565b82525050565b600061380c82866134bc565b915061381882856134bc565b915061382482846134ed565b9150819050949350505050565b600061383c82613756565b9150819050919050565b600060208201905061385b60008301846133ce565b92915050565b600060808201905061387660008301876133ce565b61388360208301866133ce565b61389060408301856137f1565b81810360608301526138a2818461344a565b905095945050505050565b600060208201905081810360008301526138c781846133dd565b905092915050565b60006020820190506138e4600083018461343b565b92915050565b600060208201905081810360008301526139048184613483565b905092915050565b600060208201905081810360008301526139258161356c565b9050919050565b600060208201905081810360008301526139458161358f565b9050919050565b60006020820190508181036000830152613965816135b2565b9050919050565b60006020820190508181036000830152613985816135d5565b9050919050565b600060208201905081810360008301526139a5816135f8565b9050919050565b600060208201905081810360008301526139c58161361b565b9050919050565b600060208201905081810360008301526139e58161363e565b9050919050565b60006020820190508181036000830152613a0581613661565b9050919050565b60006020820190508181036000830152613a2581613684565b9050919050565b60006020820190508181036000830152613a45816136a7565b9050919050565b60006020820190508181036000830152613a65816136ca565b9050919050565b60006020820190508181036000830152613a85816136ed565b9050919050565b60006020820190508181036000830152613aa581613710565b9050919050565b60006020820190508181036000830152613ac581613733565b9050919050565b60006020820190508181036000830152613ae581613779565b9050919050565b60006020820190508181036000830152613b058161379c565b9050919050565b60006020820190508181036000830152613b25816137bf565b9050919050565b6000602082019050613b4160008301846137f1565b92915050565b6000613b51613b62565b9050613b5d8282613e67565b919050565b6000604051905090565b600067ffffffffffffffff821115613b8757613b86613ffd565b5b613b908261404a565b9050602081019050919050565b600067ffffffffffffffff821115613bb857613bb7613ffd565b5b613bc18261404a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c7582613de9565b9150613c8083613de9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cb557613cb4613f12565b5b828201905092915050565b6000613ccb82613de9565b9150613cd683613de9565b925082613ce657613ce5613f41565b5b828204905092915050565b6000613cfc82613de9565b9150613d0783613de9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4057613d3f613f12565b5b828202905092915050565b6000613d5682613de9565b9150613d6183613de9565b925082821015613d7457613d73613f12565b5b828203905092915050565b6000613d8a82613dc9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e20578082015181840152602081019050613e05565b83811115613e2f576000848401525b50505050565b60006002820490506001821680613e4d57607f821691505b60208210811415613e6157613e60613f70565b5b50919050565b613e708261404a565b810181811067ffffffffffffffff82111715613e8f57613e8e613ffd565b5b80604052505050565b6000613ea382613de9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ed657613ed5613f12565b5b600182019050919050565b6000613eec82613de9565b9150613ef783613de9565b925082613f0757613f06613f41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6144c281613d7f565b81146144cd57600080fd5b50565b6144d981613d91565b81146144e457600080fd5b50565b6144f081613d9d565b81146144fb57600080fd5b50565b61450781613de9565b811461451257600080fd5b5056fea2646970667358221220cb95e7b489578c6adb97554f2a2c99fdad0df41a6ec4db601ee5dea0a2fa722764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000011546865204d657267652057617272696f720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544d5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d634565437648614456714e3470747659683367505941725563687233546f74315a59635564503251655039562f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636c0360eb11610144578063ba4e5c49116100b6578063d5abeb011161007a578063d5abeb0114610914578063da3ef23f1461093f578063e985e9c514610968578063edec5f27146109a5578063f2c4ce1e146109ce578063f2fde38b146109f757610267565b8063ba4e5c491461081b578063ba7d2c7614610858578063c668286214610883578063c87b56dd146108ae578063d0eb26b0146108eb57610267565b806395d89b411161010857806395d89b41146107405780639c70b5121461076b578063a0712d6814610796578063a22cb465146107b2578063a475b5dd146107db578063b88d4fde146107f257610267565b80636c0360eb1461066d57806370a0823114610698578063715018a6146106d55780637f00c7a6146106ec5780638da5cb5b1461071557610267565b80633af32abf116101dd57806344a0d68a116101a157806344a0d68a1461054b5780634f6ccce71461057457806351830227146105b157806355f804b3146105dc5780635c975abb146106055780636352211e1461063057610267565b80633af32abf146104755780633c952764146104b25780633ccfd60b146104db57806342842e0e146104e5578063438b63001461050e57610267565b8063095ea7b31161022f578063095ea7b31461036557806313faede61461038e57806318160ddd146103b9578063239c70ae146103e457806323b872dd1461040f5780632f745c591461043857610267565b806301ffc9a71461026c57806302329a29146102a957806306fdde03146102d2578063081812fc146102fd578063081c8c441461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906132e6565b610a20565b6040516102a091906138cf565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb91906132b9565b610a9a565b005b3480156102de57600080fd5b506102e7610abf565b6040516102f491906138ea565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613389565b610b51565b6040516103319190613846565b60405180910390f35b34801561034657600080fd5b5061034f610b97565b60405161035c91906138ea565b60405180910390f35b34801561037157600080fd5b5061038c6004803603810190610387919061322c565b610c25565b005b34801561039a57600080fd5b506103a3610d3d565b6040516103b09190613b2c565b60405180910390f35b3480156103c557600080fd5b506103ce610d43565b6040516103db9190613b2c565b60405180910390f35b3480156103f057600080fd5b506103f9610d50565b6040516104069190613b2c565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613116565b610d56565b005b34801561044457600080fd5b5061045f600480360381019061045a919061322c565b610db6565b60405161046c9190613b2c565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906130a9565b610e5b565b6040516104a991906138cf565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d491906132b9565b610f0a565b005b6104e3610f2f565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613116565b611059565b005b34801561051a57600080fd5b50610535600480360381019061053091906130a9565b611079565b60405161054291906138ad565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613389565b611127565b005b34801561058057600080fd5b5061059b60048036038101906105969190613389565b611139565b6040516105a89190613b2c565b60405180910390f35b3480156105bd57600080fd5b506105c66111aa565b6040516105d391906138cf565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613340565b6111bd565b005b34801561061157600080fd5b5061061a6111df565b60405161062791906138cf565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613389565b6111f2565b6040516106649190613846565b60405180910390f35b34801561067957600080fd5b506106826112a4565b60405161068f91906138ea565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba91906130a9565b611332565b6040516106cc9190613b2c565b60405180910390f35b3480156106e157600080fd5b506106ea6113ea565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613389565b6113fe565b005b34801561072157600080fd5b5061072a611410565b6040516107379190613846565b60405180910390f35b34801561074c57600080fd5b5061075561143a565b60405161076291906138ea565b60405180910390f35b34801561077757600080fd5b506107806114cc565b60405161078d91906138cf565b60405180910390f35b6107b060048036038101906107ab9190613389565b6114df565b005b3480156107be57600080fd5b506107d960048036038101906107d491906131ec565b61164c565b005b3480156107e757600080fd5b506107f0611662565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613169565b611687565b005b34801561082757600080fd5b50610842600480360381019061083d9190613389565b6116e9565b60405161084f9190613846565b60405180910390f35b34801561086457600080fd5b5061086d611728565b60405161087a9190613b2c565b60405180910390f35b34801561088f57600080fd5b5061089861172e565b6040516108a591906138ea565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613389565b6117bc565b6040516108e291906138ea565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613389565b611915565b005b34801561092057600080fd5b50610929611927565b6040516109369190613b2c565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190613340565b61192d565b005b34801561097457600080fd5b5061098f600480360381019061098a91906130d6565b61194f565b60405161099c91906138cf565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c7919061326c565b6119e3565b005b3480156109da57600080fd5b506109f560048036038101906109f09190613340565b611a0f565b005b348015610a0357600080fd5b50610a1e6004803603810190610a1991906130a9565b611a31565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a935750610a9282611ab5565b5b9050919050565b610aa2611b97565b80601260006101000a81548160ff02191690831515021790555050565b606060008054610ace90613e35565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa90613e35565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b6000610b5c82611c15565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610ba490613e35565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd090613e35565b8015610c1d5780601f10610bf257610100808354040283529160200191610c1d565b820191906000526020600020905b815481529060010190602001808311610c0057829003601f168201915b505050505081565b6000610c30826111f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613aac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc0611c60565b73ffffffffffffffffffffffffffffffffffffffff161480610cef5750610cee81610ce9611c60565b61194f565b5b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590613a0c565b60405180910390fd5b610d388383611c68565b505050565b600e5481565b6000600880549050905090565b60105481565b610d67610d61611c60565b82611d21565b610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613b0c565b60405180910390fd5b610db1838383611db6565b505050565b6000610dc183611332565b8210610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df99061390c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015610eff578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610e9b57610e9a613fce565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610eec576001915050610f05565b8080610ef790613e98565b915050610e63565b50600090505b919050565b610f12611b97565b80601260026101000a81548160ff02191690831515021790555050565b610f37611b97565b600073b98660921820485bcfb913e2536e446df257ddfa73ffffffffffffffffffffffffffffffffffffffff1660648047610f729190613cf1565b610f7c9190613cc0565b604051610f8890613831565b60006040518083038185875af1925050503d8060008114610fc5576040519150601f19603f3d011682016040523d82523d6000602084013e610fca565b606091505b5050905080610fd857600080fd5b6000610fe2611410565b73ffffffffffffffffffffffffffffffffffffffff164760405161100590613831565b60006040518083038185875af1925050503d8060008114611042576040519150601f19603f3d011682016040523d82523d6000602084013e611047565b606091505b505090508061105557600080fd5b5050565b61107483838360405180602001604052806000815250611687565b505050565b6060600061108683611332565b905060008167ffffffffffffffff8111156110a4576110a3613ffd565b5b6040519080825280602002602001820160405280156110d25781602001602082028036833780820191505090505b50905060005b8281101561111c576110ea8582610db6565b8282815181106110fd576110fc613fce565b5b602002602001018181525050808061111490613e98565b9150506110d8565b508092505050919050565b61112f611b97565b80600e8190555050565b6000611143610d43565b8210611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90613acc565b60405180910390fd5b6008828154811061119857611197613fce565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6111c5611b97565b80600b90805190602001906111db929190612da6565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613a8c565b60405180910390fd5b80915050919050565b600b80546112b190613e35565b80601f01602080910402602001604051908101604052809291908181526020018280546112dd90613e35565b801561132a5780601f106112ff5761010080835404028352916020019161132a565b820191906000526020600020905b81548152906001019060200180831161130d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a906139ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f2611b97565b6113fc600061201d565b565b611406611b97565b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461144990613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461147590613e35565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b601260009054906101000a900460ff16156114f957600080fd5b6000611503610d43565b90506000821161151257600080fd5b60105482111561152157600080fd5b600f5482826115309190613c6a565b111561153b57600080fd5b611543611410565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116115760011515601260029054906101000a900460ff16151514156115f65761159a33610e5b565b6115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090613aec565b60405180910390fd5b60006115e433611332565b905060115481106115f457600080fd5b505b81600e546116049190613cf1565b34101561161057600080fd5b5b6000600190505b8281116116475761163433828461162f9190613c6a565b6120e3565b808061163f90613e98565b915050611618565b505050565b61165e611657611c60565b8383612101565b5050565b61166a611b97565b6001601260016101000a81548160ff021916908315150217905550565b611698611692611c60565b83611d21565b6116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613b0c565b60405180910390fd5b6116e38484848461226e565b50505050565b601381815481106116f957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c805461173b90613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461176790613e35565b80156117b45780601f10611789576101008083540402835291602001916117b4565b820191906000526020600020905b81548152906001019060200180831161179757829003601f168201915b505050505081565b60606117c7826122ca565b611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90613a6c565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156118b457600d805461182f90613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461185b90613e35565b80156118a85780601f1061187d576101008083540402835291602001916118a8565b820191906000526020600020905b81548152906001019060200180831161188b57829003601f168201915b50505050509050611910565b60006118be612336565b905060008151116118de576040518060200160405280600081525061190c565b806118e8846123c8565b600c6040516020016118fc93929190613800565b6040516020818303038152906040525b9150505b919050565b61191d611b97565b8060118190555050565b600f5481565b611935611b97565b80600c908051906020019061194b929190612da6565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119eb611b97565b601360006119f99190612e2c565b818160139190611a0a929190612e4d565b505050565b611a17611b97565b80600d9080519060200190611a2d929190612da6565b5050565b611a39611b97565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa09061394c565b60405180910390fd5b611ab28161201d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b8057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b905750611b8f82612529565b5b9050919050565b611b9f611c60565b73ffffffffffffffffffffffffffffffffffffffff16611bbd611410565b73ffffffffffffffffffffffffffffffffffffffff1614611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90613a4c565b60405180910390fd5b565b611c1e816122ca565b611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613a8c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cdb836111f2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611d2d836111f2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6f5750611d6e818561194f565b5b80611dad57508373ffffffffffffffffffffffffffffffffffffffff16611d9584610b51565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dd6826111f2565b73ffffffffffffffffffffffffffffffffffffffff1614611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e239061396c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e93906139ac565b60405180910390fd5b611ea7838383612593565b611eb2600082611c68565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f029190613d4b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f599190613c6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120188383836126a7565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120fd8282604051806020016040528060008152506126ac565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612167906139cc565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161226191906138cf565b60405180910390a3505050565b612279848484611db6565b61228584848484612707565b6122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb9061392c565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b805461234590613e35565b80601f016020809104026020016040519081016040528092919081815260200182805461237190613e35565b80156123be5780601f10612393576101008083540402835291602001916123be565b820191906000526020600020905b8154815290600101906020018083116123a157829003601f168201915b5050505050905090565b60606000821415612410576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612524565b600082905060005b6000821461244257808061242b90613e98565b915050600a8261243b9190613cc0565b9150612418565b60008167ffffffffffffffff81111561245e5761245d613ffd565b5b6040519080825280601f01601f1916602001820160405280156124905781602001600182028036833780820191505090505b5090505b6000851461251d576001826124a99190613d4b565b9150600a856124b89190613ee1565b60306124c49190613c6a565b60f81b8183815181106124da576124d9613fce565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125169190613cc0565b9450612494565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61259e83838361289e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e1576125dc816128a3565b612620565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461261f5761261e83826128ec565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126635761265e81612a59565b6126a2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146126a1576126a08282612b2a565b5b5b505050565b505050565b6126b68383612ba9565b6126c36000848484612707565b612702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f99061392c565b60405180910390fd5b505050565b60006127288473ffffffffffffffffffffffffffffffffffffffff16612d83565b15612891578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612751611c60565b8786866040518563ffffffff1660e01b81526004016127739493929190613861565b602060405180830381600087803b15801561278d57600080fd5b505af19250505080156127be57506040513d601f19601f820116820180604052508101906127bb9190613313565b60015b612841573d80600081146127ee576040519150601f19603f3d011682016040523d82523d6000602084013e6127f3565b606091505b50600081511415612839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128309061392c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612896565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128f984611332565b6129039190613d4b565b90506000600760008481526020019081526020016000205490508181146129e8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a6d9190613d4b565b9050600060096000848152602001908152602001600020549050600060088381548110612a9d57612a9c613fce565b5b906000526020600020015490508060088381548110612abf57612abe613fce565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612b0e57612b0d613f9f565b5b6001900381819060005260206000200160009055905550505050565b6000612b3583611332565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1090613a2c565b60405180910390fd5b612c22816122ca565b15612c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c599061398c565b60405180910390fd5b612c6e60008383612593565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cbe9190613c6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7f600083836126a7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612db290613e35565b90600052602060002090601f016020900481019282612dd45760008555612e1b565b82601f10612ded57805160ff1916838001178555612e1b565b82800160010185558215612e1b579182015b82811115612e1a578251825591602001919060010190612dff565b5b509050612e289190612eed565b5090565b5080546000825590600052602060002090810190612e4a9190612eed565b50565b828054828255906000526020600020908101928215612edc579160200282015b82811115612edb57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612e6d565b5b509050612ee99190612eed565b5090565b5b80821115612f06576000816000905550600101612eee565b5090565b6000612f1d612f1884613b6c565b613b47565b905082815260208101848484011115612f3957612f3861403b565b5b612f44848285613df3565b509392505050565b6000612f5f612f5a84613b9d565b613b47565b905082815260208101848484011115612f7b57612f7a61403b565b5b612f86848285613df3565b509392505050565b600081359050612f9d816144b9565b92915050565b60008083601f840112612fb957612fb8614031565b5b8235905067ffffffffffffffff811115612fd657612fd561402c565b5b602083019150836020820283011115612ff257612ff1614036565b5b9250929050565b600081359050613008816144d0565b92915050565b60008135905061301d816144e7565b92915050565b600081519050613032816144e7565b92915050565b600082601f83011261304d5761304c614031565b5b813561305d848260208601612f0a565b91505092915050565b600082601f83011261307b5761307a614031565b5b813561308b848260208601612f4c565b91505092915050565b6000813590506130a3816144fe565b92915050565b6000602082840312156130bf576130be614045565b5b60006130cd84828501612f8e565b91505092915050565b600080604083850312156130ed576130ec614045565b5b60006130fb85828601612f8e565b925050602061310c85828601612f8e565b9150509250929050565b60008060006060848603121561312f5761312e614045565b5b600061313d86828701612f8e565b935050602061314e86828701612f8e565b925050604061315f86828701613094565b9150509250925092565b6000806000806080858703121561318357613182614045565b5b600061319187828801612f8e565b94505060206131a287828801612f8e565b93505060406131b387828801613094565b925050606085013567ffffffffffffffff8111156131d4576131d3614040565b5b6131e087828801613038565b91505092959194509250565b6000806040838503121561320357613202614045565b5b600061321185828601612f8e565b925050602061322285828601612ff9565b9150509250929050565b6000806040838503121561324357613242614045565b5b600061325185828601612f8e565b925050602061326285828601613094565b9150509250929050565b6000806020838503121561328357613282614045565b5b600083013567ffffffffffffffff8111156132a1576132a0614040565b5b6132ad85828601612fa3565b92509250509250929050565b6000602082840312156132cf576132ce614045565b5b60006132dd84828501612ff9565b91505092915050565b6000602082840312156132fc576132fb614045565b5b600061330a8482850161300e565b91505092915050565b60006020828403121561332957613328614045565b5b600061333784828501613023565b91505092915050565b60006020828403121561335657613355614045565b5b600082013567ffffffffffffffff81111561337457613373614040565b5b61338084828501613066565b91505092915050565b60006020828403121561339f5761339e614045565b5b60006133ad84828501613094565b91505092915050565b60006133c283836137e2565b60208301905092915050565b6133d781613d7f565b82525050565b60006133e882613bf3565b6133f28185613c21565b93506133fd83613bce565b8060005b8381101561342e57815161341588826133b6565b975061342083613c14565b925050600181019050613401565b5085935050505092915050565b61344481613d91565b82525050565b600061345582613bfe565b61345f8185613c32565b935061346f818560208601613e02565b6134788161404a565b840191505092915050565b600061348e82613c09565b6134988185613c4e565b93506134a8818560208601613e02565b6134b18161404a565b840191505092915050565b60006134c782613c09565b6134d18185613c5f565b93506134e1818560208601613e02565b80840191505092915050565b600081546134fa81613e35565b6135048186613c5f565b9450600182166000811461351f576001811461353057613563565b60ff19831686528186019350613563565b61353985613bde565b60005b8381101561355b5781548189015260018201915060208101905061353c565b838801955050505b50505092915050565b6000613579602b83613c4e565b91506135848261405b565b604082019050919050565b600061359c603283613c4e565b91506135a7826140aa565b604082019050919050565b60006135bf602683613c4e565b91506135ca826140f9565b604082019050919050565b60006135e2602583613c4e565b91506135ed82614148565b604082019050919050565b6000613605601c83613c4e565b915061361082614197565b602082019050919050565b6000613628602483613c4e565b9150613633826141c0565b604082019050919050565b600061364b601983613c4e565b91506136568261420f565b602082019050919050565b600061366e602983613c4e565b915061367982614238565b604082019050919050565b6000613691603e83613c4e565b915061369c82614287565b604082019050919050565b60006136b4602083613c4e565b91506136bf826142d6565b602082019050919050565b60006136d7602083613c4e565b91506136e2826142ff565b602082019050919050565b60006136fa602f83613c4e565b915061370582614328565b604082019050919050565b600061371d601883613c4e565b915061372882614377565b602082019050919050565b6000613740602183613c4e565b915061374b826143a0565b604082019050919050565b6000613763600083613c43565b915061376e826143ef565b600082019050919050565b6000613786602c83613c4e565b9150613791826143f2565b604082019050919050565b60006137a9601783613c4e565b91506137b482614441565b602082019050919050565b60006137cc602e83613c4e565b91506137d78261446a565b604082019050919050565b6137eb81613de9565b82525050565b6137fa81613de9565b82525050565b600061380c82866134bc565b915061381882856134bc565b915061382482846134ed565b9150819050949350505050565b600061383c82613756565b9150819050919050565b600060208201905061385b60008301846133ce565b92915050565b600060808201905061387660008301876133ce565b61388360208301866133ce565b61389060408301856137f1565b81810360608301526138a2818461344a565b905095945050505050565b600060208201905081810360008301526138c781846133dd565b905092915050565b60006020820190506138e4600083018461343b565b92915050565b600060208201905081810360008301526139048184613483565b905092915050565b600060208201905081810360008301526139258161356c565b9050919050565b600060208201905081810360008301526139458161358f565b9050919050565b60006020820190508181036000830152613965816135b2565b9050919050565b60006020820190508181036000830152613985816135d5565b9050919050565b600060208201905081810360008301526139a5816135f8565b9050919050565b600060208201905081810360008301526139c58161361b565b9050919050565b600060208201905081810360008301526139e58161363e565b9050919050565b60006020820190508181036000830152613a0581613661565b9050919050565b60006020820190508181036000830152613a2581613684565b9050919050565b60006020820190508181036000830152613a45816136a7565b9050919050565b60006020820190508181036000830152613a65816136ca565b9050919050565b60006020820190508181036000830152613a85816136ed565b9050919050565b60006020820190508181036000830152613aa581613710565b9050919050565b60006020820190508181036000830152613ac581613733565b9050919050565b60006020820190508181036000830152613ae581613779565b9050919050565b60006020820190508181036000830152613b058161379c565b9050919050565b60006020820190508181036000830152613b25816137bf565b9050919050565b6000602082019050613b4160008301846137f1565b92915050565b6000613b51613b62565b9050613b5d8282613e67565b919050565b6000604051905090565b600067ffffffffffffffff821115613b8757613b86613ffd565b5b613b908261404a565b9050602081019050919050565b600067ffffffffffffffff821115613bb857613bb7613ffd565b5b613bc18261404a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c7582613de9565b9150613c8083613de9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cb557613cb4613f12565b5b828201905092915050565b6000613ccb82613de9565b9150613cd683613de9565b925082613ce657613ce5613f41565b5b828204905092915050565b6000613cfc82613de9565b9150613d0783613de9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4057613d3f613f12565b5b828202905092915050565b6000613d5682613de9565b9150613d6183613de9565b925082821015613d7457613d73613f12565b5b828203905092915050565b6000613d8a82613dc9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e20578082015181840152602081019050613e05565b83811115613e2f576000848401525b50505050565b60006002820490506001821680613e4d57607f821691505b60208210811415613e6157613e60613f70565b5b50919050565b613e708261404a565b810181811067ffffffffffffffff82111715613e8f57613e8e613ffd565b5b80604052505050565b6000613ea382613de9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ed657613ed5613f12565b5b600182019050919050565b6000613eec82613de9565b9150613ef783613de9565b925082613f0757613f06613f41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6144c281613d7f565b81146144cd57600080fd5b50565b6144d981613d91565b81146144e457600080fd5b50565b6144f081613d9d565b81146144fb57600080fd5b50565b61450781613de9565b811461451257600080fd5b5056fea2646970667358221220cb95e7b489578c6adb97554f2a2c99fdad0df41a6ec4db601ee5dea0a2fa722764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000011546865204d657267652057617272696f720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544d5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d634565437648614456714e3470747659683367505941725563687233546f74315a59635564503251655039562f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): The Merge Warrior
Arg [1] : _symbol (string): TMW
Arg [2] : _initBaseURI (string): ipfs://QmcEeCvHaDVqN4ptvYh3gPYArUchr3Tot1ZYcUdP2QeP9V/
Arg [3] : _initNotRevealedUri (string):

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 546865204d657267652057617272696f72000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 544d570000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d634565437648614456714e347074765968336750594172
Arg [10] : 5563687233546f74315a59635564503251655039562f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47856:4298:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41638:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51274:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28372:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29885:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48015:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29402:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48048:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42278:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48120:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30585:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41946:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49417:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51357:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51607:544;;;:::i;:::-;;30992:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49652:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50706:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42468:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48230:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51042:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48199:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28083:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47947:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27814:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6901:103;;;;;;;;;;;;;:::i;:::-;;50792:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6253:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28541:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48262:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48739:672;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30128:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50525:65;;;;;;;;;;;;;:::i;:::-;;31248:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48302:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48157;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47973;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50006:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50594:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48085:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51146:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30354:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51458:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50916:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7159:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41638:224;41740:4;41779:35;41764:50;;;:11;:50;;;;:90;;;;41818:36;41842:11;41818:23;:36::i;:::-;41764:90;41757:97;;41638:224;;;:::o;51274:73::-;6139:13;:11;:13::i;:::-;51335:6:::1;51326;;:15;;;;;;;;;;;;;;;;;;51274:73:::0;:::o;28372:100::-;28426:13;28459:5;28452:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28372:100;:::o;29885:171::-;29961:7;29981:23;29996:7;29981:14;:23::i;:::-;30024:15;:24;30040:7;30024:24;;;;;;;;;;;;;;;;;;;;;30017:31;;29885:171;;;:::o;48015:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29402:417::-;29483:13;29499:23;29514:7;29499:14;:23::i;:::-;29483:39;;29547:5;29541:11;;:2;:11;;;;29533:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29641:5;29625:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29650:37;29667:5;29674:12;:10;:12::i;:::-;29650:16;:37::i;:::-;29625:62;29603:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;29790:21;29799:2;29803:7;29790:8;:21::i;:::-;29472:347;29402:417;;:::o;48048:32::-;;;;:::o;42278:113::-;42339:7;42366:10;:17;;;;42359:24;;42278:113;:::o;48120:32::-;;;;:::o;30585:336::-;30780:41;30799:12;:10;:12::i;:::-;30813:7;30780:18;:41::i;:::-;30772:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30885:28;30895:4;30901:2;30905:7;30885:9;:28::i;:::-;30585:336;;;:::o;41946:256::-;42043:7;42079:23;42096:5;42079:16;:23::i;:::-;42071:5;:31;42063:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;42168:12;:19;42181:5;42168:19;;;;;;;;;;;;;;;:26;42188:5;42168:26;;;;;;;;;;;;42161:33;;41946:256;;;;:::o;49417:229::-;49476:4;49491:9;49503:1;49491:13;;49487:137;49510:20;:27;;;;49506:1;:31;49487:137;;;49582:5;49555:32;;:20;49576:1;49555:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;49551:68;;;49605:4;49598:11;;;;;49551:68;49539:3;;;;;:::i;:::-;;;;49487:137;;;;49635:5;49628:12;;49417:229;;;;:::o;51357:95::-;6139:13;:11;:13::i;:::-;51440:6:::1;51422:15;;:24;;;;;;;;;;;;;;;;;;51357:95:::0;:::o;51607:544::-;6139:13;:11;:13::i;:::-;51746:7:::1;51767:42;51759:56;;51853:3;51847::::0;51823:21:::1;:27;;;;:::i;:::-;:33;;;;:::i;:::-;51759:102;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51745:116;;;51876:2;51868:11;;;::::0;::::1;;51973:7;51994;:5;:7::i;:::-;51986:21;;52015;51986:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51972:69;;;52056:2;52048:11;;;::::0;::::1;;51652:499;;51607:544::o:0;30992:185::-;31130:39;31147:4;31153:2;31157:7;31130:39;;;;;;;;;;;;:16;:39::i;:::-;30992:185;;;:::o;49652:348::-;49727:16;49755:23;49781:17;49791:6;49781:9;:17::i;:::-;49755:43;;49805:25;49847:15;49833:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49805:58;;49875:9;49870:103;49890:15;49886:1;:19;49870:103;;;49935:30;49955:6;49963:1;49935:19;:30::i;:::-;49921:8;49930:1;49921:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;49907:3;;;;;:::i;:::-;;;;49870:103;;;;49986:8;49979:15;;;;49652:348;;;:::o;50706:80::-;6139:13;:11;:13::i;:::-;50772:8:::1;50765:4;:15;;;;50706:80:::0;:::o;42468:233::-;42543:7;42579:30;:28;:30::i;:::-;42571:5;:38;42563:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;42676:10;42687:5;42676:17;;;;;;;;:::i;:::-;;;;;;;;;;42669:24;;42468:233;;;:::o;48230:27::-;;;;;;;;;;;;;:::o;51042:98::-;6139:13;:11;:13::i;:::-;51123:11:::1;51113:7;:21;;;;;;;;;;;;:::i;:::-;;51042:98:::0;:::o;48199:26::-;;;;;;;;;;;;;:::o;28083:222::-;28155:7;28175:13;28191:7;:16;28199:7;28191:16;;;;;;;;;;;;;;;;;;;;;28175:32;;28243:1;28226:19;;:5;:19;;;;28218:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;28292:5;28285:12;;;28083:222;;;:::o;47947:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27814:207::-;27886:7;27931:1;27914:19;;:5;:19;;;;27906:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27997:9;:16;28007:5;27997:16;;;;;;;;;;;;;;;;27990:23;;27814:207;;;:::o;6901:103::-;6139:13;:11;:13::i;:::-;6966:30:::1;6993:1;6966:18;:30::i;:::-;6901:103::o:0;50792:116::-;6139:13;:11;:13::i;:::-;50885:17:::1;50869:13;:33;;;;50792:116:::0;:::o;6253:87::-;6299:7;6326:6;;;;;;;;;;;6319:13;;6253:87;:::o;28541:104::-;28597:13;28630:7;28623:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28541:104;:::o;48262:35::-;;;;;;;;;;;;;:::o;48739:672::-;48805:6;;;;;;;;;;;48804:7;48796:16;;;;;;48819:14;48836:13;:11;:13::i;:::-;48819:30;;48878:1;48864:11;:15;48856:24;;;;;;48910:13;;48895:11;:28;;48887:37;;;;;;48963:9;;48948:11;48939:6;:20;;;;:::i;:::-;:33;;48931:42;;;;;;49000:7;:5;:7::i;:::-;48986:21;;:10;:21;;;48982:323;;49041:4;49022:23;;:15;;;;;;;;;;;:23;;;49018:227;;;49066:25;49080:10;49066:13;:25::i;:::-;49058:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49130:23;49156:21;49166:10;49156:9;:21::i;:::-;49130:47;;49214:18;;49196:15;:36;49188:45;;;;;;49047:198;49018:227;49285:11;49278:4;;:18;;;;:::i;:::-;49265:9;:31;;49257:40;;;;;;48982:323;49318:9;49330:1;49318:13;;49313:93;49338:11;49333:1;:16;49313:93;;49365:33;49375:10;49396:1;49387:6;:10;;;;:::i;:::-;49365:9;:33::i;:::-;49351:3;;;;;:::i;:::-;;;;49313:93;;;;48789:622;48739:672;:::o;30128:155::-;30223:52;30242:12;:10;:12::i;:::-;30256:8;30266;30223:18;:52::i;:::-;30128:155;;:::o;50525:65::-;6139:13;:11;:13::i;:::-;50580:4:::1;50569:8;;:15;;;;;;;;;;;;;;;;;;50525:65::o:0;31248:323::-;31422:41;31441:12;:10;:12::i;:::-;31455:7;31422:18;:41::i;:::-;31414:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;31525:38;31539:4;31545:2;31549:7;31558:4;31525:13;:38::i;:::-;31248:323;;;;:::o;48302:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48157:::-;;;;:::o;47973:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50006:497::-;50104:13;50145:16;50153:7;50145;:16::i;:::-;50129:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;50254:5;50242:17;;:8;;;;;;;;;;;:17;;;50239:62;;;50279:14;50272:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50239:62;50309:28;50340:10;:8;:10::i;:::-;50309:41;;50395:1;50370:14;50364:28;:32;:133;;;;;;;;;;;;;;;;;50432:14;50448:18;:7;:16;:18::i;:::-;50468:13;50415:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50364:133;50357:140;;;50006:497;;;;:::o;50594:104::-;6139:13;:11;:13::i;:::-;50686:6:::1;50665:18;:27;;;;50594:104:::0;:::o;48085:30::-;;;;:::o;51146:122::-;6139:13;:11;:13::i;:::-;51245:17:::1;51229:13;:33;;;;;;;;;;;;:::i;:::-;;51146:122:::0;:::o;30354:164::-;30451:4;30475:18;:25;30494:5;30475:25;;;;;;;;;;;;;;;:35;30501:8;30475:35;;;;;;;;;;;;;;;;;;;;;;;;;30468:42;;30354:164;;;;:::o;51458:140::-;6139:13;:11;:13::i;:::-;51538:20:::1;;51531:27;;;;:::i;:::-;51586:6;;51563:20;:29;;;;;;;:::i;:::-;;51458:140:::0;;:::o;50916:120::-;6139:13;:11;:13::i;:::-;51015:15:::1;50998:14;:32;;;;;;;;;;;;:::i;:::-;;50916:120:::0;:::o;7159:201::-;6139:13;:11;:13::i;:::-;7268:1:::1;7248:22;;:8;:22;;;;7240:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7324:28;7343:8;7324:18;:28::i;:::-;7159:201:::0;:::o;27445:305::-;27547:4;27599:25;27584:40;;;:11;:40;;;;:105;;;;27656:33;27641:48;;;:11;:48;;;;27584:105;:158;;;;27706:36;27730:11;27706:23;:36::i;:::-;27584:158;27564:178;;27445:305;;;:::o;6418:132::-;6493:12;:10;:12::i;:::-;6482:23;;:7;:5;:7::i;:::-;:23;;;6474:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6418:132::o;37860:135::-;37942:16;37950:7;37942;:16::i;:::-;37934:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;37860:135;:::o;4804:98::-;4857:7;4884:10;4877:17;;4804:98;:::o;37139:174::-;37241:2;37214:15;:24;37230:7;37214:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37297:7;37293:2;37259:46;;37268:23;37283:7;37268:14;:23::i;:::-;37259:46;;;;;;;;;;;;37139:174;;:::o;33372:264::-;33465:4;33482:13;33498:23;33513:7;33498:14;:23::i;:::-;33482:39;;33551:5;33540:16;;:7;:16;;;:52;;;;33560:32;33577:5;33584:7;33560:16;:32::i;:::-;33540:52;:87;;;;33620:7;33596:31;;:20;33608:7;33596:11;:20::i;:::-;:31;;;33540:87;33532:96;;;33372:264;;;;:::o;36395:625::-;36554:4;36527:31;;:23;36542:7;36527:14;:23::i;:::-;:31;;;36519:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;36633:1;36619:16;;:2;:16;;;;36611:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36689:39;36710:4;36716:2;36720:7;36689:20;:39::i;:::-;36793:29;36810:1;36814:7;36793:8;:29::i;:::-;36854:1;36835:9;:15;36845:4;36835:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36883:1;36866:9;:13;36876:2;36866:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36914:2;36895:7;:16;36903:7;36895:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36953:7;36949:2;36934:27;;36943:4;36934:27;;;;;;;;;;;;36974:38;36994:4;37000:2;37004:7;36974:19;:38::i;:::-;36395:625;;;:::o;7520:191::-;7594:16;7613:6;;;;;;;;;;;7594:25;;7639:8;7630:6;;:17;;;;;;;;;;;;;;;;;;7694:8;7663:40;;7684:8;7663:40;;;;;;;;;;;;7583:128;7520:191;:::o;33978:110::-;34054:26;34064:2;34068:7;34054:26;;;;;;;;;;;;:9;:26::i;:::-;33978:110;;:::o;37456:315::-;37611:8;37602:17;;:5;:17;;;;37594:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37698:8;37660:18;:25;37679:5;37660:25;;;;;;;;;;;;;;;:35;37686:8;37660:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37744:8;37722:41;;37737:5;37722:41;;;37754:8;37722:41;;;;;;:::i;:::-;;;;;;;;37456:315;;;:::o;32452:313::-;32608:28;32618:4;32624:2;32628:7;32608:9;:28::i;:::-;32655:47;32678:4;32684:2;32688:7;32697:4;32655:22;:47::i;:::-;32647:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32452:313;;;;:::o;33078:127::-;33143:4;33195:1;33167:30;;:7;:16;33175:7;33167:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33160:37;;33078:127;;;:::o;48618:102::-;48678:13;48707:7;48700:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48618:102;:::o;2058:723::-;2114:13;2344:1;2335:5;:10;2331:53;;;2362:10;;;;;;;;;;;;;;;;;;;;;2331:53;2394:12;2409:5;2394:20;;2425:14;2450:78;2465:1;2457:4;:9;2450:78;;2483:8;;;;;:::i;:::-;;;;2514:2;2506:10;;;;;:::i;:::-;;;2450:78;;;2538:19;2570:6;2560:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2538:39;;2588:154;2604:1;2595:5;:10;2588:154;;2632:1;2622:11;;;;;:::i;:::-;;;2699:2;2691:5;:10;;;;:::i;:::-;2678:2;:24;;;;:::i;:::-;2665:39;;2648:6;2655;2648:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2728:2;2719:11;;;;;:::i;:::-;;;2588:154;;;2766:6;2752:21;;;;;2058:723;;;;:::o;19107:157::-;19192:4;19231:25;19216:40;;;:11;:40;;;;19209:47;;19107:157;;;:::o;43314:589::-;43458:45;43485:4;43491:2;43495:7;43458:26;:45::i;:::-;43536:1;43520:18;;:4;:18;;;43516:187;;;43555:40;43587:7;43555:31;:40::i;:::-;43516:187;;;43625:2;43617:10;;:4;:10;;;43613:90;;43644:47;43677:4;43683:7;43644:32;:47::i;:::-;43613:90;43516:187;43731:1;43717:16;;:2;:16;;;43713:183;;;43750:45;43787:7;43750:36;:45::i;:::-;43713:183;;;43823:4;43817:10;;:2;:10;;;43813:83;;43844:40;43872:2;43876:7;43844:27;:40::i;:::-;43813:83;43713:183;43314:589;;;:::o;40495:125::-;;;;:::o;34315:319::-;34444:18;34450:2;34454:7;34444:5;:18::i;:::-;34495:53;34526:1;34530:2;34534:7;34543:4;34495:22;:53::i;:::-;34473:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;34315:319;;;:::o;38559:853::-;38713:4;38734:15;:2;:13;;;:15::i;:::-;38730:675;;;38786:2;38770:36;;;38807:12;:10;:12::i;:::-;38821:4;38827:7;38836:4;38770:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38766:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39028:1;39011:6;:13;:18;39007:328;;;39054:60;;;;;;;;;;:::i;:::-;;;;;;;;39007:328;39285:6;39279:13;39270:6;39266:2;39262:15;39255:38;38766:584;38902:41;;;38892:51;;;:6;:51;;;;38885:58;;;;;38730:675;39389:4;39382:11;;38559:853;;;;;;;:::o;39984:126::-;;;;:::o;44626:164::-;44730:10;:17;;;;44703:15;:24;44719:7;44703:24;;;;;;;;;;;:44;;;;44758:10;44774:7;44758:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44626:164;:::o;45417:988::-;45683:22;45733:1;45708:22;45725:4;45708:16;:22::i;:::-;:26;;;;:::i;:::-;45683:51;;45745:18;45766:17;:26;45784:7;45766:26;;;;;;;;;;;;45745:47;;45913:14;45899:10;:28;45895:328;;45944:19;45966:12;:18;45979:4;45966:18;;;;;;;;;;;;;;;:34;45985:14;45966:34;;;;;;;;;;;;45944:56;;46050:11;46017:12;:18;46030:4;46017:18;;;;;;;;;;;;;;;:30;46036:10;46017:30;;;;;;;;;;;:44;;;;46167:10;46134:17;:30;46152:11;46134:30;;;;;;;;;;;:43;;;;45929:294;45895:328;46319:17;:26;46337:7;46319:26;;;;;;;;;;;46312:33;;;46363:12;:18;46376:4;46363:18;;;;;;;;;;;;;;;:34;46382:14;46363:34;;;;;;;;;;;46356:41;;;45498:907;;45417:988;;:::o;46700:1079::-;46953:22;46998:1;46978:10;:17;;;;:21;;;;:::i;:::-;46953:46;;47010:18;47031:15;:24;47047:7;47031:24;;;;;;;;;;;;47010:45;;47382:19;47404:10;47415:14;47404:26;;;;;;;;:::i;:::-;;;;;;;;;;47382:48;;47468:11;47443:10;47454;47443:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;47579:10;47548:15;:28;47564:11;47548:28;;;;;;;;;;;:41;;;;47720:15;:24;47736:7;47720:24;;;;;;;;;;;47713:31;;;47755:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46771:1008;;;46700:1079;:::o;44204:221::-;44289:14;44306:20;44323:2;44306:16;:20::i;:::-;44289:37;;44364:7;44337:12;:16;44350:2;44337:16;;;;;;;;;;;;;;;:24;44354:6;44337:24;;;;;;;;;;;:34;;;;44411:6;44382:17;:26;44400:7;44382:26;;;;;;;;;;;:35;;;;44278:147;44204:221;;:::o;34970:439::-;35064:1;35050:16;;:2;:16;;;;35042:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35123:16;35131:7;35123;:16::i;:::-;35122:17;35114:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35185:45;35214:1;35218:2;35222:7;35185:20;:45::i;:::-;35260:1;35243:9;:13;35253:2;35243:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35291:2;35272:7;:16;35280:7;35272:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35336:7;35332:2;35311:33;;35328:1;35311:33;;;;;;;;;;;;35357:44;35385:1;35389:2;35393:7;35357:19;:44::i;:::-;34970:439;;:::o;8951:326::-;9011:4;9268:1;9246:7;:19;;;:23;9239:30;;8951:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:398::-;17196:3;17217:83;17298:1;17293:3;17217:83;:::i;:::-;17210:90;;17309:93;17398:3;17309:93;:::i;:::-;17427:1;17422:3;17418:11;17411:18;;17037:398;;;:::o;17441:366::-;17583:3;17604:67;17668:2;17663:3;17604:67;:::i;:::-;17597:74;;17680:93;17769:3;17680:93;:::i;:::-;17798:2;17793:3;17789:12;17782:19;;17441:366;;;:::o;17813:::-;17955:3;17976:67;18040:2;18035:3;17976:67;:::i;:::-;17969:74;;18052:93;18141:3;18052:93;:::i;:::-;18170:2;18165:3;18161:12;18154:19;;17813:366;;;:::o;18185:::-;18327:3;18348:67;18412:2;18407:3;18348:67;:::i;:::-;18341:74;;18424:93;18513:3;18424:93;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18185:366;;;:::o;18557:108::-;18634:24;18652:5;18634:24;:::i;:::-;18629:3;18622:37;18557:108;;:::o;18671:118::-;18758:24;18776:5;18758:24;:::i;:::-;18753:3;18746:37;18671:118;;:::o;18795:589::-;19020:3;19042:95;19133:3;19124:6;19042:95;:::i;:::-;19035:102;;19154:95;19245:3;19236:6;19154:95;:::i;:::-;19147:102;;19266:92;19354:3;19345:6;19266:92;:::i;:::-;19259:99;;19375:3;19368:10;;18795:589;;;;;;:::o;19390:379::-;19574:3;19596:147;19739:3;19596:147;:::i;:::-;19589:154;;19760:3;19753:10;;19390:379;;;:::o;19775:222::-;19868:4;19906:2;19895:9;19891:18;19883:26;;19919:71;19987:1;19976:9;19972:17;19963:6;19919:71;:::i;:::-;19775:222;;;;:::o;20003:640::-;20198:4;20236:3;20225:9;20221:19;20213:27;;20250:71;20318:1;20307:9;20303:17;20294:6;20250:71;:::i;:::-;20331:72;20399:2;20388:9;20384:18;20375:6;20331:72;:::i;:::-;20413;20481:2;20470:9;20466:18;20457:6;20413:72;:::i;:::-;20532:9;20526:4;20522:20;20517:2;20506:9;20502:18;20495:48;20560:76;20631:4;20622:6;20560:76;:::i;:::-;20552:84;;20003:640;;;;;;;:::o;20649:373::-;20792:4;20830:2;20819:9;20815:18;20807:26;;20879:9;20873:4;20869:20;20865:1;20854:9;20850:17;20843:47;20907:108;21010:4;21001:6;20907:108;:::i;:::-;20899:116;;20649:373;;;;:::o;21028:210::-;21115:4;21153:2;21142:9;21138:18;21130:26;;21166:65;21228:1;21217:9;21213:17;21204:6;21166:65;:::i;:::-;21028:210;;;;:::o;21244:313::-;21357:4;21395:2;21384:9;21380:18;21372:26;;21444:9;21438:4;21434:20;21430:1;21419:9;21415:17;21408:47;21472:78;21545:4;21536:6;21472:78;:::i;:::-;21464:86;;21244:313;;;;:::o;21563:419::-;21729:4;21767:2;21756:9;21752:18;21744:26;;21816:9;21810:4;21806:20;21802:1;21791:9;21787:17;21780:47;21844:131;21970:4;21844:131;:::i;:::-;21836:139;;21563:419;;;:::o;21988:::-;22154:4;22192:2;22181:9;22177:18;22169:26;;22241:9;22235:4;22231:20;22227:1;22216:9;22212:17;22205:47;22269:131;22395:4;22269:131;:::i;:::-;22261:139;;21988:419;;;:::o;22413:::-;22579:4;22617:2;22606:9;22602:18;22594:26;;22666:9;22660:4;22656:20;22652:1;22641:9;22637:17;22630:47;22694:131;22820:4;22694:131;:::i;:::-;22686:139;;22413:419;;;:::o;22838:::-;23004:4;23042:2;23031:9;23027:18;23019:26;;23091:9;23085:4;23081:20;23077:1;23066:9;23062:17;23055:47;23119:131;23245:4;23119:131;:::i;:::-;23111:139;;22838:419;;;:::o;23263:::-;23429:4;23467:2;23456:9;23452:18;23444:26;;23516:9;23510:4;23506:20;23502:1;23491:9;23487:17;23480:47;23544:131;23670:4;23544:131;:::i;:::-;23536:139;;23263:419;;;:::o;23688:::-;23854:4;23892:2;23881:9;23877:18;23869:26;;23941:9;23935:4;23931:20;23927:1;23916:9;23912:17;23905:47;23969:131;24095:4;23969:131;:::i;:::-;23961:139;;23688:419;;;:::o;24113:::-;24279:4;24317:2;24306:9;24302:18;24294:26;;24366:9;24360:4;24356:20;24352:1;24341:9;24337:17;24330:47;24394:131;24520:4;24394:131;:::i;:::-;24386:139;;24113:419;;;:::o;24538:::-;24704:4;24742:2;24731:9;24727:18;24719:26;;24791:9;24785:4;24781:20;24777:1;24766:9;24762:17;24755:47;24819:131;24945:4;24819:131;:::i;:::-;24811:139;;24538:419;;;:::o;24963:::-;25129:4;25167:2;25156:9;25152:18;25144:26;;25216:9;25210:4;25206:20;25202:1;25191:9;25187:17;25180:47;25244:131;25370:4;25244:131;:::i;:::-;25236:139;;24963:419;;;:::o;25388:::-;25554:4;25592:2;25581:9;25577:18;25569:26;;25641:9;25635:4;25631:20;25627:1;25616:9;25612:17;25605:47;25669:131;25795:4;25669:131;:::i;:::-;25661:139;;25388:419;;;:::o;25813:::-;25979:4;26017:2;26006:9;26002:18;25994:26;;26066:9;26060:4;26056:20;26052:1;26041:9;26037:17;26030:47;26094:131;26220:4;26094:131;:::i;:::-;26086:139;;25813:419;;;:::o;26238:::-;26404:4;26442:2;26431:9;26427:18;26419:26;;26491:9;26485:4;26481:20;26477:1;26466:9;26462:17;26455:47;26519:131;26645:4;26519:131;:::i;:::-;26511:139;;26238:419;;;:::o;26663:::-;26829:4;26867:2;26856:9;26852:18;26844:26;;26916:9;26910:4;26906:20;26902:1;26891:9;26887:17;26880:47;26944:131;27070:4;26944:131;:::i;:::-;26936:139;;26663:419;;;:::o;27088:::-;27254:4;27292:2;27281:9;27277:18;27269:26;;27341:9;27335:4;27331:20;27327:1;27316:9;27312:17;27305:47;27369:131;27495:4;27369:131;:::i;:::-;27361:139;;27088:419;;;:::o;27513:::-;27679:4;27717:2;27706:9;27702:18;27694:26;;27766:9;27760:4;27756:20;27752:1;27741:9;27737:17;27730:47;27794:131;27920:4;27794:131;:::i;:::-;27786:139;;27513:419;;;:::o;27938:::-;28104:4;28142:2;28131:9;28127:18;28119:26;;28191:9;28185:4;28181:20;28177:1;28166:9;28162:17;28155:47;28219:131;28345:4;28219:131;:::i;:::-;28211:139;;27938:419;;;:::o;28363:::-;28529:4;28567:2;28556:9;28552:18;28544:26;;28616:9;28610:4;28606:20;28602:1;28591:9;28587:17;28580:47;28644:131;28770:4;28644:131;:::i;:::-;28636:139;;28363:419;;;:::o;28788:222::-;28881:4;28919:2;28908:9;28904:18;28896:26;;28932:71;29000:1;28989:9;28985:17;28976:6;28932:71;:::i;:::-;28788:222;;;;:::o;29016:129::-;29050:6;29077:20;;:::i;:::-;29067:30;;29106:33;29134:4;29126:6;29106:33;:::i;:::-;29016:129;;;:::o;29151:75::-;29184:6;29217:2;29211:9;29201:19;;29151:75;:::o;29232:307::-;29293:4;29383:18;29375:6;29372:30;29369:56;;;29405:18;;:::i;:::-;29369:56;29443:29;29465:6;29443:29;:::i;:::-;29435:37;;29527:4;29521;29517:15;29509:23;;29232:307;;;:::o;29545:308::-;29607:4;29697:18;29689:6;29686:30;29683:56;;;29719:18;;:::i;:::-;29683:56;29757:29;29779:6;29757:29;:::i;:::-;29749:37;;29841:4;29835;29831:15;29823:23;;29545:308;;;:::o;29859:132::-;29926:4;29949:3;29941:11;;29979:4;29974:3;29970:14;29962:22;;29859:132;;;:::o;29997:141::-;30046:4;30069:3;30061:11;;30092:3;30089:1;30082:14;30126:4;30123:1;30113:18;30105:26;;29997:141;;;:::o;30144:114::-;30211:6;30245:5;30239:12;30229:22;;30144:114;;;:::o;30264:98::-;30315:6;30349:5;30343:12;30333:22;;30264:98;;;:::o;30368:99::-;30420:6;30454:5;30448:12;30438:22;;30368:99;;;:::o;30473:113::-;30543:4;30575;30570:3;30566:14;30558:22;;30473:113;;;:::o;30592:184::-;30691:11;30725:6;30720:3;30713:19;30765:4;30760:3;30756:14;30741:29;;30592:184;;;;:::o;30782:168::-;30865:11;30899:6;30894:3;30887:19;30939:4;30934:3;30930:14;30915:29;;30782:168;;;;:::o;30956:147::-;31057:11;31094:3;31079:18;;30956:147;;;;:::o;31109:169::-;31193:11;31227:6;31222:3;31215:19;31267:4;31262:3;31258:14;31243:29;;31109:169;;;;:::o;31284:148::-;31386:11;31423:3;31408:18;;31284:148;;;;:::o;31438:305::-;31478:3;31497:20;31515:1;31497:20;:::i;:::-;31492:25;;31531:20;31549:1;31531:20;:::i;:::-;31526:25;;31685:1;31617:66;31613:74;31610:1;31607:81;31604:107;;;31691:18;;:::i;:::-;31604:107;31735:1;31732;31728:9;31721:16;;31438:305;;;;:::o;31749:185::-;31789:1;31806:20;31824:1;31806:20;:::i;:::-;31801:25;;31840:20;31858:1;31840:20;:::i;:::-;31835:25;;31879:1;31869:35;;31884:18;;:::i;:::-;31869:35;31926:1;31923;31919:9;31914:14;;31749:185;;;;:::o;31940:348::-;31980:7;32003:20;32021:1;32003:20;:::i;:::-;31998:25;;32037:20;32055:1;32037:20;:::i;:::-;32032:25;;32225:1;32157:66;32153:74;32150:1;32147:81;32142:1;32135:9;32128:17;32124:105;32121:131;;;32232:18;;:::i;:::-;32121:131;32280:1;32277;32273:9;32262:20;;31940:348;;;;:::o;32294:191::-;32334:4;32354:20;32372:1;32354:20;:::i;:::-;32349:25;;32388:20;32406:1;32388:20;:::i;:::-;32383:25;;32427:1;32424;32421:8;32418:34;;;32432:18;;:::i;:::-;32418:34;32477:1;32474;32470:9;32462:17;;32294:191;;;;:::o;32491:96::-;32528:7;32557:24;32575:5;32557:24;:::i;:::-;32546:35;;32491:96;;;:::o;32593:90::-;32627:7;32670:5;32663:13;32656:21;32645:32;;32593:90;;;:::o;32689:149::-;32725:7;32765:66;32758:5;32754:78;32743:89;;32689:149;;;:::o;32844:126::-;32881:7;32921:42;32914:5;32910:54;32899:65;;32844:126;;;:::o;32976:77::-;33013:7;33042:5;33031:16;;32976:77;;;:::o;33059:154::-;33143:6;33138:3;33133;33120:30;33205:1;33196:6;33191:3;33187:16;33180:27;33059:154;;;:::o;33219:307::-;33287:1;33297:113;33311:6;33308:1;33305:13;33297:113;;;33396:1;33391:3;33387:11;33381:18;33377:1;33372:3;33368:11;33361:39;33333:2;33330:1;33326:10;33321:15;;33297:113;;;33428:6;33425:1;33422:13;33419:101;;;33508:1;33499:6;33494:3;33490:16;33483:27;33419:101;33268:258;33219:307;;;:::o;33532:320::-;33576:6;33613:1;33607:4;33603:12;33593:22;;33660:1;33654:4;33650:12;33681:18;33671:81;;33737:4;33729:6;33725:17;33715:27;;33671:81;33799:2;33791:6;33788:14;33768:18;33765:38;33762:84;;;33818:18;;:::i;:::-;33762:84;33583:269;33532:320;;;:::o;33858:281::-;33941:27;33963:4;33941:27;:::i;:::-;33933:6;33929:40;34071:6;34059:10;34056:22;34035:18;34023:10;34020:34;34017:62;34014:88;;;34082:18;;:::i;:::-;34014:88;34122:10;34118:2;34111:22;33901:238;33858:281;;:::o;34145:233::-;34184:3;34207:24;34225:5;34207:24;:::i;:::-;34198:33;;34253:66;34246:5;34243:77;34240:103;;;34323:18;;:::i;:::-;34240:103;34370:1;34363:5;34359:13;34352:20;;34145:233;;;:::o;34384:176::-;34416:1;34433:20;34451:1;34433:20;:::i;:::-;34428:25;;34467:20;34485:1;34467:20;:::i;:::-;34462:25;;34506:1;34496:35;;34511:18;;:::i;:::-;34496:35;34552:1;34549;34545:9;34540:14;;34384:176;;;;:::o;34566:180::-;34614:77;34611:1;34604:88;34711:4;34708:1;34701:15;34735:4;34732:1;34725:15;34752:180;34800:77;34797:1;34790:88;34897:4;34894:1;34887:15;34921:4;34918:1;34911:15;34938:180;34986:77;34983:1;34976:88;35083:4;35080:1;35073:15;35107:4;35104:1;35097:15;35124:180;35172:77;35169:1;35162:88;35269:4;35266:1;35259:15;35293:4;35290:1;35283:15;35310:180;35358:77;35355:1;35348:88;35455:4;35452:1;35445:15;35479:4;35476:1;35469:15;35496:180;35544:77;35541:1;35534:88;35641:4;35638:1;35631:15;35665:4;35662:1;35655:15;35682:117;35791:1;35788;35781:12;35805:117;35914:1;35911;35904:12;35928:117;36037:1;36034;36027:12;36051:117;36160:1;36157;36150:12;36174:117;36283:1;36280;36273:12;36297:117;36406:1;36403;36396:12;36420:102;36461:6;36512:2;36508:7;36503:2;36496:5;36492:14;36488:28;36478:38;;36420:102;;;:::o;36528:230::-;36668:34;36664:1;36656:6;36652:14;36645:58;36737:13;36732:2;36724:6;36720:15;36713:38;36528:230;:::o;36764:237::-;36904:34;36900:1;36892:6;36888:14;36881:58;36973:20;36968:2;36960:6;36956:15;36949:45;36764:237;:::o;37007:225::-;37147:34;37143:1;37135:6;37131:14;37124:58;37216:8;37211:2;37203:6;37199:15;37192:33;37007:225;:::o;37238:224::-;37378:34;37374:1;37366:6;37362:14;37355:58;37447:7;37442:2;37434:6;37430:15;37423:32;37238:224;:::o;37468:178::-;37608:30;37604:1;37596:6;37592:14;37585:54;37468:178;:::o;37652:223::-;37792:34;37788:1;37780:6;37776:14;37769:58;37861:6;37856:2;37848:6;37844:15;37837:31;37652:223;:::o;37881:175::-;38021:27;38017:1;38009:6;38005:14;37998:51;37881:175;:::o;38062:228::-;38202:34;38198:1;38190:6;38186:14;38179:58;38271:11;38266:2;38258:6;38254:15;38247:36;38062:228;:::o;38296:249::-;38436:34;38432:1;38424:6;38420:14;38413:58;38505:32;38500:2;38492:6;38488:15;38481:57;38296:249;:::o;38551:182::-;38691:34;38687:1;38679:6;38675:14;38668:58;38551:182;:::o;38739:::-;38879:34;38875:1;38867:6;38863:14;38856:58;38739:182;:::o;38927:234::-;39067:34;39063:1;39055:6;39051:14;39044:58;39136:17;39131:2;39123:6;39119:15;39112:42;38927:234;:::o;39167:174::-;39307:26;39303:1;39295:6;39291:14;39284:50;39167:174;:::o;39347:220::-;39487:34;39483:1;39475:6;39471:14;39464:58;39556:3;39551:2;39543:6;39539:15;39532:28;39347:220;:::o;39573:114::-;;:::o;39693:231::-;39833:34;39829:1;39821:6;39817:14;39810:58;39902:14;39897:2;39889:6;39885:15;39878:39;39693:231;:::o;39930:173::-;40070:25;40066:1;40058:6;40054:14;40047:49;39930:173;:::o;40109:233::-;40249:34;40245:1;40237:6;40233:14;40226:58;40318:16;40313:2;40305:6;40301:15;40294:41;40109:233;:::o;40348:122::-;40421:24;40439:5;40421:24;:::i;:::-;40414:5;40411:35;40401:63;;40460:1;40457;40450:12;40401:63;40348:122;:::o;40476:116::-;40546:21;40561:5;40546:21;:::i;:::-;40539:5;40536:32;40526:60;;40582:1;40579;40572:12;40526:60;40476:116;:::o;40598:120::-;40670:23;40687:5;40670:23;:::i;:::-;40663:5;40660:34;40650:62;;40708:1;40705;40698:12;40650:62;40598:120;:::o;40724:122::-;40797:24;40815:5;40797:24;:::i;:::-;40790:5;40787:35;40777:63;;40836:1;40833;40826:12;40777:63;40724:122;:::o

Swarm Source

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