ETH Price: $3,427.49 (-2.01%)
Gas: 6 Gwei

Token

Bothead (BH)
 

Overview

Max Total Supply

1,605 BH

Holders

542

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BH
0xd97c78a597b51a18f43f34ef099e1529f1c6b9c8
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:
BotHead

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 2021-10-01
*/

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






/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

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

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

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

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

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

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




/**
 * @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);
    }
}




/*
 * @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;
    }
}









/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

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














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







/**
 * @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);
}





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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









/**
 * @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;
    }
}


/**
 * @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 overriden 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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







/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: contracts/bothead.sol

pragma solidity ^0.8.0;



contract BotHead is ERC721Enumerable, Ownable {
    address benefitAddr = 0x1Aa03735CB96F4C1b73eDDBf422dBA0882ba8882;
    
    string baseURI;

    uint256 public constant MAX_BOTHEADS = 10000;
    uint256 public price = 80000000000000000;  //0.08 ETH
    uint256 public prePrice = 75000000000000000;  //0.075 ETH
    
    bool public publicSale = false;
    bool public preSale = false;
    
    mapping (address => uint256) public preMintAddrs;
    uint256 public preMintNums;
    uint256 public ownerMintedNum;
    
    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
    }
    
    function getPreMintAddrNums() public view returns (uint256){
        return preMintAddrs[_msgSender()];
    }
    
    function getPrice() public view returns (uint256){
        return price;
    }
    
    function getPrePrice() public view returns (uint256){
        return prePrice;
    }
    
    function getSoldNum() public view returns (uint256){
        return totalSupply();
    }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(benefitAddr).transfer(balance);
    }

    function flipSaleState() public onlyOwner {
        publicSale = !publicSale;
    }
    
    function flipPreSaleState() public onlyOwner {
        preSale = !preSale;
    }
    
    function changePrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }
    
    function changePrePrice(uint256 newPrice) public onlyOwner {
        prePrice = newPrice;
    }
    
    function setBaseURI(string memory _uri) public onlyOwner {
        baseURI = _uri;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function ownerMint(uint nums) public onlyOwner{
        require(ownerMintedNum + nums <= 300, "onwer mint limit reached.");
        require(totalSupply() + nums < MAX_BOTHEADS, "heroes sold out.");
        
        for(uint i = 0; i < nums; i++){
            uint id = totalSupply();
            if(id < MAX_BOTHEADS){
                _safeMint(0xcdc114094a76727CB95304bA257F4C578e5Bd018, id);
            }
        }
        ownerMintedNum = ownerMintedNum + nums;
    }
    
    function setPreMintAddr(address[] memory addr) public onlyOwner{
        require(preSale, "Pre Sale not started.");

        uint addrLength = addr.length;

        for(uint i = 0; i < addrLength; i++){
            preMintAddrs[addr[i]] = preMintAddrs[addr[i]] + 5;
        }
    }
    
    function preMint(uint nums) external payable {
        require(preSale, "Pre Sale not started.");
        require(preMintAddrs[_msgSender()] >= nums, "can not pre mint more than you own.");
        require(preMintNums < 800, "ony 800 address can pre mint.");
        require(totalSupply() < MAX_BOTHEADS, "sold out.");
        require(totalSupply() + nums <= MAX_BOTHEADS, "not enough left.");
        
        uint salePrice = prePrice * nums;
        require(msg.value >= salePrice, "not enough funds to purchase.");
        
        for(uint i = 0; i < nums; i++){
            uint id = totalSupply();
            if(id < MAX_BOTHEADS){
                _safeMint(_msgSender(), id);
            }
        }
        
        preMintAddrs[_msgSender()] = preMintAddrs[_msgSender()] - nums;
        preMintNums = preMintNums + 1;
    }
    
    function mint(uint nums) external payable {
        require(publicSale, "Sale not started.");
        require(nums <= 20, "nums not more than 20.");
        require(totalSupply() < MAX_BOTHEADS, "sold out.");
        require(totalSupply() + nums <= MAX_BOTHEADS, "not enough left.");
        
        uint salePrice = price * nums;
        require(msg.value >= salePrice, "not enough funds to purchase.");
        
        for(uint i = 0; i < nums; i++){
            uint id = totalSupply();
            if(id < MAX_BOTHEADS){
                _safeMint(_msgSender(), id);
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","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":"MAX_BOTHEADS","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":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreMintAddrNums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSoldNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nums","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nums","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ownerMintedNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nums","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMintAddrs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintNums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"}],"name":"setPreMintAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052731aa03735cb96f4c1b73eddbf422dba0882ba8882600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555067011c37937e080000600d5567010a741a46278000600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550348015620000b457600080fd5b50604051620051f3380380620051f38339818101604052810190620000da919062000334565b81818160009080519060200190620000f492919062000206565b5080600190805190602001906200010d92919062000206565b50505062000130620001246200013860201b60201c565b6200014060201b60201c565b50506200053d565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000214906200044e565b90600052602060002090601f01602090048101928262000238576000855562000284565b82601f106200025357805160ff191683800117855562000284565b8280016001018555821562000284579182015b828111156200028357825182559160200191906001019062000266565b5b50905062000293919062000297565b5090565b5b80821115620002b257600081600090555060010162000298565b5090565b6000620002cd620002c784620003e2565b620003b9565b905082815260208101848484011115620002ec57620002eb6200051d565b5b620002f984828562000418565b509392505050565b600082601f83011262000319576200031862000518565b5b81516200032b848260208601620002b6565b91505092915050565b600080604083850312156200034e576200034d62000527565b5b600083015167ffffffffffffffff8111156200036f576200036e62000522565b5b6200037d8582860162000301565b925050602083015167ffffffffffffffff811115620003a157620003a062000522565b5b620003af8582860162000301565b9150509250929050565b6000620003c5620003d8565b9050620003d3828262000484565b919050565b6000604051905090565b600067ffffffffffffffff8211156200040057620003ff620004e9565b5b6200040b826200052c565b9050602081019050919050565b60005b83811015620004385780820151818401526020810190506200041b565b8381111562000448576000848401525b50505050565b600060028204905060018216806200046757607f821691505b602082108114156200047e576200047d620004ba565b5b50919050565b6200048f826200052c565b810181811067ffffffffffffffff82111715620004b157620004b0620004e9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614ca6806200054d6000396000f3fe6080604052600436106102465760003560e01c80636aab8e7111610139578063a22cb465116100b6578063cd8dda301161007a578063cd8dda3014610850578063e567cad61461087b578063e985e9c5146108a6578063f0325549146108e3578063f19e75d4146108fa578063f2fde38b1461092357610246565b8063a22cb4651461076d578063a2b40d1914610796578063a73c9ee0146107bf578063b88d4fde146107ea578063c87b56dd1461081357610246565b80639000294c116100fd5780639000294c146106a557806395d89b41146106d057806398d5fdca146106fb578063a035b1fe14610726578063a0712d681461075157610246565b80636aab8e71146105e157806370a082311461060a578063715018a6146106475780638ad433ac1461065e5780638da5cb5b1461067a57610246565b806334918dfd116101c757806352171ef91161018b57806352171ef9146104fc57806355f804b3146105275780635743b25c146105505780635a7adf7f146105795780636352211e146105a457610246565b806334918dfd1461043d5780633ccfd60b1461045457806342842e0e1461046b5780634d9ac681146104945780634f6ccce7146104bf57610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa57806333bc1c5c146103e757806334349eab1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806317efc25b14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906136a5565b61094c565b60405161027f9190613ca4565b60405180910390f35b34801561029457600080fd5b5061029d6109c6565b6040516102aa9190613cbf565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613748565b610a58565b6040516102e79190613c3d565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061361c565b610add565b005b34801561032557600080fd5b50610340600480360381019061033b9190613499565b610bf5565b60405161034d9190614061565b60405180910390f35b34801561036257600080fd5b5061036b610c0d565b6040516103789190614061565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613506565b610c1a565b005b3480156103b657600080fd5b506103d160048036038101906103cc919061361c565b610c7a565b6040516103de9190614061565b60405180910390f35b3480156103f357600080fd5b506103fc610d1f565b6040516104099190613ca4565b60405180910390f35b34801561041e57600080fd5b50610427610d32565b6040516104349190614061565b60405180910390f35b34801561044957600080fd5b50610452610d38565b005b34801561046057600080fd5b50610469610de0565b005b34801561047757600080fd5b50610492600480360381019061048d9190613506565b610ecd565b005b3480156104a057600080fd5b506104a9610eed565b6040516104b69190614061565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190613748565b610efc565b6040516104f39190614061565b60405180910390f35b34801561050857600080fd5b50610511610f6d565b60405161051e9190614061565b60405180910390f35b34801561053357600080fd5b5061054e600480360381019061054991906136ff565b610f73565b005b34801561055c57600080fd5b5061057760048036038101906105729190613748565b611009565b005b34801561058557600080fd5b5061058e61108f565b60405161059b9190613ca4565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c69190613748565b6110a2565b6040516105d89190613c3d565b60405180910390f35b3480156105ed57600080fd5b506106086004803603810190610603919061365c565b611154565b005b34801561061657600080fd5b50610631600480360381019061062c9190613499565b61130b565b60405161063e9190614061565b60405180910390f35b34801561065357600080fd5b5061065c6113c3565b005b61067860048036038101906106739190613748565b61144b565b005b34801561068657600080fd5b5061068f61175d565b60405161069c9190613c3d565b60405180910390f35b3480156106b157600080fd5b506106ba611787565b6040516106c79190614061565b60405180910390f35b3480156106dc57600080fd5b506106e561178d565b6040516106f29190613cbf565b60405180910390f35b34801561070757600080fd5b5061071061181f565b60405161071d9190614061565b60405180910390f35b34801561073257600080fd5b5061073b611829565b6040516107489190614061565b60405180910390f35b61076b60048036038101906107669190613748565b61182f565b005b34801561077957600080fd5b50610794600480360381019061078f91906135dc565b611a05565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613748565b611b86565b005b3480156107cb57600080fd5b506107d4611c0c565b6040516107e19190614061565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c9190613559565b611c16565b005b34801561081f57600080fd5b5061083a60048036038101906108359190613748565b611c78565b6040516108479190613cbf565b60405180910390f35b34801561085c57600080fd5b50610865611d1f565b6040516108729190614061565b60405180910390f35b34801561088757600080fd5b50610890611d6d565b60405161089d9190614061565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c891906134c6565b611d73565b6040516108da9190613ca4565b60405180910390f35b3480156108ef57600080fd5b506108f8611e07565b005b34801561090657600080fd5b50610921600480360381019061091c9190613748565b611eaf565b005b34801561092f57600080fd5b5061094a60048036038101906109459190613499565b61203f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bf57506109be82612137565b5b9050919050565b6060600080546109d59061433d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a019061433d565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b6000610a6382612219565b610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990613ee1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae8826110a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090613fa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b78612285565b73ffffffffffffffffffffffffffffffffffffffff161480610ba75750610ba681610ba1612285565b611d73565b5b610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90613e41565b60405180910390fd5b610bf0838361228d565b505050565b60106020528060005260406000206000915090505481565b6000600880549050905090565b610c2b610c25612285565b82612346565b610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190613fc1565b60405180910390fd5b610c75838383612424565b505050565b6000610c858361130b565b8210610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90613d01565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60009054906101000a900460ff1681565b60115481565b610d40612285565b73ffffffffffffffffffffffffffffffffffffffff16610d5e61175d565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613f01565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610de8612285565b73ffffffffffffffffffffffffffffffffffffffff16610e0661175d565b73ffffffffffffffffffffffffffffffffffffffff1614610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390613f01565b60405180910390fd5b6000479050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ec9573d6000803e3d6000fd5b5050565b610ee883838360405180602001604052806000815250611c16565b505050565b6000610ef7610c0d565b905090565b6000610f06610c0d565b8210610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613fe1565b60405180910390fd5b60088281548110610f5b57610f5a6144d6565b5b90600052602060002001549050919050565b60125481565b610f7b612285565b73ffffffffffffffffffffffffffffffffffffffff16610f9961175d565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613f01565b60405180910390fd5b80600c908051906020019061100592919061320f565b5050565b611011612285565b73ffffffffffffffffffffffffffffffffffffffff1661102f61175d565b73ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613f01565b60405180910390fd5b80600e8190555050565b600f60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613e81565b60405180910390fd5b80915050919050565b61115c612285565b73ffffffffffffffffffffffffffffffffffffffff1661117a61175d565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613f01565b60405180910390fd5b600f60019054906101000a900460ff1661121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690613e01565b60405180910390fd5b60008151905060005b8181101561130657600560106000858481518110611249576112486144d6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112969190614172565b601060008584815181106112ad576112ac6144d6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806112fe906143a0565b915050611228565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613e61565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113cb612285565b73ffffffffffffffffffffffffffffffffffffffff166113e961175d565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613f01565b60405180910390fd5b6114496000612680565b565b600f60019054906101000a900460ff1661149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613e01565b60405180910390fd5b80601060006114a7612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90613ce1565b60405180910390fd5b61032060115410611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090614021565b60405180910390fd5b612710611574610c0d565b106115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613f81565b60405180910390fd5b612710816115c0610c0d565b6115ca9190614172565b111561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613ea1565b60405180910390fd5b600081600e5461161b91906141f9565b905080341015611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790614001565b60405180910390fd5b60005b828110156116a7576000611675610c0d565b90506127108110156116935761169261168c612285565b82612746565b5b50808061169f906143a0565b915050611663565b5081601060006116b5612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116fa9190614253565b60106000611706612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016011546117539190614172565b6011819055505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61271081565b60606001805461179c9061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546117c89061433d565b80156118155780601f106117ea57610100808354040283529160200191611815565b820191906000526020600020905b8154815290600101906020018083116117f857829003601f168201915b5050505050905090565b6000600d54905090565b600d5481565b600f60009054906101000a900460ff1661187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590613d61565b60405180910390fd5b60148111156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990613f21565b60405180910390fd5b6127106118cd610c0d565b1061190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490613f81565b60405180910390fd5b61271081611919610c0d565b6119239190614172565b1115611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b90613ea1565b60405180910390fd5b600081600d5461197491906141f9565b9050803410156119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090614001565b60405180910390fd5b60005b82811015611a005760006119ce610c0d565b90506127108110156119ec576119eb6119e5612285565b82612746565b5b5080806119f8906143a0565b9150506119bc565b505050565b611a0d612285565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290613de1565b60405180910390fd5b8060056000611a88612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b35612285565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7a9190613ca4565b60405180910390a35050565b611b8e612285565b73ffffffffffffffffffffffffffffffffffffffff16611bac61175d565b73ffffffffffffffffffffffffffffffffffffffff1614611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613f01565b60405180910390fd5b80600d8190555050565b6000600e54905090565b611c27611c21612285565b83612346565b611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d90613fc1565b60405180910390fd5b611c7284848484612764565b50505050565b6060611c8382612219565b611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb990613f61565b60405180910390fd5b6000611ccc6127c0565b90506000815111611cec5760405180602001604052806000815250611d17565b80611cf684612852565b604051602001611d07929190613c19565b6040516020818303038152906040525b915050919050565b600060106000611d2d612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e0f612285565b73ffffffffffffffffffffffffffffffffffffffff16611e2d61175d565b73ffffffffffffffffffffffffffffffffffffffff1614611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90613f01565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b611eb7612285565b73ffffffffffffffffffffffffffffffffffffffff16611ed561175d565b73ffffffffffffffffffffffffffffffffffffffff1614611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290613f01565b60405180910390fd5b61012c81601254611f3c9190614172565b1115611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490614041565b60405180910390fd5b61271081611f89610c0d565b611f939190614172565b10611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90613da1565b60405180910390fd5b60005b81811015612027576000611fe8610c0d565b90506127108110156120135761201273cdc114094a76727cb95304ba257f4c578e5bd01882612746565b5b50808061201f906143a0565b915050611fd6565b50806012546120369190614172565b60128190555050565b612047612285565b73ffffffffffffffffffffffffffffffffffffffff1661206561175d565b73ffffffffffffffffffffffffffffffffffffffff16146120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290613f01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613d41565b60405180910390fd5b61213481612680565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061220257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122125750612211826129b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612300836110a2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061235182612219565b612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790613e21565b60405180910390fd5b600061239b836110a2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061240a57508373ffffffffffffffffffffffffffffffffffffffff166123f284610a58565b73ffffffffffffffffffffffffffffffffffffffff16145b8061241b575061241a8185611d73565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612444826110a2565b73ffffffffffffffffffffffffffffffffffffffff161461249a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249190613f41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250190613dc1565b60405180910390fd5b612515838383612a1d565b61252060008261228d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125709190614253565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c79190614172565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612760828260405180602001604052806000815250612b31565b5050565b61276f848484612424565b61277b84848484612b8c565b6127ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b190613d21565b60405180910390fd5b50505050565b6060600c80546127cf9061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546127fb9061433d565b80156128485780601f1061281d57610100808354040283529160200191612848565b820191906000526020600020905b81548152906001019060200180831161282b57829003601f168201915b5050505050905090565b6060600082141561289a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ae565b600082905060005b600082146128cc5780806128b5906143a0565b915050600a826128c591906141c8565b91506128a2565b60008167ffffffffffffffff8111156128e8576128e7614505565b5b6040519080825280601f01601f19166020018201604052801561291a5781602001600182028036833780820191505090505b5090505b600085146129a7576001826129339190614253565b9150600a8561294291906143e9565b603061294e9190614172565b60f81b818381518110612964576129636144d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a091906141c8565b945061291e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a28838383612d23565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a6b57612a6681612d28565b612aaa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612aa957612aa88382612d71565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed57612ae881612ede565b612b2c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b2b57612b2a8282612faf565b5b5b505050565b612b3b838361302e565b612b486000848484612b8c565b612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7e90613d21565b60405180910390fd5b505050565b6000612bad8473ffffffffffffffffffffffffffffffffffffffff166131fc565b15612d16578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bd6612285565b8786866040518563ffffffff1660e01b8152600401612bf89493929190613c58565b602060405180830381600087803b158015612c1257600080fd5b505af1925050508015612c4357506040513d601f19601f82011682018060405250810190612c4091906136d2565b60015b612cc6573d8060008114612c73576040519150601f19603f3d011682016040523d82523d6000602084013e612c78565b606091505b50600081511415612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb590613d21565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d1b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d7e8461130b565b612d889190614253565b9050600060076000848152602001908152602001600020549050818114612e6d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ef29190614253565b9050600060096000848152602001908152602001600020549050600060088381548110612f2257612f216144d6565b5b906000526020600020015490508060088381548110612f4457612f436144d6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f9357612f926144a7565b5b6001900381819060005260206000200160009055905550505050565b6000612fba8361130b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309590613ec1565b60405180910390fd5b6130a781612219565b156130e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130de90613d81565b60405180910390fd5b6130f360008383612a1d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131439190614172565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461321b9061433d565b90600052602060002090601f01602090048101928261323d5760008555613284565b82601f1061325657805160ff1916838001178555613284565b82800160010185558215613284579182015b82811115613283578251825591602001919060010190613268565b5b5090506132919190613295565b5090565b5b808211156132ae576000816000905550600101613296565b5090565b60006132c56132c0846140a1565b61407c565b905080838252602082019050828560208602820111156132e8576132e7614539565b5b60005b8581101561331857816132fe88826133a6565b8452602084019350602083019250506001810190506132eb565b5050509392505050565b6000613335613330846140cd565b61407c565b9050828152602081018484840111156133515761335061453e565b5b61335c8482856142fb565b509392505050565b6000613377613372846140fe565b61407c565b9050828152602081018484840111156133935761339261453e565b5b61339e8482856142fb565b509392505050565b6000813590506133b581614c14565b92915050565b600082601f8301126133d0576133cf614534565b5b81356133e08482602086016132b2565b91505092915050565b6000813590506133f881614c2b565b92915050565b60008135905061340d81614c42565b92915050565b60008151905061342281614c42565b92915050565b600082601f83011261343d5761343c614534565b5b813561344d848260208601613322565b91505092915050565b600082601f83011261346b5761346a614534565b5b813561347b848260208601613364565b91505092915050565b60008135905061349381614c59565b92915050565b6000602082840312156134af576134ae614548565b5b60006134bd848285016133a6565b91505092915050565b600080604083850312156134dd576134dc614548565b5b60006134eb858286016133a6565b92505060206134fc858286016133a6565b9150509250929050565b60008060006060848603121561351f5761351e614548565b5b600061352d868287016133a6565b935050602061353e868287016133a6565b925050604061354f86828701613484565b9150509250925092565b6000806000806080858703121561357357613572614548565b5b6000613581878288016133a6565b9450506020613592878288016133a6565b93505060406135a387828801613484565b925050606085013567ffffffffffffffff8111156135c4576135c3614543565b5b6135d087828801613428565b91505092959194509250565b600080604083850312156135f3576135f2614548565b5b6000613601858286016133a6565b9250506020613612858286016133e9565b9150509250929050565b6000806040838503121561363357613632614548565b5b6000613641858286016133a6565b925050602061365285828601613484565b9150509250929050565b60006020828403121561367257613671614548565b5b600082013567ffffffffffffffff8111156136905761368f614543565b5b61369c848285016133bb565b91505092915050565b6000602082840312156136bb576136ba614548565b5b60006136c9848285016133fe565b91505092915050565b6000602082840312156136e8576136e7614548565b5b60006136f684828501613413565b91505092915050565b60006020828403121561371557613714614548565b5b600082013567ffffffffffffffff81111561373357613732614543565b5b61373f84828501613456565b91505092915050565b60006020828403121561375e5761375d614548565b5b600061376c84828501613484565b91505092915050565b61377e81614287565b82525050565b61378d81614299565b82525050565b600061379e8261412f565b6137a88185614145565b93506137b881856020860161430a565b6137c18161454d565b840191505092915050565b60006137d78261413a565b6137e18185614156565b93506137f181856020860161430a565b6137fa8161454d565b840191505092915050565b60006138108261413a565b61381a8185614167565b935061382a81856020860161430a565b80840191505092915050565b6000613843602383614156565b915061384e8261455e565b604082019050919050565b6000613866602b83614156565b9150613871826145ad565b604082019050919050565b6000613889603283614156565b9150613894826145fc565b604082019050919050565b60006138ac602683614156565b91506138b78261464b565b604082019050919050565b60006138cf601183614156565b91506138da8261469a565b602082019050919050565b60006138f2601c83614156565b91506138fd826146c3565b602082019050919050565b6000613915601083614156565b9150613920826146ec565b602082019050919050565b6000613938602483614156565b915061394382614715565b604082019050919050565b600061395b601983614156565b915061396682614764565b602082019050919050565b600061397e601583614156565b91506139898261478d565b602082019050919050565b60006139a1602c83614156565b91506139ac826147b6565b604082019050919050565b60006139c4603883614156565b91506139cf82614805565b604082019050919050565b60006139e7602a83614156565b91506139f282614854565b604082019050919050565b6000613a0a602983614156565b9150613a15826148a3565b604082019050919050565b6000613a2d601083614156565b9150613a38826148f2565b602082019050919050565b6000613a50602083614156565b9150613a5b8261491b565b602082019050919050565b6000613a73602c83614156565b9150613a7e82614944565b604082019050919050565b6000613a96602083614156565b9150613aa182614993565b602082019050919050565b6000613ab9601683614156565b9150613ac4826149bc565b602082019050919050565b6000613adc602983614156565b9150613ae7826149e5565b604082019050919050565b6000613aff602f83614156565b9150613b0a82614a34565b604082019050919050565b6000613b22600983614156565b9150613b2d82614a83565b602082019050919050565b6000613b45602183614156565b9150613b5082614aac565b604082019050919050565b6000613b68603183614156565b9150613b7382614afb565b604082019050919050565b6000613b8b602c83614156565b9150613b9682614b4a565b604082019050919050565b6000613bae601d83614156565b9150613bb982614b99565b602082019050919050565b6000613bd1601d83614156565b9150613bdc82614bc2565b602082019050919050565b6000613bf4601983614156565b9150613bff82614beb565b602082019050919050565b613c13816142f1565b82525050565b6000613c258285613805565b9150613c318284613805565b91508190509392505050565b6000602082019050613c526000830184613775565b92915050565b6000608082019050613c6d6000830187613775565b613c7a6020830186613775565b613c876040830185613c0a565b8181036060830152613c998184613793565b905095945050505050565b6000602082019050613cb96000830184613784565b92915050565b60006020820190508181036000830152613cd981846137cc565b905092915050565b60006020820190508181036000830152613cfa81613836565b9050919050565b60006020820190508181036000830152613d1a81613859565b9050919050565b60006020820190508181036000830152613d3a8161387c565b9050919050565b60006020820190508181036000830152613d5a8161389f565b9050919050565b60006020820190508181036000830152613d7a816138c2565b9050919050565b60006020820190508181036000830152613d9a816138e5565b9050919050565b60006020820190508181036000830152613dba81613908565b9050919050565b60006020820190508181036000830152613dda8161392b565b9050919050565b60006020820190508181036000830152613dfa8161394e565b9050919050565b60006020820190508181036000830152613e1a81613971565b9050919050565b60006020820190508181036000830152613e3a81613994565b9050919050565b60006020820190508181036000830152613e5a816139b7565b9050919050565b60006020820190508181036000830152613e7a816139da565b9050919050565b60006020820190508181036000830152613e9a816139fd565b9050919050565b60006020820190508181036000830152613eba81613a20565b9050919050565b60006020820190508181036000830152613eda81613a43565b9050919050565b60006020820190508181036000830152613efa81613a66565b9050919050565b60006020820190508181036000830152613f1a81613a89565b9050919050565b60006020820190508181036000830152613f3a81613aac565b9050919050565b60006020820190508181036000830152613f5a81613acf565b9050919050565b60006020820190508181036000830152613f7a81613af2565b9050919050565b60006020820190508181036000830152613f9a81613b15565b9050919050565b60006020820190508181036000830152613fba81613b38565b9050919050565b60006020820190508181036000830152613fda81613b5b565b9050919050565b60006020820190508181036000830152613ffa81613b7e565b9050919050565b6000602082019050818103600083015261401a81613ba1565b9050919050565b6000602082019050818103600083015261403a81613bc4565b9050919050565b6000602082019050818103600083015261405a81613be7565b9050919050565b60006020820190506140766000830184613c0a565b92915050565b6000614086614097565b9050614092828261436f565b919050565b6000604051905090565b600067ffffffffffffffff8211156140bc576140bb614505565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140e8576140e7614505565b5b6140f18261454d565b9050602081019050919050565b600067ffffffffffffffff82111561411957614118614505565b5b6141228261454d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061417d826142f1565b9150614188836142f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141bd576141bc61441a565b5b828201905092915050565b60006141d3826142f1565b91506141de836142f1565b9250826141ee576141ed614449565b5b828204905092915050565b6000614204826142f1565b915061420f836142f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142485761424761441a565b5b828202905092915050565b600061425e826142f1565b9150614269836142f1565b92508282101561427c5761427b61441a565b5b828203905092915050565b6000614292826142d1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561432857808201518184015260208101905061430d565b83811115614337576000848401525b50505050565b6000600282049050600182168061435557607f821691505b6020821081141561436957614368614478565b5b50919050565b6143788261454d565b810181811067ffffffffffffffff8211171561439757614396614505565b5b80604052505050565b60006143ab826142f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143de576143dd61441a565b5b600182019050919050565b60006143f4826142f1565b91506143ff836142f1565b92508261440f5761440e614449565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f63616e206e6f7420707265206d696e74206d6f7265207468616e20796f75206f60008201527f776e2e0000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f7420737461727465642e000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6865726f657320736f6c64206f75742e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5072652053616c65206e6f7420737461727465642e0000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206c6566742e00000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6e756d73206e6f74206d6f7265207468616e2032302e00000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f736f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f7567682066756e647320746f2070757263686173652e000000600082015250565b7f6f6e792038303020616464726573732063616e20707265206d696e742e000000600082015250565b7f6f6e776572206d696e74206c696d697420726561636865642e00000000000000600082015250565b614c1d81614287565b8114614c2857600080fd5b50565b614c3481614299565b8114614c3f57600080fd5b50565b614c4b816142a5565b8114614c5657600080fd5b50565b614c62816142f1565b8114614c6d57600080fd5b5056fea2646970667358221220af984bcaeadfa4498e60925e8f433a22c9df3d8a1cd3bf035bec601baddfd29664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007426f74686561640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024248000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636aab8e7111610139578063a22cb465116100b6578063cd8dda301161007a578063cd8dda3014610850578063e567cad61461087b578063e985e9c5146108a6578063f0325549146108e3578063f19e75d4146108fa578063f2fde38b1461092357610246565b8063a22cb4651461076d578063a2b40d1914610796578063a73c9ee0146107bf578063b88d4fde146107ea578063c87b56dd1461081357610246565b80639000294c116100fd5780639000294c146106a557806395d89b41146106d057806398d5fdca146106fb578063a035b1fe14610726578063a0712d681461075157610246565b80636aab8e71146105e157806370a082311461060a578063715018a6146106475780638ad433ac1461065e5780638da5cb5b1461067a57610246565b806334918dfd116101c757806352171ef91161018b57806352171ef9146104fc57806355f804b3146105275780635743b25c146105505780635a7adf7f146105795780636352211e146105a457610246565b806334918dfd1461043d5780633ccfd60b1461045457806342842e0e1461046b5780634d9ac681146104945780634f6ccce7146104bf57610246565b806318160ddd1161020e57806318160ddd1461035657806323b872dd146103815780632f745c59146103aa57806333bc1c5c146103e757806334349eab1461041257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806317efc25b14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906136a5565b61094c565b60405161027f9190613ca4565b60405180910390f35b34801561029457600080fd5b5061029d6109c6565b6040516102aa9190613cbf565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613748565b610a58565b6040516102e79190613c3d565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061361c565b610add565b005b34801561032557600080fd5b50610340600480360381019061033b9190613499565b610bf5565b60405161034d9190614061565b60405180910390f35b34801561036257600080fd5b5061036b610c0d565b6040516103789190614061565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613506565b610c1a565b005b3480156103b657600080fd5b506103d160048036038101906103cc919061361c565b610c7a565b6040516103de9190614061565b60405180910390f35b3480156103f357600080fd5b506103fc610d1f565b6040516104099190613ca4565b60405180910390f35b34801561041e57600080fd5b50610427610d32565b6040516104349190614061565b60405180910390f35b34801561044957600080fd5b50610452610d38565b005b34801561046057600080fd5b50610469610de0565b005b34801561047757600080fd5b50610492600480360381019061048d9190613506565b610ecd565b005b3480156104a057600080fd5b506104a9610eed565b6040516104b69190614061565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190613748565b610efc565b6040516104f39190614061565b60405180910390f35b34801561050857600080fd5b50610511610f6d565b60405161051e9190614061565b60405180910390f35b34801561053357600080fd5b5061054e600480360381019061054991906136ff565b610f73565b005b34801561055c57600080fd5b5061057760048036038101906105729190613748565b611009565b005b34801561058557600080fd5b5061058e61108f565b60405161059b9190613ca4565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c69190613748565b6110a2565b6040516105d89190613c3d565b60405180910390f35b3480156105ed57600080fd5b506106086004803603810190610603919061365c565b611154565b005b34801561061657600080fd5b50610631600480360381019061062c9190613499565b61130b565b60405161063e9190614061565b60405180910390f35b34801561065357600080fd5b5061065c6113c3565b005b61067860048036038101906106739190613748565b61144b565b005b34801561068657600080fd5b5061068f61175d565b60405161069c9190613c3d565b60405180910390f35b3480156106b157600080fd5b506106ba611787565b6040516106c79190614061565b60405180910390f35b3480156106dc57600080fd5b506106e561178d565b6040516106f29190613cbf565b60405180910390f35b34801561070757600080fd5b5061071061181f565b60405161071d9190614061565b60405180910390f35b34801561073257600080fd5b5061073b611829565b6040516107489190614061565b60405180910390f35b61076b60048036038101906107669190613748565b61182f565b005b34801561077957600080fd5b50610794600480360381019061078f91906135dc565b611a05565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613748565b611b86565b005b3480156107cb57600080fd5b506107d4611c0c565b6040516107e19190614061565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c9190613559565b611c16565b005b34801561081f57600080fd5b5061083a60048036038101906108359190613748565b611c78565b6040516108479190613cbf565b60405180910390f35b34801561085c57600080fd5b50610865611d1f565b6040516108729190614061565b60405180910390f35b34801561088757600080fd5b50610890611d6d565b60405161089d9190614061565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c891906134c6565b611d73565b6040516108da9190613ca4565b60405180910390f35b3480156108ef57600080fd5b506108f8611e07565b005b34801561090657600080fd5b50610921600480360381019061091c9190613748565b611eaf565b005b34801561092f57600080fd5b5061094a60048036038101906109459190613499565b61203f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bf57506109be82612137565b5b9050919050565b6060600080546109d59061433d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a019061433d565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b6000610a6382612219565b610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990613ee1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae8826110a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090613fa1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b78612285565b73ffffffffffffffffffffffffffffffffffffffff161480610ba75750610ba681610ba1612285565b611d73565b5b610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90613e41565b60405180910390fd5b610bf0838361228d565b505050565b60106020528060005260406000206000915090505481565b6000600880549050905090565b610c2b610c25612285565b82612346565b610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190613fc1565b60405180910390fd5b610c75838383612424565b505050565b6000610c858361130b565b8210610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90613d01565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60009054906101000a900460ff1681565b60115481565b610d40612285565b73ffffffffffffffffffffffffffffffffffffffff16610d5e61175d565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613f01565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610de8612285565b73ffffffffffffffffffffffffffffffffffffffff16610e0661175d565b73ffffffffffffffffffffffffffffffffffffffff1614610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390613f01565b60405180910390fd5b6000479050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ec9573d6000803e3d6000fd5b5050565b610ee883838360405180602001604052806000815250611c16565b505050565b6000610ef7610c0d565b905090565b6000610f06610c0d565b8210610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613fe1565b60405180910390fd5b60088281548110610f5b57610f5a6144d6565b5b90600052602060002001549050919050565b60125481565b610f7b612285565b73ffffffffffffffffffffffffffffffffffffffff16610f9961175d565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613f01565b60405180910390fd5b80600c908051906020019061100592919061320f565b5050565b611011612285565b73ffffffffffffffffffffffffffffffffffffffff1661102f61175d565b73ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613f01565b60405180910390fd5b80600e8190555050565b600f60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613e81565b60405180910390fd5b80915050919050565b61115c612285565b73ffffffffffffffffffffffffffffffffffffffff1661117a61175d565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613f01565b60405180910390fd5b600f60019054906101000a900460ff1661121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690613e01565b60405180910390fd5b60008151905060005b8181101561130657600560106000858481518110611249576112486144d6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112969190614172565b601060008584815181106112ad576112ac6144d6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806112fe906143a0565b915050611228565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613e61565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113cb612285565b73ffffffffffffffffffffffffffffffffffffffff166113e961175d565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143690613f01565b60405180910390fd5b6114496000612680565b565b600f60019054906101000a900460ff1661149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613e01565b60405180910390fd5b80601060006114a7612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90613ce1565b60405180910390fd5b61032060115410611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090614021565b60405180910390fd5b612710611574610c0d565b106115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90613f81565b60405180910390fd5b612710816115c0610c0d565b6115ca9190614172565b111561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613ea1565b60405180910390fd5b600081600e5461161b91906141f9565b905080341015611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790614001565b60405180910390fd5b60005b828110156116a7576000611675610c0d565b90506127108110156116935761169261168c612285565b82612746565b5b50808061169f906143a0565b915050611663565b5081601060006116b5612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116fa9190614253565b60106000611706612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060016011546117539190614172565b6011819055505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61271081565b60606001805461179c9061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546117c89061433d565b80156118155780601f106117ea57610100808354040283529160200191611815565b820191906000526020600020905b8154815290600101906020018083116117f857829003601f168201915b5050505050905090565b6000600d54905090565b600d5481565b600f60009054906101000a900460ff1661187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590613d61565b60405180910390fd5b60148111156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990613f21565b60405180910390fd5b6127106118cd610c0d565b1061190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490613f81565b60405180910390fd5b61271081611919610c0d565b6119239190614172565b1115611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b90613ea1565b60405180910390fd5b600081600d5461197491906141f9565b9050803410156119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090614001565b60405180910390fd5b60005b82811015611a005760006119ce610c0d565b90506127108110156119ec576119eb6119e5612285565b82612746565b5b5080806119f8906143a0565b9150506119bc565b505050565b611a0d612285565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290613de1565b60405180910390fd5b8060056000611a88612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b35612285565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7a9190613ca4565b60405180910390a35050565b611b8e612285565b73ffffffffffffffffffffffffffffffffffffffff16611bac61175d565b73ffffffffffffffffffffffffffffffffffffffff1614611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613f01565b60405180910390fd5b80600d8190555050565b6000600e54905090565b611c27611c21612285565b83612346565b611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d90613fc1565b60405180910390fd5b611c7284848484612764565b50505050565b6060611c8382612219565b611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb990613f61565b60405180910390fd5b6000611ccc6127c0565b90506000815111611cec5760405180602001604052806000815250611d17565b80611cf684612852565b604051602001611d07929190613c19565b6040516020818303038152906040525b915050919050565b600060106000611d2d612285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e0f612285565b73ffffffffffffffffffffffffffffffffffffffff16611e2d61175d565b73ffffffffffffffffffffffffffffffffffffffff1614611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90613f01565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b611eb7612285565b73ffffffffffffffffffffffffffffffffffffffff16611ed561175d565b73ffffffffffffffffffffffffffffffffffffffff1614611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290613f01565b60405180910390fd5b61012c81601254611f3c9190614172565b1115611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490614041565b60405180910390fd5b61271081611f89610c0d565b611f939190614172565b10611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca90613da1565b60405180910390fd5b60005b81811015612027576000611fe8610c0d565b90506127108110156120135761201273cdc114094a76727cb95304ba257f4c578e5bd01882612746565b5b50808061201f906143a0565b915050611fd6565b50806012546120369190614172565b60128190555050565b612047612285565b73ffffffffffffffffffffffffffffffffffffffff1661206561175d565b73ffffffffffffffffffffffffffffffffffffffff16146120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290613f01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613d41565b60405180910390fd5b61213481612680565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061220257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122125750612211826129b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612300836110a2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061235182612219565b612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790613e21565b60405180910390fd5b600061239b836110a2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061240a57508373ffffffffffffffffffffffffffffffffffffffff166123f284610a58565b73ffffffffffffffffffffffffffffffffffffffff16145b8061241b575061241a8185611d73565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612444826110a2565b73ffffffffffffffffffffffffffffffffffffffff161461249a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249190613f41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250190613dc1565b60405180910390fd5b612515838383612a1d565b61252060008261228d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125709190614253565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c79190614172565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612760828260405180602001604052806000815250612b31565b5050565b61276f848484612424565b61277b84848484612b8c565b6127ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b190613d21565b60405180910390fd5b50505050565b6060600c80546127cf9061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546127fb9061433d565b80156128485780601f1061281d57610100808354040283529160200191612848565b820191906000526020600020905b81548152906001019060200180831161282b57829003601f168201915b5050505050905090565b6060600082141561289a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ae565b600082905060005b600082146128cc5780806128b5906143a0565b915050600a826128c591906141c8565b91506128a2565b60008167ffffffffffffffff8111156128e8576128e7614505565b5b6040519080825280601f01601f19166020018201604052801561291a5781602001600182028036833780820191505090505b5090505b600085146129a7576001826129339190614253565b9150600a8561294291906143e9565b603061294e9190614172565b60f81b818381518110612964576129636144d6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a091906141c8565b945061291e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a28838383612d23565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a6b57612a6681612d28565b612aaa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612aa957612aa88382612d71565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed57612ae881612ede565b612b2c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b2b57612b2a8282612faf565b5b5b505050565b612b3b838361302e565b612b486000848484612b8c565b612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7e90613d21565b60405180910390fd5b505050565b6000612bad8473ffffffffffffffffffffffffffffffffffffffff166131fc565b15612d16578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bd6612285565b8786866040518563ffffffff1660e01b8152600401612bf89493929190613c58565b602060405180830381600087803b158015612c1257600080fd5b505af1925050508015612c4357506040513d601f19601f82011682018060405250810190612c4091906136d2565b60015b612cc6573d8060008114612c73576040519150601f19603f3d011682016040523d82523d6000602084013e612c78565b606091505b50600081511415612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb590613d21565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d1b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d7e8461130b565b612d889190614253565b9050600060076000848152602001908152602001600020549050818114612e6d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ef29190614253565b9050600060096000848152602001908152602001600020549050600060088381548110612f2257612f216144d6565b5b906000526020600020015490508060088381548110612f4457612f436144d6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f9357612f926144a7565b5b6001900381819060005260206000200160009055905550505050565b6000612fba8361130b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309590613ec1565b60405180910390fd5b6130a781612219565b156130e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130de90613d81565b60405180910390fd5b6130f360008383612a1d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131439190614172565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461321b9061433d565b90600052602060002090601f01602090048101928261323d5760008555613284565b82601f1061325657805160ff1916838001178555613284565b82800160010185558215613284579182015b82811115613283578251825591602001919060010190613268565b5b5090506132919190613295565b5090565b5b808211156132ae576000816000905550600101613296565b5090565b60006132c56132c0846140a1565b61407c565b905080838252602082019050828560208602820111156132e8576132e7614539565b5b60005b8581101561331857816132fe88826133a6565b8452602084019350602083019250506001810190506132eb565b5050509392505050565b6000613335613330846140cd565b61407c565b9050828152602081018484840111156133515761335061453e565b5b61335c8482856142fb565b509392505050565b6000613377613372846140fe565b61407c565b9050828152602081018484840111156133935761339261453e565b5b61339e8482856142fb565b509392505050565b6000813590506133b581614c14565b92915050565b600082601f8301126133d0576133cf614534565b5b81356133e08482602086016132b2565b91505092915050565b6000813590506133f881614c2b565b92915050565b60008135905061340d81614c42565b92915050565b60008151905061342281614c42565b92915050565b600082601f83011261343d5761343c614534565b5b813561344d848260208601613322565b91505092915050565b600082601f83011261346b5761346a614534565b5b813561347b848260208601613364565b91505092915050565b60008135905061349381614c59565b92915050565b6000602082840312156134af576134ae614548565b5b60006134bd848285016133a6565b91505092915050565b600080604083850312156134dd576134dc614548565b5b60006134eb858286016133a6565b92505060206134fc858286016133a6565b9150509250929050565b60008060006060848603121561351f5761351e614548565b5b600061352d868287016133a6565b935050602061353e868287016133a6565b925050604061354f86828701613484565b9150509250925092565b6000806000806080858703121561357357613572614548565b5b6000613581878288016133a6565b9450506020613592878288016133a6565b93505060406135a387828801613484565b925050606085013567ffffffffffffffff8111156135c4576135c3614543565b5b6135d087828801613428565b91505092959194509250565b600080604083850312156135f3576135f2614548565b5b6000613601858286016133a6565b9250506020613612858286016133e9565b9150509250929050565b6000806040838503121561363357613632614548565b5b6000613641858286016133a6565b925050602061365285828601613484565b9150509250929050565b60006020828403121561367257613671614548565b5b600082013567ffffffffffffffff8111156136905761368f614543565b5b61369c848285016133bb565b91505092915050565b6000602082840312156136bb576136ba614548565b5b60006136c9848285016133fe565b91505092915050565b6000602082840312156136e8576136e7614548565b5b60006136f684828501613413565b91505092915050565b60006020828403121561371557613714614548565b5b600082013567ffffffffffffffff81111561373357613732614543565b5b61373f84828501613456565b91505092915050565b60006020828403121561375e5761375d614548565b5b600061376c84828501613484565b91505092915050565b61377e81614287565b82525050565b61378d81614299565b82525050565b600061379e8261412f565b6137a88185614145565b93506137b881856020860161430a565b6137c18161454d565b840191505092915050565b60006137d78261413a565b6137e18185614156565b93506137f181856020860161430a565b6137fa8161454d565b840191505092915050565b60006138108261413a565b61381a8185614167565b935061382a81856020860161430a565b80840191505092915050565b6000613843602383614156565b915061384e8261455e565b604082019050919050565b6000613866602b83614156565b9150613871826145ad565b604082019050919050565b6000613889603283614156565b9150613894826145fc565b604082019050919050565b60006138ac602683614156565b91506138b78261464b565b604082019050919050565b60006138cf601183614156565b91506138da8261469a565b602082019050919050565b60006138f2601c83614156565b91506138fd826146c3565b602082019050919050565b6000613915601083614156565b9150613920826146ec565b602082019050919050565b6000613938602483614156565b915061394382614715565b604082019050919050565b600061395b601983614156565b915061396682614764565b602082019050919050565b600061397e601583614156565b91506139898261478d565b602082019050919050565b60006139a1602c83614156565b91506139ac826147b6565b604082019050919050565b60006139c4603883614156565b91506139cf82614805565b604082019050919050565b60006139e7602a83614156565b91506139f282614854565b604082019050919050565b6000613a0a602983614156565b9150613a15826148a3565b604082019050919050565b6000613a2d601083614156565b9150613a38826148f2565b602082019050919050565b6000613a50602083614156565b9150613a5b8261491b565b602082019050919050565b6000613a73602c83614156565b9150613a7e82614944565b604082019050919050565b6000613a96602083614156565b9150613aa182614993565b602082019050919050565b6000613ab9601683614156565b9150613ac4826149bc565b602082019050919050565b6000613adc602983614156565b9150613ae7826149e5565b604082019050919050565b6000613aff602f83614156565b9150613b0a82614a34565b604082019050919050565b6000613b22600983614156565b9150613b2d82614a83565b602082019050919050565b6000613b45602183614156565b9150613b5082614aac565b604082019050919050565b6000613b68603183614156565b9150613b7382614afb565b604082019050919050565b6000613b8b602c83614156565b9150613b9682614b4a565b604082019050919050565b6000613bae601d83614156565b9150613bb982614b99565b602082019050919050565b6000613bd1601d83614156565b9150613bdc82614bc2565b602082019050919050565b6000613bf4601983614156565b9150613bff82614beb565b602082019050919050565b613c13816142f1565b82525050565b6000613c258285613805565b9150613c318284613805565b91508190509392505050565b6000602082019050613c526000830184613775565b92915050565b6000608082019050613c6d6000830187613775565b613c7a6020830186613775565b613c876040830185613c0a565b8181036060830152613c998184613793565b905095945050505050565b6000602082019050613cb96000830184613784565b92915050565b60006020820190508181036000830152613cd981846137cc565b905092915050565b60006020820190508181036000830152613cfa81613836565b9050919050565b60006020820190508181036000830152613d1a81613859565b9050919050565b60006020820190508181036000830152613d3a8161387c565b9050919050565b60006020820190508181036000830152613d5a8161389f565b9050919050565b60006020820190508181036000830152613d7a816138c2565b9050919050565b60006020820190508181036000830152613d9a816138e5565b9050919050565b60006020820190508181036000830152613dba81613908565b9050919050565b60006020820190508181036000830152613dda8161392b565b9050919050565b60006020820190508181036000830152613dfa8161394e565b9050919050565b60006020820190508181036000830152613e1a81613971565b9050919050565b60006020820190508181036000830152613e3a81613994565b9050919050565b60006020820190508181036000830152613e5a816139b7565b9050919050565b60006020820190508181036000830152613e7a816139da565b9050919050565b60006020820190508181036000830152613e9a816139fd565b9050919050565b60006020820190508181036000830152613eba81613a20565b9050919050565b60006020820190508181036000830152613eda81613a43565b9050919050565b60006020820190508181036000830152613efa81613a66565b9050919050565b60006020820190508181036000830152613f1a81613a89565b9050919050565b60006020820190508181036000830152613f3a81613aac565b9050919050565b60006020820190508181036000830152613f5a81613acf565b9050919050565b60006020820190508181036000830152613f7a81613af2565b9050919050565b60006020820190508181036000830152613f9a81613b15565b9050919050565b60006020820190508181036000830152613fba81613b38565b9050919050565b60006020820190508181036000830152613fda81613b5b565b9050919050565b60006020820190508181036000830152613ffa81613b7e565b9050919050565b6000602082019050818103600083015261401a81613ba1565b9050919050565b6000602082019050818103600083015261403a81613bc4565b9050919050565b6000602082019050818103600083015261405a81613be7565b9050919050565b60006020820190506140766000830184613c0a565b92915050565b6000614086614097565b9050614092828261436f565b919050565b6000604051905090565b600067ffffffffffffffff8211156140bc576140bb614505565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140e8576140e7614505565b5b6140f18261454d565b9050602081019050919050565b600067ffffffffffffffff82111561411957614118614505565b5b6141228261454d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061417d826142f1565b9150614188836142f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141bd576141bc61441a565b5b828201905092915050565b60006141d3826142f1565b91506141de836142f1565b9250826141ee576141ed614449565b5b828204905092915050565b6000614204826142f1565b915061420f836142f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142485761424761441a565b5b828202905092915050565b600061425e826142f1565b9150614269836142f1565b92508282101561427c5761427b61441a565b5b828203905092915050565b6000614292826142d1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561432857808201518184015260208101905061430d565b83811115614337576000848401525b50505050565b6000600282049050600182168061435557607f821691505b6020821081141561436957614368614478565b5b50919050565b6143788261454d565b810181811067ffffffffffffffff8211171561439757614396614505565b5b80604052505050565b60006143ab826142f1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143de576143dd61441a565b5b600182019050919050565b60006143f4826142f1565b91506143ff836142f1565b92508261440f5761440e614449565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f63616e206e6f7420707265206d696e74206d6f7265207468616e20796f75206f60008201527f776e2e0000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f7420737461727465642e000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6865726f657320736f6c64206f75742e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5072652053616c65206e6f7420737461727465642e0000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206c6566742e00000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6e756d73206e6f74206d6f7265207468616e2032302e00000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f736f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f7567682066756e647320746f2070757263686173652e000000600082015250565b7f6f6e792038303020616464726573732063616e20707265206d696e742e000000600082015250565b7f6f6e776572206d696e74206c696d697420726561636865642e00000000000000600082015250565b614c1d81614287565b8114614c2857600080fd5b50565b614c3481614299565b8114614c3f57600080fd5b50565b614c4b816142a5565b8114614c5657600080fd5b50565b614c62816142f1565b8114614c6d57600080fd5b5056fea2646970667358221220af984bcaeadfa4498e60925e8f433a22c9df3d8a1cd3bf035bec601baddfd29664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007426f74686561640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024248000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Bothead
Arg [1] : symbol (string): BH

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 426f746865616400000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4248000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41926:4102:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35711:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22825:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24384:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23907:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42335:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36351:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25274:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36019:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42258:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42390:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43124:85;;;;;;;;;;;;;:::i;:::-;;42975:141;;;;;;;;;;;;;:::i;:::-;;25684:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42873:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36541:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42423:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43527:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43418:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42295:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22519:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44243:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22249:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9821:94;;;;;;;;;;;;;:::i;:::-;;44544:853;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9170:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42079:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22994:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42683:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42130:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45409:616;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24677:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43315:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42775:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25940:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23169:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42560:111;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42189:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25043:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43221:82;;;;;;;;;;;;;:::i;:::-;;43749:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10070:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35711:224;35813:4;35852:35;35837:50;;;:11;:50;;;;:90;;;;35891:36;35915:11;35891:23;:36::i;:::-;35837:90;35830:97;;35711:224;;;:::o;22825:100::-;22879:13;22912:5;22905:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22825:100;:::o;24384:221::-;24460:7;24488:16;24496:7;24488;:16::i;:::-;24480:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24573:15;:24;24589:7;24573:24;;;;;;;;;;;;;;;;;;;;;24566:31;;24384:221;;;:::o;23907:411::-;23988:13;24004:23;24019:7;24004:14;:23::i;:::-;23988:39;;24052:5;24046:11;;:2;:11;;;;24038:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24146:5;24130:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24155:37;24172:5;24179:12;:10;:12::i;:::-;24155:16;:37::i;:::-;24130:62;24108:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24289:21;24298:2;24302:7;24289:8;:21::i;:::-;23977:341;23907:411;;:::o;42335:48::-;;;;;;;;;;;;;;;;;:::o;36351:113::-;36412:7;36439:10;:17;;;;36432:24;;36351:113;:::o;25274:339::-;25469:41;25488:12;:10;:12::i;:::-;25502:7;25469:18;:41::i;:::-;25461:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25577:28;25587:4;25593:2;25597:7;25577:9;:28::i;:::-;25274:339;;;:::o;36019:256::-;36116:7;36152:23;36169:5;36152:16;:23::i;:::-;36144:5;:31;36136:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36241:12;:19;36254:5;36241:19;;;;;;;;;;;;;;;:26;36261:5;36241:26;;;;;;;;;;;;36234:33;;36019:256;;;;:::o;42258:30::-;;;;;;;;;;;;;:::o;42390:26::-;;;;:::o;43124:85::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43191:10:::1;;;;;;;;;;;43190:11;43177:10;;:24;;;;;;;;;;;;;;;;;;43124:85::o:0;42975:141::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43023:12:::1;43038:21;43023:36;;43078:11;;;;;;;;;;;43070:29;;:38;43100:7;43070:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43012:104;42975:141::o:0;25684:185::-;25822:39;25839:4;25845:2;25849:7;25822:39;;;;;;;;;;;;:16;:39::i;:::-;25684:185;;;:::o;42873:90::-;42916:7;42942:13;:11;:13::i;:::-;42935:20;;42873:90;:::o;36541:233::-;36616:7;36652:30;:28;:30::i;:::-;36644:5;:38;36636:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36749:10;36760:5;36749:17;;;;;;;;:::i;:::-;;;;;;;;;;36742:24;;36541:233;;;:::o;42423:29::-;;;;:::o;43527:90::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43605:4:::1;43595:7;:14;;;;;;;;;;;;:::i;:::-;;43527:90:::0;:::o;43418:97::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43499:8:::1;43488;:19;;;;43418:97:::0;:::o;42295:27::-;;;;;;;;;;;;;:::o;22519:239::-;22591:7;22611:13;22627:7;:16;22635:7;22627:16;;;;;;;;;;;;;;;;;;;;;22611:32;;22679:1;22662:19;;:5;:19;;;;22654:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22745:5;22738:12;;;22519:239;;;:::o;44243:289::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44325:7:::1;;;;;;;;;;;44317:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;44371:15;44389:4;:11;44371:29;;44417:6;44413:112;44433:10;44429:1;:14;44413:112;;;44512:1;44488:12;:21;44501:4;44506:1;44501:7;;;;;;;;:::i;:::-;;;;;;;;44488:21;;;;;;;;;;;;;;;;:25;;;;:::i;:::-;44464:12;:21;44477:4;44482:1;44477:7;;;;;;;;:::i;:::-;;;;;;;;44464:21;;;;;;;;;;;;;;;:49;;;;44445:3;;;;;:::i;:::-;;;;44413:112;;;;44306:226;44243:289:::0;:::o;22249:208::-;22321:7;22366:1;22349:19;;:5;:19;;;;22341:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22433:9;:16;22443:5;22433:16;;;;;;;;;;;;;;;;22426:23;;22249:208;;;:::o;9821:94::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9886:21:::1;9904:1;9886:9;:21::i;:::-;9821:94::o:0;44544:853::-;44608:7;;;;;;;;;;;44600:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;44690:4;44660:12;:26;44673:12;:10;:12::i;:::-;44660:26;;;;;;;;;;;;;;;;:34;;44652:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;44767:3;44753:11;;:17;44745:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;42118:5;44823:13;:11;:13::i;:::-;:28;44815:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;42118:5;44900:4;44884:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:36;;44876:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44962:14;44990:4;44979:8;;:15;;;;:::i;:::-;44962:32;;45026:9;45013;:22;;45005:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45094:6;45090:177;45110:4;45106:1;:8;45090:177;;;45135:7;45145:13;:11;:13::i;:::-;45135:23;;42118:5;45176:2;:17;45173:83;;;45213:27;45223:12;:10;:12::i;:::-;45237:2;45213:9;:27::i;:::-;45173:83;45120:147;45116:3;;;;;:::i;:::-;;;;45090:177;;;;45345:4;45316:12;:26;45329:12;:10;:12::i;:::-;45316:26;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;45287:12;:26;45300:12;:10;:12::i;:::-;45287:26;;;;;;;;;;;;;;;:62;;;;45388:1;45374:11;;:15;;;;:::i;:::-;45360:11;:29;;;;44589:808;44544:853;:::o;9170:87::-;9216:7;9243:6;;;;;;;;;;;9236:13;;9170:87;:::o;42079:44::-;42118:5;42079:44;:::o;22994:104::-;23050:13;23083:7;23076:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22994:104;:::o;42683:80::-;42724:7;42750:5;;42743:12;;42683:80;:::o;42130:40::-;;;;:::o;45409:616::-;45470:10;;;;;;;;;;;45462:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;45529:2;45521:4;:10;;45513:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;42118:5;45577:13;:11;:13::i;:::-;:28;45569:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;42118:5;45654:4;45638:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:36;;45630:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;45716:14;45741:4;45733:5;;:12;;;;:::i;:::-;45716:29;;45777:9;45764;:22;;45756:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45845:6;45841:177;45861:4;45857:1;:8;45841:177;;;45886:7;45896:13;:11;:13::i;:::-;45886:23;;42118:5;45927:2;:17;45924:83;;;45964:27;45974:12;:10;:12::i;:::-;45988:2;45964:9;:27::i;:::-;45924:83;45871:147;45867:3;;;;;:::i;:::-;;;;45841:177;;;;45451:574;45409:616;:::o;24677:295::-;24792:12;:10;:12::i;:::-;24780:24;;:8;:24;;;;24772:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24892:8;24847:18;:32;24866:12;:10;:12::i;:::-;24847:32;;;;;;;;;;;;;;;:42;24880:8;24847:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24945:8;24916:48;;24931:12;:10;:12::i;:::-;24916:48;;;24955:8;24916:48;;;;;;:::i;:::-;;;;;;;;24677:295;;:::o;43315:91::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43390:8:::1;43382:5;:16;;;;43315:91:::0;:::o;42775:86::-;42819:7;42845:8;;42838:15;;42775:86;:::o;25940:328::-;26115:41;26134:12;:10;:12::i;:::-;26148:7;26115:18;:41::i;:::-;26107:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26221:39;26235:4;26241:2;26245:7;26254:5;26221:13;:39::i;:::-;25940:328;;;;:::o;23169:334::-;23242:13;23276:16;23284:7;23276;:16::i;:::-;23268:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23357:21;23381:10;:8;:10::i;:::-;23357:34;;23433:1;23415:7;23409:21;:25;:86;;;;;;;;;;;;;;;;;23461:7;23470:18;:7;:16;:18::i;:::-;23444:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23409:86;23402:93;;;23169:334;;;:::o;42560:111::-;42611:7;42637:12;:26;42650:12;:10;:12::i;:::-;42637:26;;;;;;;;;;;;;;;;42630:33;;42560:111;:::o;42189:43::-;;;;:::o;25043:164::-;25140:4;25164:18;:25;25183:5;25164:25;;;;;;;;;;;;;;;:35;25190:8;25164:35;;;;;;;;;;;;;;;;;;;;;;;;;25157:42;;25043:164;;;;:::o;43221:82::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43288:7:::1;;;;;;;;;;;43287:8;43277:7;;:18;;;;;;;;;;;;;;;;;;43221:82::o:0;43749:482::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43839:3:::1;43831:4;43814:14;;:21;;;;:::i;:::-;:28;;43806:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;42118:5;43907:4;43891:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:35;43883:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43972:6;43968:207;43988:4;43984:1;:8;43968:207;;;44013:7;44023:13;:11;:13::i;:::-;44013:23;;42118:5;44054:2;:17;44051:113;;;44091:57;44101:42;44145:2;44091:9;:57::i;:::-;44051:113;43998:177;43994:3;;;;;:::i;:::-;;;;43968:207;;;;44219:4;44202:14;;:21;;;;:::i;:::-;44185:14;:38;;;;43749:482:::0;:::o;10070:192::-;9401:12;:10;:12::i;:::-;9390:23;;:7;:5;:7::i;:::-;:23;;;9382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10179:1:::1;10159:22;;:8;:22;;;;10151:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10235:19;10245:8;10235:9;:19::i;:::-;10070:192:::0;:::o;21880:305::-;21982:4;22034:25;22019:40;;;:11;:40;;;;:105;;;;22091:33;22076:48;;;:11;:48;;;;22019:105;:158;;;;22141:36;22165:11;22141:23;:36::i;:::-;22019:158;21999:178;;21880:305;;;:::o;27778:127::-;27843:4;27895:1;27867:30;;:7;:16;27875:7;27867:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27860:37;;27778:127;;;:::o;8030:98::-;8083:7;8110:10;8103:17;;8030:98;:::o;31760:174::-;31862:2;31835:15;:24;31851:7;31835:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31918:7;31914:2;31880:46;;31889:23;31904:7;31889:14;:23::i;:::-;31880:46;;;;;;;;;;;;31760:174;;:::o;28072:348::-;28165:4;28190:16;28198:7;28190;:16::i;:::-;28182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28266:13;28282:23;28297:7;28282:14;:23::i;:::-;28266:39;;28335:5;28324:16;;:7;:16;;;:51;;;;28368:7;28344:31;;:20;28356:7;28344:11;:20::i;:::-;:31;;;28324:51;:87;;;;28379:32;28396:5;28403:7;28379:16;:32::i;:::-;28324:87;28316:96;;;28072:348;;;;:::o;31064:578::-;31223:4;31196:31;;:23;31211:7;31196:14;:23::i;:::-;:31;;;31188:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31306:1;31292:16;;:2;:16;;;;31284:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31362:39;31383:4;31389:2;31393:7;31362:20;:39::i;:::-;31466:29;31483:1;31487:7;31466:8;:29::i;:::-;31527:1;31508:9;:15;31518:4;31508:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31556:1;31539:9;:13;31549:2;31539:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31587:2;31568:7;:16;31576:7;31568:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31626:7;31622:2;31607:27;;31616:4;31607:27;;;;;;;;;;;;31064:578;;;:::o;10270:173::-;10326:16;10345:6;;;;;;;;;;;10326:25;;10371:8;10362:6;;:17;;;;;;;;;;;;;;;;;;10426:8;10395:40;;10416:8;10395:40;;;;;;;;;;;;10315:128;10270:173;:::o;28762:110::-;28838:26;28848:2;28852:7;28838:26;;;;;;;;;;;;:9;:26::i;:::-;28762:110;;:::o;27150:315::-;27307:28;27317:4;27323:2;27327:7;27307:9;:28::i;:::-;27354:48;27377:4;27383:2;27387:7;27396:5;27354:22;:48::i;:::-;27346:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27150:315;;;;:::o;43629:108::-;43689:13;43722:7;43715:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43629:108;:::o;5726:723::-;5782:13;6012:1;6003:5;:10;5999:53;;;6030:10;;;;;;;;;;;;;;;;;;;;;5999:53;6062:12;6077:5;6062:20;;6093:14;6118:78;6133:1;6125:4;:9;6118:78;;6151:8;;;;;:::i;:::-;;;;6182:2;6174:10;;;;;:::i;:::-;;;6118:78;;;6206:19;6238:6;6228:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6206:39;;6256:154;6272:1;6263:5;:10;6256:154;;6300:1;6290:11;;;;;:::i;:::-;;;6367:2;6359:5;:10;;;;:::i;:::-;6346:2;:24;;;;:::i;:::-;6333:39;;6316:6;6323;6316:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6396:2;6387:11;;;;;:::i;:::-;;;6256:154;;;6434:6;6420:21;;;;;5726:723;;;;:::o;20487:157::-;20572:4;20611:25;20596:40;;;:11;:40;;;;20589:47;;20487:157;;;:::o;37387:589::-;37531:45;37558:4;37564:2;37568:7;37531:26;:45::i;:::-;37609:1;37593:18;;:4;:18;;;37589:187;;;37628:40;37660:7;37628:31;:40::i;:::-;37589:187;;;37698:2;37690:10;;:4;:10;;;37686:90;;37717:47;37750:4;37756:7;37717:32;:47::i;:::-;37686:90;37589:187;37804:1;37790:16;;:2;:16;;;37786:183;;;37823:45;37860:7;37823:36;:45::i;:::-;37786:183;;;37896:4;37890:10;;:2;:10;;;37886:83;;37917:40;37945:2;37949:7;37917:27;:40::i;:::-;37886:83;37786:183;37387:589;;;:::o;29099:321::-;29229:18;29235:2;29239:7;29229:5;:18::i;:::-;29280:54;29311:1;29315:2;29319:7;29328:5;29280:22;:54::i;:::-;29258:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29099:321;;;:::o;32499:803::-;32654:4;32675:15;:2;:13;;;:15::i;:::-;32671:624;;;32727:2;32711:36;;;32748:12;:10;:12::i;:::-;32762:4;32768:7;32777:5;32711:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32707:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32974:1;32957:6;:13;:18;32953:272;;;33000:60;;;;;;;;;;:::i;:::-;;;;;;;;32953:272;33175:6;33169:13;33160:6;33156:2;33152:15;33145:38;32707:533;32844:45;;;32834:55;;;:6;:55;;;;32827:62;;;;;32671:624;33279:4;33272:11;;32499:803;;;;;;;:::o;33874:126::-;;;;:::o;38699:164::-;38803:10;:17;;;;38776:15;:24;38792:7;38776:24;;;;;;;;;;;:44;;;;38831:10;38847:7;38831:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38699:164;:::o;39490:988::-;39756:22;39806:1;39781:22;39798:4;39781:16;:22::i;:::-;:26;;;;:::i;:::-;39756:51;;39818:18;39839:17;:26;39857:7;39839:26;;;;;;;;;;;;39818:47;;39986:14;39972:10;:28;39968:328;;40017:19;40039:12;:18;40052:4;40039:18;;;;;;;;;;;;;;;:34;40058:14;40039:34;;;;;;;;;;;;40017:56;;40123:11;40090:12;:18;40103:4;40090:18;;;;;;;;;;;;;;;:30;40109:10;40090:30;;;;;;;;;;;:44;;;;40240:10;40207:17;:30;40225:11;40207:30;;;;;;;;;;;:43;;;;40002:294;39968:328;40392:17;:26;40410:7;40392:26;;;;;;;;;;;40385:33;;;40436:12;:18;40449:4;40436:18;;;;;;;;;;;;;;;:34;40455:14;40436:34;;;;;;;;;;;40429:41;;;39571:907;;39490:988;;:::o;40773:1079::-;41026:22;41071:1;41051:10;:17;;;;:21;;;;:::i;:::-;41026:46;;41083:18;41104:15;:24;41120:7;41104:24;;;;;;;;;;;;41083:45;;41455:19;41477:10;41488:14;41477:26;;;;;;;;:::i;:::-;;;;;;;;;;41455:48;;41541:11;41516:10;41527;41516:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;41652:10;41621:15;:28;41637:11;41621:28;;;;;;;;;;;:41;;;;41793:15;:24;41809:7;41793:24;;;;;;;;;;;41786:31;;;41828:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40844:1008;;;40773:1079;:::o;38277:221::-;38362:14;38379:20;38396:2;38379:16;:20::i;:::-;38362:37;;38437:7;38410:12;:16;38423:2;38410:16;;;;;;;;;;;;;;;:24;38427:6;38410:24;;;;;;;;;;;:34;;;;38484:6;38455:17;:26;38473:7;38455:26;;;;;;;;;;;:35;;;;38351:147;38277:221;;:::o;29756:382::-;29850:1;29836:16;;:2;:16;;;;29828:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29909:16;29917:7;29909;:16::i;:::-;29908:17;29900:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29971:45;30000:1;30004:2;30008:7;29971:20;:45::i;:::-;30046:1;30029:9;:13;30039:2;30029:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30077:2;30058:7;:16;30066:7;30058:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30122:7;30118:2;30097:33;;30114:1;30097:33;;;;;;;;;;;;29756:382;;:::o;12659:387::-;12719:4;12927:12;12994:7;12982:20;12974:28;;13037:1;13030:4;:8;13023:15;;;12659:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:327::-;7361:6;7410:2;7398:9;7389:7;7385:23;7381:32;7378:119;;;7416:79;;:::i;:::-;7378:119;7536:1;7561:52;7605:7;7596:6;7585:9;7581:22;7561:52;:::i;:::-;7551:62;;7507:116;7303:327;;;;:::o;7636:349::-;7705:6;7754:2;7742:9;7733:7;7729:23;7725:32;7722:119;;;7760:79;;:::i;:::-;7722:119;7880:1;7905:63;7960:7;7951:6;7940:9;7936:22;7905:63;:::i;:::-;7895:73;;7851:127;7636:349;;;;:::o;7991:509::-;8060:6;8109:2;8097:9;8088:7;8084:23;8080:32;8077:119;;;8115:79;;:::i;:::-;8077:119;8263:1;8252:9;8248:17;8235:31;8293:18;8285:6;8282:30;8279:117;;;8315:79;;:::i;:::-;8279:117;8420:63;8475:7;8466:6;8455:9;8451:22;8420:63;:::i;:::-;8410:73;;8206:287;7991:509;;;;:::o;8506:329::-;8565:6;8614:2;8602:9;8593:7;8589:23;8585:32;8582:119;;;8620:79;;:::i;:::-;8582:119;8740:1;8765:53;8810:7;8801:6;8790:9;8786:22;8765:53;:::i;:::-;8755:63;;8711:117;8506:329;;;;:::o;8841:118::-;8928:24;8946:5;8928:24;:::i;:::-;8923:3;8916:37;8841:118;;:::o;8965:109::-;9046:21;9061:5;9046:21;:::i;:::-;9041:3;9034:34;8965:109;;:::o;9080:360::-;9166:3;9194:38;9226:5;9194:38;:::i;:::-;9248:70;9311:6;9306:3;9248:70;:::i;:::-;9241:77;;9327:52;9372:6;9367:3;9360:4;9353:5;9349:16;9327:52;:::i;:::-;9404:29;9426:6;9404:29;:::i;:::-;9399:3;9395:39;9388:46;;9170:270;9080:360;;;;:::o;9446:364::-;9534:3;9562:39;9595:5;9562:39;:::i;:::-;9617:71;9681:6;9676:3;9617:71;:::i;:::-;9610:78;;9697:52;9742:6;9737:3;9730:4;9723:5;9719:16;9697:52;:::i;:::-;9774:29;9796:6;9774:29;:::i;:::-;9769:3;9765:39;9758:46;;9538:272;9446:364;;;;:::o;9816:377::-;9922:3;9950:39;9983:5;9950:39;:::i;:::-;10005:89;10087:6;10082:3;10005:89;:::i;:::-;9998:96;;10103:52;10148:6;10143:3;10136:4;10129:5;10125:16;10103:52;:::i;:::-;10180:6;10175:3;10171:16;10164:23;;9926:267;9816:377;;;;:::o;10199:366::-;10341:3;10362:67;10426:2;10421:3;10362:67;:::i;:::-;10355:74;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10199:366;;;:::o;10571:::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:::-;11829:3;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11926:93;12015:3;11926:93;:::i;:::-;12044:2;12039:3;12035:12;12028:19;;11687:366;;;:::o;12059:::-;12201:3;12222:67;12286:2;12281:3;12222:67;:::i;:::-;12215:74;;12298:93;12387:3;12298:93;:::i;:::-;12416:2;12411:3;12407:12;12400:19;;12059:366;;;:::o;12431:::-;12573:3;12594:67;12658:2;12653:3;12594:67;:::i;:::-;12587:74;;12670:93;12759:3;12670:93;:::i;:::-;12788:2;12783:3;12779:12;12772:19;;12431:366;;;:::o;12803:::-;12945:3;12966:67;13030:2;13025:3;12966:67;:::i;:::-;12959:74;;13042:93;13131:3;13042:93;:::i;:::-;13160:2;13155:3;13151:12;13144:19;;12803:366;;;:::o;13175:::-;13317:3;13338:67;13402:2;13397:3;13338:67;:::i;:::-;13331:74;;13414:93;13503:3;13414:93;:::i;:::-;13532:2;13527:3;13523:12;13516:19;;13175:366;;;:::o;13547:::-;13689:3;13710:67;13774:2;13769:3;13710:67;:::i;:::-;13703:74;;13786:93;13875:3;13786:93;:::i;:::-;13904:2;13899:3;13895:12;13888:19;;13547:366;;;:::o;13919:::-;14061:3;14082:67;14146:2;14141:3;14082:67;:::i;:::-;14075:74;;14158:93;14247:3;14158:93;:::i;:::-;14276:2;14271:3;14267:12;14260:19;;13919:366;;;:::o;14291:::-;14433:3;14454:67;14518:2;14513:3;14454:67;:::i;:::-;14447:74;;14530:93;14619:3;14530:93;:::i;:::-;14648:2;14643:3;14639:12;14632:19;;14291:366;;;:::o;14663:::-;14805:3;14826:67;14890:2;14885:3;14826:67;:::i;:::-;14819:74;;14902:93;14991:3;14902:93;:::i;:::-;15020:2;15015:3;15011:12;15004:19;;14663:366;;;:::o;15035:::-;15177:3;15198:67;15262:2;15257:3;15198:67;:::i;:::-;15191:74;;15274:93;15363:3;15274:93;:::i;:::-;15392:2;15387:3;15383:12;15376:19;;15035:366;;;:::o;15407:::-;15549:3;15570:67;15634:2;15629:3;15570:67;:::i;:::-;15563:74;;15646:93;15735:3;15646:93;:::i;:::-;15764:2;15759:3;15755:12;15748:19;;15407:366;;;:::o;15779:::-;15921:3;15942:67;16006:2;16001:3;15942:67;:::i;:::-;15935:74;;16018:93;16107:3;16018:93;:::i;:::-;16136:2;16131:3;16127:12;16120:19;;15779:366;;;:::o;16151:::-;16293:3;16314:67;16378:2;16373:3;16314:67;:::i;:::-;16307:74;;16390:93;16479:3;16390:93;:::i;:::-;16508:2;16503:3;16499:12;16492:19;;16151:366;;;:::o;16523:::-;16665:3;16686:67;16750:2;16745:3;16686:67;:::i;:::-;16679:74;;16762:93;16851:3;16762:93;:::i;:::-;16880:2;16875:3;16871:12;16864:19;;16523:366;;;:::o;16895:::-;17037:3;17058:67;17122:2;17117:3;17058:67;:::i;:::-;17051:74;;17134:93;17223:3;17134:93;:::i;:::-;17252:2;17247:3;17243:12;17236:19;;16895:366;;;:::o;17267:::-;17409:3;17430:67;17494:2;17489:3;17430:67;:::i;:::-;17423:74;;17506:93;17595:3;17506:93;:::i;:::-;17624:2;17619:3;17615:12;17608:19;;17267:366;;;:::o;17639:::-;17781:3;17802:67;17866:2;17861:3;17802:67;:::i;:::-;17795:74;;17878:93;17967:3;17878:93;:::i;:::-;17996:2;17991:3;17987:12;17980:19;;17639:366;;;:::o;18011:365::-;18153:3;18174:66;18238:1;18233:3;18174:66;:::i;:::-;18167:73;;18249:93;18338:3;18249:93;:::i;:::-;18367:2;18362:3;18358:12;18351:19;;18011:365;;;:::o;18382:366::-;18524:3;18545:67;18609:2;18604:3;18545:67;:::i;:::-;18538:74;;18621:93;18710:3;18621:93;:::i;:::-;18739:2;18734:3;18730:12;18723:19;;18382:366;;;:::o;18754:::-;18896:3;18917:67;18981:2;18976:3;18917:67;:::i;:::-;18910:74;;18993:93;19082:3;18993:93;:::i;:::-;19111:2;19106:3;19102:12;19095:19;;18754:366;;;:::o;19126:::-;19268:3;19289:67;19353:2;19348:3;19289:67;:::i;:::-;19282:74;;19365:93;19454:3;19365:93;:::i;:::-;19483:2;19478:3;19474:12;19467:19;;19126:366;;;:::o;19498:::-;19640:3;19661:67;19725:2;19720:3;19661:67;:::i;:::-;19654:74;;19737:93;19826:3;19737:93;:::i;:::-;19855:2;19850:3;19846:12;19839:19;;19498:366;;;:::o;19870:::-;20012:3;20033:67;20097:2;20092:3;20033:67;:::i;:::-;20026:74;;20109:93;20198:3;20109:93;:::i;:::-;20227:2;20222:3;20218:12;20211:19;;19870:366;;;:::o;20242:::-;20384:3;20405:67;20469:2;20464:3;20405:67;:::i;:::-;20398:74;;20481:93;20570:3;20481:93;:::i;:::-;20599:2;20594:3;20590:12;20583:19;;20242:366;;;:::o;20614:118::-;20701:24;20719:5;20701:24;:::i;:::-;20696:3;20689:37;20614:118;;:::o;20738:435::-;20918:3;20940:95;21031:3;21022:6;20940:95;:::i;:::-;20933:102;;21052:95;21143:3;21134:6;21052:95;:::i;:::-;21045:102;;21164:3;21157:10;;20738:435;;;;;:::o;21179:222::-;21272:4;21310:2;21299:9;21295:18;21287:26;;21323:71;21391:1;21380:9;21376:17;21367:6;21323:71;:::i;:::-;21179:222;;;;:::o;21407:640::-;21602:4;21640:3;21629:9;21625:19;21617:27;;21654:71;21722:1;21711:9;21707:17;21698:6;21654:71;:::i;:::-;21735:72;21803:2;21792:9;21788:18;21779:6;21735:72;:::i;:::-;21817;21885:2;21874:9;21870:18;21861:6;21817:72;:::i;:::-;21936:9;21930:4;21926:20;21921:2;21910:9;21906:18;21899:48;21964:76;22035:4;22026:6;21964:76;:::i;:::-;21956:84;;21407:640;;;;;;;:::o;22053:210::-;22140:4;22178:2;22167:9;22163:18;22155:26;;22191:65;22253:1;22242:9;22238:17;22229:6;22191:65;:::i;:::-;22053:210;;;;:::o;22269:313::-;22382:4;22420:2;22409:9;22405:18;22397:26;;22469:9;22463:4;22459:20;22455:1;22444:9;22440:17;22433:47;22497:78;22570:4;22561:6;22497:78;:::i;:::-;22489:86;;22269:313;;;;:::o;22588:419::-;22754:4;22792:2;22781:9;22777:18;22769:26;;22841:9;22835:4;22831:20;22827:1;22816:9;22812:17;22805:47;22869:131;22995:4;22869:131;:::i;:::-;22861:139;;22588:419;;;:::o;23013:::-;23179:4;23217:2;23206:9;23202:18;23194:26;;23266:9;23260:4;23256:20;23252:1;23241:9;23237:17;23230:47;23294:131;23420:4;23294:131;:::i;:::-;23286:139;;23013:419;;;:::o;23438:::-;23604:4;23642:2;23631:9;23627:18;23619:26;;23691:9;23685:4;23681:20;23677:1;23666:9;23662:17;23655:47;23719:131;23845:4;23719:131;:::i;:::-;23711:139;;23438:419;;;:::o;23863:::-;24029:4;24067:2;24056:9;24052:18;24044:26;;24116:9;24110:4;24106:20;24102:1;24091:9;24087:17;24080:47;24144:131;24270:4;24144:131;:::i;:::-;24136:139;;23863:419;;;:::o;24288:::-;24454:4;24492:2;24481:9;24477:18;24469:26;;24541:9;24535:4;24531:20;24527:1;24516:9;24512:17;24505:47;24569:131;24695:4;24569:131;:::i;:::-;24561:139;;24288:419;;;:::o;24713:::-;24879:4;24917:2;24906:9;24902:18;24894:26;;24966:9;24960:4;24956:20;24952:1;24941:9;24937:17;24930:47;24994:131;25120:4;24994:131;:::i;:::-;24986:139;;24713:419;;;:::o;25138:::-;25304:4;25342:2;25331:9;25327:18;25319:26;;25391:9;25385:4;25381:20;25377:1;25366:9;25362:17;25355:47;25419:131;25545:4;25419:131;:::i;:::-;25411:139;;25138:419;;;:::o;25563:::-;25729:4;25767:2;25756:9;25752:18;25744:26;;25816:9;25810:4;25806:20;25802:1;25791:9;25787:17;25780:47;25844:131;25970:4;25844:131;:::i;:::-;25836:139;;25563:419;;;:::o;25988:::-;26154:4;26192:2;26181:9;26177:18;26169:26;;26241:9;26235:4;26231:20;26227:1;26216:9;26212:17;26205:47;26269:131;26395:4;26269:131;:::i;:::-;26261:139;;25988:419;;;:::o;26413:::-;26579:4;26617:2;26606:9;26602:18;26594:26;;26666:9;26660:4;26656:20;26652:1;26641:9;26637:17;26630:47;26694:131;26820:4;26694:131;:::i;:::-;26686:139;;26413:419;;;:::o;26838:::-;27004:4;27042:2;27031:9;27027:18;27019:26;;27091:9;27085:4;27081:20;27077:1;27066:9;27062:17;27055:47;27119:131;27245:4;27119:131;:::i;:::-;27111:139;;26838:419;;;:::o;27263:::-;27429:4;27467:2;27456:9;27452:18;27444:26;;27516:9;27510:4;27506:20;27502:1;27491:9;27487:17;27480:47;27544:131;27670:4;27544:131;:::i;:::-;27536:139;;27263:419;;;:::o;27688:::-;27854:4;27892:2;27881:9;27877:18;27869:26;;27941:9;27935:4;27931:20;27927:1;27916:9;27912:17;27905:47;27969:131;28095:4;27969:131;:::i;:::-;27961:139;;27688:419;;;:::o;28113:::-;28279:4;28317:2;28306:9;28302:18;28294:26;;28366:9;28360:4;28356:20;28352:1;28341:9;28337:17;28330:47;28394:131;28520:4;28394:131;:::i;:::-;28386:139;;28113:419;;;:::o;28538:::-;28704:4;28742:2;28731:9;28727:18;28719:26;;28791:9;28785:4;28781:20;28777:1;28766:9;28762:17;28755:47;28819:131;28945:4;28819:131;:::i;:::-;28811:139;;28538:419;;;:::o;28963:::-;29129:4;29167:2;29156:9;29152:18;29144:26;;29216:9;29210:4;29206:20;29202:1;29191:9;29187:17;29180:47;29244:131;29370:4;29244:131;:::i;:::-;29236:139;;28963:419;;;:::o;29388:::-;29554:4;29592:2;29581:9;29577:18;29569:26;;29641:9;29635:4;29631:20;29627:1;29616:9;29612:17;29605:47;29669:131;29795:4;29669:131;:::i;:::-;29661:139;;29388:419;;;:::o;29813:::-;29979:4;30017:2;30006:9;30002:18;29994:26;;30066:9;30060:4;30056:20;30052:1;30041:9;30037:17;30030:47;30094:131;30220:4;30094:131;:::i;:::-;30086:139;;29813:419;;;:::o;30238:::-;30404:4;30442:2;30431:9;30427:18;30419:26;;30491:9;30485:4;30481:20;30477:1;30466:9;30462:17;30455:47;30519:131;30645:4;30519:131;:::i;:::-;30511:139;;30238:419;;;:::o;30663:::-;30829:4;30867:2;30856:9;30852:18;30844:26;;30916:9;30910:4;30906:20;30902:1;30891:9;30887:17;30880:47;30944:131;31070:4;30944:131;:::i;:::-;30936:139;;30663:419;;;:::o;31088:::-;31254:4;31292:2;31281:9;31277:18;31269:26;;31341:9;31335:4;31331:20;31327:1;31316:9;31312:17;31305:47;31369:131;31495:4;31369:131;:::i;:::-;31361:139;;31088:419;;;:::o;31513:::-;31679:4;31717:2;31706:9;31702:18;31694:26;;31766:9;31760:4;31756:20;31752:1;31741:9;31737:17;31730:47;31794:131;31920:4;31794:131;:::i;:::-;31786:139;;31513:419;;;:::o;31938:::-;32104:4;32142:2;32131:9;32127:18;32119:26;;32191:9;32185:4;32181:20;32177:1;32166:9;32162:17;32155:47;32219:131;32345:4;32219:131;:::i;:::-;32211:139;;31938:419;;;:::o;32363:::-;32529:4;32567:2;32556:9;32552:18;32544:26;;32616:9;32610:4;32606:20;32602:1;32591:9;32587:17;32580:47;32644:131;32770:4;32644:131;:::i;:::-;32636:139;;32363:419;;;:::o;32788:::-;32954:4;32992:2;32981:9;32977:18;32969:26;;33041:9;33035:4;33031:20;33027:1;33016:9;33012:17;33005:47;33069:131;33195:4;33069:131;:::i;:::-;33061:139;;32788:419;;;:::o;33213:::-;33379:4;33417:2;33406:9;33402:18;33394:26;;33466:9;33460:4;33456:20;33452:1;33441:9;33437:17;33430:47;33494:131;33620:4;33494:131;:::i;:::-;33486:139;;33213:419;;;:::o;33638:::-;33804:4;33842:2;33831:9;33827:18;33819:26;;33891:9;33885:4;33881:20;33877:1;33866:9;33862:17;33855:47;33919:131;34045:4;33919:131;:::i;:::-;33911:139;;33638:419;;;:::o;34063:::-;34229:4;34267:2;34256:9;34252:18;34244:26;;34316:9;34310:4;34306:20;34302:1;34291:9;34287:17;34280:47;34344:131;34470:4;34344:131;:::i;:::-;34336:139;;34063:419;;;:::o;34488:222::-;34581:4;34619:2;34608:9;34604:18;34596:26;;34632:71;34700:1;34689:9;34685:17;34676:6;34632:71;:::i;:::-;34488:222;;;;:::o;34716:129::-;34750:6;34777:20;;:::i;:::-;34767:30;;34806:33;34834:4;34826:6;34806:33;:::i;:::-;34716:129;;;:::o;34851:75::-;34884:6;34917:2;34911:9;34901:19;;34851:75;:::o;34932:311::-;35009:4;35099:18;35091:6;35088:30;35085:56;;;35121:18;;:::i;:::-;35085:56;35171:4;35163:6;35159:17;35151:25;;35231:4;35225;35221:15;35213:23;;34932:311;;;:::o;35249:307::-;35310:4;35400:18;35392:6;35389:30;35386:56;;;35422:18;;:::i;:::-;35386:56;35460:29;35482:6;35460:29;:::i;:::-;35452:37;;35544:4;35538;35534:15;35526:23;;35249:307;;;:::o;35562:308::-;35624:4;35714:18;35706:6;35703:30;35700:56;;;35736:18;;:::i;:::-;35700:56;35774:29;35796:6;35774:29;:::i;:::-;35766:37;;35858:4;35852;35848:15;35840:23;;35562:308;;;:::o;35876:98::-;35927:6;35961:5;35955:12;35945:22;;35876:98;;;:::o;35980:99::-;36032:6;36066:5;36060:12;36050:22;;35980:99;;;:::o;36085:168::-;36168:11;36202:6;36197:3;36190:19;36242:4;36237:3;36233:14;36218:29;;36085:168;;;;:::o;36259:169::-;36343:11;36377:6;36372:3;36365:19;36417:4;36412:3;36408:14;36393:29;;36259:169;;;;:::o;36434:148::-;36536:11;36573:3;36558:18;;36434:148;;;;:::o;36588:305::-;36628:3;36647:20;36665:1;36647:20;:::i;:::-;36642:25;;36681:20;36699:1;36681:20;:::i;:::-;36676:25;;36835:1;36767:66;36763:74;36760:1;36757:81;36754:107;;;36841:18;;:::i;:::-;36754:107;36885:1;36882;36878:9;36871:16;;36588:305;;;;:::o;36899:185::-;36939:1;36956:20;36974:1;36956:20;:::i;:::-;36951:25;;36990:20;37008:1;36990:20;:::i;:::-;36985:25;;37029:1;37019:35;;37034:18;;:::i;:::-;37019:35;37076:1;37073;37069:9;37064:14;;36899:185;;;;:::o;37090:348::-;37130:7;37153:20;37171:1;37153:20;:::i;:::-;37148:25;;37187:20;37205:1;37187:20;:::i;:::-;37182:25;;37375:1;37307:66;37303:74;37300:1;37297:81;37292:1;37285:9;37278:17;37274:105;37271:131;;;37382:18;;:::i;:::-;37271:131;37430:1;37427;37423:9;37412:20;;37090:348;;;;:::o;37444:191::-;37484:4;37504:20;37522:1;37504:20;:::i;:::-;37499:25;;37538:20;37556:1;37538:20;:::i;:::-;37533:25;;37577:1;37574;37571:8;37568:34;;;37582:18;;:::i;:::-;37568:34;37627:1;37624;37620:9;37612:17;;37444:191;;;;:::o;37641:96::-;37678:7;37707:24;37725:5;37707:24;:::i;:::-;37696:35;;37641:96;;;:::o;37743:90::-;37777:7;37820:5;37813:13;37806:21;37795:32;;37743:90;;;:::o;37839:149::-;37875:7;37915:66;37908:5;37904:78;37893:89;;37839:149;;;:::o;37994:126::-;38031:7;38071:42;38064:5;38060:54;38049:65;;37994:126;;;:::o;38126:77::-;38163:7;38192:5;38181:16;;38126:77;;;:::o;38209:154::-;38293:6;38288:3;38283;38270:30;38355:1;38346:6;38341:3;38337:16;38330:27;38209:154;;;:::o;38369:307::-;38437:1;38447:113;38461:6;38458:1;38455:13;38447:113;;;38546:1;38541:3;38537:11;38531:18;38527:1;38522:3;38518:11;38511:39;38483:2;38480:1;38476:10;38471:15;;38447:113;;;38578:6;38575:1;38572:13;38569:101;;;38658:1;38649:6;38644:3;38640:16;38633:27;38569:101;38418:258;38369:307;;;:::o;38682:320::-;38726:6;38763:1;38757:4;38753:12;38743:22;;38810:1;38804:4;38800:12;38831:18;38821:81;;38887:4;38879:6;38875:17;38865:27;;38821:81;38949:2;38941:6;38938:14;38918:18;38915:38;38912:84;;;38968:18;;:::i;:::-;38912:84;38733:269;38682:320;;;:::o;39008:281::-;39091:27;39113:4;39091:27;:::i;:::-;39083:6;39079:40;39221:6;39209:10;39206:22;39185:18;39173:10;39170:34;39167:62;39164:88;;;39232:18;;:::i;:::-;39164:88;39272:10;39268:2;39261:22;39051:238;39008:281;;:::o;39295:233::-;39334:3;39357:24;39375:5;39357:24;:::i;:::-;39348:33;;39403:66;39396:5;39393:77;39390:103;;;39473:18;;:::i;:::-;39390:103;39520:1;39513:5;39509:13;39502:20;;39295:233;;;:::o;39534:176::-;39566:1;39583:20;39601:1;39583:20;:::i;:::-;39578:25;;39617:20;39635:1;39617:20;:::i;:::-;39612:25;;39656:1;39646:35;;39661:18;;:::i;:::-;39646:35;39702:1;39699;39695:9;39690:14;;39534:176;;;;:::o;39716:180::-;39764:77;39761:1;39754:88;39861:4;39858:1;39851:15;39885:4;39882:1;39875:15;39902:180;39950:77;39947:1;39940:88;40047:4;40044:1;40037:15;40071:4;40068:1;40061:15;40088:180;40136:77;40133:1;40126:88;40233:4;40230:1;40223:15;40257:4;40254:1;40247:15;40274:180;40322:77;40319:1;40312:88;40419:4;40416:1;40409:15;40443:4;40440:1;40433:15;40460:180;40508:77;40505:1;40498:88;40605:4;40602:1;40595:15;40629:4;40626:1;40619:15;40646:180;40694:77;40691:1;40684:88;40791:4;40788:1;40781:15;40815:4;40812:1;40805:15;40832:117;40941:1;40938;40931:12;40955:117;41064:1;41061;41054:12;41078:117;41187:1;41184;41177:12;41201:117;41310:1;41307;41300:12;41324:117;41433:1;41430;41423:12;41447:102;41488:6;41539:2;41535:7;41530:2;41523:5;41519:14;41515:28;41505:38;;41447:102;;;:::o;41555:222::-;41695:34;41691:1;41683:6;41679:14;41672:58;41764:5;41759:2;41751:6;41747:15;41740:30;41555:222;:::o;41783:230::-;41923:34;41919:1;41911:6;41907:14;41900:58;41992:13;41987:2;41979:6;41975:15;41968:38;41783:230;:::o;42019:237::-;42159:34;42155:1;42147:6;42143:14;42136:58;42228:20;42223:2;42215:6;42211:15;42204:45;42019:237;:::o;42262:225::-;42402:34;42398:1;42390:6;42386:14;42379:58;42471:8;42466:2;42458:6;42454:15;42447:33;42262:225;:::o;42493:167::-;42633:19;42629:1;42621:6;42617:14;42610:43;42493:167;:::o;42666:178::-;42806:30;42802:1;42794:6;42790:14;42783:54;42666:178;:::o;42850:166::-;42990:18;42986:1;42978:6;42974:14;42967:42;42850:166;:::o;43022:223::-;43162:34;43158:1;43150:6;43146:14;43139:58;43231:6;43226:2;43218:6;43214:15;43207:31;43022:223;:::o;43251:175::-;43391:27;43387:1;43379:6;43375:14;43368:51;43251:175;:::o;43432:171::-;43572:23;43568:1;43560:6;43556:14;43549:47;43432:171;:::o;43609:231::-;43749:34;43745:1;43737:6;43733:14;43726:58;43818:14;43813:2;43805:6;43801:15;43794:39;43609:231;:::o;43846:243::-;43986:34;43982:1;43974:6;43970:14;43963:58;44055:26;44050:2;44042:6;44038:15;44031:51;43846:243;:::o;44095:229::-;44235:34;44231:1;44223:6;44219:14;44212:58;44304:12;44299:2;44291:6;44287:15;44280:37;44095:229;:::o;44330:228::-;44470:34;44466:1;44458:6;44454:14;44447:58;44539:11;44534:2;44526:6;44522:15;44515:36;44330:228;:::o;44564:166::-;44704:18;44700:1;44692:6;44688:14;44681:42;44564:166;:::o;44736:182::-;44876:34;44872:1;44864:6;44860:14;44853:58;44736:182;:::o;44924:231::-;45064:34;45060:1;45052:6;45048:14;45041:58;45133:14;45128:2;45120:6;45116:15;45109:39;44924:231;:::o;45161:182::-;45301:34;45297:1;45289:6;45285:14;45278:58;45161:182;:::o;45349:172::-;45489:24;45485:1;45477:6;45473:14;45466:48;45349:172;:::o;45527:228::-;45667:34;45663:1;45655:6;45651:14;45644:58;45736:11;45731:2;45723:6;45719:15;45712:36;45527:228;:::o;45761:234::-;45901:34;45897:1;45889:6;45885:14;45878:58;45970:17;45965:2;45957:6;45953:15;45946:42;45761:234;:::o;46001:159::-;46141:11;46137:1;46129:6;46125:14;46118:35;46001:159;:::o;46166:220::-;46306:34;46302:1;46294:6;46290:14;46283:58;46375:3;46370:2;46362:6;46358:15;46351:28;46166:220;:::o;46392:236::-;46532:34;46528:1;46520:6;46516:14;46509:58;46601:19;46596:2;46588:6;46584:15;46577:44;46392:236;:::o;46634:231::-;46774:34;46770:1;46762:6;46758:14;46751:58;46843:14;46838:2;46830:6;46826:15;46819:39;46634:231;:::o;46871:179::-;47011:31;47007:1;46999:6;46995:14;46988:55;46871:179;:::o;47056:::-;47196:31;47192:1;47184:6;47180:14;47173:55;47056:179;:::o;47241:175::-;47381:27;47377:1;47369:6;47365:14;47358:51;47241:175;:::o;47422:122::-;47495:24;47513:5;47495:24;:::i;:::-;47488:5;47485:35;47475:63;;47534:1;47531;47524:12;47475:63;47422:122;:::o;47550:116::-;47620:21;47635:5;47620:21;:::i;:::-;47613:5;47610:32;47600:60;;47656:1;47653;47646:12;47600:60;47550:116;:::o;47672:120::-;47744:23;47761:5;47744:23;:::i;:::-;47737:5;47734:34;47724:62;;47782:1;47779;47772:12;47724:62;47672:120;:::o;47798:122::-;47871:24;47889:5;47871:24;:::i;:::-;47864:5;47861:35;47851:63;;47910:1;47907;47900:12;47851:63;47798:122;:::o

Swarm Source

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