ETH Price: $3,330.52 (-1.33%)
Gas: 9 Gwei

Token

MusicHead NFT (P5MH)
 

Overview

Max Total Supply

30 P5MH

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 P5MH
0xe86e4baee942be4c793d072415e2c5f252c261aa
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:
MusicHeadNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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.5.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

                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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev 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/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.6.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

        string memory 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 a {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 a {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 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 {
                    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: contracts/P5C.sol





pragma solidity >=0.7.0 <0.9.0;




contract MusicHeadNFT is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.12 ether;
  uint256 public maxSupply = 2122;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public maxMintLimit = 5;
  uint256 public _reserved = 100;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  uint256 public maxMintAmount = 20;
  address withdrawAddress = 0x10a928ABc2be17864343eC49B35B77f394E87f2F;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(string memory _initNotRevealedUri) ERC721("MusicHead NFT", "P5MH") {
    setHiddenMetadataUri(_initNotRevealedUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= maxMintLimit, "max NFT per address exceeded");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

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

  function giveAway(address _to, uint256 _amount) public onlyOwner {
    require( _amount <= _reserved, "Exceeds Music Heads supply" );

    for(uint256 i; i < _amount; i++){
        supply.increment();
      _safeMint(_to, supply.current());
    }

    _reserved -= _amount;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setBaseURI(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

 function withdraw() public payable onlyOwner {
    uint256 _amount = address(this).balance;
    require(payable(withdrawAddress).send(_amount));
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"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":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintLimit","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"_uriPrefix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

608060405260405180602001604052806000815250600890805190602001906200002b929190620003f4565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506009908051906020019062000079929190620003f4565b506701aa535d3d0c0000600b5561084a600c556005600d556005600e556064600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff02191690831515021790555060146011557310a928abc2be17864343ec49b35b77f394e87f2f601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200015357600080fd5b506040516200534f3803806200534f833981810160405281019062000179919062000522565b6040518060400160405280600d81526020017f4d7573696348656164204e4654000000000000000000000000000000000000008152506040518060400160405280600481526020017f50354d48000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001fd929190620003f4565b50806001908051906020019062000216929190620003f4565b505050620002396200022d6200025160201b60201c565b6200025960201b60201c565b6200024a816200031f60201b60201c565b506200077a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200032f6200025160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000355620003ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a5906200059a565b60405180910390fd5b80600a9080519060200190620003c6929190620003f4565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004029062000662565b90600052602060002090601f01602090048101928262000426576000855562000472565b82601f106200044157805160ff191683800117855562000472565b8280016001018555821562000472579182015b828111156200047157825182559160200191906001019062000454565b5b50905062000481919062000485565b5090565b5b80821115620004a057600081600090555060010162000486565b5090565b6000620004bb620004b584620005e5565b620005bc565b905082815260208101848484011115620004da57620004d962000731565b5b620004e78482856200062c565b509392505050565b600082601f8301126200050757620005066200072c565b5b815162000519848260208601620004a4565b91505092915050565b6000602082840312156200053b576200053a6200073b565b5b600082015167ffffffffffffffff8111156200055c576200055b62000736565b5b6200056a84828501620004ef565b91505092915050565b6000620005826020836200061b565b91506200058f8262000751565b602082019050919050565b60006020820190508181036000830152620005b58162000573565b9050919050565b6000620005c8620005db565b9050620005d6828262000698565b919050565b6000604051905090565b600067ffffffffffffffff821115620006035762000602620006fd565b5b6200060e8262000740565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200064c5780820151818401526020810190506200062f565b838111156200065c576000848401525b50505050565b600060028204905060018216806200067b57607f821691505b60208210811415620006925762000691620006ce565b5b50919050565b620006a38262000740565b810181811067ffffffffffffffff82111715620006c557620006c4620006fd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614bc5806200078a6000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb011461094a578063e0a8085314610975578063e985e9c51461099e578063edec5f27146109db578063efbd73f414610a04578063f2fde38b14610a2d57610272565b8063a45ba8e71461082a578063b071401b14610855578063b88d4fde1461087e578063ba4e5c49146108a7578063c87b56dd146108e4578063ca8001441461092157610272565b80638da5cb5b116101135780638da5cb5b1461073957806394354fd01461076457806395d89b411461078f5780639c70b512146107ba578063a0712d68146107e5578063a22cb4651461080157610272565b80636352211e146106525780636aaa571d1461068f57806370a08231146106ba57806370e2f827146106f7578063715018a61461072257610272565b80633af32abf116101e85780634fdd43cb116101ac5780634fdd43cb14610554578063518302271461057d5780635503a0e8146105a857806355f804b3146105d35780635c975abb146105fc57806362b99ad41461062757610272565b80633af32abf1461047e5780633ccfd60b146104bb57806342842e0e146104c5578063438b6300146104ee57806344a0d68a1461052b57610272565b806316ba10e01161023a57806316ba10e01461037057806316c38b3c1461039957806318160ddd146103c257806318cae269146103ed578063239c70ae1461042a57806323b872dd1461045557610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806313faede614610345575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061367b565b610a56565b6040516102ab9190613d61565b60405180910390f35b3480156102c057600080fd5b506102c9610b38565b6040516102d69190613d7c565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061371e565b610bca565b6040516103139190613cd8565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906135c1565b610c4f565b005b34801561035157600080fd5b5061035a610d67565b604051610367919061409e565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906136d5565b610d6d565b005b3480156103a557600080fd5b506103c060048036038101906103bb919061364e565b610e03565b005b3480156103ce57600080fd5b506103d7610e9c565b6040516103e4919061409e565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f919061343e565b610ead565b604051610421919061409e565b60405180910390f35b34801561043657600080fd5b5061043f610ec5565b60405161044c919061409e565b60405180910390f35b34801561046157600080fd5b5061047c600480360381019061047791906134ab565b610ecb565b005b34801561048a57600080fd5b506104a560048036038101906104a0919061343e565b610f2b565b6040516104b29190613d61565b60405180910390f35b6104c3610fda565b005b3480156104d157600080fd5b506104ec60048036038101906104e791906134ab565b6110be565b005b3480156104fa57600080fd5b506105156004803603810190610510919061343e565b6110de565b6040516105229190613d3f565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d919061371e565b6111e9565b005b34801561056057600080fd5b5061057b600480360381019061057691906136d5565b61126f565b005b34801561058957600080fd5b50610592611305565b60405161059f9190613d61565b60405180910390f35b3480156105b457600080fd5b506105bd611318565b6040516105ca9190613d7c565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906136d5565b6113a6565b005b34801561060857600080fd5b5061061161143c565b60405161061e9190613d61565b60405180910390f35b34801561063357600080fd5b5061063c61144f565b6040516106499190613d7c565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061371e565b6114dd565b6040516106869190613cd8565b60405180910390f35b34801561069b57600080fd5b506106a461158f565b6040516106b1919061409e565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc919061343e565b611595565b6040516106ee919061409e565b60405180910390f35b34801561070357600080fd5b5061070c61164d565b604051610719919061409e565b60405180910390f35b34801561072e57600080fd5b50610737611653565b005b34801561074557600080fd5b5061074e6116db565b60405161075b9190613cd8565b60405180910390f35b34801561077057600080fd5b50610779611705565b604051610786919061409e565b60405180910390f35b34801561079b57600080fd5b506107a461170b565b6040516107b19190613d7c565b60405180910390f35b3480156107c657600080fd5b506107cf61179d565b6040516107dc9190613d61565b60405180910390f35b6107ff60048036038101906107fa919061371e565b6117b0565b005b34801561080d57600080fd5b5061082860048036038101906108239190613581565b611a8e565b005b34801561083657600080fd5b5061083f611aa4565b60405161084c9190613d7c565b60405180910390f35b34801561086157600080fd5b5061087c6004803603810190610877919061371e565b611b32565b005b34801561088a57600080fd5b506108a560048036038101906108a091906134fe565b611bb8565b005b3480156108b357600080fd5b506108ce60048036038101906108c9919061371e565b611c1a565b6040516108db9190613cd8565b60405180910390f35b3480156108f057600080fd5b5061090b6004803603810190610906919061371e565b611c59565b6040516109189190613d7c565b60405180910390f35b34801561092d57600080fd5b50610948600480360381019061094391906135c1565b611db2565b005b34801561095657600080fd5b5061095f611ecc565b60405161096c919061409e565b60405180910390f35b34801561098157600080fd5b5061099c6004803603810190610997919061364e565b611ed2565b005b3480156109aa57600080fd5b506109c560048036038101906109c0919061346b565b611f6b565b6040516109d29190613d61565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd9190613601565b611fff565b005b348015610a1057600080fd5b50610a2b6004803603810190610a26919061374b565b61209f565b005b348015610a3957600080fd5b50610a546004803603810190610a4f919061343e565b61226a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b315750610b3082612362565b5b9050919050565b606060008054610b479061439c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b739061439c565b8015610bc05780601f10610b9557610100808354040283529160200191610bc0565b820191906000526020600020905b815481529060010190602001808311610ba357829003601f168201915b5050505050905090565b6000610bd5826123cc565b610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613f5e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c5a826114dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290613fde565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cea612438565b73ffffffffffffffffffffffffffffffffffffffff161480610d195750610d1881610d13612438565b611f6b565b5b610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613ebe565b60405180910390fd5b610d628383612440565b505050565b600b5481565b610d75612438565b73ffffffffffffffffffffffffffffffffffffffff16610d936116db565b73ffffffffffffffffffffffffffffffffffffffff1614610de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de090613f7e565b60405180910390fd5b8060099080519060200190610dff92919061313b565b5050565b610e0b612438565b73ffffffffffffffffffffffffffffffffffffffff16610e296116db565b73ffffffffffffffffffffffffffffffffffffffff1614610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690613f7e565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610ea860076124f9565b905090565b60146020528060005260406000206000915090505481565b60115481565b610edc610ed6612438565b82612507565b610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f129061403e565b60405180910390fd5b610f268383836125e5565b505050565b600080600090505b601380549050811015610fcf578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610f6b57610f6a614506565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fbc576001915050610fd5565b8080610fc7906143ff565b915050610f33565b50600090505b919050565b610fe2612438565b73ffffffffffffffffffffffffffffffffffffffff166110006116db565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613f7e565b60405180910390fd5b6000479050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110bb57600080fd5b50565b6110d983838360405180602001604052806000815250611bb8565b505050565b606060006110eb83611595565b905060008167ffffffffffffffff81111561110957611108614535565b5b6040519080825280602002602001820160405280156111375781602001602082028036833780820191505090505b50905060006001905060005b83811080156111545750600c548211155b156111dd576000611164836114dd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c957828483815181106111ae576111ad614506565b5b60200260200101818152505081806111c5906143ff565b9250505b82806111d4906143ff565b93505050611143565b82945050505050919050565b6111f1612438565b73ffffffffffffffffffffffffffffffffffffffff1661120f6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90613f7e565b60405180910390fd5b80600b8190555050565b611277612438565b73ffffffffffffffffffffffffffffffffffffffff166112956116db565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613f7e565b60405180910390fd5b80600a908051906020019061130192919061313b565b5050565b601060019054906101000a900460ff1681565b600980546113259061439c565b80601f01602080910402602001604051908101604052809291908181526020018280546113519061439c565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b505050505081565b6113ae612438565b73ffffffffffffffffffffffffffffffffffffffff166113cc6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613f7e565b60405180910390fd5b806008908051906020019061143892919061313b565b5050565b601060009054906101000a900460ff1681565b6008805461145c9061439c565b80601f01602080910402602001604051908101604052809291908181526020018280546114889061439c565b80156114d55780601f106114aa576101008083540402835291602001916114d5565b820191906000526020600020905b8154815290600101906020018083116114b857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90613f1e565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90613efe565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b61165b612438565b73ffffffffffffffffffffffffffffffffffffffff166116796116db565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613f7e565b60405180910390fd5b6116d9600061284c565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461171a9061439c565b80601f01602080910402602001604051908101604052809291908181526020018280546117469061439c565b80156117935780601f1061176857610100808354040283529160200191611793565b820191906000526020600020905b81548152906001019060200180831161177657829003601f168201915b5050505050905090565b601060029054906101000a900460ff1681565b806000811180156117c35750600d548111155b611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613e1e565b60405180910390fd5b600c548161181060076124f9565b61181a91906141d1565b111561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290613ffe565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5482826118ae91906141d1565b11156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690613e3e565b60405180910390fd5b601060009054906101000a900460ff161561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690613f9e565b60405180910390fd5b82600b5461194d9190614258565b34101561198f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119869061407e565b60405180910390fd5b6119976116db565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a7f5760011515601060029054906101000a900460ff1615151415611a2e576119ee33610f2b565b611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a249061405e565b60405180910390fd5b5b82600b54611a3c9190614258565b341015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a759061401e565b60405180910390fd5b5b611a893384612912565b505050565b611aa0611a99612438565b8383612952565b5050565b600a8054611ab19061439c565b80601f0160208091040260200160405190810160405280929190818152602001828054611add9061439c565b8015611b2a5780601f10611aff57610100808354040283529160200191611b2a565b820191906000526020600020905b815481529060010190602001808311611b0d57829003601f168201915b505050505081565b611b3a612438565b73ffffffffffffffffffffffffffffffffffffffff16611b586116db565b73ffffffffffffffffffffffffffffffffffffffff1614611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590613f7e565b60405180910390fd5b80600d8190555050565b611bc9611bc3612438565b83612507565b611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff9061403e565b60405180910390fd5b611c1484848484612abf565b50505050565b60138181548110611c2a57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611c64826123cc565b611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a90613fbe565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611d5157600a8054611ccc9061439c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf89061439c565b8015611d455780601f10611d1a57610100808354040283529160200191611d45565b820191906000526020600020905b815481529060010190602001808311611d2857829003601f168201915b50505050509050611dad565b6000611d5b612b1b565b90506000815111611d7b5760405180602001604052806000815250611da9565b80611d8584612bad565b6009604051602001611d9993929190613ca7565b6040516020818303038152906040525b9150505b919050565b611dba612438565b73ffffffffffffffffffffffffffffffffffffffff16611dd86116db565b73ffffffffffffffffffffffffffffffffffffffff1614611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590613f7e565b60405180910390fd5b600f54811115611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90613ede565b60405180910390fd5b60005b81811015611eae57611e886007612d0e565b611e9b83611e9660076124f9565b612d24565b8080611ea6906143ff565b915050611e76565b5080600f6000828254611ec191906142b2565b925050819055505050565b600c5481565b611eda612438565b73ffffffffffffffffffffffffffffffffffffffff16611ef86116db565b73ffffffffffffffffffffffffffffffffffffffff1614611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613f7e565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612007612438565b73ffffffffffffffffffffffffffffffffffffffff166120256116db565b73ffffffffffffffffffffffffffffffffffffffff161461207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613f7e565b60405180910390fd5b6013600061208991906131c1565b81816013919061209a9291906131e2565b505050565b816000811180156120b25750600d548111155b6120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e890613e1e565b60405180910390fd5b600c54816120ff60076124f9565b61210991906141d1565b111561214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190613ffe565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e54828261219d91906141d1565b11156121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590613e3e565b60405180910390fd5b6121e6612438565b73ffffffffffffffffffffffffffffffffffffffff166122046116db565b73ffffffffffffffffffffffffffffffffffffffff161461225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613f7e565b60405180910390fd5b6122648385612912565b50505050565b612272612438565b73ffffffffffffffffffffffffffffffffffffffff166122906116db565b73ffffffffffffffffffffffffffffffffffffffff16146122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90613f7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90613dbe565b60405180910390fd5b61235f8161284c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124b3836114dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612512826123cc565b612551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254890613e9e565b60405180910390fd5b600061255c836114dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061259e575061259d8185611f6b565b5b806125dc57508373ffffffffffffffffffffffffffffffffffffffff166125c484610bca565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612605826114dd565b73ffffffffffffffffffffffffffffffffffffffff161461265b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265290613dde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c290613e5e565b60405180910390fd5b6126d6838383612d42565b6126e1600082612440565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461273191906142b2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461278891906141d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612847838383612d47565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561294d576129276007612d0e565b61293a8361293560076124f9565b612d24565b8080612945906143ff565b915050612915565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890613e7e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ab29190613d61565b60405180910390a3505050565b612aca8484846125e5565b612ad684848484612d4c565b612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c90613d9e565b60405180910390fd5b50505050565b606060088054612b2a9061439c565b80601f0160208091040260200160405190810160405280929190818152602001828054612b569061439c565b8015612ba35780601f10612b7857610100808354040283529160200191612ba3565b820191906000526020600020905b815481529060010190602001808311612b8657829003601f168201915b5050505050905090565b60606000821415612bf5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d09565b600082905060005b60008214612c27578080612c10906143ff565b915050600a82612c209190614227565b9150612bfd565b60008167ffffffffffffffff811115612c4357612c42614535565b5b6040519080825280601f01601f191660200182016040528015612c755781602001600182028036833780820191505090505b5090505b60008514612d0257600182612c8e91906142b2565b9150600a85612c9d9190614448565b6030612ca991906141d1565b60f81b818381518110612cbf57612cbe614506565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cfb9190614227565b9450612c79565b8093505050505b919050565b6001816000016000828254019250508190555050565b612d3e828260405180602001604052806000815250612ee3565b5050565b505050565b505050565b6000612d6d8473ffffffffffffffffffffffffffffffffffffffff16612f3e565b15612ed6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d96612438565b8786866040518563ffffffff1660e01b8152600401612db89493929190613cf3565b602060405180830381600087803b158015612dd257600080fd5b505af1925050508015612e0357506040513d601f19601f82011682018060405250810190612e0091906136a8565b60015b612e86573d8060008114612e33576040519150601f19603f3d011682016040523d82523d6000602084013e612e38565b606091505b50600081511415612e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7590613d9e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612edb565b600190505b949350505050565b612eed8383612f61565b612efa6000848484612d4c565b612f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3090613d9e565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc890613f3e565b60405180910390fd5b612fda816123cc565b1561301a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301190613dfe565b60405180910390fd5b61302660008383612d42565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461307691906141d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461313760008383612d47565b5050565b8280546131479061439c565b90600052602060002090601f01602090048101928261316957600085556131b0565b82601f1061318257805160ff19168380011785556131b0565b828001600101855582156131b0579182015b828111156131af578251825591602001919060010190613194565b5b5090506131bd9190613282565b5090565b50805460008255906000526020600020908101906131df9190613282565b50565b828054828255906000526020600020908101928215613271579160200282015b8281111561327057823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613202565b5b50905061327e9190613282565b5090565b5b8082111561329b576000816000905550600101613283565b5090565b60006132b26132ad846140de565b6140b9565b9050828152602081018484840111156132ce576132cd614573565b5b6132d984828561435a565b509392505050565b60006132f46132ef8461410f565b6140b9565b9050828152602081018484840111156133105761330f614573565b5b61331b84828561435a565b509392505050565b60008135905061333281614b33565b92915050565b60008083601f84011261334e5761334d614569565b5b8235905067ffffffffffffffff81111561336b5761336a614564565b5b6020830191508360208202830111156133875761338661456e565b5b9250929050565b60008135905061339d81614b4a565b92915050565b6000813590506133b281614b61565b92915050565b6000815190506133c781614b61565b92915050565b600082601f8301126133e2576133e1614569565b5b81356133f284826020860161329f565b91505092915050565b600082601f8301126134105761340f614569565b5b81356134208482602086016132e1565b91505092915050565b60008135905061343881614b78565b92915050565b6000602082840312156134545761345361457d565b5b600061346284828501613323565b91505092915050565b600080604083850312156134825761348161457d565b5b600061349085828601613323565b92505060206134a185828601613323565b9150509250929050565b6000806000606084860312156134c4576134c361457d565b5b60006134d286828701613323565b93505060206134e386828701613323565b92505060406134f486828701613429565b9150509250925092565b600080600080608085870312156135185761351761457d565b5b600061352687828801613323565b945050602061353787828801613323565b935050604061354887828801613429565b925050606085013567ffffffffffffffff81111561356957613568614578565b5b613575878288016133cd565b91505092959194509250565b600080604083850312156135985761359761457d565b5b60006135a685828601613323565b92505060206135b78582860161338e565b9150509250929050565b600080604083850312156135d8576135d761457d565b5b60006135e685828601613323565b92505060206135f785828601613429565b9150509250929050565b600080602083850312156136185761361761457d565b5b600083013567ffffffffffffffff81111561363657613635614578565b5b61364285828601613338565b92509250509250929050565b6000602082840312156136645761366361457d565b5b60006136728482850161338e565b91505092915050565b6000602082840312156136915761369061457d565b5b600061369f848285016133a3565b91505092915050565b6000602082840312156136be576136bd61457d565b5b60006136cc848285016133b8565b91505092915050565b6000602082840312156136eb576136ea61457d565b5b600082013567ffffffffffffffff81111561370957613708614578565b5b613715848285016133fb565b91505092915050565b6000602082840312156137345761373361457d565b5b600061374284828501613429565b91505092915050565b600080604083850312156137625761376161457d565b5b600061377085828601613429565b925050602061378185828601613323565b9150509250929050565b60006137978383613c89565b60208301905092915050565b6137ac816142e6565b82525050565b60006137bd82614165565b6137c78185614193565b93506137d283614140565b8060005b838110156138035781516137ea888261378b565b97506137f583614186565b9250506001810190506137d6565b5085935050505092915050565b613819816142f8565b82525050565b600061382a82614170565b61383481856141a4565b9350613844818560208601614369565b61384d81614582565b840191505092915050565b60006138638261417b565b61386d81856141b5565b935061387d818560208601614369565b61388681614582565b840191505092915050565b600061389c8261417b565b6138a681856141c6565b93506138b6818560208601614369565b80840191505092915050565b600081546138cf8161439c565b6138d981866141c6565b945060018216600081146138f4576001811461390557613938565b60ff19831686528186019350613938565b61390e85614150565b60005b8381101561393057815481890152600182019150602081019050613911565b838801955050505b50505092915050565b600061394e6032836141b5565b915061395982614593565b604082019050919050565b60006139716026836141b5565b915061397c826145e2565b604082019050919050565b60006139946025836141b5565b915061399f82614631565b604082019050919050565b60006139b7601c836141b5565b91506139c282614680565b602082019050919050565b60006139da6014836141b5565b91506139e5826146a9565b602082019050919050565b60006139fd601c836141b5565b9150613a08826146d2565b602082019050919050565b6000613a206024836141b5565b9150613a2b826146fb565b604082019050919050565b6000613a436019836141b5565b9150613a4e8261474a565b602082019050919050565b6000613a66602c836141b5565b9150613a7182614773565b604082019050919050565b6000613a896038836141b5565b9150613a94826147c2565b604082019050919050565b6000613aac601a836141b5565b9150613ab782614811565b602082019050919050565b6000613acf602a836141b5565b9150613ada8261483a565b604082019050919050565b6000613af26029836141b5565b9150613afd82614889565b604082019050919050565b6000613b156020836141b5565b9150613b20826148d8565b602082019050919050565b6000613b38602c836141b5565b9150613b4382614901565b604082019050919050565b6000613b5b6020836141b5565b9150613b6682614950565b602082019050919050565b6000613b7e6017836141b5565b9150613b8982614979565b602082019050919050565b6000613ba1602f836141b5565b9150613bac826149a2565b604082019050919050565b6000613bc46021836141b5565b9150613bcf826149f1565b604082019050919050565b6000613be76014836141b5565b9150613bf282614a40565b602082019050919050565b6000613c0a6012836141b5565b9150613c1582614a69565b602082019050919050565b6000613c2d6031836141b5565b9150613c3882614a92565b604082019050919050565b6000613c506017836141b5565b9150613c5b82614ae1565b602082019050919050565b6000613c736013836141b5565b9150613c7e82614b0a565b602082019050919050565b613c9281614350565b82525050565b613ca181614350565b82525050565b6000613cb38286613891565b9150613cbf8285613891565b9150613ccb82846138c2565b9150819050949350505050565b6000602082019050613ced60008301846137a3565b92915050565b6000608082019050613d0860008301876137a3565b613d1560208301866137a3565b613d226040830185613c98565b8181036060830152613d34818461381f565b905095945050505050565b60006020820190508181036000830152613d5981846137b2565b905092915050565b6000602082019050613d766000830184613810565b92915050565b60006020820190508181036000830152613d968184613858565b905092915050565b60006020820190508181036000830152613db781613941565b9050919050565b60006020820190508181036000830152613dd781613964565b9050919050565b60006020820190508181036000830152613df781613987565b9050919050565b60006020820190508181036000830152613e17816139aa565b9050919050565b60006020820190508181036000830152613e37816139cd565b9050919050565b60006020820190508181036000830152613e57816139f0565b9050919050565b60006020820190508181036000830152613e7781613a13565b9050919050565b60006020820190508181036000830152613e9781613a36565b9050919050565b60006020820190508181036000830152613eb781613a59565b9050919050565b60006020820190508181036000830152613ed781613a7c565b9050919050565b60006020820190508181036000830152613ef781613a9f565b9050919050565b60006020820190508181036000830152613f1781613ac2565b9050919050565b60006020820190508181036000830152613f3781613ae5565b9050919050565b60006020820190508181036000830152613f5781613b08565b9050919050565b60006020820190508181036000830152613f7781613b2b565b9050919050565b60006020820190508181036000830152613f9781613b4e565b9050919050565b60006020820190508181036000830152613fb781613b71565b9050919050565b60006020820190508181036000830152613fd781613b94565b9050919050565b60006020820190508181036000830152613ff781613bb7565b9050919050565b6000602082019050818103600083015261401781613bda565b9050919050565b6000602082019050818103600083015261403781613bfd565b9050919050565b6000602082019050818103600083015261405781613c20565b9050919050565b6000602082019050818103600083015261407781613c43565b9050919050565b6000602082019050818103600083015261409781613c66565b9050919050565b60006020820190506140b36000830184613c98565b92915050565b60006140c36140d4565b90506140cf82826143ce565b919050565b6000604051905090565b600067ffffffffffffffff8211156140f9576140f8614535565b5b61410282614582565b9050602081019050919050565b600067ffffffffffffffff82111561412a57614129614535565b5b61413382614582565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141dc82614350565b91506141e783614350565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561421c5761421b614479565b5b828201905092915050565b600061423282614350565b915061423d83614350565b92508261424d5761424c6144a8565b5b828204905092915050565b600061426382614350565b915061426e83614350565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142a7576142a6614479565b5b828202905092915050565b60006142bd82614350565b91506142c883614350565b9250828210156142db576142da614479565b5b828203905092915050565b60006142f182614330565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561438757808201518184015260208101905061436c565b83811115614396576000848401525b50505050565b600060028204905060018216806143b457607f821691505b602082108114156143c8576143c76144d7565b5b50919050565b6143d782614582565b810181811067ffffffffffffffff821117156143f6576143f5614535565b5b80604052505050565b600061440a82614350565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561443d5761443c614479565b5b600182019050919050565b600061445382614350565b915061445e83614350565b92508261446e5761446d6144a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f45786365656473204d7573696320486561647320737570706c79000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b614b3c816142e6565b8114614b4757600080fd5b50565b614b53816142f8565b8114614b5e57600080fd5b50565b614b6a81614304565b8114614b7557600080fd5b50565b614b8181614350565b8114614b8c57600080fd5b5056fea2646970667358221220bdbafd54da63e9526199c440960bb0fa658e91b6ac30c05018fc5f2b4c5b418364736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d577532544b3653316f447739765438755553386d42316d4647634751344748534d6a416b7a4c3473685367780000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb011461094a578063e0a8085314610975578063e985e9c51461099e578063edec5f27146109db578063efbd73f414610a04578063f2fde38b14610a2d57610272565b8063a45ba8e71461082a578063b071401b14610855578063b88d4fde1461087e578063ba4e5c49146108a7578063c87b56dd146108e4578063ca8001441461092157610272565b80638da5cb5b116101135780638da5cb5b1461073957806394354fd01461076457806395d89b411461078f5780639c70b512146107ba578063a0712d68146107e5578063a22cb4651461080157610272565b80636352211e146106525780636aaa571d1461068f57806370a08231146106ba57806370e2f827146106f7578063715018a61461072257610272565b80633af32abf116101e85780634fdd43cb116101ac5780634fdd43cb14610554578063518302271461057d5780635503a0e8146105a857806355f804b3146105d35780635c975abb146105fc57806362b99ad41461062757610272565b80633af32abf1461047e5780633ccfd60b146104bb57806342842e0e146104c5578063438b6300146104ee57806344a0d68a1461052b57610272565b806316ba10e01161023a57806316ba10e01461037057806316c38b3c1461039957806318160ddd146103c257806318cae269146103ed578063239c70ae1461042a57806323b872dd1461045557610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806313faede614610345575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061367b565b610a56565b6040516102ab9190613d61565b60405180910390f35b3480156102c057600080fd5b506102c9610b38565b6040516102d69190613d7c565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061371e565b610bca565b6040516103139190613cd8565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906135c1565b610c4f565b005b34801561035157600080fd5b5061035a610d67565b604051610367919061409e565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906136d5565b610d6d565b005b3480156103a557600080fd5b506103c060048036038101906103bb919061364e565b610e03565b005b3480156103ce57600080fd5b506103d7610e9c565b6040516103e4919061409e565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f919061343e565b610ead565b604051610421919061409e565b60405180910390f35b34801561043657600080fd5b5061043f610ec5565b60405161044c919061409e565b60405180910390f35b34801561046157600080fd5b5061047c600480360381019061047791906134ab565b610ecb565b005b34801561048a57600080fd5b506104a560048036038101906104a0919061343e565b610f2b565b6040516104b29190613d61565b60405180910390f35b6104c3610fda565b005b3480156104d157600080fd5b506104ec60048036038101906104e791906134ab565b6110be565b005b3480156104fa57600080fd5b506105156004803603810190610510919061343e565b6110de565b6040516105229190613d3f565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d919061371e565b6111e9565b005b34801561056057600080fd5b5061057b600480360381019061057691906136d5565b61126f565b005b34801561058957600080fd5b50610592611305565b60405161059f9190613d61565b60405180910390f35b3480156105b457600080fd5b506105bd611318565b6040516105ca9190613d7c565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906136d5565b6113a6565b005b34801561060857600080fd5b5061061161143c565b60405161061e9190613d61565b60405180910390f35b34801561063357600080fd5b5061063c61144f565b6040516106499190613d7c565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061371e565b6114dd565b6040516106869190613cd8565b60405180910390f35b34801561069b57600080fd5b506106a461158f565b6040516106b1919061409e565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc919061343e565b611595565b6040516106ee919061409e565b60405180910390f35b34801561070357600080fd5b5061070c61164d565b604051610719919061409e565b60405180910390f35b34801561072e57600080fd5b50610737611653565b005b34801561074557600080fd5b5061074e6116db565b60405161075b9190613cd8565b60405180910390f35b34801561077057600080fd5b50610779611705565b604051610786919061409e565b60405180910390f35b34801561079b57600080fd5b506107a461170b565b6040516107b19190613d7c565b60405180910390f35b3480156107c657600080fd5b506107cf61179d565b6040516107dc9190613d61565b60405180910390f35b6107ff60048036038101906107fa919061371e565b6117b0565b005b34801561080d57600080fd5b5061082860048036038101906108239190613581565b611a8e565b005b34801561083657600080fd5b5061083f611aa4565b60405161084c9190613d7c565b60405180910390f35b34801561086157600080fd5b5061087c6004803603810190610877919061371e565b611b32565b005b34801561088a57600080fd5b506108a560048036038101906108a091906134fe565b611bb8565b005b3480156108b357600080fd5b506108ce60048036038101906108c9919061371e565b611c1a565b6040516108db9190613cd8565b60405180910390f35b3480156108f057600080fd5b5061090b6004803603810190610906919061371e565b611c59565b6040516109189190613d7c565b60405180910390f35b34801561092d57600080fd5b50610948600480360381019061094391906135c1565b611db2565b005b34801561095657600080fd5b5061095f611ecc565b60405161096c919061409e565b60405180910390f35b34801561098157600080fd5b5061099c6004803603810190610997919061364e565b611ed2565b005b3480156109aa57600080fd5b506109c560048036038101906109c0919061346b565b611f6b565b6040516109d29190613d61565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd9190613601565b611fff565b005b348015610a1057600080fd5b50610a2b6004803603810190610a26919061374b565b61209f565b005b348015610a3957600080fd5b50610a546004803603810190610a4f919061343e565b61226a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b315750610b3082612362565b5b9050919050565b606060008054610b479061439c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b739061439c565b8015610bc05780601f10610b9557610100808354040283529160200191610bc0565b820191906000526020600020905b815481529060010190602001808311610ba357829003601f168201915b5050505050905090565b6000610bd5826123cc565b610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613f5e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c5a826114dd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290613fde565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cea612438565b73ffffffffffffffffffffffffffffffffffffffff161480610d195750610d1881610d13612438565b611f6b565b5b610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90613ebe565b60405180910390fd5b610d628383612440565b505050565b600b5481565b610d75612438565b73ffffffffffffffffffffffffffffffffffffffff16610d936116db565b73ffffffffffffffffffffffffffffffffffffffff1614610de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de090613f7e565b60405180910390fd5b8060099080519060200190610dff92919061313b565b5050565b610e0b612438565b73ffffffffffffffffffffffffffffffffffffffff16610e296116db565b73ffffffffffffffffffffffffffffffffffffffff1614610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690613f7e565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610ea860076124f9565b905090565b60146020528060005260406000206000915090505481565b60115481565b610edc610ed6612438565b82612507565b610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f129061403e565b60405180910390fd5b610f268383836125e5565b505050565b600080600090505b601380549050811015610fcf578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610f6b57610f6a614506565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fbc576001915050610fd5565b8080610fc7906143ff565b915050610f33565b50600090505b919050565b610fe2612438565b73ffffffffffffffffffffffffffffffffffffffff166110006116db565b73ffffffffffffffffffffffffffffffffffffffff1614611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613f7e565b60405180910390fd5b6000479050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110bb57600080fd5b50565b6110d983838360405180602001604052806000815250611bb8565b505050565b606060006110eb83611595565b905060008167ffffffffffffffff81111561110957611108614535565b5b6040519080825280602002602001820160405280156111375781602001602082028036833780820191505090505b50905060006001905060005b83811080156111545750600c548211155b156111dd576000611164836114dd565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c957828483815181106111ae576111ad614506565b5b60200260200101818152505081806111c5906143ff565b9250505b82806111d4906143ff565b93505050611143565b82945050505050919050565b6111f1612438565b73ffffffffffffffffffffffffffffffffffffffff1661120f6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90613f7e565b60405180910390fd5b80600b8190555050565b611277612438565b73ffffffffffffffffffffffffffffffffffffffff166112956116db565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613f7e565b60405180910390fd5b80600a908051906020019061130192919061313b565b5050565b601060019054906101000a900460ff1681565b600980546113259061439c565b80601f01602080910402602001604051908101604052809291908181526020018280546113519061439c565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b505050505081565b6113ae612438565b73ffffffffffffffffffffffffffffffffffffffff166113cc6116db565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613f7e565b60405180910390fd5b806008908051906020019061143892919061313b565b5050565b601060009054906101000a900460ff1681565b6008805461145c9061439c565b80601f01602080910402602001604051908101604052809291908181526020018280546114889061439c565b80156114d55780601f106114aa576101008083540402835291602001916114d5565b820191906000526020600020905b8154815290600101906020018083116114b857829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90613f1e565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90613efe565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b61165b612438565b73ffffffffffffffffffffffffffffffffffffffff166116796116db565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613f7e565b60405180910390fd5b6116d9600061284c565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461171a9061439c565b80601f01602080910402602001604051908101604052809291908181526020018280546117469061439c565b80156117935780601f1061176857610100808354040283529160200191611793565b820191906000526020600020905b81548152906001019060200180831161177657829003601f168201915b5050505050905090565b601060029054906101000a900460ff1681565b806000811180156117c35750600d548111155b611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613e1e565b60405180910390fd5b600c548161181060076124f9565b61181a91906141d1565b111561185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290613ffe565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e5482826118ae91906141d1565b11156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690613e3e565b60405180910390fd5b601060009054906101000a900460ff161561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690613f9e565b60405180910390fd5b82600b5461194d9190614258565b34101561198f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119869061407e565b60405180910390fd5b6119976116db565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a7f5760011515601060029054906101000a900460ff1615151415611a2e576119ee33610f2b565b611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a249061405e565b60405180910390fd5b5b82600b54611a3c9190614258565b341015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a759061401e565b60405180910390fd5b5b611a893384612912565b505050565b611aa0611a99612438565b8383612952565b5050565b600a8054611ab19061439c565b80601f0160208091040260200160405190810160405280929190818152602001828054611add9061439c565b8015611b2a5780601f10611aff57610100808354040283529160200191611b2a565b820191906000526020600020905b815481529060010190602001808311611b0d57829003601f168201915b505050505081565b611b3a612438565b73ffffffffffffffffffffffffffffffffffffffff16611b586116db565b73ffffffffffffffffffffffffffffffffffffffff1614611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590613f7e565b60405180910390fd5b80600d8190555050565b611bc9611bc3612438565b83612507565b611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff9061403e565b60405180910390fd5b611c1484848484612abf565b50505050565b60138181548110611c2a57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611c64826123cc565b611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a90613fbe565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611d5157600a8054611ccc9061439c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf89061439c565b8015611d455780601f10611d1a57610100808354040283529160200191611d45565b820191906000526020600020905b815481529060010190602001808311611d2857829003601f168201915b50505050509050611dad565b6000611d5b612b1b565b90506000815111611d7b5760405180602001604052806000815250611da9565b80611d8584612bad565b6009604051602001611d9993929190613ca7565b6040516020818303038152906040525b9150505b919050565b611dba612438565b73ffffffffffffffffffffffffffffffffffffffff16611dd86116db565b73ffffffffffffffffffffffffffffffffffffffff1614611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590613f7e565b60405180910390fd5b600f54811115611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90613ede565b60405180910390fd5b60005b81811015611eae57611e886007612d0e565b611e9b83611e9660076124f9565b612d24565b8080611ea6906143ff565b915050611e76565b5080600f6000828254611ec191906142b2565b925050819055505050565b600c5481565b611eda612438565b73ffffffffffffffffffffffffffffffffffffffff16611ef86116db565b73ffffffffffffffffffffffffffffffffffffffff1614611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613f7e565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612007612438565b73ffffffffffffffffffffffffffffffffffffffff166120256116db565b73ffffffffffffffffffffffffffffffffffffffff161461207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613f7e565b60405180910390fd5b6013600061208991906131c1565b81816013919061209a9291906131e2565b505050565b816000811180156120b25750600d548111155b6120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e890613e1e565b60405180910390fd5b600c54816120ff60076124f9565b61210991906141d1565b111561214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190613ffe565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e54828261219d91906141d1565b11156121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590613e3e565b60405180910390fd5b6121e6612438565b73ffffffffffffffffffffffffffffffffffffffff166122046116db565b73ffffffffffffffffffffffffffffffffffffffff161461225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613f7e565b60405180910390fd5b6122648385612912565b50505050565b612272612438565b73ffffffffffffffffffffffffffffffffffffffff166122906116db565b73ffffffffffffffffffffffffffffffffffffffff16146122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90613f7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90613dbe565b60405180910390fd5b61235f8161284c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124b3836114dd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612512826123cc565b612551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254890613e9e565b60405180910390fd5b600061255c836114dd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061259e575061259d8185611f6b565b5b806125dc57508373ffffffffffffffffffffffffffffffffffffffff166125c484610bca565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612605826114dd565b73ffffffffffffffffffffffffffffffffffffffff161461265b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265290613dde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c290613e5e565b60405180910390fd5b6126d6838383612d42565b6126e1600082612440565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461273191906142b2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461278891906141d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612847838383612d47565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561294d576129276007612d0e565b61293a8361293560076124f9565b612d24565b8080612945906143ff565b915050612915565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890613e7e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ab29190613d61565b60405180910390a3505050565b612aca8484846125e5565b612ad684848484612d4c565b612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c90613d9e565b60405180910390fd5b50505050565b606060088054612b2a9061439c565b80601f0160208091040260200160405190810160405280929190818152602001828054612b569061439c565b8015612ba35780601f10612b7857610100808354040283529160200191612ba3565b820191906000526020600020905b815481529060010190602001808311612b8657829003601f168201915b5050505050905090565b60606000821415612bf5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d09565b600082905060005b60008214612c27578080612c10906143ff565b915050600a82612c209190614227565b9150612bfd565b60008167ffffffffffffffff811115612c4357612c42614535565b5b6040519080825280601f01601f191660200182016040528015612c755781602001600182028036833780820191505090505b5090505b60008514612d0257600182612c8e91906142b2565b9150600a85612c9d9190614448565b6030612ca991906141d1565b60f81b818381518110612cbf57612cbe614506565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cfb9190614227565b9450612c79565b8093505050505b919050565b6001816000016000828254019250508190555050565b612d3e828260405180602001604052806000815250612ee3565b5050565b505050565b505050565b6000612d6d8473ffffffffffffffffffffffffffffffffffffffff16612f3e565b15612ed6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d96612438565b8786866040518563ffffffff1660e01b8152600401612db89493929190613cf3565b602060405180830381600087803b158015612dd257600080fd5b505af1925050508015612e0357506040513d601f19601f82011682018060405250810190612e0091906136a8565b60015b612e86573d8060008114612e33576040519150601f19603f3d011682016040523d82523d6000602084013e612e38565b606091505b50600081511415612e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7590613d9e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612edb565b600190505b949350505050565b612eed8383612f61565b612efa6000848484612d4c565b612f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3090613d9e565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc890613f3e565b60405180910390fd5b612fda816123cc565b1561301a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301190613dfe565b60405180910390fd5b61302660008383612d42565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461307691906141d1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461313760008383612d47565b5050565b8280546131479061439c565b90600052602060002090601f01602090048101928261316957600085556131b0565b82601f1061318257805160ff19168380011785556131b0565b828001600101855582156131b0579182015b828111156131af578251825591602001919060010190613194565b5b5090506131bd9190613282565b5090565b50805460008255906000526020600020908101906131df9190613282565b50565b828054828255906000526020600020908101928215613271579160200282015b8281111561327057823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613202565b5b50905061327e9190613282565b5090565b5b8082111561329b576000816000905550600101613283565b5090565b60006132b26132ad846140de565b6140b9565b9050828152602081018484840111156132ce576132cd614573565b5b6132d984828561435a565b509392505050565b60006132f46132ef8461410f565b6140b9565b9050828152602081018484840111156133105761330f614573565b5b61331b84828561435a565b509392505050565b60008135905061333281614b33565b92915050565b60008083601f84011261334e5761334d614569565b5b8235905067ffffffffffffffff81111561336b5761336a614564565b5b6020830191508360208202830111156133875761338661456e565b5b9250929050565b60008135905061339d81614b4a565b92915050565b6000813590506133b281614b61565b92915050565b6000815190506133c781614b61565b92915050565b600082601f8301126133e2576133e1614569565b5b81356133f284826020860161329f565b91505092915050565b600082601f8301126134105761340f614569565b5b81356134208482602086016132e1565b91505092915050565b60008135905061343881614b78565b92915050565b6000602082840312156134545761345361457d565b5b600061346284828501613323565b91505092915050565b600080604083850312156134825761348161457d565b5b600061349085828601613323565b92505060206134a185828601613323565b9150509250929050565b6000806000606084860312156134c4576134c361457d565b5b60006134d286828701613323565b93505060206134e386828701613323565b92505060406134f486828701613429565b9150509250925092565b600080600080608085870312156135185761351761457d565b5b600061352687828801613323565b945050602061353787828801613323565b935050604061354887828801613429565b925050606085013567ffffffffffffffff81111561356957613568614578565b5b613575878288016133cd565b91505092959194509250565b600080604083850312156135985761359761457d565b5b60006135a685828601613323565b92505060206135b78582860161338e565b9150509250929050565b600080604083850312156135d8576135d761457d565b5b60006135e685828601613323565b92505060206135f785828601613429565b9150509250929050565b600080602083850312156136185761361761457d565b5b600083013567ffffffffffffffff81111561363657613635614578565b5b61364285828601613338565b92509250509250929050565b6000602082840312156136645761366361457d565b5b60006136728482850161338e565b91505092915050565b6000602082840312156136915761369061457d565b5b600061369f848285016133a3565b91505092915050565b6000602082840312156136be576136bd61457d565b5b60006136cc848285016133b8565b91505092915050565b6000602082840312156136eb576136ea61457d565b5b600082013567ffffffffffffffff81111561370957613708614578565b5b613715848285016133fb565b91505092915050565b6000602082840312156137345761373361457d565b5b600061374284828501613429565b91505092915050565b600080604083850312156137625761376161457d565b5b600061377085828601613429565b925050602061378185828601613323565b9150509250929050565b60006137978383613c89565b60208301905092915050565b6137ac816142e6565b82525050565b60006137bd82614165565b6137c78185614193565b93506137d283614140565b8060005b838110156138035781516137ea888261378b565b97506137f583614186565b9250506001810190506137d6565b5085935050505092915050565b613819816142f8565b82525050565b600061382a82614170565b61383481856141a4565b9350613844818560208601614369565b61384d81614582565b840191505092915050565b60006138638261417b565b61386d81856141b5565b935061387d818560208601614369565b61388681614582565b840191505092915050565b600061389c8261417b565b6138a681856141c6565b93506138b6818560208601614369565b80840191505092915050565b600081546138cf8161439c565b6138d981866141c6565b945060018216600081146138f4576001811461390557613938565b60ff19831686528186019350613938565b61390e85614150565b60005b8381101561393057815481890152600182019150602081019050613911565b838801955050505b50505092915050565b600061394e6032836141b5565b915061395982614593565b604082019050919050565b60006139716026836141b5565b915061397c826145e2565b604082019050919050565b60006139946025836141b5565b915061399f82614631565b604082019050919050565b60006139b7601c836141b5565b91506139c282614680565b602082019050919050565b60006139da6014836141b5565b91506139e5826146a9565b602082019050919050565b60006139fd601c836141b5565b9150613a08826146d2565b602082019050919050565b6000613a206024836141b5565b9150613a2b826146fb565b604082019050919050565b6000613a436019836141b5565b9150613a4e8261474a565b602082019050919050565b6000613a66602c836141b5565b9150613a7182614773565b604082019050919050565b6000613a896038836141b5565b9150613a94826147c2565b604082019050919050565b6000613aac601a836141b5565b9150613ab782614811565b602082019050919050565b6000613acf602a836141b5565b9150613ada8261483a565b604082019050919050565b6000613af26029836141b5565b9150613afd82614889565b604082019050919050565b6000613b156020836141b5565b9150613b20826148d8565b602082019050919050565b6000613b38602c836141b5565b9150613b4382614901565b604082019050919050565b6000613b5b6020836141b5565b9150613b6682614950565b602082019050919050565b6000613b7e6017836141b5565b9150613b8982614979565b602082019050919050565b6000613ba1602f836141b5565b9150613bac826149a2565b604082019050919050565b6000613bc46021836141b5565b9150613bcf826149f1565b604082019050919050565b6000613be76014836141b5565b9150613bf282614a40565b602082019050919050565b6000613c0a6012836141b5565b9150613c1582614a69565b602082019050919050565b6000613c2d6031836141b5565b9150613c3882614a92565b604082019050919050565b6000613c506017836141b5565b9150613c5b82614ae1565b602082019050919050565b6000613c736013836141b5565b9150613c7e82614b0a565b602082019050919050565b613c9281614350565b82525050565b613ca181614350565b82525050565b6000613cb38286613891565b9150613cbf8285613891565b9150613ccb82846138c2565b9150819050949350505050565b6000602082019050613ced60008301846137a3565b92915050565b6000608082019050613d0860008301876137a3565b613d1560208301866137a3565b613d226040830185613c98565b8181036060830152613d34818461381f565b905095945050505050565b60006020820190508181036000830152613d5981846137b2565b905092915050565b6000602082019050613d766000830184613810565b92915050565b60006020820190508181036000830152613d968184613858565b905092915050565b60006020820190508181036000830152613db781613941565b9050919050565b60006020820190508181036000830152613dd781613964565b9050919050565b60006020820190508181036000830152613df781613987565b9050919050565b60006020820190508181036000830152613e17816139aa565b9050919050565b60006020820190508181036000830152613e37816139cd565b9050919050565b60006020820190508181036000830152613e57816139f0565b9050919050565b60006020820190508181036000830152613e7781613a13565b9050919050565b60006020820190508181036000830152613e9781613a36565b9050919050565b60006020820190508181036000830152613eb781613a59565b9050919050565b60006020820190508181036000830152613ed781613a7c565b9050919050565b60006020820190508181036000830152613ef781613a9f565b9050919050565b60006020820190508181036000830152613f1781613ac2565b9050919050565b60006020820190508181036000830152613f3781613ae5565b9050919050565b60006020820190508181036000830152613f5781613b08565b9050919050565b60006020820190508181036000830152613f7781613b2b565b9050919050565b60006020820190508181036000830152613f9781613b4e565b9050919050565b60006020820190508181036000830152613fb781613b71565b9050919050565b60006020820190508181036000830152613fd781613b94565b9050919050565b60006020820190508181036000830152613ff781613bb7565b9050919050565b6000602082019050818103600083015261401781613bda565b9050919050565b6000602082019050818103600083015261403781613bfd565b9050919050565b6000602082019050818103600083015261405781613c20565b9050919050565b6000602082019050818103600083015261407781613c43565b9050919050565b6000602082019050818103600083015261409781613c66565b9050919050565b60006020820190506140b36000830184613c98565b92915050565b60006140c36140d4565b90506140cf82826143ce565b919050565b6000604051905090565b600067ffffffffffffffff8211156140f9576140f8614535565b5b61410282614582565b9050602081019050919050565b600067ffffffffffffffff82111561412a57614129614535565b5b61413382614582565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141dc82614350565b91506141e783614350565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561421c5761421b614479565b5b828201905092915050565b600061423282614350565b915061423d83614350565b92508261424d5761424c6144a8565b5b828204905092915050565b600061426382614350565b915061426e83614350565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142a7576142a6614479565b5b828202905092915050565b60006142bd82614350565b91506142c883614350565b9250828210156142db576142da614479565b5b828203905092915050565b60006142f182614330565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561438757808201518184015260208101905061436c565b83811115614396576000848401525b50505050565b600060028204905060018216806143b457607f821691505b602082108114156143c8576143c76144d7565b5b50919050565b6143d782614582565b810181811067ffffffffffffffff821117156143f6576143f5614535565b5b80604052505050565b600061440a82614350565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561443d5761443c614479565b5b600182019050919050565b600061445382614350565b915061445e83614350565b92508261446e5761446d6144a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f45786365656473204d7573696320486561647320737570706c79000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b614b3c816142e6565b8114614b4757600080fd5b50565b614b53816142f8565b8114614b5e57600080fd5b50565b614b6a81614304565b8114614b7557600080fd5b50565b614b8181614350565b8114614b8c57600080fd5b5056fea2646970667358221220bdbafd54da63e9526199c440960bb0fa658e91b6ac30c05018fc5f2b4c5b418364736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d577532544b3653316f447739765438755553386d42316d4647634751344748534d6a416b7a4c3473685367780000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string): https://ipfs.io/ipfs/QmWu2TK6S1oDw9vT8uUS8mB1mFGcGQ4GHSMjAkzL4shSgx

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d577532544b3653316f
Arg [3] : 447739765438755553386d42316d4647634751344748534d6a416b7a4c347368
Arg [4] : 5367780000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38839:5064:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25645:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28150:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27673:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39106:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43241:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43347:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40149:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39548:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39395:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28900:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42246:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43429:151;;;:::i;:::-;;29310:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40898:627;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42783:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42999:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39323:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39028:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43137:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39292:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38995:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26284:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39257:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26014:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39221:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6228:103;;;;;;;;;;;;;:::i;:::-;;5577:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39179:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26759:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39356:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40244:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28443:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39066:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42863:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29566:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39506:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41531:472;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42491:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39143:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42009:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28669:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42096:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40737:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6486:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25645:305;25747:4;25799:25;25784:40;;;:11;:40;;;;:105;;;;25856:33;25841:48;;;:11;:48;;;;25784:105;:158;;;;25906:36;25930:11;25906:23;:36::i;:::-;25784:158;25764:178;;25645:305;;;:::o;26590:100::-;26644:13;26677:5;26670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26590:100;:::o;28150:221::-;28226:7;28254:16;28262:7;28254;:16::i;:::-;28246:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28339:15;:24;28355:7;28339:24;;;;;;;;;;;;;;;;;;;;;28332:31;;28150:221;;;:::o;27673:411::-;27754:13;27770:23;27785:7;27770:14;:23::i;:::-;27754:39;;27818:5;27812:11;;:2;:11;;;;27804:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27912:5;27896:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27921:37;27938:5;27945:12;:10;:12::i;:::-;27921:16;:37::i;:::-;27896:62;27874:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28055:21;28064:2;28068:7;28055:8;:21::i;:::-;27743:341;27673:411;;:::o;39106:32::-;;;;:::o;43241:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43325:10:::1;43313:9;:22;;;;;;;;;;;;:::i;:::-;;43241:100:::0;:::o;43347:77::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43412:6:::1;43403;;:15;;;;;;;;;;;;;;;;;;43347:77:::0;:::o;40149:89::-;40193:7;40216:16;:6;:14;:16::i;:::-;40209:23;;40149:89;:::o;39548:55::-;;;;;;;;;;;;;;;;;:::o;39395:33::-;;;;:::o;28900:339::-;29095:41;29114:12;:10;:12::i;:::-;29128:7;29095:18;:41::i;:::-;29087:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29203:28;29213:4;29219:2;29223:7;29203:9;:28::i;:::-;28900:339;;;:::o;42246:239::-;42305:4;42323:6;42332:1;42323:10;;42318:143;42339:20;:27;;;;42335:1;:31;42318:143;;;42413:5;42386:32;;:20;42407:1;42386:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;42382:72;;;42440:4;42433:11;;;;;42382:72;42368:3;;;;;:::i;:::-;;;;42318:143;;;;42474:5;42467:12;;42246:239;;;;:::o;43429:151::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43481:15:::1;43499:21;43481:39;;43543:15;;;;;;;;;;;43535:29;;:38;43565:7;43535:38;;;;;;;;;;;;;;;;;;;;;;;43527:47;;;::::0;::::1;;43474:106;43429:151::o:0;29310:185::-;29448:39;29465:4;29471:2;29475:7;29448:39;;;;;;;;;;;;:16;:39::i;:::-;29310:185;;;:::o;40898:627::-;40973:16;41001:23;41027:17;41037:6;41027:9;:17::i;:::-;41001:43;;41051:30;41098:15;41084:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41051:63;;41121:22;41146:1;41121:26;;41154:23;41190:303;41215:15;41197;:33;:64;;;;;41252:9;;41234:14;:27;;41197:64;41190:303;;;41272:25;41300:23;41308:14;41300:7;:23::i;:::-;41272:51;;41357:6;41336:27;;:17;:27;;;41332:129;;;41409:14;41376:13;41390:15;41376:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41434:17;;;;;:::i;:::-;;;;41332:129;41469:16;;;;;:::i;:::-;;;;41263:230;41190:303;;;41506:13;41499:20;;;;;;40898:627;;;:::o;42783:74::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42846:5:::1;42839:4;:12;;;;42783:74:::0;:::o;42999:132::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43107:18:::1;43087:17;:38;;;;;;;;;;;;:::i;:::-;;42999:132:::0;:::o;39323:28::-;;;;;;;;;;;;;:::o;39028:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43137:98::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43219:10:::1;43207:9;:22;;;;;;;;;;;;:::i;:::-;;43137:98:::0;:::o;39292:26::-;;;;;;;;;;;;;:::o;38995:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26284:239::-;26356:7;26376:13;26392:7;:16;26400:7;26392:16;;;;;;;;;;;;;;;;;;;;;26376:32;;26444:1;26427:19;;:5;:19;;;;26419:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26510:5;26503:12;;;26284:239;;;:::o;39257:30::-;;;;:::o;26014:208::-;26086:7;26131:1;26114:19;;:5;:19;;;;26106:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26198:9;:16;26208:5;26198:16;;;;;;;;;;;;;;;;26191:23;;26014:208;;;:::o;39221:31::-;;;;:::o;6228:103::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;5577:87::-;5623:7;5650:6;;;;;;;;;;;5643:13;;5577:87;:::o;39179:37::-;;;;:::o;26759:104::-;26815:13;26848:7;26841:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26759:104;:::o;39356:34::-;;;;;;;;;;;;;:::o;40244:485::-;40309:11;39823:1;39809:11;:15;:52;;;;;39843:18;;39828:11;:33;;39809:52;39801:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39935:9;;39920:11;39901:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39893:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39976:24;40003:20;:32;40024:10;40003:32;;;;;;;;;;;;;;;;39976:59;;40084:12;;40069:11;40050:16;:30;;;;:::i;:::-;:46;;40042:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40338:6:::1;;;;;;;;;;;40337:7;40329:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40407:11;40400:4;;:18;;;;:::i;:::-;40387:9;:31;;40379:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40467:7;:5;:7::i;:::-;40453:21;;:10;:21;;;40449:234;;40509:4;40490:23;;:15;;;;;;;;;;;:23;;;40487:116;;;40538:25;40552:10;40538:13;:25::i;:::-;40530:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40487:116;40641:11;40634:4;;:18;;;;:::i;:::-;40621:9;:31;;40613:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40449:234;40689:34;40699:10;40711:11;40689:9;:34::i;:::-;39794:349:::0;40244:485;;:::o;28443:155::-;28538:52;28557:12;:10;:12::i;:::-;28571:8;28581;28538:18;:52::i;:::-;28443:155;;:::o;39066:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42863:130::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42968:19:::1;42947:18;:40;;;;42863:130:::0;:::o;29566:328::-;29741:41;29760:12;:10;:12::i;:::-;29774:7;29741:18;:41::i;:::-;29733:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29847:39;29861:4;29867:2;29871:7;29880:5;29847:13;:39::i;:::-;29566:328;;;;:::o;39506:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41531:472::-;41630:13;41663:17;41671:8;41663:7;:17::i;:::-;41655:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41756:5;41744:17;;:8;;;;;;;;;;;:17;;;41740:64;;;41779:17;41772:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41740:64;41812:28;41843:10;:8;:10::i;:::-;41812:41;;41898:1;41873:14;41867:28;:32;:130;;;;;;;;;;;;;;;;;41935:14;41951:19;:8;:17;:19::i;:::-;41972:9;41918:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41867:130;41860:137;;;41531:472;;;;:::o;42491:286::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42583:9:::1;;42572:7;:20;;42563:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;42637:9;42633:110;42652:7;42648:1;:11;42633:110;;;42676:18;:6;:16;:18::i;:::-;42703:32;42713:3;42718:16;:6;:14;:16::i;:::-;42703:9;:32::i;:::-;42661:3;;;;;:::i;:::-;;;;42633:110;;;;42764:7;42751:9;;:20;;;;;;;:::i;:::-;;;;;;;;42491:286:::0;;:::o;39143:31::-;;;;:::o;42009:81::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42078:6:::1;42067:8;;:17;;;;;;;;;;;;;;;;;;42009:81:::0;:::o;28669:164::-;28766:4;28790:18;:25;28809:5;28790:25;;;;;;;;;;;;;;;:35;28816:8;28790:35;;;;;;;;;;;;;;;;;;;;;;;;;28783:42;;28669:164;;;;:::o;42096:144::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42178:20:::1;;42171:27;;;;:::i;:::-;42228:6;;42205:20;:29;;;;;;;:::i;:::-;;42096:144:::0;;:::o;40737:155::-;40823:11;39823:1;39809:11;:15;:52;;;;;39843:18;;39828:11;:33;;39809:52;39801:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39935:9;;39920:11;39901:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39893:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39976:24;40003:20;:32;40024:10;40003:32;;;;;;;;;;;;;;;;39976:59;;40084:12;;40069:11;40050:16;:30;;;;:::i;:::-;:46;;40042:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;5808:12:::1;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40853:33:::2;40863:9;40874:11;40853:9;:33::i;:::-;39794:349:::0;40737:155;;;:::o;6486:201::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6595:1:::1;6575:22;;:8;:22;;;;6567:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6651:28;6670:8;6651:18;:28::i;:::-;6486:201:::0;:::o;18384:157::-;18469:4;18508:25;18493:40;;;:11;:40;;;;18486:47;;18384:157;;;:::o;31404:127::-;31469:4;31521:1;31493:30;;:7;:16;31501:7;31493:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31486:37;;31404:127;;;:::o;4301:98::-;4354:7;4381:10;4374:17;;4301:98;:::o;35550:174::-;35652:2;35625:15;:24;35641:7;35625:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35708:7;35704:2;35670:46;;35679:23;35694:7;35679:14;:23::i;:::-;35670:46;;;;;;;;;;;;35550:174;;:::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;31698:348::-;31791:4;31816:16;31824:7;31816;:16::i;:::-;31808:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31892:13;31908:23;31923:7;31908:14;:23::i;:::-;31892:39;;31961:5;31950:16;;:7;:16;;;:52;;;;31970:32;31987:5;31994:7;31970:16;:32::i;:::-;31950:52;:87;;;;32030:7;32006:31;;:20;32018:7;32006:11;:20::i;:::-;:31;;;31950:87;31942:96;;;31698:348;;;;:::o;34807:625::-;34966:4;34939:31;;:23;34954:7;34939:14;:23::i;:::-;:31;;;34931:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35045:1;35031:16;;:2;:16;;;;35023:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35101:39;35122:4;35128:2;35132:7;35101:20;:39::i;:::-;35205:29;35222:1;35226:7;35205:8;:29::i;:::-;35266:1;35247:9;:15;35257:4;35247:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35295:1;35278:9;:13;35288:2;35278:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35326:2;35307:7;:16;35315:7;35307:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35365:7;35361:2;35346:27;;35355:4;35346:27;;;;;;;;;;;;35386:38;35406:4;35412:2;35416:7;35386:19;:38::i;:::-;34807:625;;;:::o;6847:191::-;6921:16;6940:6;;;;;;;;;;;6921:25;;6966:8;6957:6;;:17;;;;;;;;;;;;;;;;;;7021:8;6990:40;;7011:8;6990:40;;;;;;;;;;;;6910:128;6847:191;:::o;43586:204::-;43666:9;43661:124;43685:11;43681:1;:15;43661:124;;;43712:18;:6;:16;:18::i;:::-;43739:38;43749:9;43760:16;:6;:14;:16::i;:::-;43739:9;:38::i;:::-;43698:3;;;;;:::i;:::-;;;;43661:124;;;;43586:204;;:::o;35866:315::-;36021:8;36012:17;;:5;:17;;;;36004:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36108:8;36070:18;:25;36089:5;36070:25;;;;;;;;;;;;;;;:35;36096:8;36070:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36154:8;36132:41;;36147:5;36132:41;;;36164:8;36132:41;;;;;;:::i;:::-;;;;;;;;35866:315;;;:::o;30776:::-;30933:28;30943:4;30949:2;30953:7;30933:9;:28::i;:::-;30980:48;31003:4;31009:2;31013:7;31022:5;30980:22;:48::i;:::-;30972:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30776:315;;;;:::o;43796:104::-;43856:13;43885:9;43878:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43796:104;:::o;1863:723::-;1919:13;2149:1;2140:5;:10;2136:53;;;2167:10;;;;;;;;;;;;;;;;;;;;;2136:53;2199:12;2214:5;2199:20;;2230:14;2255:78;2270:1;2262:4;:9;2255:78;;2288:8;;;;;:::i;:::-;;;;2319:2;2311:10;;;;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:39;;2393:154;2409:1;2400:5;:10;2393:154;;2437:1;2427:11;;;;;:::i;:::-;;;2504:2;2496:5;:10;;;;:::i;:::-;2483:2;:24;;;;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2533:2;2524:11;;;;;:::i;:::-;;;2393:154;;;2571:6;2557:21;;;;;1863:723;;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;32388:110::-;32464:26;32474:2;32478:7;32464:26;;;;;;;;;;;;:9;:26::i;:::-;32388:110;;:::o;38117:126::-;;;;:::o;38628:125::-;;;;:::o;36746:799::-;36901:4;36922:15;:2;:13;;;:15::i;:::-;36918:620;;;36974:2;36958:36;;;36995:12;:10;:12::i;:::-;37009:4;37015:7;37024:5;36958:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36954:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37217:1;37200:6;:13;:18;37196:272;;;37243:60;;;;;;;;;;:::i;:::-;;;;;;;;37196:272;37418:6;37412:13;37403:6;37399:2;37395:15;37388:38;36954:529;37091:41;;;37081:51;;;:6;:51;;;;37074:58;;;;;36918:620;37522:4;37515:11;;36746:799;;;;;;;:::o;32725:321::-;32855:18;32861:2;32865:7;32855:5;:18::i;:::-;32906:54;32937:1;32941:2;32945:7;32954:5;32906:22;:54::i;:::-;32884:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32725:321;;;:::o;8278:326::-;8338:4;8595:1;8573:7;:19;;;:23;8566:30;;8278:326;;;:::o;33382:439::-;33476:1;33462:16;;:2;:16;;;;33454:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33535:16;33543:7;33535;:16::i;:::-;33534:17;33526:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33597:45;33626:1;33630:2;33634:7;33597:20;:45::i;:::-;33672:1;33655:9;:13;33665:2;33655:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33703:2;33684:7;:16;33692:7;33684:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33748:7;33744:2;33723:33;;33740:1;33723:33;;;;;;;;;;;;33769:44;33797:1;33801:2;33805:7;33769:19;:44::i;:::-;33382:439;;:::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:474::-;8711:6;8719;8768:2;8756:9;8747:7;8743:23;8739:32;8736:119;;;8774:79;;:::i;:::-;8736:119;8894:1;8919:53;8964:7;8955:6;8944:9;8940:22;8919:53;:::i;:::-;8909:63;;8865:117;9021:2;9047:53;9092:7;9083:6;9072:9;9068:22;9047:53;:::i;:::-;9037:63;;8992:118;8643:474;;;;;:::o;9123:179::-;9192:10;9213:46;9255:3;9247:6;9213:46;:::i;:::-;9291:4;9286:3;9282:14;9268:28;;9123:179;;;;:::o;9308:118::-;9395:24;9413:5;9395:24;:::i;:::-;9390:3;9383:37;9308:118;;:::o;9462:732::-;9581:3;9610:54;9658:5;9610:54;:::i;:::-;9680:86;9759:6;9754:3;9680:86;:::i;:::-;9673:93;;9790:56;9840:5;9790:56;:::i;:::-;9869:7;9900:1;9885:284;9910:6;9907:1;9904:13;9885:284;;;9986:6;9980:13;10013:63;10072:3;10057:13;10013:63;:::i;:::-;10006:70;;10099:60;10152:6;10099:60;:::i;:::-;10089:70;;9945:224;9932:1;9929;9925:9;9920:14;;9885:284;;;9889:14;10185:3;10178:10;;9586:608;;;9462:732;;;;:::o;10200:109::-;10281:21;10296:5;10281:21;:::i;:::-;10276:3;10269:34;10200:109;;:::o;10315:360::-;10401:3;10429:38;10461:5;10429:38;:::i;:::-;10483:70;10546:6;10541:3;10483:70;:::i;:::-;10476:77;;10562:52;10607:6;10602:3;10595:4;10588:5;10584:16;10562:52;:::i;:::-;10639:29;10661:6;10639:29;:::i;:::-;10634:3;10630:39;10623:46;;10405:270;10315:360;;;;:::o;10681:364::-;10769:3;10797:39;10830:5;10797:39;:::i;:::-;10852:71;10916:6;10911:3;10852:71;:::i;:::-;10845:78;;10932:52;10977:6;10972:3;10965:4;10958:5;10954:16;10932:52;:::i;:::-;11009:29;11031:6;11009:29;:::i;:::-;11004:3;11000:39;10993:46;;10773:272;10681:364;;;;:::o;11051:377::-;11157:3;11185:39;11218:5;11185:39;:::i;:::-;11240:89;11322:6;11317:3;11240:89;:::i;:::-;11233:96;;11338:52;11383:6;11378:3;11371:4;11364:5;11360:16;11338:52;:::i;:::-;11415:6;11410:3;11406:16;11399:23;;11161:267;11051:377;;;;:::o;11458:845::-;11561:3;11598:5;11592:12;11627:36;11653:9;11627:36;:::i;:::-;11679:89;11761:6;11756:3;11679:89;:::i;:::-;11672:96;;11799:1;11788:9;11784:17;11815:1;11810:137;;;;11961:1;11956:341;;;;11777:520;;11810:137;11894:4;11890:9;11879;11875:25;11870:3;11863:38;11930:6;11925:3;11921:16;11914:23;;11810:137;;11956:341;12023:38;12055:5;12023:38;:::i;:::-;12083:1;12097:154;12111:6;12108:1;12105:13;12097:154;;;12185:7;12179:14;12175:1;12170:3;12166:11;12159:35;12235:1;12226:7;12222:15;12211:26;;12133:4;12130:1;12126:12;12121:17;;12097:154;;;12280:6;12275:3;12271:16;12264:23;;11963:334;;11777:520;;11565:738;;11458:845;;;;:::o;12309:366::-;12451:3;12472:67;12536:2;12531:3;12472:67;:::i;:::-;12465:74;;12548:93;12637:3;12548:93;:::i;:::-;12666:2;12661:3;12657:12;12650:19;;12309:366;;;:::o;12681:::-;12823:3;12844:67;12908:2;12903:3;12844:67;:::i;:::-;12837:74;;12920:93;13009:3;12920:93;:::i;:::-;13038:2;13033:3;13029:12;13022:19;;12681:366;;;:::o;13053:::-;13195:3;13216:67;13280:2;13275:3;13216:67;:::i;:::-;13209:74;;13292:93;13381:3;13292:93;:::i;:::-;13410:2;13405:3;13401:12;13394:19;;13053:366;;;:::o;13425:::-;13567:3;13588:67;13652:2;13647:3;13588:67;:::i;:::-;13581:74;;13664:93;13753:3;13664:93;:::i;:::-;13782:2;13777:3;13773:12;13766:19;;13425:366;;;:::o;13797:::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14169:366;;;:::o;14541:::-;14683:3;14704:67;14768:2;14763:3;14704:67;:::i;:::-;14697:74;;14780:93;14869:3;14780:93;:::i;:::-;14898:2;14893:3;14889:12;14882:19;;14541:366;;;:::o;14913:::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:::-;15799:3;15820:67;15884:2;15879:3;15820:67;:::i;:::-;15813:74;;15896:93;15985:3;15896:93;:::i;:::-;16014:2;16009:3;16005:12;15998:19;;15657:366;;;:::o;16029:::-;16171:3;16192:67;16256:2;16251:3;16192:67;:::i;:::-;16185:74;;16268:93;16357:3;16268:93;:::i;:::-;16386:2;16381:3;16377:12;16370:19;;16029:366;;;:::o;16401:::-;16543:3;16564:67;16628:2;16623:3;16564:67;:::i;:::-;16557:74;;16640:93;16729:3;16640:93;:::i;:::-;16758:2;16753:3;16749:12;16742:19;;16401:366;;;:::o;16773:::-;16915:3;16936:67;17000:2;16995:3;16936:67;:::i;:::-;16929:74;;17012:93;17101:3;17012:93;:::i;:::-;17130:2;17125:3;17121:12;17114:19;;16773:366;;;:::o;17145:::-;17287:3;17308:67;17372:2;17367:3;17308:67;:::i;:::-;17301:74;;17384:93;17473:3;17384:93;:::i;:::-;17502:2;17497:3;17493:12;17486:19;;17145:366;;;:::o;17517:::-;17659:3;17680:67;17744:2;17739:3;17680:67;:::i;:::-;17673:74;;17756:93;17845:3;17756:93;:::i;:::-;17874:2;17869:3;17865:12;17858:19;;17517:366;;;:::o;17889:::-;18031:3;18052:67;18116:2;18111:3;18052:67;:::i;:::-;18045:74;;18128:93;18217:3;18128:93;:::i;:::-;18246:2;18241:3;18237:12;18230:19;;17889:366;;;:::o;18261:::-;18403:3;18424:67;18488:2;18483:3;18424:67;:::i;:::-;18417:74;;18500:93;18589:3;18500:93;:::i;:::-;18618:2;18613:3;18609:12;18602:19;;18261:366;;;:::o;18633:::-;18775:3;18796:67;18860:2;18855:3;18796:67;:::i;:::-;18789:74;;18872:93;18961:3;18872:93;:::i;:::-;18990:2;18985:3;18981:12;18974:19;;18633:366;;;:::o;19005:::-;19147:3;19168:67;19232:2;19227:3;19168:67;:::i;:::-;19161:74;;19244:93;19333:3;19244:93;:::i;:::-;19362:2;19357:3;19353:12;19346:19;;19005:366;;;:::o;19377:::-;19519:3;19540:67;19604:2;19599:3;19540:67;:::i;:::-;19533:74;;19616:93;19705:3;19616:93;:::i;:::-;19734:2;19729:3;19725:12;19718:19;;19377:366;;;:::o;19749:::-;19891:3;19912:67;19976:2;19971:3;19912:67;:::i;:::-;19905:74;;19988:93;20077:3;19988:93;:::i;:::-;20106:2;20101:3;20097:12;20090:19;;19749:366;;;:::o;20121:::-;20263:3;20284:67;20348:2;20343:3;20284:67;:::i;:::-;20277:74;;20360:93;20449:3;20360:93;:::i;:::-;20478:2;20473:3;20469:12;20462:19;;20121:366;;;:::o;20493:::-;20635:3;20656:67;20720:2;20715:3;20656:67;:::i;:::-;20649:74;;20732:93;20821:3;20732:93;:::i;:::-;20850:2;20845:3;20841:12;20834:19;;20493:366;;;:::o;20865:::-;21007:3;21028:67;21092:2;21087:3;21028:67;:::i;:::-;21021:74;;21104:93;21193:3;21104:93;:::i;:::-;21222:2;21217:3;21213:12;21206:19;;20865:366;;;:::o;21237:108::-;21314:24;21332:5;21314:24;:::i;:::-;21309:3;21302:37;21237:108;;:::o;21351:118::-;21438:24;21456:5;21438:24;:::i;:::-;21433:3;21426:37;21351:118;;:::o;21475:589::-;21700:3;21722:95;21813:3;21804:6;21722:95;:::i;:::-;21715:102;;21834:95;21925:3;21916:6;21834:95;:::i;:::-;21827:102;;21946:92;22034:3;22025:6;21946:92;:::i;:::-;21939:99;;22055:3;22048:10;;21475:589;;;;;;:::o;22070:222::-;22163:4;22201:2;22190:9;22186:18;22178:26;;22214:71;22282:1;22271:9;22267:17;22258:6;22214:71;:::i;:::-;22070:222;;;;:::o;22298:640::-;22493:4;22531:3;22520:9;22516:19;22508:27;;22545:71;22613:1;22602:9;22598:17;22589:6;22545:71;:::i;:::-;22626:72;22694:2;22683:9;22679:18;22670:6;22626:72;:::i;:::-;22708;22776:2;22765:9;22761:18;22752:6;22708:72;:::i;:::-;22827:9;22821:4;22817:20;22812:2;22801:9;22797:18;22790:48;22855:76;22926:4;22917:6;22855:76;:::i;:::-;22847:84;;22298:640;;;;;;;:::o;22944:373::-;23087:4;23125:2;23114:9;23110:18;23102:26;;23174:9;23168:4;23164:20;23160:1;23149:9;23145:17;23138:47;23202:108;23305:4;23296:6;23202:108;:::i;:::-;23194:116;;22944:373;;;;:::o;23323:210::-;23410:4;23448:2;23437:9;23433:18;23425:26;;23461:65;23523:1;23512:9;23508:17;23499:6;23461:65;:::i;:::-;23323:210;;;;:::o;23539:313::-;23652:4;23690:2;23679:9;23675:18;23667:26;;23739:9;23733:4;23729:20;23725:1;23714:9;23710:17;23703:47;23767:78;23840:4;23831:6;23767:78;:::i;:::-;23759:86;;23539:313;;;;:::o;23858:419::-;24024:4;24062:2;24051:9;24047:18;24039:26;;24111:9;24105:4;24101:20;24097:1;24086:9;24082:17;24075:47;24139:131;24265:4;24139:131;:::i;:::-;24131:139;;23858:419;;;:::o;24283:::-;24449:4;24487:2;24476:9;24472:18;24464:26;;24536:9;24530:4;24526:20;24522:1;24511:9;24507:17;24500:47;24564:131;24690:4;24564:131;:::i;:::-;24556:139;;24283:419;;;:::o;24708:::-;24874:4;24912:2;24901:9;24897:18;24889:26;;24961:9;24955:4;24951:20;24947:1;24936:9;24932:17;24925:47;24989:131;25115:4;24989:131;:::i;:::-;24981:139;;24708:419;;;:::o;25133:::-;25299:4;25337:2;25326:9;25322:18;25314:26;;25386:9;25380:4;25376:20;25372:1;25361:9;25357:17;25350:47;25414:131;25540:4;25414:131;:::i;:::-;25406:139;;25133:419;;;:::o;25558:::-;25724:4;25762:2;25751:9;25747:18;25739:26;;25811:9;25805:4;25801:20;25797:1;25786:9;25782:17;25775:47;25839:131;25965:4;25839:131;:::i;:::-;25831:139;;25558:419;;;:::o;25983:::-;26149:4;26187:2;26176:9;26172:18;26164:26;;26236:9;26230:4;26226:20;26222:1;26211:9;26207:17;26200:47;26264:131;26390:4;26264:131;:::i;:::-;26256:139;;25983:419;;;:::o;26408:::-;26574:4;26612:2;26601:9;26597:18;26589:26;;26661:9;26655:4;26651:20;26647:1;26636:9;26632:17;26625:47;26689:131;26815:4;26689:131;:::i;:::-;26681:139;;26408:419;;;:::o;26833:::-;26999:4;27037:2;27026:9;27022:18;27014:26;;27086:9;27080:4;27076:20;27072:1;27061:9;27057:17;27050:47;27114:131;27240:4;27114:131;:::i;:::-;27106:139;;26833:419;;;:::o;27258:::-;27424:4;27462:2;27451:9;27447:18;27439:26;;27511:9;27505:4;27501:20;27497:1;27486:9;27482:17;27475:47;27539:131;27665:4;27539:131;:::i;:::-;27531:139;;27258:419;;;:::o;27683:::-;27849:4;27887:2;27876:9;27872:18;27864:26;;27936:9;27930:4;27926:20;27922:1;27911:9;27907:17;27900:47;27964:131;28090:4;27964:131;:::i;:::-;27956:139;;27683:419;;;:::o;28108:::-;28274:4;28312:2;28301:9;28297:18;28289:26;;28361:9;28355:4;28351:20;28347:1;28336:9;28332:17;28325:47;28389:131;28515:4;28389:131;:::i;:::-;28381:139;;28108:419;;;:::o;28533:::-;28699:4;28737:2;28726:9;28722:18;28714:26;;28786:9;28780:4;28776:20;28772:1;28761:9;28757:17;28750:47;28814:131;28940:4;28814:131;:::i;:::-;28806:139;;28533:419;;;:::o;28958:::-;29124:4;29162:2;29151:9;29147:18;29139:26;;29211:9;29205:4;29201:20;29197:1;29186:9;29182:17;29175:47;29239:131;29365:4;29239:131;:::i;:::-;29231:139;;28958:419;;;:::o;29383:::-;29549:4;29587:2;29576:9;29572:18;29564:26;;29636:9;29630:4;29626:20;29622:1;29611:9;29607:17;29600:47;29664:131;29790:4;29664:131;:::i;:::-;29656:139;;29383:419;;;:::o;29808:::-;29974:4;30012:2;30001:9;29997:18;29989:26;;30061:9;30055:4;30051:20;30047:1;30036:9;30032:17;30025:47;30089:131;30215:4;30089:131;:::i;:::-;30081:139;;29808:419;;;:::o;30233:::-;30399:4;30437:2;30426:9;30422:18;30414:26;;30486:9;30480:4;30476:20;30472:1;30461:9;30457:17;30450:47;30514:131;30640:4;30514:131;:::i;:::-;30506:139;;30233:419;;;:::o;30658:::-;30824:4;30862:2;30851:9;30847:18;30839:26;;30911:9;30905:4;30901:20;30897:1;30886:9;30882:17;30875:47;30939:131;31065:4;30939:131;:::i;:::-;30931:139;;30658:419;;;:::o;31083:::-;31249:4;31287:2;31276:9;31272:18;31264:26;;31336:9;31330:4;31326:20;31322:1;31311:9;31307:17;31300:47;31364:131;31490:4;31364:131;:::i;:::-;31356:139;;31083:419;;;:::o;31508:::-;31674:4;31712:2;31701:9;31697:18;31689:26;;31761:9;31755:4;31751:20;31747:1;31736:9;31732:17;31725:47;31789:131;31915:4;31789:131;:::i;:::-;31781:139;;31508:419;;;:::o;31933:::-;32099:4;32137:2;32126:9;32122:18;32114:26;;32186:9;32180:4;32176:20;32172:1;32161:9;32157:17;32150:47;32214:131;32340:4;32214:131;:::i;:::-;32206:139;;31933:419;;;:::o;32358:::-;32524:4;32562:2;32551:9;32547:18;32539:26;;32611:9;32605:4;32601:20;32597:1;32586:9;32582:17;32575:47;32639:131;32765:4;32639:131;:::i;:::-;32631:139;;32358:419;;;:::o;32783:::-;32949:4;32987:2;32976:9;32972:18;32964:26;;33036:9;33030:4;33026:20;33022:1;33011:9;33007:17;33000:47;33064:131;33190:4;33064:131;:::i;:::-;33056:139;;32783:419;;;:::o;33208:::-;33374:4;33412:2;33401:9;33397:18;33389:26;;33461:9;33455:4;33451:20;33447:1;33436:9;33432:17;33425:47;33489:131;33615:4;33489:131;:::i;:::-;33481:139;;33208:419;;;:::o;33633:::-;33799:4;33837:2;33826:9;33822:18;33814:26;;33886:9;33880:4;33876:20;33872:1;33861:9;33857:17;33850:47;33914:131;34040:4;33914:131;:::i;:::-;33906:139;;33633:419;;;:::o;34058:222::-;34151:4;34189:2;34178:9;34174:18;34166:26;;34202:71;34270:1;34259:9;34255:17;34246:6;34202:71;:::i;:::-;34058:222;;;;:::o;34286:129::-;34320:6;34347:20;;:::i;:::-;34337:30;;34376:33;34404:4;34396:6;34376:33;:::i;:::-;34286:129;;;:::o;34421:75::-;34454:6;34487:2;34481:9;34471:19;;34421:75;:::o;34502:307::-;34563:4;34653:18;34645:6;34642:30;34639:56;;;34675:18;;:::i;:::-;34639:56;34713:29;34735:6;34713:29;:::i;:::-;34705:37;;34797:4;34791;34787:15;34779:23;;34502:307;;;:::o;34815:308::-;34877:4;34967:18;34959:6;34956:30;34953:56;;;34989:18;;:::i;:::-;34953:56;35027:29;35049:6;35027:29;:::i;:::-;35019:37;;35111:4;35105;35101:15;35093:23;;34815:308;;;:::o;35129:132::-;35196:4;35219:3;35211:11;;35249:4;35244:3;35240:14;35232:22;;35129:132;;;:::o;35267:141::-;35316:4;35339:3;35331:11;;35362:3;35359:1;35352:14;35396:4;35393:1;35383:18;35375:26;;35267:141;;;:::o;35414:114::-;35481:6;35515:5;35509:12;35499:22;;35414:114;;;:::o;35534:98::-;35585:6;35619:5;35613:12;35603:22;;35534:98;;;:::o;35638:99::-;35690:6;35724:5;35718:12;35708:22;;35638:99;;;:::o;35743:113::-;35813:4;35845;35840:3;35836:14;35828:22;;35743:113;;;:::o;35862:184::-;35961:11;35995:6;35990:3;35983:19;36035:4;36030:3;36026:14;36011:29;;35862:184;;;;:::o;36052:168::-;36135:11;36169:6;36164:3;36157:19;36209:4;36204:3;36200:14;36185:29;;36052:168;;;;:::o;36226:169::-;36310:11;36344:6;36339:3;36332:19;36384:4;36379:3;36375:14;36360:29;;36226:169;;;;:::o;36401:148::-;36503:11;36540:3;36525:18;;36401:148;;;;:::o;36555:305::-;36595:3;36614:20;36632:1;36614:20;:::i;:::-;36609:25;;36648:20;36666:1;36648:20;:::i;:::-;36643:25;;36802:1;36734:66;36730:74;36727:1;36724:81;36721:107;;;36808:18;;:::i;:::-;36721:107;36852:1;36849;36845:9;36838:16;;36555:305;;;;:::o;36866:185::-;36906:1;36923:20;36941:1;36923:20;:::i;:::-;36918:25;;36957:20;36975:1;36957:20;:::i;:::-;36952:25;;36996:1;36986:35;;37001:18;;:::i;:::-;36986:35;37043:1;37040;37036:9;37031:14;;36866:185;;;;:::o;37057:348::-;37097:7;37120:20;37138:1;37120:20;:::i;:::-;37115:25;;37154:20;37172:1;37154:20;:::i;:::-;37149:25;;37342:1;37274:66;37270:74;37267:1;37264:81;37259:1;37252:9;37245:17;37241:105;37238:131;;;37349:18;;:::i;:::-;37238:131;37397:1;37394;37390:9;37379:20;;37057:348;;;;:::o;37411:191::-;37451:4;37471:20;37489:1;37471:20;:::i;:::-;37466:25;;37505:20;37523:1;37505:20;:::i;:::-;37500:25;;37544:1;37541;37538:8;37535:34;;;37549:18;;:::i;:::-;37535:34;37594:1;37591;37587:9;37579:17;;37411:191;;;;:::o;37608:96::-;37645:7;37674:24;37692:5;37674:24;:::i;:::-;37663:35;;37608:96;;;:::o;37710:90::-;37744:7;37787:5;37780:13;37773:21;37762:32;;37710:90;;;:::o;37806:149::-;37842:7;37882:66;37875:5;37871:78;37860:89;;37806:149;;;:::o;37961:126::-;37998:7;38038:42;38031:5;38027:54;38016:65;;37961:126;;;:::o;38093:77::-;38130:7;38159:5;38148:16;;38093:77;;;:::o;38176:154::-;38260:6;38255:3;38250;38237:30;38322:1;38313:6;38308:3;38304:16;38297:27;38176:154;;;:::o;38336:307::-;38404:1;38414:113;38428:6;38425:1;38422:13;38414:113;;;38513:1;38508:3;38504:11;38498:18;38494:1;38489:3;38485:11;38478:39;38450:2;38447:1;38443:10;38438:15;;38414:113;;;38545:6;38542:1;38539:13;38536:101;;;38625:1;38616:6;38611:3;38607:16;38600:27;38536:101;38385:258;38336:307;;;:::o;38649:320::-;38693:6;38730:1;38724:4;38720:12;38710:22;;38777:1;38771:4;38767:12;38798:18;38788:81;;38854:4;38846:6;38842:17;38832:27;;38788:81;38916:2;38908:6;38905:14;38885:18;38882:38;38879:84;;;38935:18;;:::i;:::-;38879:84;38700:269;38649:320;;;:::o;38975:281::-;39058:27;39080:4;39058:27;:::i;:::-;39050:6;39046:40;39188:6;39176:10;39173:22;39152:18;39140:10;39137:34;39134:62;39131:88;;;39199:18;;:::i;:::-;39131:88;39239:10;39235:2;39228:22;39018:238;38975:281;;:::o;39262:233::-;39301:3;39324:24;39342:5;39324:24;:::i;:::-;39315:33;;39370:66;39363:5;39360:77;39357:103;;;39440:18;;:::i;:::-;39357:103;39487:1;39480:5;39476:13;39469:20;;39262:233;;;:::o;39501:176::-;39533:1;39550:20;39568:1;39550:20;:::i;:::-;39545:25;;39584:20;39602:1;39584:20;:::i;:::-;39579:25;;39623:1;39613:35;;39628:18;;:::i;:::-;39613:35;39669:1;39666;39662:9;39657:14;;39501:176;;;;:::o;39683:180::-;39731:77;39728:1;39721:88;39828:4;39825:1;39818:15;39852:4;39849:1;39842:15;39869:180;39917:77;39914:1;39907:88;40014:4;40011:1;40004:15;40038:4;40035:1;40028:15;40055:180;40103:77;40100:1;40093:88;40200:4;40197:1;40190:15;40224:4;40221:1;40214:15;40241:180;40289:77;40286:1;40279:88;40386:4;40383:1;40376:15;40410:4;40407:1;40400:15;40427:180;40475:77;40472:1;40465:88;40572:4;40569:1;40562:15;40596:4;40593:1;40586:15;40613:117;40722:1;40719;40712:12;40736:117;40845:1;40842;40835:12;40859:117;40968:1;40965;40958:12;40982:117;41091:1;41088;41081:12;41105:117;41214:1;41211;41204:12;41228:117;41337:1;41334;41327:12;41351:102;41392:6;41443:2;41439:7;41434:2;41427:5;41423:14;41419:28;41409:38;;41351:102;;;:::o;41459:237::-;41599:34;41595:1;41587:6;41583:14;41576:58;41668:20;41663:2;41655:6;41651:15;41644:45;41459:237;:::o;41702:225::-;41842:34;41838:1;41830:6;41826:14;41819:58;41911:8;41906:2;41898:6;41894:15;41887:33;41702:225;:::o;41933:224::-;42073:34;42069:1;42061:6;42057:14;42050:58;42142:7;42137:2;42129:6;42125:15;42118:32;41933:224;:::o;42163:178::-;42303:30;42299:1;42291:6;42287:14;42280:54;42163:178;:::o;42347:170::-;42487:22;42483:1;42475:6;42471:14;42464:46;42347:170;:::o;42523:178::-;42663:30;42659:1;42651:6;42647:14;42640:54;42523:178;:::o;42707:223::-;42847:34;42843:1;42835:6;42831:14;42824:58;42916:6;42911:2;42903:6;42899:15;42892:31;42707:223;:::o;42936:175::-;43076:27;43072:1;43064:6;43060:14;43053:51;42936:175;:::o;43117:231::-;43257:34;43253:1;43245:6;43241:14;43234:58;43326:14;43321:2;43313:6;43309:15;43302:39;43117:231;:::o;43354:243::-;43494:34;43490:1;43482:6;43478:14;43471:58;43563:26;43558:2;43550:6;43546:15;43539:51;43354:243;:::o;43603:176::-;43743:28;43739:1;43731:6;43727:14;43720:52;43603:176;:::o;43785:229::-;43925:34;43921:1;43913:6;43909:14;43902:58;43994:12;43989:2;43981:6;43977:15;43970:37;43785:229;:::o;44020:228::-;44160:34;44156:1;44148:6;44144:14;44137:58;44229:11;44224:2;44216:6;44212:15;44205:36;44020:228;:::o;44254:182::-;44394:34;44390:1;44382:6;44378:14;44371:58;44254:182;:::o;44442:231::-;44582:34;44578:1;44570:6;44566:14;44559:58;44651:14;44646:2;44638:6;44634:15;44627:39;44442:231;:::o;44679:182::-;44819:34;44815:1;44807:6;44803:14;44796:58;44679:182;:::o;44867:173::-;45007:25;45003:1;44995:6;44991:14;44984:49;44867:173;:::o;45046:234::-;45186:34;45182:1;45174:6;45170:14;45163:58;45255:17;45250:2;45242:6;45238:15;45231:42;45046:234;:::o;45286:220::-;45426:34;45422:1;45414:6;45410:14;45403:58;45495:3;45490:2;45482:6;45478:15;45471:28;45286:220;:::o;45512:170::-;45652:22;45648:1;45640:6;45636:14;45629:46;45512:170;:::o;45688:168::-;45828:20;45824:1;45816:6;45812:14;45805:44;45688:168;:::o;45862:236::-;46002:34;45998:1;45990:6;45986:14;45979:58;46071:19;46066:2;46058:6;46054:15;46047:44;45862:236;:::o;46104:173::-;46244:25;46240:1;46232:6;46228:14;46221:49;46104:173;:::o;46283:169::-;46423:21;46419:1;46411:6;46407:14;46400:45;46283:169;:::o;46458:122::-;46531:24;46549:5;46531:24;:::i;:::-;46524:5;46521:35;46511:63;;46570:1;46567;46560:12;46511:63;46458:122;:::o;46586:116::-;46656:21;46671:5;46656:21;:::i;:::-;46649:5;46646:32;46636:60;;46692:1;46689;46682:12;46636:60;46586:116;:::o;46708:120::-;46780:23;46797:5;46780:23;:::i;:::-;46773:5;46770:34;46760:62;;46818:1;46815;46808:12;46760:62;46708:120;:::o;46834:122::-;46907:24;46925:5;46907:24;:::i;:::-;46900:5;46897:35;46887:63;;46946:1;46943;46936:12;46887:63;46834:122;:::o

Swarm Source

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