ETH Price: $3,155.53 (+1.16%)
Gas: 2 Gwei

Token

The Wombats (TW)
 

Overview

Max Total Supply

1,300 TW

Holders

746

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
28 TW
0xf502dbe9ec39e44fddb6c69e15ef6d6d63503adc
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:
TheWombats

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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

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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


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

    string private baseURI = "";

    // 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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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


    function _setBaseURI(string memory baseURI_) internal {
        baseURI = baseURI_;
    }
}


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



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract TheWombats is Context, ERC721Enumerable, Ownable {

    using SafeMath for uint256;
 
    uint256 public PRICE = 0.07 ether;

    uint256 public MAX_PURCHASE = 20;

    uint256 public constant MAX_TOKENS = 3000;

    mapping (address => uint256) public whitelistMinted;

    address public WHITELIST_SIGNER;

    bool public saleIsActive = false;

    constructor () ERC721("The Wombats", "TW") {}

    /* function to change de price */ 
    function changePrice(uint256 price) public onlyOwner {
        PRICE = price;
    }

    /* function to change the max quantity to mint in one transaction */
    function changeMaxPurchase(uint256 max) public onlyOwner {
        MAX_PURCHASE = max;
    }

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

    function setWhiteListSigner(address signer) public onlyOwner {
        WHITELIST_SIGNER = signer;
    }

    function toggleSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    /**
     * Set some Wombats
     */
    function reserve() public onlyOwner {     
        require(saleIsActive == false, "Impossible reserve a Wombat when sale is active");   
        uint supply = totalSupply();
        for (uint i = 0; i < 20; i++) {
            _safeMint(_msgSender(), supply + i);
        }
    }


    /**
    * Whitelist Mint
    */
    function preMint(uint256 numberOfTokens, uint max, bytes memory signature) public payable {
        bytes32 hash;
        require(WHITELIST_SIGNER != address(0), "Pre-Mint is not available yet");
        require(saleIsActive == false, "Impossible Pre-Mint a Wombat when sale is active");   
        require(numberOfTokens <= MAX_PURCHASE, "Exceed the number of tokens able to mint");
        require(totalSupply() < MAX_TOKENS, "Sold Out");
        require(PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");

        /*
         * keccak256(address,number);
         */
        hash = keccak256(abi.encodePacked(_msgSender(), max));

        /*
         * Check Signature
         */ 
        require(recover(hash,signature) == WHITELIST_SIGNER, "Invalid Signature");

        /*
         * Check max min reached
         */ 
        require(whitelistMinted[_msgSender()].add(numberOfTokens) <= max, "Max mint reached");

        /*
         * Update total minted in preMint state
         */
        whitelistMinted[_msgSender()] = whitelistMinted[_msgSender()].add(numberOfTokens);

        uint supply = totalSupply();
        for(uint i = 0; i < numberOfTokens; i++) {
            _safeMint(_msgSender(), supply+i);
        }
    }


    /**
    * Mint Wombat
    */
    function mint(uint256 numberOfTokens) public payable {
        uint256 ret;
        require(saleIsActive, "Sale must be active to mint The Wombat");
        require(numberOfTokens <= MAX_PURCHASE, "Exceed the number of tokens able to mint");
        require(PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
        require(totalSupply() < MAX_TOKENS, "Sold out");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_TOKENS) {
                _safeMint(_msgSender(), mintIndex);
            } else {
                ret = ret.add(1);
            }
        }
        if (ret > 0) {
            address payable sender = payable(_msgSender());
            sender.transfer(PRICE.mul(ret));
        }
    }



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


    function recover(bytes32 _hash, bytes memory _signed) internal pure returns(address) {
        bytes32 r;
        bytes32 s;
        uint8 v;
        
        assembly {
            r:= mload(add(_signed,32))
            s:= mload(add(_signed,64))
            v:= and(mload(add(_signed,65)) ,255)
        }
        return ecrecover(_hash,v,r,s);
    } 
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SIGNER","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"changeMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"numberOfTokens","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setWhiteListSigner","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600290805190602001906200002b929190620001f9565b5066f8b0a10e470000600c556014600d556000600f60146101000a81548160ff0219169083151502179055503480156200006457600080fd5b506040518060400160405280600b81526020017f54686520576f6d626174730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f54570000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e9929190620001f9565b50806001908051906020019062000102929190620001f9565b50505062000125620001196200012b60201b60201c565b6200013360201b60201c565b6200030e565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020790620002a9565b90600052602060002090601f0160209004810192826200022b576000855562000277565b82601f106200024657805160ff191683800117855562000277565b8280016001018555821562000277579182015b828111156200027657825182559160200191906001019062000259565b5b5090506200028691906200028a565b5090565b5b80821115620002a55760008160009055506001016200028b565b5090565b60006002820490506001821680620002c257607f821691505b60208210811415620002d957620002d8620002df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614c9d806200031e6000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063cd3293de1161006f578063cd3293de14610735578063e985e9c51461074c578063eb8d244414610789578063f2fde38b146107b4578063f47c84c5146107dd57610204565b8063a22cb4651461067d578063a2b40d19146106a6578063b88d4fde146106cf578063c87b56dd146106f857610204565b80638d859f3e116100e75780638d859f3e146105a35780638da5cb5b146105ce57806395d89b41146105f957806398a8cffe14610624578063a0712d681461066157610204565b8063715018a6146105235780637d8966e41461053a5780637f6567f71461055157806384bdb6e01461057a57610204565b8063417b94831161019b57806355f804b31161016a57806355f804b314610439578063622973ca146104625780636352211e1461047e57806370a08231146104bb5780637146bd08146104f857610204565b8063417b94831461037f57806342842e0e146103aa57806342966c68146103d35780634f6ccce7146103fc57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b5780633ccfd60b1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061365c565b610808565b60405161023d9190614364565b60405180910390f35b34801561025257600080fd5b5061025b610882565b60405161026891906143c4565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906136ef565b610914565b6040516102a591906142fd565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613620565b610999565b005b3480156102e357600080fd5b506102ec610ab1565b6040516102f99190614786565b60405180910390f35b34801561030e57600080fd5b506103296004803603810190610324919061351a565b610abe565b005b34801561033757600080fd5b50610352600480360381019061034d9190613620565b610b1e565b60405161035f9190614786565b60405180910390f35b34801561037457600080fd5b5061037d610bc3565b005b34801561038b57600080fd5b50610394610c9b565b6040516103a191906142fd565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc919061351a565b610cc1565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906136ef565b610ce1565b005b34801561040857600080fd5b50610423600480360381019061041e91906136ef565b610d3d565b6040516104309190614786565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b91906136ae565b610dd4565b005b61047c60048036038101906104779190613718565b610e5c565b005b34801561048a57600080fd5b506104a560048036038101906104a091906136ef565b611283565b6040516104b291906142fd565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906134b5565b611335565b6040516104ef9190614786565b60405180910390f35b34801561050457600080fd5b5061050d6113ed565b60405161051a9190614786565b60405180910390f35b34801561052f57600080fd5b506105386113f3565b005b34801561054657600080fd5b5061054f61147b565b005b34801561055d57600080fd5b50610578600480360381019061057391906136ef565b611523565b005b34801561058657600080fd5b506105a1600480360381019061059c91906134b5565b6115a9565b005b3480156105af57600080fd5b506105b8611669565b6040516105c59190614786565b60405180910390f35b3480156105da57600080fd5b506105e361166f565b6040516105f091906142fd565b60405180910390f35b34801561060557600080fd5b5061060e611699565b60405161061b91906143c4565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906134b5565b61172b565b6040516106589190614786565b60405180910390f35b61067b600480360381019061067691906136ef565b611743565b005b34801561068957600080fd5b506106a4600480360381019061069f91906135e4565b61195b565b005b3480156106b257600080fd5b506106cd60048036038101906106c891906136ef565b611971565b005b3480156106db57600080fd5b506106f660048036038101906106f19190613569565b6119f7565b005b34801561070457600080fd5b5061071f600480360381019061071a91906136ef565b611a59565b60405161072c91906143c4565b60405180910390f35b34801561074157600080fd5b5061074a611b83565b005b34801561075857600080fd5b50610773600480360381019061076e91906134de565b611ca0565b6040516107809190614364565b60405180910390f35b34801561079557600080fd5b5061079e611d34565b6040516107ab9190614364565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d691906134b5565b611d47565b005b3480156107e957600080fd5b506107f2611e3f565b6040516107ff9190614786565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087b575061087a82611e45565b5b9050919050565b60606000805461089190614a57565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd90614a57565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b600061091f82611f27565b61095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906145a6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a482611283565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90614646565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a34611f93565b73ffffffffffffffffffffffffffffffffffffffff161480610a635750610a6281610a5d611f93565b611ca0565b5b610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990614526565b60405180910390fd5b610aac8383611f9b565b505050565b6000600980549050905090565b610acf610ac9611f93565b82612054565b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b05906146e6565b60405180910390fd5b610b19838383612132565b505050565b6000610b2983611335565b8210610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906143e6565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bcb611f93565b73ffffffffffffffffffffffffffffffffffffffff16610be961166f565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690614606565b60405180910390fd5b6000610c49611f93565b905060004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c96573d6000803e3d6000fd5b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cdc838383604051806020016040528060008152506119f7565b505050565b610cf2610cec611f93565b82612054565b610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890614766565b60405180910390fd5b610d3a81612399565b50565b6000610d47610ab1565b8210610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614726565b60405180910390fd5b60098281548110610dc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ddc611f93565b73ffffffffffffffffffffffffffffffffffffffff16610dfa61166f565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790614606565b60405180910390fd5b610e59816124b6565b50565b60008073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690614686565b60405180910390fd5b60001515600f60149054906101000a900460ff16151514610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90614746565b60405180910390fd5b600d54841115610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190614666565b60405180910390fd5b610bb8610f95610ab1565b10610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90614426565b60405180910390fd5b34610feb85600c546124d090919063ffffffff16565b111561102c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611023906144e6565b60405180910390fd5b611034611f93565b836040516020016110469291906142ad565b604051602081830303815290604052805190602001209050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110a182846124e6565b73ffffffffffffffffffffffffffffffffffffffff16146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee906145c6565b60405180910390fd5b8261115185600e6000611108611f93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255e90919063ffffffff16565b1115611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906146a6565b60405180910390fd5b6111eb84600e60006111a2611f93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255e90919063ffffffff16565b600e60006111f7611f93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600061123f610ab1565b905060005b8581101561127b57611268611257611f93565b82846112639190614875565b612574565b808061127390614a89565b915050611244565b505050505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390614566565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90614546565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d5481565b6113fb611f93565b73ffffffffffffffffffffffffffffffffffffffff1661141961166f565b73ffffffffffffffffffffffffffffffffffffffff161461146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690614606565b60405180910390fd5b6114796000612592565b565b611483611f93565b73ffffffffffffffffffffffffffffffffffffffff166114a161166f565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90614606565b60405180910390fd5b600f60149054906101000a900460ff1615600f60146101000a81548160ff021916908315150217905550565b61152b611f93565b73ffffffffffffffffffffffffffffffffffffffff1661154961166f565b73ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690614606565b60405180910390fd5b80600d8190555050565b6115b1611f93565b73ffffffffffffffffffffffffffffffffffffffff166115cf61166f565b73ffffffffffffffffffffffffffffffffffffffff1614611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90614606565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116a890614a57565b80601f01602080910402602001604051908101604052809291908181526020018280546116d490614a57565b80156117215780601f106116f657610100808354040283529160200191611721565b820191906000526020600020905b81548152906001019060200180831161170457829003601f168201915b5050505050905090565b600e6020528060005260406000206000915090505481565b6000600f60149054906101000a900460ff16611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b906146c6565b60405180910390fd5b600d548211156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090614666565b60405180910390fd5b346117ef83600c546124d090919063ffffffff16565b1115611830576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611827906144e6565b60405180910390fd5b610bb861183b610ab1565b1061187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290614706565b60405180910390fd5b60005b828110156118e4576000611890610ab1565b9050610bb861189d610ab1565b10156118b9576118b46118ae611f93565b82612574565b6118d0565b6118cd60018461255e90919063ffffffff16565b92505b5080806118dc90614a89565b91505061187e565b5060008111156119575760006118f8611f93565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc61192984600c546124d090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611954573d6000803e3d6000fd5b50505b5050565b61196d611966611f93565b8383612658565b5050565b611979611f93565b73ffffffffffffffffffffffffffffffffffffffff1661199761166f565b73ffffffffffffffffffffffffffffffffffffffff16146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614606565b60405180910390fd5b80600c8190555050565b611a08611a02611f93565b83612054565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e906146e6565b60405180910390fd5b611a53848484846127c5565b50505050565b6060611a6482611f27565b611aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9a90614626565b60405180910390fd5b600060028054611ab290614a57565b80601f0160208091040260200160405190810160405280929190818152602001828054611ade90614a57565b8015611b2b5780601f10611b0057610100808354040283529160200191611b2b565b820191906000526020600020905b815481529060010190602001808311611b0e57829003601f168201915b505050505090506000815111611b505760405180602001604052806000815250611b7b565b80611b5a84612821565b604051602001611b6b9291906142d9565b6040516020818303038152906040525b915050919050565b611b8b611f93565b73ffffffffffffffffffffffffffffffffffffffff16611ba961166f565b73ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690614606565b60405180910390fd5b60001515600f60149054906101000a900460ff16151514611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c906145e6565b60405180910390fd5b6000611c5f610ab1565b905060005b6014811015611c9c57611c89611c78611f93565b8284611c849190614875565b612574565b8080611c9490614a89565b915050611c64565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60149054906101000a900460ff1681565b611d4f611f93565b73ffffffffffffffffffffffffffffffffffffffff16611d6d61166f565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba90614606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90614446565b60405180910390fd5b611e3c81612592565b50565b610bb881565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f205750611f1f826129ce565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661200e83611283565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061205f82611f27565b61209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614506565b60405180910390fd5b60006120a983611283565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211857508373ffffffffffffffffffffffffffffffffffffffff1661210084610914565b73ffffffffffffffffffffffffffffffffffffffff16145b8061212957506121288185611ca0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661215282611283565b73ffffffffffffffffffffffffffffffffffffffff16146121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90614466565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f906144a6565b60405180910390fd5b612223838383612a38565b61222e600082611f9b565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461227e9190614956565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d59190614875565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612394838383612b4c565b505050565b60006123a482611283565b90506123b281600084612a38565b6123bd600083611f9b565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240d9190614956565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b281600084612b4c565b5050565b80600290805190602001906124cc9291906132d9565b5050565b600081836124de91906148fc565b905092915050565b600080600080602085015192506040850151915060ff604186015116905060018682858560405160008152602001604052604051612527949392919061437f565b6020604051602081039080840390855afa158015612549573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000818361256c9190614875565b905092915050565b61258e828260405180602001604052806000815250612b51565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be906144c6565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127b89190614364565b60405180910390a3505050565b6127d0848484612132565b6127dc84848484612bac565b61281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614406565b60405180910390fd5b50505050565b60606000821415612869576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c9565b600082905060005b6000821461289b57808061288490614a89565b915050600a8261289491906148cb565b9150612871565b60008167ffffffffffffffff8111156128dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561290f5781602001600182028036833780820191505090505b5090505b600085146129c2576001826129289190614956565b9150600a856129379190614b00565b60306129439190614875565b60f81b81838151811061297f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129bb91906148cb565b9450612913565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a43838383612d43565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a8657612a8181612d48565b612ac5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ac457612ac38382612d91565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b0857612b0381612efe565b612b47565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b4657612b458282613041565b5b5b505050565b505050565b612b5b83836130c0565b612b686000848484612bac565b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614406565b60405180910390fd5b505050565b6000612bcd8473ffffffffffffffffffffffffffffffffffffffff1661329a565b15612d36578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bf6611f93565b8786866040518563ffffffff1660e01b8152600401612c189493929190614318565b602060405180830381600087803b158015612c3257600080fd5b505af1925050508015612c6357506040513d601f19601f82011682018060405250810190612c609190613685565b60015b612ce6573d8060008114612c93576040519150601f19603f3d011682016040523d82523d6000602084013e612c98565b606091505b50600081511415612cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd590614406565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d3b565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d9e84611335565b612da89190614956565b9050600060086000848152602001908152602001600020549050818114612e8d576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612f129190614956565b90506000600a6000848152602001908152602001600020549050600060098381548110612f68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612fb0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613025577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061304c83611335565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312790614586565b60405180910390fd5b61313981611f27565b15613179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317090614486565b60405180910390fd5b61318560008383612a38565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131d59190614875565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461329660008383612b4c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff16803b806020016040519081016040528181526000908060200190933c51119050919050565b8280546132e590614a57565b90600052602060002090601f016020900481019282613307576000855561334e565b82601f1061332057805160ff191683800117855561334e565b8280016001018555821561334e579182015b8281111561334d578251825591602001919060010190613332565b5b50905061335b919061335f565b5090565b5b80821115613378576000816000905550600101613360565b5090565b600061338f61338a846147d2565b6147a1565b9050828152602081018484840111156133a757600080fd5b6133b2848285614a15565b509392505050565b60006133cd6133c884614802565b6147a1565b9050828152602081018484840111156133e557600080fd5b6133f0848285614a15565b509392505050565b60008135905061340781614c0b565b92915050565b60008135905061341c81614c22565b92915050565b60008135905061343181614c39565b92915050565b60008151905061344681614c39565b92915050565b600082601f83011261345d57600080fd5b813561346d84826020860161337c565b91505092915050565b600082601f83011261348757600080fd5b81356134978482602086016133ba565b91505092915050565b6000813590506134af81614c50565b92915050565b6000602082840312156134c757600080fd5b60006134d5848285016133f8565b91505092915050565b600080604083850312156134f157600080fd5b60006134ff858286016133f8565b9250506020613510858286016133f8565b9150509250929050565b60008060006060848603121561352f57600080fd5b600061353d868287016133f8565b935050602061354e868287016133f8565b925050604061355f868287016134a0565b9150509250925092565b6000806000806080858703121561357f57600080fd5b600061358d878288016133f8565b945050602061359e878288016133f8565b93505060406135af878288016134a0565b925050606085013567ffffffffffffffff8111156135cc57600080fd5b6135d88782880161344c565b91505092959194509250565b600080604083850312156135f757600080fd5b6000613605858286016133f8565b92505060206136168582860161340d565b9150509250929050565b6000806040838503121561363357600080fd5b6000613641858286016133f8565b9250506020613652858286016134a0565b9150509250929050565b60006020828403121561366e57600080fd5b600061367c84828501613422565b91505092915050565b60006020828403121561369757600080fd5b60006136a584828501613437565b91505092915050565b6000602082840312156136c057600080fd5b600082013567ffffffffffffffff8111156136da57600080fd5b6136e684828501613476565b91505092915050565b60006020828403121561370157600080fd5b600061370f848285016134a0565b91505092915050565b60008060006060848603121561372d57600080fd5b600061373b868287016134a0565b935050602061374c868287016134a0565b925050604084013567ffffffffffffffff81111561376957600080fd5b6137758682870161344c565b9150509250925092565b6137888161498a565b82525050565b61379f61379a8261498a565b614ad2565b82525050565b6137ae8161499c565b82525050565b6137bd816149a8565b82525050565b60006137ce82614832565b6137d88185614848565b93506137e8818560208601614a24565b6137f181614bed565b840191505092915050565b60006138078261483d565b6138118185614859565b9350613821818560208601614a24565b61382a81614bed565b840191505092915050565b60006138408261483d565b61384a818561486a565b935061385a818560208601614a24565b80840191505092915050565b6000613873602b83614859565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006138d9603283614859565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061393f600883614859565b91507f536f6c64204f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b600061397f602683614859565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139e5602583614859565b91507f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008301527f6f776e65720000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a4b601c83614859565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a8b602483614859565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613af1601983614859565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b31601f83614859565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613b71602c83614859565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bd7603883614859565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c3d602a83614859565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca3602983614859565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d09602083614859565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d49602c83614859565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613daf601183614859565b91507f496e76616c6964205369676e61747572650000000000000000000000000000006000830152602082019050919050565b6000613def602f83614859565b91507f496d706f737369626c652072657365727665206120576f6d626174207768656e60008301527f2073616c652069732061637469766500000000000000000000000000000000006020830152604082019050919050565b6000613e55602083614859565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e95602f83614859565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613efb602183614859565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f61602883614859565b91507f45786365656420746865206e756d626572206f6620746f6b656e732061626c6560008301527f20746f206d696e740000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc7601d83614859565b91507f5072652d4d696e74206973206e6f7420617661696c61626c65207965740000006000830152602082019050919050565b6000614007601083614859565b91507f4d6178206d696e742072656163686564000000000000000000000000000000006000830152602082019050919050565b6000614047602683614859565b91507f53616c65206d7573742062652061637469766520746f206d696e74205468652060008301527f576f6d62617400000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ad603183614859565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614113600883614859565b91507f536f6c64206f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614153602c83614859565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006141b9603083614859565b91507f496d706f737369626c65205072652d4d696e74206120576f6d6261742077686560008301527f6e2073616c6520697320616374697665000000000000000000000000000000006020830152604082019050919050565b600061421f603083614859565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b614281816149fe565b82525050565b614298614293826149fe565b614af6565b82525050565b6142a781614a08565b82525050565b60006142b9828561378e565b6014820191506142c98284614287565b6020820191508190509392505050565b60006142e58285613835565b91506142f18284613835565b91508190509392505050565b6000602082019050614312600083018461377f565b92915050565b600060808201905061432d600083018761377f565b61433a602083018661377f565b6143476040830185614278565b818103606083015261435981846137c3565b905095945050505050565b600060208201905061437960008301846137a5565b92915050565b600060808201905061439460008301876137b4565b6143a1602083018661429e565b6143ae60408301856137b4565b6143bb60608301846137b4565b95945050505050565b600060208201905081810360008301526143de81846137fc565b905092915050565b600060208201905081810360008301526143ff81613866565b9050919050565b6000602082019050818103600083015261441f816138cc565b9050919050565b6000602082019050818103600083015261443f81613932565b9050919050565b6000602082019050818103600083015261445f81613972565b9050919050565b6000602082019050818103600083015261447f816139d8565b9050919050565b6000602082019050818103600083015261449f81613a3e565b9050919050565b600060208201905081810360008301526144bf81613a7e565b9050919050565b600060208201905081810360008301526144df81613ae4565b9050919050565b600060208201905081810360008301526144ff81613b24565b9050919050565b6000602082019050818103600083015261451f81613b64565b9050919050565b6000602082019050818103600083015261453f81613bca565b9050919050565b6000602082019050818103600083015261455f81613c30565b9050919050565b6000602082019050818103600083015261457f81613c96565b9050919050565b6000602082019050818103600083015261459f81613cfc565b9050919050565b600060208201905081810360008301526145bf81613d3c565b9050919050565b600060208201905081810360008301526145df81613da2565b9050919050565b600060208201905081810360008301526145ff81613de2565b9050919050565b6000602082019050818103600083015261461f81613e48565b9050919050565b6000602082019050818103600083015261463f81613e88565b9050919050565b6000602082019050818103600083015261465f81613eee565b9050919050565b6000602082019050818103600083015261467f81613f54565b9050919050565b6000602082019050818103600083015261469f81613fba565b9050919050565b600060208201905081810360008301526146bf81613ffa565b9050919050565b600060208201905081810360008301526146df8161403a565b9050919050565b600060208201905081810360008301526146ff816140a0565b9050919050565b6000602082019050818103600083015261471f81614106565b9050919050565b6000602082019050818103600083015261473f81614146565b9050919050565b6000602082019050818103600083015261475f816141ac565b9050919050565b6000602082019050818103600083015261477f81614212565b9050919050565b600060208201905061479b6000830184614278565b92915050565b6000604051905081810181811067ffffffffffffffff821117156147c8576147c7614bbe565b5b8060405250919050565b600067ffffffffffffffff8211156147ed576147ec614bbe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561481d5761481c614bbe565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614880826149fe565b915061488b836149fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c0576148bf614b31565b5b828201905092915050565b60006148d6826149fe565b91506148e1836149fe565b9250826148f1576148f0614b60565b5b828204905092915050565b6000614907826149fe565b9150614912836149fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494b5761494a614b31565b5b828202905092915050565b6000614961826149fe565b915061496c836149fe565b92508282101561497f5761497e614b31565b5b828203905092915050565b6000614995826149de565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614a42578082015181840152602081019050614a27565b83811115614a51576000848401525b50505050565b60006002820490506001821680614a6f57607f821691505b60208210811415614a8357614a82614b8f565b5b50919050565b6000614a94826149fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ac757614ac6614b31565b5b600182019050919050565b6000614add82614ae4565b9050919050565b6000614aef82614bfe565b9050919050565b6000819050919050565b6000614b0b826149fe565b9150614b16836149fe565b925082614b2657614b25614b60565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b614c148161498a565b8114614c1f57600080fd5b50565b614c2b8161499c565b8114614c3657600080fd5b50565b614c42816149b2565b8114614c4d57600080fd5b50565b614c59816149fe565b8114614c6457600080fd5b5056fea26469706673582212204db1c413bf4823b99860e6df3444f41db7d1455c8cca6a9397753e6ecc2651fa64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063cd3293de1161006f578063cd3293de14610735578063e985e9c51461074c578063eb8d244414610789578063f2fde38b146107b4578063f47c84c5146107dd57610204565b8063a22cb4651461067d578063a2b40d19146106a6578063b88d4fde146106cf578063c87b56dd146106f857610204565b80638d859f3e116100e75780638d859f3e146105a35780638da5cb5b146105ce57806395d89b41146105f957806398a8cffe14610624578063a0712d681461066157610204565b8063715018a6146105235780637d8966e41461053a5780637f6567f71461055157806384bdb6e01461057a57610204565b8063417b94831161019b57806355f804b31161016a57806355f804b314610439578063622973ca146104625780636352211e1461047e57806370a08231146104bb5780637146bd08146104f857610204565b8063417b94831461037f57806342842e0e146103aa57806342966c68146103d35780634f6ccce7146103fc57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b5780633ccfd60b1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061365c565b610808565b60405161023d9190614364565b60405180910390f35b34801561025257600080fd5b5061025b610882565b60405161026891906143c4565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906136ef565b610914565b6040516102a591906142fd565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613620565b610999565b005b3480156102e357600080fd5b506102ec610ab1565b6040516102f99190614786565b60405180910390f35b34801561030e57600080fd5b506103296004803603810190610324919061351a565b610abe565b005b34801561033757600080fd5b50610352600480360381019061034d9190613620565b610b1e565b60405161035f9190614786565b60405180910390f35b34801561037457600080fd5b5061037d610bc3565b005b34801561038b57600080fd5b50610394610c9b565b6040516103a191906142fd565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc919061351a565b610cc1565b005b3480156103df57600080fd5b506103fa60048036038101906103f591906136ef565b610ce1565b005b34801561040857600080fd5b50610423600480360381019061041e91906136ef565b610d3d565b6040516104309190614786565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b91906136ae565b610dd4565b005b61047c60048036038101906104779190613718565b610e5c565b005b34801561048a57600080fd5b506104a560048036038101906104a091906136ef565b611283565b6040516104b291906142fd565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906134b5565b611335565b6040516104ef9190614786565b60405180910390f35b34801561050457600080fd5b5061050d6113ed565b60405161051a9190614786565b60405180910390f35b34801561052f57600080fd5b506105386113f3565b005b34801561054657600080fd5b5061054f61147b565b005b34801561055d57600080fd5b50610578600480360381019061057391906136ef565b611523565b005b34801561058657600080fd5b506105a1600480360381019061059c91906134b5565b6115a9565b005b3480156105af57600080fd5b506105b8611669565b6040516105c59190614786565b60405180910390f35b3480156105da57600080fd5b506105e361166f565b6040516105f091906142fd565b60405180910390f35b34801561060557600080fd5b5061060e611699565b60405161061b91906143c4565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906134b5565b61172b565b6040516106589190614786565b60405180910390f35b61067b600480360381019061067691906136ef565b611743565b005b34801561068957600080fd5b506106a4600480360381019061069f91906135e4565b61195b565b005b3480156106b257600080fd5b506106cd60048036038101906106c891906136ef565b611971565b005b3480156106db57600080fd5b506106f660048036038101906106f19190613569565b6119f7565b005b34801561070457600080fd5b5061071f600480360381019061071a91906136ef565b611a59565b60405161072c91906143c4565b60405180910390f35b34801561074157600080fd5b5061074a611b83565b005b34801561075857600080fd5b50610773600480360381019061076e91906134de565b611ca0565b6040516107809190614364565b60405180910390f35b34801561079557600080fd5b5061079e611d34565b6040516107ab9190614364565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d691906134b5565b611d47565b005b3480156107e957600080fd5b506107f2611e3f565b6040516107ff9190614786565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087b575061087a82611e45565b5b9050919050565b60606000805461089190614a57565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd90614a57565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b600061091f82611f27565b61095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906145a6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a482611283565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90614646565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a34611f93565b73ffffffffffffffffffffffffffffffffffffffff161480610a635750610a6281610a5d611f93565b611ca0565b5b610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990614526565b60405180910390fd5b610aac8383611f9b565b505050565b6000600980549050905090565b610acf610ac9611f93565b82612054565b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b05906146e6565b60405180910390fd5b610b19838383612132565b505050565b6000610b2983611335565b8210610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906143e6565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bcb611f93565b73ffffffffffffffffffffffffffffffffffffffff16610be961166f565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690614606565b60405180910390fd5b6000610c49611f93565b905060004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c96573d6000803e3d6000fd5b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cdc838383604051806020016040528060008152506119f7565b505050565b610cf2610cec611f93565b82612054565b610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890614766565b60405180910390fd5b610d3a81612399565b50565b6000610d47610ab1565b8210610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614726565b60405180910390fd5b60098281548110610dc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ddc611f93565b73ffffffffffffffffffffffffffffffffffffffff16610dfa61166f565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790614606565b60405180910390fd5b610e59816124b6565b50565b60008073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690614686565b60405180910390fd5b60001515600f60149054906101000a900460ff16151514610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90614746565b60405180910390fd5b600d54841115610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190614666565b60405180910390fd5b610bb8610f95610ab1565b10610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90614426565b60405180910390fd5b34610feb85600c546124d090919063ffffffff16565b111561102c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611023906144e6565b60405180910390fd5b611034611f93565b836040516020016110469291906142ad565b604051602081830303815290604052805190602001209050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110a182846124e6565b73ffffffffffffffffffffffffffffffffffffffff16146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee906145c6565b60405180910390fd5b8261115185600e6000611108611f93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255e90919063ffffffff16565b1115611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906146a6565b60405180910390fd5b6111eb84600e60006111a2611f93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461255e90919063ffffffff16565b600e60006111f7611f93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600061123f610ab1565b905060005b8581101561127b57611268611257611f93565b82846112639190614875565b612574565b808061127390614a89565b915050611244565b505050505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390614566565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90614546565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d5481565b6113fb611f93565b73ffffffffffffffffffffffffffffffffffffffff1661141961166f565b73ffffffffffffffffffffffffffffffffffffffff161461146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690614606565b60405180910390fd5b6114796000612592565b565b611483611f93565b73ffffffffffffffffffffffffffffffffffffffff166114a161166f565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90614606565b60405180910390fd5b600f60149054906101000a900460ff1615600f60146101000a81548160ff021916908315150217905550565b61152b611f93565b73ffffffffffffffffffffffffffffffffffffffff1661154961166f565b73ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690614606565b60405180910390fd5b80600d8190555050565b6115b1611f93565b73ffffffffffffffffffffffffffffffffffffffff166115cf61166f565b73ffffffffffffffffffffffffffffffffffffffff1614611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90614606565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116a890614a57565b80601f01602080910402602001604051908101604052809291908181526020018280546116d490614a57565b80156117215780601f106116f657610100808354040283529160200191611721565b820191906000526020600020905b81548152906001019060200180831161170457829003601f168201915b5050505050905090565b600e6020528060005260406000206000915090505481565b6000600f60149054906101000a900460ff16611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b906146c6565b60405180910390fd5b600d548211156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090614666565b60405180910390fd5b346117ef83600c546124d090919063ffffffff16565b1115611830576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611827906144e6565b60405180910390fd5b610bb861183b610ab1565b1061187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290614706565b60405180910390fd5b60005b828110156118e4576000611890610ab1565b9050610bb861189d610ab1565b10156118b9576118b46118ae611f93565b82612574565b6118d0565b6118cd60018461255e90919063ffffffff16565b92505b5080806118dc90614a89565b91505061187e565b5060008111156119575760006118f8611f93565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc61192984600c546124d090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611954573d6000803e3d6000fd5b50505b5050565b61196d611966611f93565b8383612658565b5050565b611979611f93565b73ffffffffffffffffffffffffffffffffffffffff1661199761166f565b73ffffffffffffffffffffffffffffffffffffffff16146119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614606565b60405180910390fd5b80600c8190555050565b611a08611a02611f93565b83612054565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e906146e6565b60405180910390fd5b611a53848484846127c5565b50505050565b6060611a6482611f27565b611aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9a90614626565b60405180910390fd5b600060028054611ab290614a57565b80601f0160208091040260200160405190810160405280929190818152602001828054611ade90614a57565b8015611b2b5780601f10611b0057610100808354040283529160200191611b2b565b820191906000526020600020905b815481529060010190602001808311611b0e57829003601f168201915b505050505090506000815111611b505760405180602001604052806000815250611b7b565b80611b5a84612821565b604051602001611b6b9291906142d9565b6040516020818303038152906040525b915050919050565b611b8b611f93565b73ffffffffffffffffffffffffffffffffffffffff16611ba961166f565b73ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690614606565b60405180910390fd5b60001515600f60149054906101000a900460ff16151514611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c906145e6565b60405180910390fd5b6000611c5f610ab1565b905060005b6014811015611c9c57611c89611c78611f93565b8284611c849190614875565b612574565b8080611c9490614a89565b915050611c64565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60149054906101000a900460ff1681565b611d4f611f93565b73ffffffffffffffffffffffffffffffffffffffff16611d6d61166f565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba90614606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90614446565b60405180910390fd5b611e3c81612592565b50565b610bb881565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f205750611f1f826129ce565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661200e83611283565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061205f82611f27565b61209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614506565b60405180910390fd5b60006120a983611283565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211857508373ffffffffffffffffffffffffffffffffffffffff1661210084610914565b73ffffffffffffffffffffffffffffffffffffffff16145b8061212957506121288185611ca0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661215282611283565b73ffffffffffffffffffffffffffffffffffffffff16146121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90614466565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f906144a6565b60405180910390fd5b612223838383612a38565b61222e600082611f9b565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461227e9190614956565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d59190614875565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612394838383612b4c565b505050565b60006123a482611283565b90506123b281600084612a38565b6123bd600083611f9b565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240d9190614956565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b281600084612b4c565b5050565b80600290805190602001906124cc9291906132d9565b5050565b600081836124de91906148fc565b905092915050565b600080600080602085015192506040850151915060ff604186015116905060018682858560405160008152602001604052604051612527949392919061437f565b6020604051602081039080840390855afa158015612549573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000818361256c9190614875565b905092915050565b61258e828260405180602001604052806000815250612b51565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be906144c6565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127b89190614364565b60405180910390a3505050565b6127d0848484612132565b6127dc84848484612bac565b61281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614406565b60405180910390fd5b50505050565b60606000821415612869576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c9565b600082905060005b6000821461289b57808061288490614a89565b915050600a8261289491906148cb565b9150612871565b60008167ffffffffffffffff8111156128dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561290f5781602001600182028036833780820191505090505b5090505b600085146129c2576001826129289190614956565b9150600a856129379190614b00565b60306129439190614875565b60f81b81838151811061297f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129bb91906148cb565b9450612913565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a43838383612d43565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a8657612a8181612d48565b612ac5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ac457612ac38382612d91565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b0857612b0381612efe565b612b47565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b4657612b458282613041565b5b5b505050565b505050565b612b5b83836130c0565b612b686000848484612bac565b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614406565b60405180910390fd5b505050565b6000612bcd8473ffffffffffffffffffffffffffffffffffffffff1661329a565b15612d36578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bf6611f93565b8786866040518563ffffffff1660e01b8152600401612c189493929190614318565b602060405180830381600087803b158015612c3257600080fd5b505af1925050508015612c6357506040513d601f19601f82011682018060405250810190612c609190613685565b60015b612ce6573d8060008114612c93576040519150601f19603f3d011682016040523d82523d6000602084013e612c98565b606091505b50600081511415612cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd590614406565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d3b565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d9e84611335565b612da89190614956565b9050600060086000848152602001908152602001600020549050818114612e8d576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612f129190614956565b90506000600a6000848152602001908152602001600020549050600060098381548110612f68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612fb0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613025577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061304c83611335565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312790614586565b60405180910390fd5b61313981611f27565b15613179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317090614486565b60405180910390fd5b61318560008383612a38565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131d59190614875565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461329660008383612b4c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff16803b806020016040519081016040528181526000908060200190933c51119050919050565b8280546132e590614a57565b90600052602060002090601f016020900481019282613307576000855561334e565b82601f1061332057805160ff191683800117855561334e565b8280016001018555821561334e579182015b8281111561334d578251825591602001919060010190613332565b5b50905061335b919061335f565b5090565b5b80821115613378576000816000905550600101613360565b5090565b600061338f61338a846147d2565b6147a1565b9050828152602081018484840111156133a757600080fd5b6133b2848285614a15565b509392505050565b60006133cd6133c884614802565b6147a1565b9050828152602081018484840111156133e557600080fd5b6133f0848285614a15565b509392505050565b60008135905061340781614c0b565b92915050565b60008135905061341c81614c22565b92915050565b60008135905061343181614c39565b92915050565b60008151905061344681614c39565b92915050565b600082601f83011261345d57600080fd5b813561346d84826020860161337c565b91505092915050565b600082601f83011261348757600080fd5b81356134978482602086016133ba565b91505092915050565b6000813590506134af81614c50565b92915050565b6000602082840312156134c757600080fd5b60006134d5848285016133f8565b91505092915050565b600080604083850312156134f157600080fd5b60006134ff858286016133f8565b9250506020613510858286016133f8565b9150509250929050565b60008060006060848603121561352f57600080fd5b600061353d868287016133f8565b935050602061354e868287016133f8565b925050604061355f868287016134a0565b9150509250925092565b6000806000806080858703121561357f57600080fd5b600061358d878288016133f8565b945050602061359e878288016133f8565b93505060406135af878288016134a0565b925050606085013567ffffffffffffffff8111156135cc57600080fd5b6135d88782880161344c565b91505092959194509250565b600080604083850312156135f757600080fd5b6000613605858286016133f8565b92505060206136168582860161340d565b9150509250929050565b6000806040838503121561363357600080fd5b6000613641858286016133f8565b9250506020613652858286016134a0565b9150509250929050565b60006020828403121561366e57600080fd5b600061367c84828501613422565b91505092915050565b60006020828403121561369757600080fd5b60006136a584828501613437565b91505092915050565b6000602082840312156136c057600080fd5b600082013567ffffffffffffffff8111156136da57600080fd5b6136e684828501613476565b91505092915050565b60006020828403121561370157600080fd5b600061370f848285016134a0565b91505092915050565b60008060006060848603121561372d57600080fd5b600061373b868287016134a0565b935050602061374c868287016134a0565b925050604084013567ffffffffffffffff81111561376957600080fd5b6137758682870161344c565b9150509250925092565b6137888161498a565b82525050565b61379f61379a8261498a565b614ad2565b82525050565b6137ae8161499c565b82525050565b6137bd816149a8565b82525050565b60006137ce82614832565b6137d88185614848565b93506137e8818560208601614a24565b6137f181614bed565b840191505092915050565b60006138078261483d565b6138118185614859565b9350613821818560208601614a24565b61382a81614bed565b840191505092915050565b60006138408261483d565b61384a818561486a565b935061385a818560208601614a24565b80840191505092915050565b6000613873602b83614859565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006138d9603283614859565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061393f600883614859565b91507f536f6c64204f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b600061397f602683614859565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139e5602583614859565b91507f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008301527f6f776e65720000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a4b601c83614859565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a8b602483614859565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613af1601983614859565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613b31601f83614859565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613b71602c83614859565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613bd7603883614859565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c3d602a83614859565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca3602983614859565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d09602083614859565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d49602c83614859565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613daf601183614859565b91507f496e76616c6964205369676e61747572650000000000000000000000000000006000830152602082019050919050565b6000613def602f83614859565b91507f496d706f737369626c652072657365727665206120576f6d626174207768656e60008301527f2073616c652069732061637469766500000000000000000000000000000000006020830152604082019050919050565b6000613e55602083614859565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613e95602f83614859565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613efb602183614859565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f61602883614859565b91507f45786365656420746865206e756d626572206f6620746f6b656e732061626c6560008301527f20746f206d696e740000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc7601d83614859565b91507f5072652d4d696e74206973206e6f7420617661696c61626c65207965740000006000830152602082019050919050565b6000614007601083614859565b91507f4d6178206d696e742072656163686564000000000000000000000000000000006000830152602082019050919050565b6000614047602683614859565b91507f53616c65206d7573742062652061637469766520746f206d696e74205468652060008301527f576f6d62617400000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ad603183614859565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614113600883614859565b91507f536f6c64206f75740000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614153602c83614859565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006141b9603083614859565b91507f496d706f737369626c65205072652d4d696e74206120576f6d6261742077686560008301527f6e2073616c6520697320616374697665000000000000000000000000000000006020830152604082019050919050565b600061421f603083614859565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b614281816149fe565b82525050565b614298614293826149fe565b614af6565b82525050565b6142a781614a08565b82525050565b60006142b9828561378e565b6014820191506142c98284614287565b6020820191508190509392505050565b60006142e58285613835565b91506142f18284613835565b91508190509392505050565b6000602082019050614312600083018461377f565b92915050565b600060808201905061432d600083018761377f565b61433a602083018661377f565b6143476040830185614278565b818103606083015261435981846137c3565b905095945050505050565b600060208201905061437960008301846137a5565b92915050565b600060808201905061439460008301876137b4565b6143a1602083018661429e565b6143ae60408301856137b4565b6143bb60608301846137b4565b95945050505050565b600060208201905081810360008301526143de81846137fc565b905092915050565b600060208201905081810360008301526143ff81613866565b9050919050565b6000602082019050818103600083015261441f816138cc565b9050919050565b6000602082019050818103600083015261443f81613932565b9050919050565b6000602082019050818103600083015261445f81613972565b9050919050565b6000602082019050818103600083015261447f816139d8565b9050919050565b6000602082019050818103600083015261449f81613a3e565b9050919050565b600060208201905081810360008301526144bf81613a7e565b9050919050565b600060208201905081810360008301526144df81613ae4565b9050919050565b600060208201905081810360008301526144ff81613b24565b9050919050565b6000602082019050818103600083015261451f81613b64565b9050919050565b6000602082019050818103600083015261453f81613bca565b9050919050565b6000602082019050818103600083015261455f81613c30565b9050919050565b6000602082019050818103600083015261457f81613c96565b9050919050565b6000602082019050818103600083015261459f81613cfc565b9050919050565b600060208201905081810360008301526145bf81613d3c565b9050919050565b600060208201905081810360008301526145df81613da2565b9050919050565b600060208201905081810360008301526145ff81613de2565b9050919050565b6000602082019050818103600083015261461f81613e48565b9050919050565b6000602082019050818103600083015261463f81613e88565b9050919050565b6000602082019050818103600083015261465f81613eee565b9050919050565b6000602082019050818103600083015261467f81613f54565b9050919050565b6000602082019050818103600083015261469f81613fba565b9050919050565b600060208201905081810360008301526146bf81613ffa565b9050919050565b600060208201905081810360008301526146df8161403a565b9050919050565b600060208201905081810360008301526146ff816140a0565b9050919050565b6000602082019050818103600083015261471f81614106565b9050919050565b6000602082019050818103600083015261473f81614146565b9050919050565b6000602082019050818103600083015261475f816141ac565b9050919050565b6000602082019050818103600083015261477f81614212565b9050919050565b600060208201905061479b6000830184614278565b92915050565b6000604051905081810181811067ffffffffffffffff821117156147c8576147c7614bbe565b5b8060405250919050565b600067ffffffffffffffff8211156147ed576147ec614bbe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561481d5761481c614bbe565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614880826149fe565b915061488b836149fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c0576148bf614b31565b5b828201905092915050565b60006148d6826149fe565b91506148e1836149fe565b9250826148f1576148f0614b60565b5b828204905092915050565b6000614907826149fe565b9150614912836149fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494b5761494a614b31565b5b828202905092915050565b6000614961826149fe565b915061496c836149fe565b92508282101561497f5761497e614b31565b5b828203905092915050565b6000614995826149de565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614a42578082015181840152602081019050614a27565b83811115614a51576000848401525b50505050565b60006002820490506001821680614a6f57607f821691505b60208210811415614a8357614a82614b8f565b5b50919050565b6000614a94826149fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ac757614ac6614b31565b5b600182019050919050565b6000614add82614ae4565b9050919050565b6000614aef82614bfe565b9050919050565b6000819050919050565b6000614b0b826149fe565b9150614b16836149fe565b925082614b2657614b25614b60565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b614c148161498a565b8114614c1f57600080fd5b50565b614c2b8161499c565b8114614c3657600080fd5b50565b614c42816149b2565b8114614c4d57600080fd5b50565b614c59816149fe565b8114614c6457600080fd5b5056fea26469706673582212204db1c413bf4823b99860e6df3444f41db7d1455c8cca6a9397753e6ecc2651fa64736f6c63430008000033

Deployed Bytecode Sourcemap

50333:4173:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35088:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20861:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22078:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21601:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35728:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22828:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35396:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51072:184;;;;;;;;;;;;;:::i;:::-;;50629:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23238:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34014:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35918:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54031:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51847:1292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20555:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20285:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50478:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42806:103;;;;;;;;;;;;;:::i;:::-;;51377:86;;;;;;;;;;;;;:::i;:::-;;50970:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51264:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50436:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42155:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21030:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50569:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53185:834;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22371:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50803:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23494:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21205:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51514:284;;;;;;;;;;;;;:::i;:::-;;22597:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50669:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43064:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50519:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35088:224;35190:4;35229:35;35214:50;;;:11;:50;;;;:90;;;;35268:36;35292:11;35268:23;:36::i;:::-;35214:90;35207:97;;35088:224;;;:::o;20861:100::-;20915:13;20948:5;20941:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20861:100;:::o;22078:221::-;22154:7;22182:16;22190:7;22182;:16::i;:::-;22174:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22267:15;:24;22283:7;22267:24;;;;;;;;;;;;;;;;;;;;;22260:31;;22078:221;;;:::o;21601:411::-;21682:13;21698:23;21713:7;21698:14;:23::i;:::-;21682:39;;21746:5;21740:11;;:2;:11;;;;21732:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21840:5;21824:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21849:37;21866:5;21873:12;:10;:12::i;:::-;21849:16;:37::i;:::-;21824:62;21802:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;21983:21;21992:2;21996:7;21983:8;:21::i;:::-;21601:411;;;:::o;35728:113::-;35789:7;35816:10;:17;;;;35809:24;;35728:113;:::o;22828:339::-;23023:41;23042:12;:10;:12::i;:::-;23056:7;23023:18;:41::i;:::-;23015:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23131:28;23141:4;23147:2;23151:7;23131:9;:28::i;:::-;22828:339;;;:::o;35396:256::-;35493:7;35529:23;35546:5;35529:16;:23::i;:::-;35521:5;:31;35513:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35618:12;:19;35631:5;35618:19;;;;;;;;;;;;;;;:26;35638:5;35618:26;;;;;;;;;;;;35611:33;;35396:256;;;;:::o;51072:184::-;42386:12;:10;:12::i;:::-;42375:23;;:7;:5;:7::i;:::-;:23;;;42367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51120:22:::1;51153:12;:10;:12::i;:::-;51120:46;;51177:12;51192:21;51177:36;;51224:6;:15;;:24;51240:7;51224:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42446:1;;51072:184::o:0;50629:31::-;;;;;;;;;;;;;:::o;23238:185::-;23376:39;23393:4;23399:2;23403:7;23376:39;;;;;;;;;;;;:16;:39::i;:::-;23238:185;;;:::o;34014:245::-;34132:41;34151:12;:10;:12::i;:::-;34165:7;34132:18;:41::i;:::-;34124:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34237:14;34243:7;34237:5;:14::i;:::-;34014:245;:::o;35918:233::-;35993:7;36029:30;:28;:30::i;:::-;36021:5;:38;36013:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36126:10;36137:5;36126:17;;;;;;;;;;;;;;;;;;;;;;;;36119:24;;35918:233;;;:::o;54031:99::-;42386:12;:10;:12::i;:::-;42375:23;;:7;:5;:7::i;:::-;:23;;;42367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54102:20:::1;54114:7;54102:11;:20::i;:::-;54031:99:::0;:::o;51847:1292::-;51948:12;52007:1;51979:30;;:16;;;;;;;;;;;:30;;;;51971:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;52078:5;52062:21;;:12;;;;;;;;;;;:21;;;52054:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;52176:12;;52158:14;:30;;52150:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;50556:4;52252:13;:11;:13::i;:::-;:26;52244:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;52339:9;52310:25;52320:14;52310:5;;:9;;:25;;;;:::i;:::-;:38;;52302:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;52495:12;:10;:12::i;:::-;52509:3;52478:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52468:46;;;;;;52461:53;;52616:16;;;;;;;;;;;52589:43;;:23;52597:4;52602:9;52589:7;:23::i;:::-;:43;;;52581:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52788:3;52735:49;52769:14;52735:15;:29;52751:12;:10;:12::i;:::-;52735:29;;;;;;;;;;;;;;;;:33;;:49;;;;:::i;:::-;:56;;52727:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;52931:49;52965:14;52931:15;:29;52947:12;:10;:12::i;:::-;52931:29;;;;;;;;;;;;;;;;:33;;:49;;;;:::i;:::-;52899:15;:29;52915:12;:10;:12::i;:::-;52899:29;;;;;;;;;;;;;;;:81;;;;52993:11;53007:13;:11;:13::i;:::-;52993:27;;53035:6;53031:101;53051:14;53047:1;:18;53031:101;;;53087:33;53097:12;:10;:12::i;:::-;53118:1;53111:6;:8;;;;:::i;:::-;53087:9;:33::i;:::-;53067:3;;;;;:::i;:::-;;;;53031:101;;;;51847:1292;;;;;:::o;20555:239::-;20627:7;20647:13;20663:7;:16;20671:7;20663:16;;;;;;;;;;;;;;;;;;;;;20647:32;;20715:1;20698:19;;:5;:19;;;;20690:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20781:5;20774:12;;;20555:239;;;:::o;20285:208::-;20357:7;20402:1;20385:19;;:5;:19;;;;20377:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20469:9;:16;20479:5;20469:16;;;;;;;;;;;;;;;;20462:23;;20285:208;;;:::o;50478:32::-;;;;:::o;42806:103::-;42386:12;:10;:12::i;:::-;42375:23;;:7;:5;:7::i;:::-;:23;;;42367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42871:30:::1;42898:1;42871:18;:30::i;:::-;42806:103::o:0;51377:86::-;42386:12;:10;:12::i;:::-;42375:23;;:7;:5;:7::i;:::-;:23;;;42367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51443:12:::1;;;;;;;;;;;51442:13;51427:12;;:28;;;;;;;;;;;;;;;;;;51377:86::o:0;50970:94::-;42386:12;:10;:12::i;:::-;42375:23;;:7;:5;:7::i;:::-;:23;;;42367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51053:3:::1;51038:12;:18;;;;50970:94:::0;:::o;51264:105::-;42386:12;:10;:12::i;:::-;42375:23;;:7;:5;:7::i;:::-;:23;;;42367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51355:6:::1;51336:16;;:25;;;;;;;;;;;;;;;;;;51264:105:::0;:::o;50436:33::-;;;;:::o;42155:87::-;42201:7;42228:6;;;;;;;;;;;42221:13;;42155:87;:::o;21030:104::-;21086:13;21119:7;21112:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21030:104;:::o;50569:51::-;;;;;;;;;;;;;;;;;:::o;53185:834::-;53249:11;53279:12;;;;;;;;;;;53271:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53371:12;;53353:14;:30;;53345:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;53476:9;53447:25;53457:14;53447:5;;:9;;:25;;;;:::i;:::-;:38;;53439:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;50556:4;53540:13;:11;:13::i;:::-;:26;53532:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;53604:6;53600:270;53620:14;53616:1;:18;53600:270;;;53656:14;53673:13;:11;:13::i;:::-;53656:30;;50556:4;53705:13;:11;:13::i;:::-;:26;53701:158;;;53752:34;53762:12;:10;:12::i;:::-;53776:9;53752;:34::i;:::-;53701:158;;;53833:10;53841:1;53833:3;:7;;:10;;;;:::i;:::-;53827:16;;53701:158;53600:270;53636:3;;;;;:::i;:::-;;;;53600:270;;;;53890:1;53884:3;:7;53880:132;;;53908:22;53941:12;:10;:12::i;:::-;53908:46;;53969:6;:15;;:31;53985:14;53995:3;53985:5;;:9;;:14;;;;:::i;:::-;53969:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53880:132;;53185:834;;:::o;22371:155::-;22466:52;22485:12;:10;:12::i;:::-;22499:8;22509;22466:18;:52::i;:::-;22371:155;;:::o;50803:85::-;42386:12;:10;:12::i;:::-;42375:23;;:7;:5;:7::i;:::-;:23;;;42367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50875:5:::1;50867;:13;;;;50803:85:::0;:::o;23494:328::-;23669:41;23688:12;:10;:12::i;:::-;23702:7;23669:18;:41::i;:::-;23661:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23775:39;23789:4;23795:2;23799:7;23808:5;23775:13;:39::i;:::-;23494:328;;;;:::o;21205:334::-;21278:13;21312:16;21320:7;21312;:16::i;:::-;21304:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21393:22;21418:7;21393:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21468:1;21449:8;21443:22;:26;:88;;;;;;;;;;;;;;;;;21496:8;21506:18;:7;:16;:18::i;:::-;21479:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21443:88;21436:95;;;21205:334;;;:::o;51514:284::-;42386:12;:10;:12::i;:::-;42375:23;;:7;:5;:7::i;:::-;:23;;;42367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51590:5:::1;51574:21;;:12;;;;;;;;;;;:21;;;51566:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51661:11;51675:13;:11;:13::i;:::-;51661:27;;51704:6;51699:92;51720:2;51716:1;:6;51699:92;;;51744:35;51754:12;:10;:12::i;:::-;51777:1;51768:6;:10;;;;:::i;:::-;51744:9;:35::i;:::-;51724:3;;;;;:::i;:::-;;;;51699:92;;;;42446:1;51514:284::o:0;22597:164::-;22694:4;22718:18;:25;22737:5;22718:25;;;;;;;;;;;;;;;:35;22744:8;22718:35;;;;;;;;;;;;;;;;;;;;;;;;;22711:42;;22597:164;;;;:::o;50669:32::-;;;;;;;;;;;;;:::o;43064:201::-;42386:12;:10;:12::i;:::-;42375:23;;:7;:5;:7::i;:::-;:23;;;42367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43173:1:::1;43153:22;;:8;:22;;;;43145:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43229:28;43248:8;43229:18;:28::i;:::-;43064:201:::0;:::o;50519:41::-;50556:4;50519:41;:::o;19916:305::-;20018:4;20070:25;20055:40;;;:11;:40;;;;:105;;;;20127:33;20112:48;;;:11;:48;;;;20055:105;:158;;;;20177:36;20201:11;20177:23;:36::i;:::-;20055:158;20035:178;;19916:305;;;:::o;25332:127::-;25397:4;25449:1;25421:30;;:7;:16;25429:7;25421:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25414:37;;25332:127;;;:::o;15590:98::-;15643:7;15670:10;15663:17;;15590:98;:::o;29478:174::-;29580:2;29553:15;:24;29569:7;29553:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29636:7;29632:2;29598:46;;29607:23;29622:7;29607:14;:23::i;:::-;29598:46;;;;;;;;;;;;29478:174;;:::o;25626:348::-;25719:4;25744:16;25752:7;25744;:16::i;:::-;25736:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25820:13;25836:23;25851:7;25836:14;:23::i;:::-;25820:39;;25889:5;25878:16;;:7;:16;;;:51;;;;25922:7;25898:31;;:20;25910:7;25898:11;:20::i;:::-;:31;;;25878:51;:87;;;;25933:32;25950:5;25957:7;25933:16;:32::i;:::-;25878:87;25870:96;;;25626:348;;;;:::o;28735:625::-;28894:4;28867:31;;:23;28882:7;28867:14;:23::i;:::-;:31;;;28859:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;28973:1;28959:16;;:2;:16;;;;28951:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29029:39;29050:4;29056:2;29060:7;29029:20;:39::i;:::-;29133:29;29150:1;29154:7;29133:8;:29::i;:::-;29194:1;29175:9;:15;29185:4;29175:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29223:1;29206:9;:13;29216:2;29206:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29254:2;29235:7;:16;29243:7;29235:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29293:7;29289:2;29274:27;;29283:4;29274:27;;;;;;;;;;;;29314:38;29334:4;29340:2;29344:7;29314:19;:38::i;:::-;28735:625;;;:::o;27978:420::-;28038:13;28054:23;28069:7;28054:14;:23::i;:::-;28038:39;;28090:48;28111:5;28126:1;28130:7;28090:20;:48::i;:::-;28179:29;28196:1;28200:7;28179:8;:29::i;:::-;28241:1;28221:9;:16;28231:5;28221:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;28260:7;:16;28268:7;28260:16;;;;;;;;;;;;28253:23;;;;;;;;;;;28322:7;28318:1;28294:36;;28303:5;28294:36;;;;;;;;;;;;28343:47;28363:5;28378:1;28382:7;28343:19;:47::i;:::-;27978:420;;:::o;32691:91::-;32766:8;32756:7;:18;;;;;;;;;;;;:::i;:::-;;32691:91;:::o;46906:98::-;46964:7;46995:1;46991;:5;;;;:::i;:::-;46984:12;;46906:98;;;;:::o;54140:362::-;54216:7;54236:9;54256;54276:7;54350:2;54342:7;54338:15;54332:22;54328:26;;54390:2;54382:7;54378:15;54372:22;54368:26;;54440:3;54434:2;54426:7;54422:15;54416:22;54412:32;54408:36;;54472:22;54482:5;54488:1;54490;54492;54472:22;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54465:29;;;;;54140:362;;;;:::o;46168:98::-;46226:7;46257:1;46253;:5;;;;:::i;:::-;46246:12;;46168:98;;;;:::o;26316:110::-;26392:26;26402:2;26406:7;26392:26;;;;;;;;;;;;:9;:26::i;:::-;26316:110;;:::o;43425:191::-;43499:16;43518:6;;;;;;;;;;;43499:25;;43544:8;43535:6;;:17;;;;;;;;;;;;;;;;;;43599:8;43568:40;;43589:8;43568:40;;;;;;;;;;;;43425:191;;:::o;29794:315::-;29949:8;29940:17;;:5;:17;;;;29932:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;30036:8;29998:18;:25;30017:5;29998:25;;;;;;;;;;;;;;;:35;30024:8;29998:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;30082:8;30060:41;;30075:5;30060:41;;;30092:8;30060:41;;;;;;:::i;:::-;;;;;;;;29794:315;;;:::o;24704:::-;24861:28;24871:4;24877:2;24881:7;24861:9;:28::i;:::-;24908:48;24931:4;24937:2;24941:7;24950:5;24908:22;:48::i;:::-;24900:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24704:315;;;;:::o;16032:723::-;16088:13;16318:1;16309:5;:10;16305:53;;;16336:10;;;;;;;;;;;;;;;;;;;;;16305:53;16368:12;16383:5;16368:20;;16399:14;16424:78;16439:1;16431:4;:9;16424:78;;16457:8;;;;;:::i;:::-;;;;16488:2;16480:10;;;;;:::i;:::-;;;16424:78;;;16512:19;16544:6;16534:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16512:39;;16562:154;16578:1;16569:5;:10;16562:154;;16606:1;16596:11;;;;;:::i;:::-;;;16673:2;16665:5;:10;;;;:::i;:::-;16652:2;:24;;;;:::i;:::-;16639:39;;16622:6;16629;16622:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;16702:2;16693:11;;;;;:::i;:::-;;;16562:154;;;16740:6;16726:21;;;;;16032:723;;;;:::o;18489:157::-;18574:4;18613:25;18598:40;;;:11;:40;;;;18591:47;;18489:157;;;:::o;36764:589::-;36908:45;36935:4;36941:2;36945:7;36908:26;:45::i;:::-;36986:1;36970:18;;:4;:18;;;36966:187;;;37005:40;37037:7;37005:31;:40::i;:::-;36966:187;;;37075:2;37067:10;;:4;:10;;;37063:90;;37094:47;37127:4;37133:7;37094:32;:47::i;:::-;37063:90;36966:187;37181:1;37167:16;;:2;:16;;;37163:183;;;37200:45;37237:7;37200:36;:45::i;:::-;37163:183;;;37273:4;37267:10;;:2;:10;;;37263:83;;37294:40;37322:2;37326:7;37294:27;:40::i;:::-;37263:83;37163:183;36764:589;;;:::o;32556:125::-;;;;:::o;26653:321::-;26783:18;26789:2;26793:7;26783:5;:18::i;:::-;26834:54;26865:1;26869:2;26873:7;26882:5;26834:22;:54::i;:::-;26812:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26653:321;;;:::o;30674:799::-;30829:4;30850:15;:2;:13;;;:15::i;:::-;30846:620;;;30902:2;30886:36;;;30923:12;:10;:12::i;:::-;30937:4;30943:7;30952:5;30886:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31145:1;31128:6;:13;:18;31124:272;;;31171:60;;;;;;;;;;:::i;:::-;;;;;;;;31124:272;31346:6;31340:13;31331:6;31327:2;31323:15;31316:38;30882:529;31019:41;;;31009:51;;;:6;:51;;;;31002:58;;;;;30846:620;31450:4;31443:11;;30674:799;;;;;;;:::o;32045:126::-;;;;:::o;38076:164::-;38180:10;:17;;;;38153:15;:24;38169:7;38153:24;;;;;;;;;;;:44;;;;38208:10;38224:7;38208:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38076:164;:::o;38867:988::-;39133:22;39183:1;39158:22;39175:4;39158:16;:22::i;:::-;:26;;;;:::i;:::-;39133:51;;39195:18;39216:17;:26;39234:7;39216:26;;;;;;;;;;;;39195:47;;39363:14;39349:10;:28;39345:328;;39394:19;39416:12;:18;39429:4;39416:18;;;;;;;;;;;;;;;:34;39435:14;39416:34;;;;;;;;;;;;39394:56;;39500:11;39467:12;:18;39480:4;39467:18;;;;;;;;;;;;;;;:30;39486:10;39467:30;;;;;;;;;;;:44;;;;39617:10;39584:17;:30;39602:11;39584:30;;;;;;;;;;;:43;;;;39345:328;;39769:17;:26;39787:7;39769:26;;;;;;;;;;;39762:33;;;39813:12;:18;39826:4;39813:18;;;;;;;;;;;;;;;:34;39832:14;39813:34;;;;;;;;;;;39806:41;;;38867:988;;;;:::o;40150:1079::-;40403:22;40448:1;40428:10;:17;;;;:21;;;;:::i;:::-;40403:46;;40460:18;40481:15;:24;40497:7;40481:24;;;;;;;;;;;;40460:45;;40832:19;40854:10;40865:14;40854:26;;;;;;;;;;;;;;;;;;;;;;;;40832:48;;40918:11;40893:10;40904;40893:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41029:10;40998:15;:28;41014:11;40998:28;;;;;;;;;;;:41;;;;41170:15;:24;41186:7;41170:24;;;;;;;;;;;41163:31;;;41205:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40150:1079;;;;:::o;37654:221::-;37739:14;37756:20;37773:2;37756:16;:20::i;:::-;37739:37;;37814:7;37787:12;:16;37800:2;37787:16;;;;;;;;;;;;;;;:24;37804:6;37787:24;;;;;;;;;;;:34;;;;37861:6;37832:17;:26;37850:7;37832:26;;;;;;;;;;;:35;;;;37654:221;;;:::o;27310:439::-;27404:1;27390:16;;:2;:16;;;;27382:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27463:16;27471:7;27463;:16::i;:::-;27462:17;27454:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27525:45;27554:1;27558:2;27562:7;27525:20;:45::i;:::-;27600:1;27583:9;:13;27593:2;27583:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27631:2;27612:7;:16;27620:7;27612:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27676:7;27672:2;27651:33;;27668:1;27651:33;;;;;;;;;;;;27697:44;27725:1;27729:2;27733:7;27697:19;:44::i;:::-;27310:439;;:::o;7751:326::-;7811:4;8068:1;8046:7;:12;;;;;;;;;;;;;;;;;;;;;;;;;:19;:23;8039:30;;7751:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:663::-;;;;6235:2;6223:9;6214:7;6210:23;6206:32;6203:2;;;6251:1;6248;6241:12;6203:2;6294:1;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6265:117;6421:2;6447:53;6492:7;6483:6;6472:9;6468:22;6447:53;:::i;:::-;6437:63;;6392:118;6577:2;6566:9;6562:18;6549:32;6608:18;6600:6;6597:30;6594:2;;;6640:1;6637;6630:12;6594:2;6668:62;6722:7;6713:6;6702:9;6698:22;6668:62;:::i;:::-;6658:72;;6520:220;6193:554;;;;;:::o;6753:118::-;6840:24;6858:5;6840:24;:::i;:::-;6835:3;6828:37;6818:53;;:::o;6877:157::-;6982:45;7002:24;7020:5;7002:24;:::i;:::-;6982:45;:::i;:::-;6977:3;6970:58;6960:74;;:::o;7040:109::-;7121:21;7136:5;7121:21;:::i;:::-;7116:3;7109:34;7099:50;;:::o;7155:118::-;7242:24;7260:5;7242:24;:::i;:::-;7237:3;7230:37;7220:53;;:::o;7279:360::-;;7393:38;7425:5;7393:38;:::i;:::-;7447:70;7510:6;7505:3;7447:70;:::i;:::-;7440:77;;7526:52;7571:6;7566:3;7559:4;7552:5;7548:16;7526:52;:::i;:::-;7603:29;7625:6;7603:29;:::i;:::-;7598:3;7594:39;7587:46;;7369:270;;;;;:::o;7645:364::-;;7761:39;7794:5;7761:39;:::i;:::-;7816:71;7880:6;7875:3;7816:71;:::i;:::-;7809:78;;7896:52;7941:6;7936:3;7929:4;7922:5;7918:16;7896:52;:::i;:::-;7973:29;7995:6;7973:29;:::i;:::-;7968:3;7964:39;7957:46;;7737:272;;;;;:::o;8015:377::-;;8149:39;8182:5;8149:39;:::i;:::-;8204:89;8286:6;8281:3;8204:89;:::i;:::-;8197:96;;8302:52;8347:6;8342:3;8335:4;8328:5;8324:16;8302:52;:::i;:::-;8379:6;8374:3;8370:16;8363:23;;8125:267;;;;;:::o;8398:375::-;;8561:67;8625:2;8620:3;8561:67;:::i;:::-;8554:74;;8658:34;8654:1;8649:3;8645:11;8638:55;8724:13;8719:2;8714:3;8710:12;8703:35;8764:2;8759:3;8755:12;8748:19;;8544:229;;;:::o;8779:382::-;;8942:67;9006:2;9001:3;8942:67;:::i;:::-;8935:74;;9039:34;9035:1;9030:3;9026:11;9019:55;9105:20;9100:2;9095:3;9091:12;9084:42;9152:2;9147:3;9143:12;9136:19;;8925:236;;;:::o;9167:305::-;;9330:66;9394:1;9389:3;9330:66;:::i;:::-;9323:73;;9426:10;9422:1;9417:3;9413:11;9406:31;9463:2;9458:3;9454:12;9447:19;;9313:159;;;:::o;9478:370::-;;9641:67;9705:2;9700:3;9641:67;:::i;:::-;9634:74;;9738:34;9734:1;9729:3;9725:11;9718:55;9804:8;9799:2;9794:3;9790:12;9783:30;9839:2;9834:3;9830:12;9823:19;;9624:224;;;:::o;9854:369::-;;10017:67;10081:2;10076:3;10017:67;:::i;:::-;10010:74;;10114:34;10110:1;10105:3;10101:11;10094:55;10180:7;10175:2;10170:3;10166:12;10159:29;10214:2;10209:3;10205:12;10198:19;;10000:223;;;:::o;10229:326::-;;10392:67;10456:2;10451:3;10392:67;:::i;:::-;10385:74;;10489:30;10485:1;10480:3;10476:11;10469:51;10546:2;10541:3;10537:12;10530:19;;10375:180;;;:::o;10561:368::-;;10724:67;10788:2;10783:3;10724:67;:::i;:::-;10717:74;;10821:34;10817:1;10812:3;10808:11;10801:55;10887:6;10882:2;10877:3;10873:12;10866:28;10920:2;10915:3;10911:12;10904:19;;10707:222;;;:::o;10935:323::-;;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11195:27;11191:1;11186:3;11182:11;11175:48;11249:2;11244:3;11240:12;11233:19;;11081:177;;;:::o;11264:329::-;;11427:67;11491:2;11486:3;11427:67;:::i;:::-;11420:74;;11524:33;11520:1;11515:3;11511:11;11504:54;11584:2;11579:3;11575:12;11568:19;;11410:183;;;:::o;11599:376::-;;11762:67;11826:2;11821:3;11762:67;:::i;:::-;11755:74;;11859:34;11855:1;11850:3;11846:11;11839:55;11925:14;11920:2;11915:3;11911:12;11904:36;11966:2;11961:3;11957:12;11950:19;;11745:230;;;:::o;11981:388::-;;12144:67;12208:2;12203:3;12144:67;:::i;:::-;12137:74;;12241:34;12237:1;12232:3;12228:11;12221:55;12307:26;12302:2;12297:3;12293:12;12286:48;12360:2;12355:3;12351:12;12344:19;;12127:242;;;:::o;12375:374::-;;12538:67;12602:2;12597:3;12538:67;:::i;:::-;12531:74;;12635:34;12631:1;12626:3;12622:11;12615:55;12701:12;12696:2;12691:3;12687:12;12680:34;12740:2;12735:3;12731:12;12724:19;;12521:228;;;:::o;12755:373::-;;12918:67;12982:2;12977:3;12918:67;:::i;:::-;12911:74;;13015:34;13011:1;13006:3;13002:11;12995:55;13081:11;13076:2;13071:3;13067:12;13060:33;13119:2;13114:3;13110:12;13103:19;;12901:227;;;:::o;13134:330::-;;13297:67;13361:2;13356:3;13297:67;:::i;:::-;13290:74;;13394:34;13390:1;13385:3;13381:11;13374:55;13455:2;13450:3;13446:12;13439:19;;13280:184;;;:::o;13470:376::-;;13633:67;13697:2;13692:3;13633:67;:::i;:::-;13626:74;;13730:34;13726:1;13721:3;13717:11;13710:55;13796:14;13791:2;13786:3;13782:12;13775:36;13837:2;13832:3;13828:12;13821:19;;13616:230;;;:::o;13852:315::-;;14015:67;14079:2;14074:3;14015:67;:::i;:::-;14008:74;;14112:19;14108:1;14103:3;14099:11;14092:40;14158:2;14153:3;14149:12;14142:19;;13998:169;;;:::o;14173:379::-;;14336:67;14400:2;14395:3;14336:67;:::i;:::-;14329:74;;14433:34;14429:1;14424:3;14420:11;14413:55;14499:17;14494:2;14489:3;14485:12;14478:39;14543:2;14538:3;14534:12;14527:19;;14319:233;;;:::o;14558:330::-;;14721:67;14785:2;14780:3;14721:67;:::i;:::-;14714:74;;14818:34;14814:1;14809:3;14805:11;14798:55;14879:2;14874:3;14870:12;14863:19;;14704:184;;;:::o;14894:379::-;;15057:67;15121:2;15116:3;15057:67;:::i;:::-;15050:74;;15154:34;15150:1;15145:3;15141:11;15134:55;15220:17;15215:2;15210:3;15206:12;15199:39;15264:2;15259:3;15255:12;15248:19;;15040:233;;;:::o;15279:365::-;;15442:67;15506:2;15501:3;15442:67;:::i;:::-;15435:74;;15539:34;15535:1;15530:3;15526:11;15519:55;15605:3;15600:2;15595:3;15591:12;15584:25;15635:2;15630:3;15626:12;15619:19;;15425:219;;;:::o;15650:372::-;;15813:67;15877:2;15872:3;15813:67;:::i;:::-;15806:74;;15910:34;15906:1;15901:3;15897:11;15890:55;15976:10;15971:2;15966:3;15962:12;15955:32;16013:2;16008:3;16004:12;15997:19;;15796:226;;;:::o;16028:327::-;;16191:67;16255:2;16250:3;16191:67;:::i;:::-;16184:74;;16288:31;16284:1;16279:3;16275:11;16268:52;16346:2;16341:3;16337:12;16330:19;;16174:181;;;:::o;16361:314::-;;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16621:18;16617:1;16612:3;16608:11;16601:39;16666:2;16661:3;16657:12;16650:19;;16507:168;;;:::o;16681:370::-;;16844:67;16908:2;16903:3;16844:67;:::i;:::-;16837:74;;16941:34;16937:1;16932:3;16928:11;16921:55;17007:8;17002:2;16997:3;16993:12;16986:30;17042:2;17037:3;17033:12;17026:19;;16827:224;;;:::o;17057:381::-;;17220:67;17284:2;17279:3;17220:67;:::i;:::-;17213:74;;17317:34;17313:1;17308:3;17304:11;17297:55;17383:19;17378:2;17373:3;17369:12;17362:41;17429:2;17424:3;17420:12;17413:19;;17203:235;;;:::o;17444:305::-;;17607:66;17671:1;17666:3;17607:66;:::i;:::-;17600:73;;17703:10;17699:1;17694:3;17690:11;17683:31;17740:2;17735:3;17731:12;17724:19;;17590:159;;;:::o;17755:376::-;;17918:67;17982:2;17977:3;17918:67;:::i;:::-;17911:74;;18015:34;18011:1;18006:3;18002:11;17995:55;18081:14;18076:2;18071:3;18067:12;18060:36;18122:2;18117:3;18113:12;18106:19;;17901:230;;;:::o;18137:380::-;;18300:67;18364:2;18359:3;18300:67;:::i;:::-;18293:74;;18397:34;18393:1;18388:3;18384:11;18377:55;18463:18;18458:2;18453:3;18449:12;18442:40;18508:2;18503:3;18499:12;18492:19;;18283:234;;;:::o;18523:380::-;;18686:67;18750:2;18745:3;18686:67;:::i;:::-;18679:74;;18783:34;18779:1;18774:3;18770:11;18763:55;18849:18;18844:2;18839:3;18835:12;18828:40;18894:2;18889:3;18885:12;18878:19;;18669:234;;;:::o;18909:118::-;18996:24;19014:5;18996:24;:::i;:::-;18991:3;18984:37;18974:53;;:::o;19033:157::-;19138:45;19158:24;19176:5;19158:24;:::i;:::-;19138:45;:::i;:::-;19133:3;19126:58;19116:74;;:::o;19196:112::-;19279:22;19295:5;19279:22;:::i;:::-;19274:3;19267:35;19257:51;;:::o;19314:397::-;;19469:75;19540:3;19531:6;19469:75;:::i;:::-;19569:2;19564:3;19560:12;19553:19;;19582:75;19653:3;19644:6;19582:75;:::i;:::-;19682:2;19677:3;19673:12;19666:19;;19702:3;19695:10;;19458:253;;;;;:::o;19717:435::-;;19919:95;20010:3;20001:6;19919:95;:::i;:::-;19912:102;;20031:95;20122:3;20113:6;20031:95;:::i;:::-;20024:102;;20143:3;20136:10;;19901:251;;;;;:::o;20158:222::-;;20289:2;20278:9;20274:18;20266:26;;20302:71;20370:1;20359:9;20355:17;20346:6;20302:71;:::i;:::-;20256:124;;;;:::o;20386:640::-;;20619:3;20608:9;20604:19;20596:27;;20633:71;20701:1;20690:9;20686:17;20677:6;20633:71;:::i;:::-;20714:72;20782:2;20771:9;20767:18;20758:6;20714:72;:::i;:::-;20796;20864:2;20853:9;20849:18;20840:6;20796:72;:::i;:::-;20915:9;20909:4;20905:20;20900:2;20889:9;20885:18;20878:48;20943:76;21014:4;21005:6;20943:76;:::i;:::-;20935:84;;20586:440;;;;;;;:::o;21032:210::-;;21157:2;21146:9;21142:18;21134:26;;21170:65;21232:1;21221:9;21217:17;21208:6;21170:65;:::i;:::-;21124:118;;;;:::o;21248:545::-;;21459:3;21448:9;21444:19;21436:27;;21473:71;21541:1;21530:9;21526:17;21517:6;21473:71;:::i;:::-;21554:68;21618:2;21607:9;21603:18;21594:6;21554:68;:::i;:::-;21632:72;21700:2;21689:9;21685:18;21676:6;21632:72;:::i;:::-;21714;21782:2;21771:9;21767:18;21758:6;21714:72;:::i;:::-;21426:367;;;;;;;:::o;21799:313::-;;21950:2;21939:9;21935:18;21927:26;;21999:9;21993:4;21989:20;21985:1;21974:9;21970:17;21963:47;22027:78;22100:4;22091:6;22027:78;:::i;:::-;22019:86;;21917:195;;;;:::o;22118:419::-;;22322:2;22311:9;22307:18;22299:26;;22371:9;22365:4;22361:20;22357:1;22346:9;22342:17;22335:47;22399:131;22525:4;22399:131;:::i;:::-;22391:139;;22289:248;;;:::o;22543:419::-;;22747:2;22736:9;22732:18;22724:26;;22796:9;22790:4;22786:20;22782:1;22771:9;22767:17;22760:47;22824:131;22950:4;22824:131;:::i;:::-;22816:139;;22714:248;;;:::o;22968:419::-;;23172:2;23161:9;23157:18;23149:26;;23221:9;23215:4;23211:20;23207:1;23196:9;23192:17;23185:47;23249:131;23375:4;23249:131;:::i;:::-;23241:139;;23139:248;;;:::o;23393:419::-;;23597:2;23586:9;23582:18;23574:26;;23646:9;23640:4;23636:20;23632:1;23621:9;23617:17;23610:47;23674:131;23800:4;23674:131;:::i;:::-;23666:139;;23564:248;;;:::o;23818:419::-;;24022:2;24011:9;24007:18;23999:26;;24071:9;24065:4;24061:20;24057:1;24046:9;24042:17;24035:47;24099:131;24225:4;24099:131;:::i;:::-;24091:139;;23989:248;;;:::o;24243:419::-;;24447:2;24436:9;24432:18;24424:26;;24496:9;24490:4;24486:20;24482:1;24471:9;24467:17;24460:47;24524:131;24650:4;24524:131;:::i;:::-;24516:139;;24414:248;;;:::o;24668:419::-;;24872:2;24861:9;24857:18;24849:26;;24921:9;24915:4;24911:20;24907:1;24896:9;24892:17;24885:47;24949:131;25075:4;24949:131;:::i;:::-;24941:139;;24839:248;;;:::o;25093:419::-;;25297:2;25286:9;25282:18;25274:26;;25346:9;25340:4;25336:20;25332:1;25321:9;25317:17;25310:47;25374:131;25500:4;25374:131;:::i;:::-;25366:139;;25264:248;;;:::o;25518:419::-;;25722:2;25711:9;25707:18;25699:26;;25771:9;25765:4;25761:20;25757:1;25746:9;25742:17;25735:47;25799:131;25925:4;25799:131;:::i;:::-;25791:139;;25689:248;;;:::o;25943:419::-;;26147:2;26136:9;26132:18;26124:26;;26196:9;26190:4;26186:20;26182:1;26171:9;26167:17;26160:47;26224:131;26350:4;26224:131;:::i;:::-;26216:139;;26114:248;;;:::o;26368:419::-;;26572:2;26561:9;26557:18;26549:26;;26621:9;26615:4;26611:20;26607:1;26596:9;26592:17;26585:47;26649:131;26775:4;26649:131;:::i;:::-;26641:139;;26539:248;;;:::o;26793:419::-;;26997:2;26986:9;26982:18;26974:26;;27046:9;27040:4;27036:20;27032:1;27021:9;27017:17;27010:47;27074:131;27200:4;27074:131;:::i;:::-;27066:139;;26964:248;;;:::o;27218:419::-;;27422:2;27411:9;27407:18;27399:26;;27471:9;27465:4;27461:20;27457:1;27446:9;27442:17;27435:47;27499:131;27625:4;27499:131;:::i;:::-;27491:139;;27389:248;;;:::o;27643:419::-;;27847:2;27836:9;27832:18;27824:26;;27896:9;27890:4;27886:20;27882:1;27871:9;27867:17;27860:47;27924:131;28050:4;27924:131;:::i;:::-;27916:139;;27814:248;;;:::o;28068:419::-;;28272:2;28261:9;28257:18;28249:26;;28321:9;28315:4;28311:20;28307:1;28296:9;28292:17;28285:47;28349:131;28475:4;28349:131;:::i;:::-;28341:139;;28239:248;;;:::o;28493:419::-;;28697:2;28686:9;28682:18;28674:26;;28746:9;28740:4;28736:20;28732:1;28721:9;28717:17;28710:47;28774:131;28900:4;28774:131;:::i;:::-;28766:139;;28664:248;;;:::o;28918:419::-;;29122:2;29111:9;29107:18;29099:26;;29171:9;29165:4;29161:20;29157:1;29146:9;29142:17;29135:47;29199:131;29325:4;29199:131;:::i;:::-;29191:139;;29089:248;;;:::o;29343:419::-;;29547:2;29536:9;29532:18;29524:26;;29596:9;29590:4;29586:20;29582:1;29571:9;29567:17;29560:47;29624:131;29750:4;29624:131;:::i;:::-;29616:139;;29514:248;;;:::o;29768:419::-;;29972:2;29961:9;29957:18;29949:26;;30021:9;30015:4;30011:20;30007:1;29996:9;29992:17;29985:47;30049:131;30175:4;30049:131;:::i;:::-;30041:139;;29939:248;;;:::o;30193:419::-;;30397:2;30386:9;30382:18;30374:26;;30446:9;30440:4;30436:20;30432:1;30421:9;30417:17;30410:47;30474:131;30600:4;30474:131;:::i;:::-;30466:139;;30364:248;;;:::o;30618:419::-;;30822:2;30811:9;30807:18;30799:26;;30871:9;30865:4;30861:20;30857:1;30846:9;30842:17;30835:47;30899:131;31025:4;30899:131;:::i;:::-;30891:139;;30789:248;;;:::o;31043:419::-;;31247:2;31236:9;31232:18;31224:26;;31296:9;31290:4;31286:20;31282:1;31271:9;31267:17;31260:47;31324:131;31450:4;31324:131;:::i;:::-;31316:139;;31214:248;;;:::o;31468:419::-;;31672:2;31661:9;31657:18;31649:26;;31721:9;31715:4;31711:20;31707:1;31696:9;31692:17;31685:47;31749:131;31875:4;31749:131;:::i;:::-;31741:139;;31639:248;;;:::o;31893:419::-;;32097:2;32086:9;32082:18;32074:26;;32146:9;32140:4;32136:20;32132:1;32121:9;32117:17;32110:47;32174:131;32300:4;32174:131;:::i;:::-;32166:139;;32064:248;;;:::o;32318:419::-;;32522:2;32511:9;32507:18;32499:26;;32571:9;32565:4;32561:20;32557:1;32546:9;32542:17;32535:47;32599:131;32725:4;32599:131;:::i;:::-;32591:139;;32489:248;;;:::o;32743:419::-;;32947:2;32936:9;32932:18;32924:26;;32996:9;32990:4;32986:20;32982:1;32971:9;32967:17;32960:47;33024:131;33150:4;33024:131;:::i;:::-;33016:139;;32914:248;;;:::o;33168:419::-;;33372:2;33361:9;33357:18;33349:26;;33421:9;33415:4;33411:20;33407:1;33396:9;33392:17;33385:47;33449:131;33575:4;33449:131;:::i;:::-;33441:139;;33339:248;;;:::o;33593:419::-;;33797:2;33786:9;33782:18;33774:26;;33846:9;33840:4;33836:20;33832:1;33821:9;33817:17;33810:47;33874:131;34000:4;33874:131;:::i;:::-;33866:139;;33764:248;;;:::o;34018:419::-;;34222:2;34211:9;34207:18;34199:26;;34271:9;34265:4;34261:20;34257:1;34246:9;34242:17;34235:47;34299:131;34425:4;34299:131;:::i;:::-;34291:139;;34189:248;;;:::o;34443:222::-;;34574:2;34563:9;34559:18;34551:26;;34587:71;34655:1;34644:9;34640:17;34631:6;34587:71;:::i;:::-;34541:124;;;;:::o;34671:283::-;;34737:2;34731:9;34721:19;;34779:4;34771:6;34767:17;34886:6;34874:10;34871:22;34850:18;34838:10;34835:34;34832:62;34829:2;;;34897:18;;:::i;:::-;34829:2;34937:10;34933:2;34926:22;34711:243;;;;:::o;34960:331::-;;35111:18;35103:6;35100:30;35097:2;;;35133:18;;:::i;:::-;35097:2;35218:4;35214:9;35207:4;35199:6;35195:17;35191:33;35183:41;;35279:4;35273;35269:15;35261:23;;35026:265;;;:::o;35297:332::-;;35449:18;35441:6;35438:30;35435:2;;;35471:18;;:::i;:::-;35435:2;35556:4;35552:9;35545:4;35537:6;35533:17;35529:33;35521:41;;35617:4;35611;35607:15;35599:23;;35364:265;;;:::o;35635:98::-;;35720:5;35714:12;35704:22;;35693:40;;;:::o;35739:99::-;;35825:5;35819:12;35809:22;;35798:40;;;:::o;35844:168::-;;35961:6;35956:3;35949:19;36001:4;35996:3;35992:14;35977:29;;35939:73;;;;:::o;36018:169::-;;36136:6;36131:3;36124:19;36176:4;36171:3;36167:14;36152:29;;36114:73;;;;:::o;36193:148::-;;36332:3;36317:18;;36307:34;;;;:::o;36347:305::-;;36406:20;36424:1;36406:20;:::i;:::-;36401:25;;36440:20;36458:1;36440:20;:::i;:::-;36435:25;;36594:1;36526:66;36522:74;36519:1;36516:81;36513:2;;;36600:18;;:::i;:::-;36513:2;36644:1;36641;36637:9;36630:16;;36391:261;;;;:::o;36658:185::-;;36715:20;36733:1;36715:20;:::i;:::-;36710:25;;36749:20;36767:1;36749:20;:::i;:::-;36744:25;;36788:1;36778:2;;36793:18;;:::i;:::-;36778:2;36835:1;36832;36828:9;36823:14;;36700:143;;;;:::o;36849:348::-;;36912:20;36930:1;36912:20;:::i;:::-;36907:25;;36946:20;36964:1;36946:20;:::i;:::-;36941:25;;37134:1;37066:66;37062:74;37059:1;37056:81;37051:1;37044:9;37037:17;37033:105;37030:2;;;37141:18;;:::i;:::-;37030:2;37189:1;37186;37182:9;37171:20;;36897:300;;;;:::o;37203:191::-;;37263:20;37281:1;37263:20;:::i;:::-;37258:25;;37297:20;37315:1;37297:20;:::i;:::-;37292:25;;37336:1;37333;37330:8;37327:2;;;37341:18;;:::i;:::-;37327:2;37386:1;37383;37379:9;37371:17;;37248:146;;;;:::o;37400:96::-;;37466:24;37484:5;37466:24;:::i;:::-;37455:35;;37445:51;;;:::o;37502:90::-;;37579:5;37572:13;37565:21;37554:32;;37544:48;;;:::o;37598:77::-;;37664:5;37653:16;;37643:32;;;:::o;37681:149::-;;37757:66;37750:5;37746:78;37735:89;;37725:105;;;:::o;37836:126::-;;37913:42;37906:5;37902:54;37891:65;;37881:81;;;:::o;37968:77::-;;38034:5;38023:16;;38013:32;;;:::o;38051:86::-;;38126:4;38119:5;38115:16;38104:27;;38094:43;;;:::o;38143:154::-;38227:6;38222:3;38217;38204:30;38289:1;38280:6;38275:3;38271:16;38264:27;38194:103;;;:::o;38303:307::-;38371:1;38381:113;38395:6;38392:1;38389:13;38381:113;;;38480:1;38475:3;38471:11;38465:18;38461:1;38456:3;38452:11;38445:39;38417:2;38414:1;38410:10;38405:15;;38381:113;;;38512:6;38509:1;38506:13;38503:2;;;38592:1;38583:6;38578:3;38574:16;38567:27;38503:2;38352:258;;;;:::o;38616:320::-;;38697:1;38691:4;38687:12;38677:22;;38744:1;38738:4;38734:12;38765:18;38755:2;;38821:4;38813:6;38809:17;38799:27;;38755:2;38883;38875:6;38872:14;38852:18;38849:38;38846:2;;;38902:18;;:::i;:::-;38846:2;38667:269;;;;:::o;38942:233::-;;39004:24;39022:5;39004:24;:::i;:::-;38995:33;;39050:66;39043:5;39040:77;39037:2;;;39120:18;;:::i;:::-;39037:2;39167:1;39160:5;39156:13;39149:20;;38985:190;;;:::o;39181:100::-;;39249:26;39269:5;39249:26;:::i;:::-;39238:37;;39228:53;;;:::o;39287:94::-;;39355:20;39369:5;39355:20;:::i;:::-;39344:31;;39334:47;;;:::o;39387:79::-;;39455:5;39444:16;;39434:32;;;:::o;39472:176::-;;39521:20;39539:1;39521:20;:::i;:::-;39516:25;;39555:20;39573:1;39555:20;:::i;:::-;39550:25;;39594:1;39584:2;;39599:18;;:::i;:::-;39584:2;39640:1;39637;39633:9;39628:14;;39506:142;;;;:::o;39654:180::-;39702:77;39699:1;39692:88;39799:4;39796:1;39789:15;39823:4;39820:1;39813:15;39840:180;39888:77;39885:1;39878:88;39985:4;39982:1;39975:15;40009:4;40006:1;39999:15;40026:180;40074:77;40071:1;40064:88;40171:4;40168:1;40161:15;40195:4;40192:1;40185:15;40212:180;40260:77;40257:1;40250:88;40357:4;40354:1;40347:15;40381:4;40378:1;40371:15;40398:102;;40490:2;40486:7;40481:2;40474:5;40470:14;40466:28;40456:38;;40446:54;;;:::o;40506:94::-;;40587:5;40583:2;40579:14;40558:35;;40548:52;;;:::o;40606:122::-;40679:24;40697:5;40679:24;:::i;:::-;40672:5;40669:35;40659:2;;40718:1;40715;40708:12;40659:2;40649:79;:::o;40734:116::-;40804:21;40819:5;40804:21;:::i;:::-;40797:5;40794:32;40784:2;;40840:1;40837;40830:12;40784:2;40774:76;:::o;40856:120::-;40928:23;40945:5;40928:23;:::i;:::-;40921:5;40918:34;40908:2;;40966:1;40963;40956:12;40908:2;40898:78;:::o;40982:122::-;41055:24;41073:5;41055:24;:::i;:::-;41048:5;41045:35;41035:2;;41094:1;41091;41084:12;41035:2;41025:79;:::o

Swarm Source

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