ETH Price: $3,336.44 (-4.21%)
Gas: 4 Gwei

Token

GoblinPoop (GP)
 

Overview

Max Total Supply

8,888 GP

Holders

546

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 GP
0xc79a73f28b252e0820e25df4b96ef381d732e5d5
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:
GoblinPoop

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity 0.8.10;

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}


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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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

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

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


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

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


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

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


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


contract GoblinPoop is ERC721A, ERC2981, Ownable, ReentrancyGuard {

    string public baseURI = "https://nftservice.s3.amazonaws.com/goblinpoop/";

    uint256 public tokenPrice = 5000000000000000; //0.005 ETH

    uint public maxTokensPerTx = 20;

    uint public defaultTokensPerTx = 3;

    uint256 public MAX_TOKENS = 8888;

    bool public saleIsActive = true;

    bool public whitelistMintIsActive = false;

    uint256 public whitelistMintRemains = 0;

    uint public maxFreePerUser = 1;

    uint public maxWhitelistPerUser = 20;

    uint public maxTokensWithFeePerTx = 1;

    uint public maxTokensFreePerTx = 1;

    uint public percentRequiredFee = 50;

    mapping (address => uint256) addressToUserFreeMinted;
    mapping (address => uint256) addressToUserWhitelistMinted;

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    enum SaleMode{
        X_FREE,//1
        X_FEE,//2
        X_LOTTERY//3
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE;

    SaleMode private saleMode = SaleMode.X_LOTTERY;

    constructor(        
    ) ERC721A("GoblinPoop", "GP") {
        _setDefaultRoyalty(msg.sender, 200);
        _safeMint(msg.sender, 100);
    }


    struct HelperState {
        uint256 tokenPrice;
        uint256 maxTokensPerTx;
        uint256 MAX_TOKENS;
        bool saleIsActive;
        uint256 totalSupply;
        uint  maxFreePerUser;
        uint  maxTokensWithFeePerTx;
        uint  maxTokensFreePerTx;
        uint  percentRequiredFee ;
        uint256 userMinted;
        uint256 userFreeMinted;
        uint lottery;
        uint saleMode;
        uint defaultTokensPerTx;
    }

    function _state(address minter) external view returns (HelperState memory) {
        return HelperState({
            tokenPrice: tokenPrice,
            maxTokensPerTx: maxTokensPerTx,
            MAX_TOKENS: MAX_TOKENS,
            saleIsActive: saleIsActive,
            totalSupply: uint256(totalSupply()),
            maxFreePerUser : maxFreePerUser,
            maxTokensWithFeePerTx : maxTokensWithFeePerTx,
            maxTokensFreePerTx : maxTokensFreePerTx,
            percentRequiredFee :percentRequiredFee,
            userMinted: uint256(_numberMinted(minter)),
            userFreeMinted : addressToUserFreeMinted[minter],
            lottery : randomLottery(minter),
            saleMode : saleMode == SaleMode.X_FREE ? 1 : (saleMode == SaleMode.X_FEE  ? 2 : saleMode == SaleMode.X_LOTTERY ? 3 : 0),
            defaultTokensPerTx : defaultTokensPerTx
        });
    }

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

    function withdrawTo(address to, uint256 amount) public onlyOwner {
        require(amount <= address(this).balance, "Request would exceed balance of this contract");
        payable(to).transfer(amount);
    } 

    function reserveTokens(address to, uint numberOfTokens) public onlyOwner {        
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Request would exceed max supply of tokens");
        _safeMint(to, numberOfTokens);
    }         
    
    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }    

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

    function openWhitelistMint(uint256 _whitelistMintRemains, uint _maxWhitelistPerUser) public onlyOwner{
        whitelistMintIsActive = true;
        whitelistMintRemains = _whitelistMintRemains;
        maxWhitelistPerUser = _maxWhitelistPerUser;
        saleIsActive = true;
    }

    function closeWhitelistMint()public onlyOwner{
        whitelistMintIsActive = false;
        whitelistMintRemains = 0;
    }

    function getPrice(uint numberOfTokens, address minter) public view returns (uint256) {
        uint256 price = 0;
        if ( maxFreePerUser <= addressToUserFreeMinted[minter]  ) {
            price = numberOfTokens * tokenPrice;
        }
        else{
            if(saleMode == SaleMode.X_FREE){
                if(numberOfTokens > maxTokensFreePerTx){
                    price = (numberOfTokens - maxTokensFreePerTx) * tokenPrice;
                }
            } else if(saleMode == SaleMode.X_FEE){
                if(numberOfTokens >= maxTokensWithFeePerTx){
                    price = maxTokensWithFeePerTx * tokenPrice;
                } else{
                    price = numberOfTokens * tokenPrice;
                }
            } else if(saleMode == SaleMode.X_LOTTERY){
                uint lottery = randomLottery(minter);
                if(lottery <= percentRequiredFee){
                    if(numberOfTokens >= maxTokensWithFeePerTx){
                        price = maxTokensWithFeePerTx * tokenPrice;
                    } else{
                        price = numberOfTokens * tokenPrice;
                    }
                }
            }
        }
        return price;
    }

    function getNumberFreeTokens(uint numberOfTokens, address minter) public view returns (uint) {
        uint numberFreeTokens = 0;
        if ( maxFreePerUser <= addressToUserFreeMinted[minter]  ) {
            numberFreeTokens = 0;
        }
        else{
            if(saleMode == SaleMode.X_FREE){
                if(numberOfTokens > maxTokensFreePerTx){
                    numberFreeTokens = maxTokensFreePerTx;
                } else{
                    numberFreeTokens = numberOfTokens;
                }
            } else if(saleMode == SaleMode.X_FEE){
                if(numberOfTokens >= maxTokensWithFeePerTx){
                    numberFreeTokens = numberOfTokens - maxTokensWithFeePerTx;
                } else{
                    numberFreeTokens = 0;
                }
            } else if(saleMode == SaleMode.X_LOTTERY){
                uint lottery = randomLottery(minter);
                if(lottery <= percentRequiredFee){
                    if(numberOfTokens >= maxTokensWithFeePerTx){
                        numberFreeTokens = numberOfTokens - maxTokensWithFeePerTx;
                    } else{
                        numberFreeTokens = 0;
                    }
                } else{
                    numberFreeTokens = numberOfTokens;
                }
            }
        }
        return numberFreeTokens;
    }

    function mintToken(uint numberOfTokens) public payable nonReentrant {
        require(saleIsActive, "Sale must be active");
        require(numberOfTokens <= maxTokensPerTx, "Exceed max tokens per tx");
        require(numberOfTokens > 0, "Must mint at least one");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Exceed max supply");

        uint numberFreeTokens = 0;
        if(whitelistMintIsActive && msg.value <= 0){
            require(whitelistMintRemains > 0, "No whitelist tokens remain");
            require(addressToUserWhitelistMinted[msg.sender] + numberOfTokens <= maxWhitelistPerUser, "Exceed max free tokens per wallet");
            if(whitelistMintRemains - numberOfTokens <= 0){
                numberOfTokens = whitelistMintRemains;
            }
            _safeMint(msg.sender, numberOfTokens);
            addressToUserWhitelistMinted[msg.sender] = addressToUserWhitelistMinted[msg.sender] + numberOfTokens;
            whitelistMintRemains = whitelistMintRemains - numberOfTokens;
            if(whitelistMintRemains <= 0){
                whitelistMintIsActive = false;
            }
            numberFreeTokens = numberOfTokens;
        } else{
            uint256 price = getPrice(numberOfTokens, msg.sender);
            numberFreeTokens = getNumberFreeTokens(numberOfTokens, msg.sender);
            require(msg.value >= price, "Not enough ether");
            _safeMint(msg.sender, numberOfTokens);
        }

        if(numberFreeTokens > 0){
            addressToUserFreeMinted[msg.sender] = addressToUserFreeMinted[msg.sender] + numberFreeTokens;
        }
    }

    function setTokenPrice(uint256 newTokenPrice) public onlyOwner{
        tokenPrice = newTokenPrice;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) 
    {
        require(_exists(_tokenId), "Token does not exist.");
        if (tokenUriMode == TokenURIMode.MODE_TWO) {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId)
            )
          ) : "";
        } else {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
          ) : "";
        }
    }

    function setTokenURIMode(uint256 mode) external onlyOwner {
        if (mode == 2) {
            tokenUriMode = TokenURIMode.MODE_TWO;
        } else {
            tokenUriMode = TokenURIMode.MODE_ONE;
        }
    }

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

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    } 

    function numberFreeMinted(address owner) public view returns (uint256) {
        return addressToUserFreeMinted[owner];
    } 

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
      MAX_TOKENS = _maxSupply;
    }

    function setMaxTokensPerTx(uint _maxTokensPerTx) public onlyOwner{
        maxTokensPerTx = _maxTokensPerTx;
    }

    function setMaxFreePerUser(uint _maxFreePerUser) public onlyOwner{
        maxFreePerUser = _maxFreePerUser;
    }

    function setMaxTokensWithFeePerTx(uint _maxTokensWithFeePerTx) public onlyOwner{
        maxTokensWithFeePerTx = _maxTokensWithFeePerTx;
    }

    function setMaxTokensFreePerTx(uint _maxTokensFreePerTx) public onlyOwner{
        maxTokensFreePerTx = _maxTokensFreePerTx;
    }

    function setSaleMode(uint _saleMode, uint _maxFreePerUser, uint  _maxTokensWithFeePerTx, uint _maxTokensFreePerTx) public onlyOwner{
        if(_saleMode == 1){
            saleMode = SaleMode.X_FREE;
        } else if(_saleMode == 2){
            saleMode = SaleMode.X_FEE;
        }else if(_saleMode == 3){
            saleMode = SaleMode.X_LOTTERY;
        }
        maxTokensWithFeePerTx = _maxTokensWithFeePerTx;
        maxTokensFreePerTx = _maxTokensFreePerTx;
        maxFreePerUser = _maxFreePerUser;
        saleIsActive = true;
    }

    function getSaleMode() public view returns (uint){
        if(saleMode == SaleMode.X_FREE){
            return 1;
        } else if(saleMode == SaleMode.X_FEE){
            return 2;
        }else if(saleMode == SaleMode.X_LOTTERY){
            return 3;
        }
        return 0;
    }

    function setPercentRequiredFee (uint _percentRequiredFee) public onlyOwner{
        percentRequiredFee = _percentRequiredFee;
    }

    function setDefaultTokensPerTx(uint _defaultTokensPerTx) public onlyOwner{
        defaultTokensPerTx = _defaultTokensPerTx;
    }

    function userWhitelistMinted(address minter) public view returns (uint256){
        return addressToUserWhitelistMinted[minter];
    }

    /**
    @notice Sets the contract-wide royalty info.
     */
    function setRoyaltyInfo(address receiver, uint96 feeBasisPoints)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    
    function randomLottery(address adr) public view returns (uint){
        return uint( keccak256(abi.encodePacked(adr, name())) ) % 100;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxFreePerUser","type":"uint256"},{"internalType":"uint256","name":"maxTokensWithFeePerTx","type":"uint256"},{"internalType":"uint256","name":"maxTokensFreePerTx","type":"uint256"},{"internalType":"uint256","name":"percentRequiredFee","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"},{"internalType":"uint256","name":"userFreeMinted","type":"uint256"},{"internalType":"uint256","name":"lottery","type":"uint256"},{"internalType":"uint256","name":"saleMode","type":"uint256"},{"internalType":"uint256","name":"defaultTokensPerTx","type":"uint256"}],"internalType":"struct GoblinPoop.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"name":"getNumberFreeTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensWithFeePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMintRemains","type":"uint256"},{"internalType":"uint256","name":"_maxWhitelistPerUser","type":"uint256"}],"name":"openWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentRequiredFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"randomLottery","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_defaultTokensPerTx","type":"uint256"}],"name":"setDefaultTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreePerUser","type":"uint256"}],"name":"setMaxFreePerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensFreePerTx","type":"uint256"}],"name":"setMaxTokensFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensWithFeePerTx","type":"uint256"}],"name":"setMaxTokensWithFeePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentRequiredFee","type":"uint256"}],"name":"setPercentRequiredFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleMode","type":"uint256"},{"internalType":"uint256","name":"_maxFreePerUser","type":"uint256"},{"internalType":"uint256","name":"_maxTokensWithFeePerTx","type":"uint256"},{"internalType":"uint256","name":"_maxTokensFreePerTx","type":"uint256"}],"name":"setSaleMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","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":"tokenPrice","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":"minter","type":"address"}],"name":"userWhitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintRemains","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602f815260200162006b7b602f9139600c90805190602001906200003592919062000a3f565b506611c37937e08000600d556014600e556003600f556122b86010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff02191690831515021790555060006012556001601355601480556001601555600160165560326017556000601a60006101000a81548160ff02191690836001811115620000cd57620000cc62000aef565b5b02179055506002601a60016101000a81548160ff02191690836002811115620000fb57620000fa62000aef565b5b02179055503480156200010d57600080fd5b506040518060400160405280600a81526020017f476f626c696e506f6f70000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f475000000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200019292919062000a3f565b508060039080519060200190620001ab92919062000a3f565b50620001bc6200021860201b60201c565b6000819055505050620001e4620001d86200021d60201b60201c565b6200022560201b60201c565b6001600b81905550620001ff3360c8620002eb60201b60201c565b620002123360646200048f60201b60201c565b62000e8a565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002fb620004b560201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200035c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003539062000ba5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c69062000c17565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b620004b1828260405180602001604052806000815250620004bf60201b60201c565b5050565b6000612710905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200052d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000569576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200057e6000858386620008ae60201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506200074c8673ffffffffffffffffffffffffffffffffffffffff16620008b460201b620031941760201c565b156200081e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620007ca6000878480600101955087620008d760201b60201c565b62000801576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620007535782600054146200081857600080fd5b6200088a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200081f575b816000819055505050620008a8600085838662000a3960201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009056200021d60201b60201c565b8786866040518563ffffffff1660e01b815260040162000929949392919062000d3d565b6020604051808303816000875af19250505080156200096857506040513d601f19601f8201168201806040525081019062000965919062000df3565b60015b620009e6573d80600081146200099b576040519150601f19603f3d011682016040523d82523d6000602084013e620009a0565b606091505b50600081511415620009de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000a4d9062000e54565b90600052602060002090601f01602090048101928262000a71576000855562000abd565b82601f1062000a8c57805160ff191683800117855562000abd565b8280016001018555821562000abd579182015b8281111562000abc57825182559160200191906001019062000a9f565b5b50905062000acc919062000ad0565b5090565b5b8082111562000aeb57600081600090555060010162000ad1565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000b8d602a8362000b1e565b915062000b9a8262000b2f565b604082019050919050565b6000602082019050818103600083015262000bc08162000b7e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000bff60198362000b1e565b915062000c0c8262000bc7565b602082019050919050565b6000602082019050818103600083015262000c328162000bf0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c668262000c39565b9050919050565b62000c788162000c59565b82525050565b6000819050919050565b62000c938162000c7e565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000cd557808201518184015260208101905062000cb8565b8381111562000ce5576000848401525b50505050565b6000601f19601f8301169050919050565b600062000d098262000c99565b62000d15818562000ca4565b935062000d2781856020860162000cb5565b62000d328162000ceb565b840191505092915050565b600060808201905062000d54600083018762000c6d565b62000d63602083018662000c6d565b62000d72604083018562000c88565b818103606083015262000d86818462000cfc565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000dcd8162000d96565b811462000dd957600080fd5b50565b60008151905062000ded8162000dc2565b92915050565b60006020828403121562000e0c5762000e0b62000d91565b5b600062000e1c8482850162000ddc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e6d57607f821691505b6020821081141562000e845762000e8362000e25565b5b50919050565b615ce18062000e9a6000396000f3fe6080604052600436106103815760003560e01c8063715018a6116101d1578063b88d4fde11610102578063da6e0b52116100a0578063eb8d24441161006f578063eb8d244414610d10578063f2fde38b14610d3b578063f370cdb114610d64578063f47c84c514610d8d57610381565b8063da6e0b5214610c2e578063dc33e68114610c59578063e5a5195214610c96578063e985e9c514610cd357610381565b8063c4d7e2f8116100dc578063c4d7e2f814610b93578063c634d03214610baa578063c87b56dd14610bc6578063d0a04eac14610c0357610381565b8063b88d4fde14610b16578063b9bed05e14610b3f578063bb9315f814610b6857610381565b80638da5cb5b1161016f57806395d89b411161014957806395d89b4114610a5c578063982024f814610a87578063a22cb46514610ac4578063b13e385514610aed57610381565b80638da5cb5b146109dd5780638f69ae6f14610a08578063900c71f514610a3357610381565b8063791d04db116101ab578063791d04db146109215780637ff9b5961461094c578063806790d11461097757806385c8cc74146109b457610381565b8063715018a6146108b857806378cf19e9146108cf578063790750ce146108f857610381565b80633ccfd60b116102b65780635e307a48116102545780636a61e5fc116102235780636a61e5fc146107fe5780636c0360eb146108275780636f8b44b01461085257806370a082311461087b57610381565b80635e307a4814610742578063611fff2d1461076d5780636352211e14610796578063681c8bac146107d357610381565b80634df8bb45116102905780634df8bb451461067657806355f804b3146106b357806356310d5a146106dc578063584d18381461071957610381565b80633ccfd60b1461060d57806342842e0e14610624578063495e1eba1461064d57610381565b806318160ddd1161032357806323b872dd116102fd57806323b872dd146105525780632a55205a1461057b5780632b57cfbb146105b957806334918dfd146105f657610381565b806318160ddd146104d3578063205a2e9d146104fe578063205c28781461052957610381565b8063081812fc1161035f578063081812fc14610417578063095ea7b3146104545780630d43ebc21461047d5780630f266351146104a857610381565b806301ffc9a71461038657806302fa7c47146103c357806306fdde03146103ec575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a891906146fc565b610db8565b6040516103ba9190614744565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190614801565b610dca565b005b3480156103f857600080fd5b50610401610e54565b60405161040e91906148da565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190614932565b610ee6565b60405161044b919061496e565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190614989565b610f62565b005b34801561048957600080fd5b50610492611067565b60405161049f91906149d8565b60405180910390f35b3480156104b457600080fd5b506104bd61113e565b6040516104ca91906149d8565b60405180910390f35b3480156104df57600080fd5b506104e8611144565b6040516104f591906149d8565b60405180910390f35b34801561050a57600080fd5b5061051361115b565b60405161052091906149d8565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190614989565b611161565b005b34801561055e57600080fd5b50610579600480360381019061057491906149f3565b61126b565b005b34801561058757600080fd5b506105a2600480360381019061059d9190614a46565b61127b565b6040516105b0929190614a86565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190614aaf565b611466565b6040516105ed91906149d8565b60405180910390f35b34801561060257600080fd5b5061060b611637565b005b34801561061957600080fd5b506106226116df565b005b34801561063057600080fd5b5061064b600480360381019061064691906149f3565b6117aa565b005b34801561065957600080fd5b50610674600480360381019061066f9190614932565b6117ca565b005b34801561068257600080fd5b5061069d60048036038101906106989190614aef565b611850565b6040516106aa9190614c5a565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190614dab565b611a00565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190614aef565b611a96565b60405161071091906149d8565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190614a46565b611adf565b005b34801561074e57600080fd5b50610757611ba3565b60405161076491906149d8565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190614932565b611ba9565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190614932565b611c2f565b6040516107ca919061496e565b60405180910390f35b3480156107df57600080fd5b506107e8611c45565b6040516107f591906149d8565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190614932565b611c4b565b005b34801561083357600080fd5b5061083c611cd1565b60405161084991906148da565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190614932565b611d5f565b005b34801561088757600080fd5b506108a2600480360381019061089d9190614aef565b611de5565b6040516108af91906149d8565b60405180910390f35b3480156108c457600080fd5b506108cd611eb5565b005b3480156108db57600080fd5b506108f660048036038101906108f19190614989565b611f3d565b005b34801561090457600080fd5b5061091f600480360381019061091a9190614932565b61201e565b005b34801561092d57600080fd5b506109366120a4565b6040516109439190614744565b60405180910390f35b34801561095857600080fd5b506109616120b7565b60405161096e91906149d8565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190614aaf565b6120bd565b6040516109ab91906149d8565b60405180910390f35b3480156109c057600080fd5b506109db60048036038101906109d69190614932565b61225e565b005b3480156109e957600080fd5b506109f26122e4565b6040516109ff919061496e565b60405180910390f35b348015610a1457600080fd5b50610a1d61230e565b604051610a2a91906149d8565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190614932565b612314565b005b348015610a6857600080fd5b50610a716123f8565b604051610a7e91906148da565b60405180910390f35b348015610a9357600080fd5b50610aae6004803603810190610aa99190614aef565b61248a565b604051610abb91906149d8565b60405180910390f35b348015610ad057600080fd5b50610aeb6004803603810190610ae69190614e20565b6124d2565b005b348015610af957600080fd5b50610b146004803603810190610b0f9190614932565b61264a565b005b348015610b2257600080fd5b50610b3d6004803603810190610b389190614f01565b6126d0565b005b348015610b4b57600080fd5b50610b666004803603810190610b619190614932565b612748565b005b348015610b7457600080fd5b50610b7d6127ce565b604051610b8a91906149d8565b60405180910390f35b348015610b9f57600080fd5b50610ba86127d4565b005b610bc46004803603810190610bbf9190614932565b612875565b005b348015610bd257600080fd5b50610bed6004803603810190610be89190614932565b612ceb565b604051610bfa91906148da565b60405180910390f35b348015610c0f57600080fd5b50610c18612e2d565b604051610c2591906149d8565b60405180910390f35b348015610c3a57600080fd5b50610c43612e33565b604051610c5091906149d8565b60405180910390f35b348015610c6557600080fd5b50610c806004803603810190610c7b9190614aef565b612e39565b604051610c8d91906149d8565b60405180910390f35b348015610ca257600080fd5b50610cbd6004803603810190610cb89190614aef565b612e4b565b604051610cca91906149d8565b60405180910390f35b348015610cdf57600080fd5b50610cfa6004803603810190610cf59190614f84565b612e94565b604051610d079190614744565b60405180910390f35b348015610d1c57600080fd5b50610d25612f28565b604051610d329190614744565b60405180910390f35b348015610d4757600080fd5b50610d626004803603810190610d5d9190614aef565b612f3b565b005b348015610d7057600080fd5b50610d8b6004803603810190610d869190614fc4565b613033565b005b348015610d9957600080fd5b50610da261318e565b604051610daf91906149d8565b60405180910390f35b6000610dc3826131b7565b9050919050565b610dd2613231565b73ffffffffffffffffffffffffffffffffffffffff16610df06122e4565b73ffffffffffffffffffffffffffffffffffffffff1614610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90615077565b60405180910390fd5b610e508282613239565b5050565b606060028054610e63906150c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8f906150c6565b8015610edc5780601f10610eb157610100808354040283529160200191610edc565b820191906000526020600020905b815481529060010190602001808311610ebf57829003601f168201915b5050505050905090565b6000610ef1826133cf565b610f27576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f6d82611c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fd5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff4613231565b73ffffffffffffffffffffffffffffffffffffffff1614611057576110208161101b613231565b612e94565b611056576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61106283838361341d565b505050565b600080600281111561107c5761107b6150f8565b5b601a60019054906101000a900460ff16600281111561109e5761109d6150f8565b5b14156110ad576001905061113b565b600160028111156110c1576110c06150f8565b5b601a60019054906101000a900460ff1660028111156110e3576110e26150f8565b5b14156110f2576002905061113b565b600280811115611105576111046150f8565b5b601a60019054906101000a900460ff166002811115611127576111266150f8565b5b1415611136576003905061113b565b600090505b90565b60135481565b600061114e6134cf565b6001546000540303905090565b60165481565b611169613231565b73ffffffffffffffffffffffffffffffffffffffff166111876122e4565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490615077565b60405180910390fd5b47811115611220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121790615199565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611266573d6000803e3d6000fd5b505050565b6112768383836134d4565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156114115760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061141b61398a565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661144791906151e8565b6114519190615271565b90508160000151819350935050509250929050565b60008060009050601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601354116114ca57600d54846114c391906151e8565b905061162d565b600060028111156114de576114dd6150f8565b5b601a60019054906101000a900460ff166002811115611500576114ff6150f8565b5b14156115335760165484111561152e57600d546016548561152191906152a2565b61152b91906151e8565b90505b61162c565b60016002811115611547576115466150f8565b5b601a60019054906101000a900460ff166002811115611569576115686150f8565b5b14156115a557601554841061158f57600d5460155461158891906151e8565b90506115a0565b600d548461159d91906151e8565b90505b61162b565b6002808111156115b8576115b76150f8565b5b601a60019054906101000a900460ff1660028111156115da576115d96150f8565b5b141561162a5760006115eb8461248a565b9050601754811161162857601554851061161657600d5460155461160f91906151e8565b9150611627565b600d548561162491906151e8565b91505b5b505b5b5b5b8091505092915050565b61163f613231565b73ffffffffffffffffffffffffffffffffffffffff1661165d6122e4565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90615077565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6116e7613231565b73ffffffffffffffffffffffffffffffffffffffff166117056122e4565b73ffffffffffffffffffffffffffffffffffffffff161461175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290615077565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156117a6573d6000803e3d6000fd5b5050565b6117c5838383604051806020016040528060008152506126d0565b505050565b6117d2613231565b73ffffffffffffffffffffffffffffffffffffffff166117f06122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90615077565b60405180910390fd5b80600f8190555050565b611858614539565b604051806101c00160405280600d548152602001600e5481526020016010548152602001601160009054906101000a900460ff161515815260200161189b611144565b815260200160135481526020016015548152602001601654815260200160175481526020016118c984613994565b8152602001601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200161191c8461248a565b815260200160006002811115611935576119346150f8565b5b601a60019054906101000a900460ff166002811115611957576119566150f8565b5b146119e857600160028111156119705761196f6150f8565b5b601a60019054906101000a900460ff166002811115611992576119916150f8565b5b146119e0576002808111156119aa576119a96150f8565b5b601a60019054906101000a900460ff1660028111156119cc576119cb6150f8565b5b146119d85760006119db565b60035b6119e3565b60025b6119eb565b60015b60ff168152602001600f548152509050919050565b611a08613231565b73ffffffffffffffffffffffffffffffffffffffff16611a266122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390615077565b60405180910390fd5b80600c9080519060200190611a929291906145aa565b5050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ae7613231565b73ffffffffffffffffffffffffffffffffffffffff16611b056122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290615077565b60405180910390fd5b6001601160016101000a81548160ff02191690831515021790555081601281905550806014819055506001601160006101000a81548160ff0219169083151502179055505050565b600e5481565b611bb1613231565b73ffffffffffffffffffffffffffffffffffffffff16611bcf6122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90615077565b60405180910390fd5b8060178190555050565b6000611c3a826139fe565b600001519050919050565b600f5481565b611c53613231565b73ffffffffffffffffffffffffffffffffffffffff16611c716122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90615077565b60405180910390fd5b80600d8190555050565b600c8054611cde906150c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0a906150c6565b8015611d575780601f10611d2c57610100808354040283529160200191611d57565b820191906000526020600020905b815481529060010190602001808311611d3a57829003601f168201915b505050505081565b611d67613231565b73ffffffffffffffffffffffffffffffffffffffff16611d856122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290615077565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ebd613231565b73ffffffffffffffffffffffffffffffffffffffff16611edb6122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890615077565b60405180910390fd5b611f3b6000613c89565b565b611f45613231565b73ffffffffffffffffffffffffffffffffffffffff16611f636122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090615077565b60405180910390fd5b60105481611fc5611144565b611fcf91906152d6565b1115612010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120079061539e565b60405180910390fd5b61201a8282613d4f565b5050565b612026613231565b73ffffffffffffffffffffffffffffffffffffffff166120446122e4565b73ffffffffffffffffffffffffffffffffffffffff161461209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190615077565b60405180910390fd5b8060138190555050565b601160019054906101000a900460ff1681565b600d5481565b60008060009050601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601354116121155760009050612254565b60006002811115612129576121286150f8565b5b601a60019054906101000a900460ff16600281111561214b5761214a6150f8565b5b141561216e57601654841115612165576016549050612169565b8390505b612253565b60016002811115612182576121816150f8565b5b601a60019054906101000a900460ff1660028111156121a4576121a36150f8565b5b14156121d25760155484106121c857601554846121c191906152a2565b90506121cd565b600090505b612252565b6002808111156121e5576121e46150f8565b5b601a60019054906101000a900460ff166002811115612207576122066150f8565b5b14156122515760006122188461248a565b9050601754811161224b576015548510612241576015548561223a91906152a2565b9150612246565b600091505b61224f565b8491505b505b5b5b5b8091505092915050565b612266613231565b73ffffffffffffffffffffffffffffffffffffffff166122846122e4565b73ffffffffffffffffffffffffffffffffffffffff16146122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d190615077565b60405180910390fd5b8060158190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b61231c613231565b73ffffffffffffffffffffffffffffffffffffffff1661233a6122e4565b73ffffffffffffffffffffffffffffffffffffffff1614612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790615077565b60405180910390fd5b60028114156123c9576001601a60006101000a81548160ff021916908360018111156123bf576123be6150f8565b5b02179055506123f5565b6000601a60006101000a81548160ff021916908360018111156123ef576123ee6150f8565b5b02179055505b50565b606060038054612407906150c6565b80601f0160208091040260200160405190810160405280929190818152602001828054612433906150c6565b80156124805780601f1061245557610100808354040283529160200191612480565b820191906000526020600020905b81548152906001019060200180831161246357829003601f168201915b5050505050905090565b6000606482612497610e54565b6040516020016124a8929190615442565b6040516020818303038152906040528051906020012060001c6124cb919061546a565b9050919050565b6124da613231565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061254c613231565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125f9613231565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161263e9190614744565b60405180910390a35050565b612652613231565b73ffffffffffffffffffffffffffffffffffffffff166126706122e4565b73ffffffffffffffffffffffffffffffffffffffff16146126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90615077565b60405180910390fd5b8060168190555050565b6126db8484846134d4565b6126fa8373ffffffffffffffffffffffffffffffffffffffff16613194565b156127425761270b84848484613d6d565b612741576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612750613231565b73ffffffffffffffffffffffffffffffffffffffff1661276e6122e4565b73ffffffffffffffffffffffffffffffffffffffff16146127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb90615077565b60405180910390fd5b80600e8190555050565b60175481565b6127dc613231565b73ffffffffffffffffffffffffffffffffffffffff166127fa6122e4565b73ffffffffffffffffffffffffffffffffffffffff1614612850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284790615077565b60405180910390fd5b6000601160016101000a81548160ff0219169083151502179055506000601281905550565b6002600b5414156128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b2906154e7565b60405180910390fd5b6002600b81905550601160009054906101000a900460ff16612912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290990615553565b60405180910390fd5b600e54811115612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e906155bf565b60405180910390fd5b6000811161299a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129919061562b565b60405180910390fd5b601054816129a6611144565b6129b091906152d6565b11156129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890615697565b60405180910390fd5b6000601160019054906101000a900460ff168015612a10575060003411155b15612bde57600060125411612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190615703565b60405180910390fd5b60145482601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aa891906152d6565b1115612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090615795565b60405180910390fd5b600082601254612af991906152a2565b11612b045760125491505b612b0e3383613d4f565b81601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b5991906152d6565b601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081601254612baa91906152a2565b601281905550600060125411612bd6576000601160016101000a81548160ff0219169083151502179055505b819050612c47565b6000612bea8333611466565b9050612bf683336120bd565b915080341015612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290615801565b60405180910390fd5b612c453384613d4f565b505b6000811115612cdf5780601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c9b91906152d6565b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b506001600b8190555050565b6060612cf6826133cf565b612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c9061586d565b60405180910390fd5b600180811115612d4857612d476150f8565b5b601a60009054906101000a900460ff166001811115612d6a57612d696150f8565b5b1415612dce576000600c8054612d7f906150c6565b905011612d9b5760405180602001604052806000815250612dc7565b600c612da683613ebe565b604051602001612db7929190615921565b6040516020818303038152906040525b9050612e28565b6000600c8054612ddd906150c6565b905011612df95760405180602001604052806000815250612e25565b600c612e0483613ebe565b604051602001612e15929190615991565b6040516020818303038152906040525b90505b919050565b60155481565b60145481565b6000612e4482613994565b9050919050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b612f43613231565b73ffffffffffffffffffffffffffffffffffffffff16612f616122e4565b73ffffffffffffffffffffffffffffffffffffffff1614612fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fae90615077565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301e90615a32565b60405180910390fd5b61303081613c89565b50565b61303b613231565b73ffffffffffffffffffffffffffffffffffffffff166130596122e4565b73ffffffffffffffffffffffffffffffffffffffff16146130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a690615077565b60405180910390fd5b60018414156130e8576000601a60016101000a81548160ff021916908360028111156130de576130dd6150f8565b5b0217905550613158565b6002841415613121576001601a60016101000a81548160ff02191690836002811115613117576131166150f8565b5b0217905550613157565b6003841415613156576002601a60016101000a81548160ff021916908360028111156131505761314f6150f8565b5b02179055505b5b5b8160158190555080601681905550826013819055506001601160006101000a81548160ff02191690831515021790555050505050565b60105481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061322a57506132298261401f565b5b9050919050565b600033905090565b61324161398a565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561329f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329690615ac4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690615b30565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816133da6134cf565b111580156133e9575060005482105b8015613416575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006134df826139fe565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461354a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661356b613231565b73ffffffffffffffffffffffffffffffffffffffff16148061359a575061359985613594613231565b612e94565b5b806135df57506135a8613231565b73ffffffffffffffffffffffffffffffffffffffff166135c784610ee6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613618576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561367f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61368c8585856001614101565b6136986000848761341d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561391857600054821461391757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139838585856001614107565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b613a06614630565b600082905080613a146134cf565b11613c5257600054811015613c51576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613c4f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613b33578092505050613c84565b5b600115613c4e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613c49578092505050613c84565b613b34565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613d6982826040518060200160405280600081525061410d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613d93613231565b8786866040518563ffffffff1660e01b8152600401613db59493929190615ba5565b6020604051808303816000875af1925050508015613df157506040513d601f19601f82011682018060405250810190613dee9190615c06565b60015b613e6b573d8060008114613e21576040519150601f19603f3d011682016040523d82523d6000602084013e613e26565b606091505b50600081511415613e63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613f06576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061401a565b600082905060005b60008214613f38578080613f2190615c33565b915050600a82613f319190615271565b9150613f0e565b60008167ffffffffffffffff811115613f5457613f53614c80565b5b6040519080825280601f01601f191660200182016040528015613f865781602001600182028036833780820191505090505b5090505b6000851461401357600182613f9f91906152a2565b9150600a85613fae919061546a565b6030613fba91906152d6565b60f81b818381518110613fd057613fcf615c7c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561400c9190615271565b9450613f8a565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806140ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806140fa57506140f9826144cf565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561417a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156141b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6141c26000858386614101565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506143838673ffffffffffffffffffffffffffffffffffffffff16613194565b15614448575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46143f86000878480600101955087613d6d565b61442e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061438957826000541461444357600080fd5b6144b3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210614449575b8160008190555050506144c96000858386614107565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b604051806101c00160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b8280546145b6906150c6565b90600052602060002090601f0160209004810192826145d8576000855561461f565b82601f106145f157805160ff191683800117855561461f565b8280016001018555821561461f579182015b8281111561461e578251825591602001919060010190614603565b5b50905061462c9190614673565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561468c576000816000905550600101614674565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6146d9816146a4565b81146146e457600080fd5b50565b6000813590506146f6816146d0565b92915050565b6000602082840312156147125761471161469a565b5b6000614720848285016146e7565b91505092915050565b60008115159050919050565b61473e81614729565b82525050565b60006020820190506147596000830184614735565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061478a8261475f565b9050919050565b61479a8161477f565b81146147a557600080fd5b50565b6000813590506147b781614791565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6147de816147bd565b81146147e957600080fd5b50565b6000813590506147fb816147d5565b92915050565b600080604083850312156148185761481761469a565b5b6000614826858286016147a8565b9250506020614837858286016147ec565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561487b578082015181840152602081019050614860565b8381111561488a576000848401525b50505050565b6000601f19601f8301169050919050565b60006148ac82614841565b6148b6818561484c565b93506148c681856020860161485d565b6148cf81614890565b840191505092915050565b600060208201905081810360008301526148f481846148a1565b905092915050565b6000819050919050565b61490f816148fc565b811461491a57600080fd5b50565b60008135905061492c81614906565b92915050565b6000602082840312156149485761494761469a565b5b60006149568482850161491d565b91505092915050565b6149688161477f565b82525050565b6000602082019050614983600083018461495f565b92915050565b600080604083850312156149a05761499f61469a565b5b60006149ae858286016147a8565b92505060206149bf8582860161491d565b9150509250929050565b6149d2816148fc565b82525050565b60006020820190506149ed60008301846149c9565b92915050565b600080600060608486031215614a0c57614a0b61469a565b5b6000614a1a868287016147a8565b9350506020614a2b868287016147a8565b9250506040614a3c8682870161491d565b9150509250925092565b60008060408385031215614a5d57614a5c61469a565b5b6000614a6b8582860161491d565b9250506020614a7c8582860161491d565b9150509250929050565b6000604082019050614a9b600083018561495f565b614aa860208301846149c9565b9392505050565b60008060408385031215614ac657614ac561469a565b5b6000614ad48582860161491d565b9250506020614ae5858286016147a8565b9150509250929050565b600060208284031215614b0557614b0461469a565b5b6000614b13848285016147a8565b91505092915050565b614b25816148fc565b82525050565b614b3481614729565b82525050565b6101c082016000820151614b516000850182614b1c565b506020820151614b646020850182614b1c565b506040820151614b776040850182614b1c565b506060820151614b8a6060850182614b2b565b506080820151614b9d6080850182614b1c565b5060a0820151614bb060a0850182614b1c565b5060c0820151614bc360c0850182614b1c565b5060e0820151614bd660e0850182614b1c565b50610100820151614beb610100850182614b1c565b50610120820151614c00610120850182614b1c565b50610140820151614c15610140850182614b1c565b50610160820151614c2a610160850182614b1c565b50610180820151614c3f610180850182614b1c565b506101a0820151614c546101a0850182614b1c565b50505050565b60006101c082019050614c706000830184614b3a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614cb882614890565b810181811067ffffffffffffffff82111715614cd757614cd6614c80565b5b80604052505050565b6000614cea614690565b9050614cf68282614caf565b919050565b600067ffffffffffffffff821115614d1657614d15614c80565b5b614d1f82614890565b9050602081019050919050565b82818337600083830152505050565b6000614d4e614d4984614cfb565b614ce0565b905082815260208101848484011115614d6a57614d69614c7b565b5b614d75848285614d2c565b509392505050565b600082601f830112614d9257614d91614c76565b5b8135614da2848260208601614d3b565b91505092915050565b600060208284031215614dc157614dc061469a565b5b600082013567ffffffffffffffff811115614ddf57614dde61469f565b5b614deb84828501614d7d565b91505092915050565b614dfd81614729565b8114614e0857600080fd5b50565b600081359050614e1a81614df4565b92915050565b60008060408385031215614e3757614e3661469a565b5b6000614e45858286016147a8565b9250506020614e5685828601614e0b565b9150509250929050565b600067ffffffffffffffff821115614e7b57614e7a614c80565b5b614e8482614890565b9050602081019050919050565b6000614ea4614e9f84614e60565b614ce0565b905082815260208101848484011115614ec057614ebf614c7b565b5b614ecb848285614d2c565b509392505050565b600082601f830112614ee857614ee7614c76565b5b8135614ef8848260208601614e91565b91505092915050565b60008060008060808587031215614f1b57614f1a61469a565b5b6000614f29878288016147a8565b9450506020614f3a878288016147a8565b9350506040614f4b8782880161491d565b925050606085013567ffffffffffffffff811115614f6c57614f6b61469f565b5b614f7887828801614ed3565b91505092959194509250565b60008060408385031215614f9b57614f9a61469a565b5b6000614fa9858286016147a8565b9250506020614fba858286016147a8565b9150509250929050565b60008060008060808587031215614fde57614fdd61469a565b5b6000614fec8782880161491d565b9450506020614ffd8782880161491d565b935050604061500e8782880161491d565b925050606061501f8782880161491d565b91505092959194509250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061506160208361484c565b915061506c8261502b565b602082019050919050565b6000602082019050818103600083015261509081615054565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806150de57607f821691505b602082108114156150f2576150f1615097565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000615183602d8361484c565b915061518e82615127565b604082019050919050565b600060208201905081810360008301526151b281615176565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006151f3826148fc565b91506151fe836148fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615237576152366151b9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061527c826148fc565b9150615287836148fc565b92508261529757615296615242565b5b828204905092915050565b60006152ad826148fc565b91506152b8836148fc565b9250828210156152cb576152ca6151b9565b5b828203905092915050565b60006152e1826148fc565b91506152ec836148fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615321576153206151b9565b5b828201905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b600061538860298361484c565b91506153938261532c565b604082019050919050565b600060208201905081810360008301526153b78161537b565b9050919050565b60008160601b9050919050565b60006153d6826153be565b9050919050565b60006153e8826153cb565b9050919050565b6154006153fb8261477f565b6153dd565b82525050565b600081905092915050565b600061541c82614841565b6154268185615406565b935061543681856020860161485d565b80840191505092915050565b600061544e82856153ef565b60148201915061545e8284615411565b91508190509392505050565b6000615475826148fc565b9150615480836148fc565b9250826154905761548f615242565b5b828206905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006154d1601f8361484c565b91506154dc8261549b565b602082019050919050565b60006020820190508181036000830152615500816154c4565b9050919050565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b600061553d60138361484c565b915061554882615507565b602082019050919050565b6000602082019050818103600083015261556c81615530565b9050919050565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b60006155a960188361484c565b91506155b482615573565b602082019050919050565b600060208201905081810360008301526155d88161559c565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b600061561560168361484c565b9150615620826155df565b602082019050919050565b6000602082019050818103600083015261564481615608565b9050919050565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b600061568160118361484c565b915061568c8261564b565b602082019050919050565b600060208201905081810360008301526156b081615674565b9050919050565b7f4e6f2077686974656c69737420746f6b656e732072656d61696e000000000000600082015250565b60006156ed601a8361484c565b91506156f8826156b7565b602082019050919050565b6000602082019050818103600083015261571c816156e0565b9050919050565b7f457863656564206d6178206672656520746f6b656e73207065722077616c6c6560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b600061577f60218361484c565b915061578a82615723565b604082019050919050565b600060208201905081810360008301526157ae81615772565b9050919050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b60006157eb60108361484c565b91506157f6826157b5565b602082019050919050565b6000602082019050818103600083015261581a816157de565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061585760158361484c565b915061586282615821565b602082019050919050565b600060208201905081810360008301526158868161584a565b9050919050565b60008190508160005260206000209050919050565b600081546158af816150c6565b6158b98186615406565b945060018216600081146158d457600181146158e557615918565b60ff19831686528186019350615918565b6158ee8561588d565b60005b83811015615910578154818901526001820191506020810190506158f1565b838801955050505b50505092915050565b600061592d82856158a2565b91506159398284615411565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061597b600583615406565b915061598682615945565b600582019050919050565b600061599d82856158a2565b91506159a98284615411565b91506159b48261596e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615a1c60268361484c565b9150615a27826159c0565b604082019050919050565b60006020820190508181036000830152615a4b81615a0f565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000615aae602a8361484c565b9150615ab982615a52565b604082019050919050565b60006020820190508181036000830152615add81615aa1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000615b1a60198361484c565b9150615b2582615ae4565b602082019050919050565b60006020820190508181036000830152615b4981615b0d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b7782615b50565b615b818185615b5b565b9350615b9181856020860161485d565b615b9a81614890565b840191505092915050565b6000608082019050615bba600083018761495f565b615bc7602083018661495f565b615bd460408301856149c9565b8181036060830152615be68184615b6c565b905095945050505050565b600081519050615c00816146d0565b92915050565b600060208284031215615c1c57615c1b61469a565b5b6000615c2a84828501615bf1565b91505092915050565b6000615c3e826148fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615c7157615c706151b9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122068268d24d1696718e6abab442e5e1a9889e8944fad81607521a1ce4f17da08d564736f6c634300080a003368747470733a2f2f6e6674736572766963652e73332e616d617a6f6e6177732e636f6d2f676f626c696e706f6f702f

Deployed Bytecode

0x6080604052600436106103815760003560e01c8063715018a6116101d1578063b88d4fde11610102578063da6e0b52116100a0578063eb8d24441161006f578063eb8d244414610d10578063f2fde38b14610d3b578063f370cdb114610d64578063f47c84c514610d8d57610381565b8063da6e0b5214610c2e578063dc33e68114610c59578063e5a5195214610c96578063e985e9c514610cd357610381565b8063c4d7e2f8116100dc578063c4d7e2f814610b93578063c634d03214610baa578063c87b56dd14610bc6578063d0a04eac14610c0357610381565b8063b88d4fde14610b16578063b9bed05e14610b3f578063bb9315f814610b6857610381565b80638da5cb5b1161016f57806395d89b411161014957806395d89b4114610a5c578063982024f814610a87578063a22cb46514610ac4578063b13e385514610aed57610381565b80638da5cb5b146109dd5780638f69ae6f14610a08578063900c71f514610a3357610381565b8063791d04db116101ab578063791d04db146109215780637ff9b5961461094c578063806790d11461097757806385c8cc74146109b457610381565b8063715018a6146108b857806378cf19e9146108cf578063790750ce146108f857610381565b80633ccfd60b116102b65780635e307a48116102545780636a61e5fc116102235780636a61e5fc146107fe5780636c0360eb146108275780636f8b44b01461085257806370a082311461087b57610381565b80635e307a4814610742578063611fff2d1461076d5780636352211e14610796578063681c8bac146107d357610381565b80634df8bb45116102905780634df8bb451461067657806355f804b3146106b357806356310d5a146106dc578063584d18381461071957610381565b80633ccfd60b1461060d57806342842e0e14610624578063495e1eba1461064d57610381565b806318160ddd1161032357806323b872dd116102fd57806323b872dd146105525780632a55205a1461057b5780632b57cfbb146105b957806334918dfd146105f657610381565b806318160ddd146104d3578063205a2e9d146104fe578063205c28781461052957610381565b8063081812fc1161035f578063081812fc14610417578063095ea7b3146104545780630d43ebc21461047d5780630f266351146104a857610381565b806301ffc9a71461038657806302fa7c47146103c357806306fdde03146103ec575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a891906146fc565b610db8565b6040516103ba9190614744565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190614801565b610dca565b005b3480156103f857600080fd5b50610401610e54565b60405161040e91906148da565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190614932565b610ee6565b60405161044b919061496e565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190614989565b610f62565b005b34801561048957600080fd5b50610492611067565b60405161049f91906149d8565b60405180910390f35b3480156104b457600080fd5b506104bd61113e565b6040516104ca91906149d8565b60405180910390f35b3480156104df57600080fd5b506104e8611144565b6040516104f591906149d8565b60405180910390f35b34801561050a57600080fd5b5061051361115b565b60405161052091906149d8565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190614989565b611161565b005b34801561055e57600080fd5b50610579600480360381019061057491906149f3565b61126b565b005b34801561058757600080fd5b506105a2600480360381019061059d9190614a46565b61127b565b6040516105b0929190614a86565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190614aaf565b611466565b6040516105ed91906149d8565b60405180910390f35b34801561060257600080fd5b5061060b611637565b005b34801561061957600080fd5b506106226116df565b005b34801561063057600080fd5b5061064b600480360381019061064691906149f3565b6117aa565b005b34801561065957600080fd5b50610674600480360381019061066f9190614932565b6117ca565b005b34801561068257600080fd5b5061069d60048036038101906106989190614aef565b611850565b6040516106aa9190614c5a565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190614dab565b611a00565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190614aef565b611a96565b60405161071091906149d8565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190614a46565b611adf565b005b34801561074e57600080fd5b50610757611ba3565b60405161076491906149d8565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190614932565b611ba9565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190614932565b611c2f565b6040516107ca919061496e565b60405180910390f35b3480156107df57600080fd5b506107e8611c45565b6040516107f591906149d8565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190614932565b611c4b565b005b34801561083357600080fd5b5061083c611cd1565b60405161084991906148da565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190614932565b611d5f565b005b34801561088757600080fd5b506108a2600480360381019061089d9190614aef565b611de5565b6040516108af91906149d8565b60405180910390f35b3480156108c457600080fd5b506108cd611eb5565b005b3480156108db57600080fd5b506108f660048036038101906108f19190614989565b611f3d565b005b34801561090457600080fd5b5061091f600480360381019061091a9190614932565b61201e565b005b34801561092d57600080fd5b506109366120a4565b6040516109439190614744565b60405180910390f35b34801561095857600080fd5b506109616120b7565b60405161096e91906149d8565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190614aaf565b6120bd565b6040516109ab91906149d8565b60405180910390f35b3480156109c057600080fd5b506109db60048036038101906109d69190614932565b61225e565b005b3480156109e957600080fd5b506109f26122e4565b6040516109ff919061496e565b60405180910390f35b348015610a1457600080fd5b50610a1d61230e565b604051610a2a91906149d8565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190614932565b612314565b005b348015610a6857600080fd5b50610a716123f8565b604051610a7e91906148da565b60405180910390f35b348015610a9357600080fd5b50610aae6004803603810190610aa99190614aef565b61248a565b604051610abb91906149d8565b60405180910390f35b348015610ad057600080fd5b50610aeb6004803603810190610ae69190614e20565b6124d2565b005b348015610af957600080fd5b50610b146004803603810190610b0f9190614932565b61264a565b005b348015610b2257600080fd5b50610b3d6004803603810190610b389190614f01565b6126d0565b005b348015610b4b57600080fd5b50610b666004803603810190610b619190614932565b612748565b005b348015610b7457600080fd5b50610b7d6127ce565b604051610b8a91906149d8565b60405180910390f35b348015610b9f57600080fd5b50610ba86127d4565b005b610bc46004803603810190610bbf9190614932565b612875565b005b348015610bd257600080fd5b50610bed6004803603810190610be89190614932565b612ceb565b604051610bfa91906148da565b60405180910390f35b348015610c0f57600080fd5b50610c18612e2d565b604051610c2591906149d8565b60405180910390f35b348015610c3a57600080fd5b50610c43612e33565b604051610c5091906149d8565b60405180910390f35b348015610c6557600080fd5b50610c806004803603810190610c7b9190614aef565b612e39565b604051610c8d91906149d8565b60405180910390f35b348015610ca257600080fd5b50610cbd6004803603810190610cb89190614aef565b612e4b565b604051610cca91906149d8565b60405180910390f35b348015610cdf57600080fd5b50610cfa6004803603810190610cf59190614f84565b612e94565b604051610d079190614744565b60405180910390f35b348015610d1c57600080fd5b50610d25612f28565b604051610d329190614744565b60405180910390f35b348015610d4757600080fd5b50610d626004803603810190610d5d9190614aef565b612f3b565b005b348015610d7057600080fd5b50610d8b6004803603810190610d869190614fc4565b613033565b005b348015610d9957600080fd5b50610da261318e565b604051610daf91906149d8565b60405180910390f35b6000610dc3826131b7565b9050919050565b610dd2613231565b73ffffffffffffffffffffffffffffffffffffffff16610df06122e4565b73ffffffffffffffffffffffffffffffffffffffff1614610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90615077565b60405180910390fd5b610e508282613239565b5050565b606060028054610e63906150c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8f906150c6565b8015610edc5780601f10610eb157610100808354040283529160200191610edc565b820191906000526020600020905b815481529060010190602001808311610ebf57829003601f168201915b5050505050905090565b6000610ef1826133cf565b610f27576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f6d82611c2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fd5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ff4613231565b73ffffffffffffffffffffffffffffffffffffffff1614611057576110208161101b613231565b612e94565b611056576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61106283838361341d565b505050565b600080600281111561107c5761107b6150f8565b5b601a60019054906101000a900460ff16600281111561109e5761109d6150f8565b5b14156110ad576001905061113b565b600160028111156110c1576110c06150f8565b5b601a60019054906101000a900460ff1660028111156110e3576110e26150f8565b5b14156110f2576002905061113b565b600280811115611105576111046150f8565b5b601a60019054906101000a900460ff166002811115611127576111266150f8565b5b1415611136576003905061113b565b600090505b90565b60135481565b600061114e6134cf565b6001546000540303905090565b60165481565b611169613231565b73ffffffffffffffffffffffffffffffffffffffff166111876122e4565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490615077565b60405180910390fd5b47811115611220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121790615199565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611266573d6000803e3d6000fd5b505050565b6112768383836134d4565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156114115760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061141b61398a565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661144791906151e8565b6114519190615271565b90508160000151819350935050509250929050565b60008060009050601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601354116114ca57600d54846114c391906151e8565b905061162d565b600060028111156114de576114dd6150f8565b5b601a60019054906101000a900460ff166002811115611500576114ff6150f8565b5b14156115335760165484111561152e57600d546016548561152191906152a2565b61152b91906151e8565b90505b61162c565b60016002811115611547576115466150f8565b5b601a60019054906101000a900460ff166002811115611569576115686150f8565b5b14156115a557601554841061158f57600d5460155461158891906151e8565b90506115a0565b600d548461159d91906151e8565b90505b61162b565b6002808111156115b8576115b76150f8565b5b601a60019054906101000a900460ff1660028111156115da576115d96150f8565b5b141561162a5760006115eb8461248a565b9050601754811161162857601554851061161657600d5460155461160f91906151e8565b9150611627565b600d548561162491906151e8565b91505b5b505b5b5b5b8091505092915050565b61163f613231565b73ffffffffffffffffffffffffffffffffffffffff1661165d6122e4565b73ffffffffffffffffffffffffffffffffffffffff16146116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90615077565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6116e7613231565b73ffffffffffffffffffffffffffffffffffffffff166117056122e4565b73ffffffffffffffffffffffffffffffffffffffff161461175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290615077565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156117a6573d6000803e3d6000fd5b5050565b6117c5838383604051806020016040528060008152506126d0565b505050565b6117d2613231565b73ffffffffffffffffffffffffffffffffffffffff166117f06122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90615077565b60405180910390fd5b80600f8190555050565b611858614539565b604051806101c00160405280600d548152602001600e5481526020016010548152602001601160009054906101000a900460ff161515815260200161189b611144565b815260200160135481526020016015548152602001601654815260200160175481526020016118c984613994565b8152602001601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054815260200161191c8461248a565b815260200160006002811115611935576119346150f8565b5b601a60019054906101000a900460ff166002811115611957576119566150f8565b5b146119e857600160028111156119705761196f6150f8565b5b601a60019054906101000a900460ff166002811115611992576119916150f8565b5b146119e0576002808111156119aa576119a96150f8565b5b601a60019054906101000a900460ff1660028111156119cc576119cb6150f8565b5b146119d85760006119db565b60035b6119e3565b60025b6119eb565b60015b60ff168152602001600f548152509050919050565b611a08613231565b73ffffffffffffffffffffffffffffffffffffffff16611a266122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390615077565b60405180910390fd5b80600c9080519060200190611a929291906145aa565b5050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ae7613231565b73ffffffffffffffffffffffffffffffffffffffff16611b056122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290615077565b60405180910390fd5b6001601160016101000a81548160ff02191690831515021790555081601281905550806014819055506001601160006101000a81548160ff0219169083151502179055505050565b600e5481565b611bb1613231565b73ffffffffffffffffffffffffffffffffffffffff16611bcf6122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90615077565b60405180910390fd5b8060178190555050565b6000611c3a826139fe565b600001519050919050565b600f5481565b611c53613231565b73ffffffffffffffffffffffffffffffffffffffff16611c716122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90615077565b60405180910390fd5b80600d8190555050565b600c8054611cde906150c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0a906150c6565b8015611d575780601f10611d2c57610100808354040283529160200191611d57565b820191906000526020600020905b815481529060010190602001808311611d3a57829003601f168201915b505050505081565b611d67613231565b73ffffffffffffffffffffffffffffffffffffffff16611d856122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290615077565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ebd613231565b73ffffffffffffffffffffffffffffffffffffffff16611edb6122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890615077565b60405180910390fd5b611f3b6000613c89565b565b611f45613231565b73ffffffffffffffffffffffffffffffffffffffff16611f636122e4565b73ffffffffffffffffffffffffffffffffffffffff1614611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090615077565b60405180910390fd5b60105481611fc5611144565b611fcf91906152d6565b1115612010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120079061539e565b60405180910390fd5b61201a8282613d4f565b5050565b612026613231565b73ffffffffffffffffffffffffffffffffffffffff166120446122e4565b73ffffffffffffffffffffffffffffffffffffffff161461209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190615077565b60405180910390fd5b8060138190555050565b601160019054906101000a900460ff1681565b600d5481565b60008060009050601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601354116121155760009050612254565b60006002811115612129576121286150f8565b5b601a60019054906101000a900460ff16600281111561214b5761214a6150f8565b5b141561216e57601654841115612165576016549050612169565b8390505b612253565b60016002811115612182576121816150f8565b5b601a60019054906101000a900460ff1660028111156121a4576121a36150f8565b5b14156121d25760155484106121c857601554846121c191906152a2565b90506121cd565b600090505b612252565b6002808111156121e5576121e46150f8565b5b601a60019054906101000a900460ff166002811115612207576122066150f8565b5b14156122515760006122188461248a565b9050601754811161224b576015548510612241576015548561223a91906152a2565b9150612246565b600091505b61224f565b8491505b505b5b5b5b8091505092915050565b612266613231565b73ffffffffffffffffffffffffffffffffffffffff166122846122e4565b73ffffffffffffffffffffffffffffffffffffffff16146122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d190615077565b60405180910390fd5b8060158190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b61231c613231565b73ffffffffffffffffffffffffffffffffffffffff1661233a6122e4565b73ffffffffffffffffffffffffffffffffffffffff1614612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790615077565b60405180910390fd5b60028114156123c9576001601a60006101000a81548160ff021916908360018111156123bf576123be6150f8565b5b02179055506123f5565b6000601a60006101000a81548160ff021916908360018111156123ef576123ee6150f8565b5b02179055505b50565b606060038054612407906150c6565b80601f0160208091040260200160405190810160405280929190818152602001828054612433906150c6565b80156124805780601f1061245557610100808354040283529160200191612480565b820191906000526020600020905b81548152906001019060200180831161246357829003601f168201915b5050505050905090565b6000606482612497610e54565b6040516020016124a8929190615442565b6040516020818303038152906040528051906020012060001c6124cb919061546a565b9050919050565b6124da613231565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061254c613231565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125f9613231565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161263e9190614744565b60405180910390a35050565b612652613231565b73ffffffffffffffffffffffffffffffffffffffff166126706122e4565b73ffffffffffffffffffffffffffffffffffffffff16146126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90615077565b60405180910390fd5b8060168190555050565b6126db8484846134d4565b6126fa8373ffffffffffffffffffffffffffffffffffffffff16613194565b156127425761270b84848484613d6d565b612741576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612750613231565b73ffffffffffffffffffffffffffffffffffffffff1661276e6122e4565b73ffffffffffffffffffffffffffffffffffffffff16146127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb90615077565b60405180910390fd5b80600e8190555050565b60175481565b6127dc613231565b73ffffffffffffffffffffffffffffffffffffffff166127fa6122e4565b73ffffffffffffffffffffffffffffffffffffffff1614612850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284790615077565b60405180910390fd5b6000601160016101000a81548160ff0219169083151502179055506000601281905550565b6002600b5414156128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b2906154e7565b60405180910390fd5b6002600b81905550601160009054906101000a900460ff16612912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290990615553565b60405180910390fd5b600e54811115612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e906155bf565b60405180910390fd5b6000811161299a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129919061562b565b60405180910390fd5b601054816129a6611144565b6129b091906152d6565b11156129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890615697565b60405180910390fd5b6000601160019054906101000a900460ff168015612a10575060003411155b15612bde57600060125411612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190615703565b60405180910390fd5b60145482601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612aa891906152d6565b1115612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090615795565b60405180910390fd5b600082601254612af991906152a2565b11612b045760125491505b612b0e3383613d4f565b81601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b5991906152d6565b601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081601254612baa91906152a2565b601281905550600060125411612bd6576000601160016101000a81548160ff0219169083151502179055505b819050612c47565b6000612bea8333611466565b9050612bf683336120bd565b915080341015612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290615801565b60405180910390fd5b612c453384613d4f565b505b6000811115612cdf5780601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c9b91906152d6565b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b506001600b8190555050565b6060612cf6826133cf565b612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c9061586d565b60405180910390fd5b600180811115612d4857612d476150f8565b5b601a60009054906101000a900460ff166001811115612d6a57612d696150f8565b5b1415612dce576000600c8054612d7f906150c6565b905011612d9b5760405180602001604052806000815250612dc7565b600c612da683613ebe565b604051602001612db7929190615921565b6040516020818303038152906040525b9050612e28565b6000600c8054612ddd906150c6565b905011612df95760405180602001604052806000815250612e25565b600c612e0483613ebe565b604051602001612e15929190615991565b6040516020818303038152906040525b90505b919050565b60155481565b60145481565b6000612e4482613994565b9050919050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b612f43613231565b73ffffffffffffffffffffffffffffffffffffffff16612f616122e4565b73ffffffffffffffffffffffffffffffffffffffff1614612fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fae90615077565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301e90615a32565b60405180910390fd5b61303081613c89565b50565b61303b613231565b73ffffffffffffffffffffffffffffffffffffffff166130596122e4565b73ffffffffffffffffffffffffffffffffffffffff16146130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a690615077565b60405180910390fd5b60018414156130e8576000601a60016101000a81548160ff021916908360028111156130de576130dd6150f8565b5b0217905550613158565b6002841415613121576001601a60016101000a81548160ff02191690836002811115613117576131166150f8565b5b0217905550613157565b6003841415613156576002601a60016101000a81548160ff021916908360028111156131505761314f6150f8565b5b02179055505b5b5b8160158190555080601681905550826013819055506001601160006101000a81548160ff02191690831515021790555050505050565b60105481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061322a57506132298261401f565b5b9050919050565b600033905090565b61324161398a565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561329f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329690615ac4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690615b30565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816133da6134cf565b111580156133e9575060005482105b8015613416575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006134df826139fe565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461354a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661356b613231565b73ffffffffffffffffffffffffffffffffffffffff16148061359a575061359985613594613231565b612e94565b5b806135df57506135a8613231565b73ffffffffffffffffffffffffffffffffffffffff166135c784610ee6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613618576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561367f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61368c8585856001614101565b6136986000848761341d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561391857600054821461391757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139838585856001614107565b5050505050565b6000612710905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b613a06614630565b600082905080613a146134cf565b11613c5257600054811015613c51576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613c4f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613b33578092505050613c84565b5b600115613c4e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613c49578092505050613c84565b613b34565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613d6982826040518060200160405280600081525061410d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613d93613231565b8786866040518563ffffffff1660e01b8152600401613db59493929190615ba5565b6020604051808303816000875af1925050508015613df157506040513d601f19601f82011682018060405250810190613dee9190615c06565b60015b613e6b573d8060008114613e21576040519150601f19603f3d011682016040523d82523d6000602084013e613e26565b606091505b50600081511415613e63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613f06576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061401a565b600082905060005b60008214613f38578080613f2190615c33565b915050600a82613f319190615271565b9150613f0e565b60008167ffffffffffffffff811115613f5457613f53614c80565b5b6040519080825280601f01601f191660200182016040528015613f865781602001600182028036833780820191505090505b5090505b6000851461401357600182613f9f91906152a2565b9150600a85613fae919061546a565b6030613fba91906152d6565b60f81b818381518110613fd057613fcf615c7c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561400c9190615271565b9450613f8a565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806140ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806140fa57506140f9826144cf565b5b9050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561417a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156141b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6141c26000858386614101565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506143838673ffffffffffffffffffffffffffffffffffffffff16613194565b15614448575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46143f86000878480600101955087613d6d565b61442e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061438957826000541461444357600080fd5b6144b3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210614449575b8160008190555050506144c96000858386614107565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b604051806101c00160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b8280546145b6906150c6565b90600052602060002090601f0160209004810192826145d8576000855561461f565b82601f106145f157805160ff191683800117855561461f565b8280016001018555821561461f579182015b8281111561461e578251825591602001919060010190614603565b5b50905061462c9190614673565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561468c576000816000905550600101614674565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6146d9816146a4565b81146146e457600080fd5b50565b6000813590506146f6816146d0565b92915050565b6000602082840312156147125761471161469a565b5b6000614720848285016146e7565b91505092915050565b60008115159050919050565b61473e81614729565b82525050565b60006020820190506147596000830184614735565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061478a8261475f565b9050919050565b61479a8161477f565b81146147a557600080fd5b50565b6000813590506147b781614791565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6147de816147bd565b81146147e957600080fd5b50565b6000813590506147fb816147d5565b92915050565b600080604083850312156148185761481761469a565b5b6000614826858286016147a8565b9250506020614837858286016147ec565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561487b578082015181840152602081019050614860565b8381111561488a576000848401525b50505050565b6000601f19601f8301169050919050565b60006148ac82614841565b6148b6818561484c565b93506148c681856020860161485d565b6148cf81614890565b840191505092915050565b600060208201905081810360008301526148f481846148a1565b905092915050565b6000819050919050565b61490f816148fc565b811461491a57600080fd5b50565b60008135905061492c81614906565b92915050565b6000602082840312156149485761494761469a565b5b60006149568482850161491d565b91505092915050565b6149688161477f565b82525050565b6000602082019050614983600083018461495f565b92915050565b600080604083850312156149a05761499f61469a565b5b60006149ae858286016147a8565b92505060206149bf8582860161491d565b9150509250929050565b6149d2816148fc565b82525050565b60006020820190506149ed60008301846149c9565b92915050565b600080600060608486031215614a0c57614a0b61469a565b5b6000614a1a868287016147a8565b9350506020614a2b868287016147a8565b9250506040614a3c8682870161491d565b9150509250925092565b60008060408385031215614a5d57614a5c61469a565b5b6000614a6b8582860161491d565b9250506020614a7c8582860161491d565b9150509250929050565b6000604082019050614a9b600083018561495f565b614aa860208301846149c9565b9392505050565b60008060408385031215614ac657614ac561469a565b5b6000614ad48582860161491d565b9250506020614ae5858286016147a8565b9150509250929050565b600060208284031215614b0557614b0461469a565b5b6000614b13848285016147a8565b91505092915050565b614b25816148fc565b82525050565b614b3481614729565b82525050565b6101c082016000820151614b516000850182614b1c565b506020820151614b646020850182614b1c565b506040820151614b776040850182614b1c565b506060820151614b8a6060850182614b2b565b506080820151614b9d6080850182614b1c565b5060a0820151614bb060a0850182614b1c565b5060c0820151614bc360c0850182614b1c565b5060e0820151614bd660e0850182614b1c565b50610100820151614beb610100850182614b1c565b50610120820151614c00610120850182614b1c565b50610140820151614c15610140850182614b1c565b50610160820151614c2a610160850182614b1c565b50610180820151614c3f610180850182614b1c565b506101a0820151614c546101a0850182614b1c565b50505050565b60006101c082019050614c706000830184614b3a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614cb882614890565b810181811067ffffffffffffffff82111715614cd757614cd6614c80565b5b80604052505050565b6000614cea614690565b9050614cf68282614caf565b919050565b600067ffffffffffffffff821115614d1657614d15614c80565b5b614d1f82614890565b9050602081019050919050565b82818337600083830152505050565b6000614d4e614d4984614cfb565b614ce0565b905082815260208101848484011115614d6a57614d69614c7b565b5b614d75848285614d2c565b509392505050565b600082601f830112614d9257614d91614c76565b5b8135614da2848260208601614d3b565b91505092915050565b600060208284031215614dc157614dc061469a565b5b600082013567ffffffffffffffff811115614ddf57614dde61469f565b5b614deb84828501614d7d565b91505092915050565b614dfd81614729565b8114614e0857600080fd5b50565b600081359050614e1a81614df4565b92915050565b60008060408385031215614e3757614e3661469a565b5b6000614e45858286016147a8565b9250506020614e5685828601614e0b565b9150509250929050565b600067ffffffffffffffff821115614e7b57614e7a614c80565b5b614e8482614890565b9050602081019050919050565b6000614ea4614e9f84614e60565b614ce0565b905082815260208101848484011115614ec057614ebf614c7b565b5b614ecb848285614d2c565b509392505050565b600082601f830112614ee857614ee7614c76565b5b8135614ef8848260208601614e91565b91505092915050565b60008060008060808587031215614f1b57614f1a61469a565b5b6000614f29878288016147a8565b9450506020614f3a878288016147a8565b9350506040614f4b8782880161491d565b925050606085013567ffffffffffffffff811115614f6c57614f6b61469f565b5b614f7887828801614ed3565b91505092959194509250565b60008060408385031215614f9b57614f9a61469a565b5b6000614fa9858286016147a8565b9250506020614fba858286016147a8565b9150509250929050565b60008060008060808587031215614fde57614fdd61469a565b5b6000614fec8782880161491d565b9450506020614ffd8782880161491d565b935050604061500e8782880161491d565b925050606061501f8782880161491d565b91505092959194509250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061506160208361484c565b915061506c8261502b565b602082019050919050565b6000602082019050818103600083015261509081615054565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806150de57607f821691505b602082108114156150f2576150f1615097565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000615183602d8361484c565b915061518e82615127565b604082019050919050565b600060208201905081810360008301526151b281615176565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006151f3826148fc565b91506151fe836148fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615237576152366151b9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061527c826148fc565b9150615287836148fc565b92508261529757615296615242565b5b828204905092915050565b60006152ad826148fc565b91506152b8836148fc565b9250828210156152cb576152ca6151b9565b5b828203905092915050565b60006152e1826148fc565b91506152ec836148fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615321576153206151b9565b5b828201905092915050565b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f6620746f6b656e730000000000000000000000000000000000000000000000602082015250565b600061538860298361484c565b91506153938261532c565b604082019050919050565b600060208201905081810360008301526153b78161537b565b9050919050565b60008160601b9050919050565b60006153d6826153be565b9050919050565b60006153e8826153cb565b9050919050565b6154006153fb8261477f565b6153dd565b82525050565b600081905092915050565b600061541c82614841565b6154268185615406565b935061543681856020860161485d565b80840191505092915050565b600061544e82856153ef565b60148201915061545e8284615411565b91508190509392505050565b6000615475826148fc565b9150615480836148fc565b9250826154905761548f615242565b5b828206905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006154d1601f8361484c565b91506154dc8261549b565b602082019050919050565b60006020820190508181036000830152615500816154c4565b9050919050565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b600061553d60138361484c565b915061554882615507565b602082019050919050565b6000602082019050818103600083015261556c81615530565b9050919050565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b60006155a960188361484c565b91506155b482615573565b602082019050919050565b600060208201905081810360008301526155d88161559c565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b600061561560168361484c565b9150615620826155df565b602082019050919050565b6000602082019050818103600083015261564481615608565b9050919050565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b600061568160118361484c565b915061568c8261564b565b602082019050919050565b600060208201905081810360008301526156b081615674565b9050919050565b7f4e6f2077686974656c69737420746f6b656e732072656d61696e000000000000600082015250565b60006156ed601a8361484c565b91506156f8826156b7565b602082019050919050565b6000602082019050818103600083015261571c816156e0565b9050919050565b7f457863656564206d6178206672656520746f6b656e73207065722077616c6c6560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b600061577f60218361484c565b915061578a82615723565b604082019050919050565b600060208201905081810360008301526157ae81615772565b9050919050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b60006157eb60108361484c565b91506157f6826157b5565b602082019050919050565b6000602082019050818103600083015261581a816157de565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061585760158361484c565b915061586282615821565b602082019050919050565b600060208201905081810360008301526158868161584a565b9050919050565b60008190508160005260206000209050919050565b600081546158af816150c6565b6158b98186615406565b945060018216600081146158d457600181146158e557615918565b60ff19831686528186019350615918565b6158ee8561588d565b60005b83811015615910578154818901526001820191506020810190506158f1565b838801955050505b50505092915050565b600061592d82856158a2565b91506159398284615411565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061597b600583615406565b915061598682615945565b600582019050919050565b600061599d82856158a2565b91506159a98284615411565b91506159b48261596e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615a1c60268361484c565b9150615a27826159c0565b604082019050919050565b60006020820190508181036000830152615a4b81615a0f565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000615aae602a8361484c565b9150615ab982615a52565b604082019050919050565b60006020820190508181036000830152615add81615aa1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000615b1a60198361484c565b9150615b2582615ae4565b602082019050919050565b60006020820190508181036000830152615b4981615b0d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615b7782615b50565b615b818185615b5b565b9350615b9181856020860161485d565b615b9a81614890565b840191505092915050565b6000608082019050615bba600083018761495f565b615bc7602083018661495f565b615bd460408301856149c9565b8181036060830152615be68184615b6c565b905095945050505050565b600081519050615c00816146d0565b92915050565b600060208284031215615c1c57615c1b61469a565b5b6000615c2a84828501615bf1565b91505092915050565b6000615c3e826148fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615c7157615c706151b9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122068268d24d1696718e6abab442e5e1a9889e8944fad81607521a1ce4f17da08d564736f6c634300080a0033

Deployed Bytecode Sourcemap

68485:12101:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80225:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80047:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45156:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46660:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46222:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79249:297;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68969:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41281:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69099:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71276:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47525:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63225:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;72389:1231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71862:89;;;;;;;;;;;;;:::i;:::-;;71127:140;;;;;;;;;;;;;:::i;:::-;;47766:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79695:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70217:902;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71756:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79835:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71959:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68707:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79554:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44964:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68747:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76673:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68560:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78038:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42410:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12614:103;;;;;;;;;;;;;:::i;:::-;;71497:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78269:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68871:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68642:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73628:1384;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78393:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11963:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68921:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77430:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45325:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80441:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46936:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78545:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48022:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78145:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69142:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72253:128;;;;;;;;;;;;;:::i;:::-;;75020:1645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76788:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69053:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69008:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77780:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77902:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47294:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68831:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12872:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78685:556;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68790:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80225:204;80356:4;80385:36;80409:11;80385:23;:36::i;:::-;80378:43;;80225:204;;;:::o;80047:170::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80165:44:::1;80184:8;80194:14;80165:18;:44::i;:::-;80047:170:::0;;:::o;45156:100::-;45210:13;45243:5;45236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45156:100;:::o;46660:204::-;46728:7;46753:16;46761:7;46753;:16::i;:::-;46748:64;;46778:34;;;;;;;;;;;;;;46748:64;46832:15;:24;46848:7;46832:24;;;;;;;;;;;;;;;;;;;;;46825:31;;46660:204;;;:::o;46222:372::-;46295:13;46311:24;46327:7;46311:15;:24::i;:::-;46295:40;;46356:5;46350:11;;:2;:11;;;46346:48;;;46370:24;;;;;;;;;;;;;;46346:48;46427:5;46411:21;;:12;:10;:12::i;:::-;:21;;;46407:139;;46438:37;46455:5;46462:12;:10;:12::i;:::-;46438:16;:37::i;:::-;46434:112;;46499:35;;;;;;;;;;;;;;46434:112;46407:139;46558:28;46567:2;46571:7;46580:5;46558:8;:28::i;:::-;46284:310;46222:372;;:::o;79249:297::-;79293:4;79324:15;79312:27;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;79309:211;;;79362:1;79355:8;;;;79309:211;79396:14;79384:26;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;79381:139;;;79433:1;79426:8;;;;79381:139;79466:18;79454:30;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;79451:69;;;79507:1;79500:8;;;;79451:69;79537:1;79530:8;;79249:297;;:::o;68969:30::-;;;;:::o;41281:312::-;41334:7;41559:15;:13;:15::i;:::-;41544:12;;41528:13;;:28;:46;41521:53;;41281:312;:::o;69099:34::-;;;;:::o;71276:212::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71370:21:::1;71360:6;:31;;71352:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;71460:2;71452:20;;:28;71473:6;71452:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71276:212:::0;;:::o;47525:170::-;47659:28;47669:4;47675:2;47679:7;47659:9;:28::i;:::-;47525:170;;;:::o;63225:494::-;63369:7;63378;63403:26;63432:17;:27;63450:8;63432:27;;;;;;;;;;;63403:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63504:1;63476:30;;:7;:16;;;:30;;;63472:92;;;63533:19;63523:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63472:92;63576:21;63641:17;:15;:17::i;:::-;63600:58;;63614:7;:23;;;63601:36;;:10;:36;;;;:::i;:::-;63600:58;;;;:::i;:::-;63576:82;;63679:7;:16;;;63697:13;63671:40;;;;;;63225:494;;;;;:::o;72389:1231::-;72465:7;72485:13;72501:1;72485:17;;72536:23;:31;72560:6;72536:31;;;;;;;;;;;;;;;;72518:14;;:49;72513:1077;;72611:10;;72594:14;:27;;;;:::i;:::-;72586:35;;72513:1077;;;72677:15;72665:27;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;72662:917;;;72732:18;;72715:14;:35;72712:140;;;72822:10;;72800:18;;72783:14;:35;;;;:::i;:::-;72782:50;;;;:::i;:::-;72774:58;;72712:140;72662:917;;;72888:14;72876:26;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;72873:706;;;72943:21;;72925:14;:39;72922:211;;73020:10;;72996:21;;:34;;;;:::i;:::-;72988:42;;72922:211;;;73103:10;;73086:14;:27;;;;:::i;:::-;73078:35;;72922:211;72873:706;;;73169:18;73157:30;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;73154:425;;;73207:12;73222:21;73236:6;73222:13;:21::i;:::-;73207:36;;73276:18;;73265:7;:29;73262:302;;73339:21;;73321:14;:39;73318:227;;73420:10;;73396:21;;:34;;;;:::i;:::-;73388:42;;73318:227;;;73511:10;;73494:14;:27;;;;:::i;:::-;73486:35;;73318:227;73262:302;73188:391;73154:425;72873:706;72662:917;72513:1077;73607:5;73600:12;;;72389:1231;;;;:::o;71862:89::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71931:12:::1;;;;;;;;;;;71930:13;71915:12;;:28;;;;;;;;;;;;;;;;;;71862:89::o:0;71127:140::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71175:12:::1;71190:21;71175:36;;71230:10;71222:28;;:37;71251:7;71222:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71164:103;71127:140::o:0;47766:185::-;47904:39;47921:4;47927:2;47931:7;47904:39;;;;;;;;;;;;:16;:39::i;:::-;47766:185;;;:::o;79695:132::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79800:19:::1;79779:18;:40;;;;79695:132:::0;:::o;70217:902::-;70272:18;;:::i;:::-;70310:801;;;;;;;;70349:10;;70310:801;;;;70390:14;;70310:801;;;;70431:10;;70310:801;;;;70470:12;;;;;;;;;;;70310:801;;;;;;70518:13;:11;:13::i;:::-;70310:801;;;;70564:14;;70310:801;;;;70617:21;;70310:801;;;;70674:18;;70310:801;;;;70727:18;;70310:801;;;;70780:21;70794:6;70780:13;:21::i;:::-;70310:801;;;;70834:23;:31;70858:6;70834:31;;;;;;;;;;;;;;;;70310:801;;;;70890:21;70904:6;70890:13;:21::i;:::-;70310:801;;;;70949:15;70937:27;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;:108;;70984:14;70972:26;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;:72;;71018:18;71006:30;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;:38;;71043:1;71006:38;;;71039:1;71006:38;70972:72;;;71002:1;70972:72;70937:108;;;70967:1;70937:108;70310:801;;;;;;71081:18;;70310:801;;;70303:808;;70217:902;;;:::o;71756:94::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71836:6:::1;71826:7;:16;;;;;;;;;;;;:::i;:::-;;71756:94:::0;:::o;79835:136::-;79901:7;79927:28;:36;79956:6;79927:36;;;;;;;;;;;;;;;;79920:43;;79835:136;;;:::o;71959:286::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72095:4:::1;72071:21;;:28;;;;;;;;;;;;;;;;;;72133:21;72110:20;:44;;;;72187:20;72165:19;:42;;;;72233:4;72218:12;;:19;;;;;;;;;;;;;;;;;;71959:286:::0;;:::o;68707:31::-;;;;:::o;79554:133::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79660:19:::1;79639:18;:40;;;;79554:133:::0;:::o;44964:125::-;45028:7;45055:21;45068:7;45055:12;:21::i;:::-;:26;;;45048:33;;44964:125;;;:::o;68747:34::-;;;;:::o;76673:107::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76759:13:::1;76746:10;:26;;;;76673:107:::0;:::o;68560:73::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78038:99::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78119:10:::1;78106;:23;;;;78038:99:::0;:::o;42410:206::-;42474:7;42515:1;42498:19;;:5;:19;;;42494:60;;;42526:28;;;;;;;;;;;;;;42494:60;42580:12;:19;42593:5;42580:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42572:36;;42565:43;;42410:206;;;:::o;12614:103::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12679:30:::1;12706:1;12679:18;:30::i;:::-;12614:103::o:0;71497:238::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71631:10:::1;;71613:14;71597:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;71589:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;71698:29;71708:2;71712:14;71698:9;:29::i;:::-;71497:238:::0;;:::o;78269:116::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78362:15:::1;78345:14;:32;;;;78269:116:::0;:::o;68871:41::-;;;;;;;;;;;;;:::o;68642:44::-;;;;:::o;73628:1384::-;73715:4;73732:21;73756:1;73732:25;;73791:23;:31;73815:6;73791:31;;;;;;;;;;;;;;;;73773:14;;:49;73768:1203;;73860:1;73841:20;;73768:1203;;;73917:15;73905:27;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;73902:1058;;;73972:18;;73955:14;:35;73952:200;;;74033:18;;74014:37;;73952:200;;;74118:14;74099:33;;73952:200;73902:1058;;;74188:14;74176:26;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;74173:787;;;74243:21;;74225:14;:39;74222:211;;74324:21;;74307:14;:38;;;;:::i;:::-;74288:57;;74222:211;;;74412:1;74393:20;;74222:211;74173:787;;;74469:18;74457:30;;;;;;;;:::i;:::-;;:8;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;74454:506;;;74507:12;74522:21;74536:6;74522:13;:21::i;:::-;74507:36;;74576:18;;74565:7;:29;74562:383;;74639:21;;74621:14;:39;74618:227;;74724:21;;74707:14;:38;;;;:::i;:::-;74688:57;;74618:227;;;74820:1;74801:20;;74618:227;74562:383;;;74911:14;74892:33;;74562:383;74488:472;74454:506;74173:787;73902:1058;73768:1203;74988:16;74981:23;;;73628:1384;;;;:::o;78393:144::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78507:22:::1;78483:21;:46;;;;78393:144:::0;:::o;11963:87::-;12009:7;12036:6;;;;;;;;;;;12029:13;;11963:87;:::o;68921:39::-;;;;:::o;77430:223::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77511:1:::1;77503:4;:9;77499:147;;;77544:21;77529:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;77499:147;;;77613:21;77598:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;77499:147;77430:223:::0;:::o;45325:104::-;45381:13;45414:7;45407:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45325:104;:::o;80441:142::-;80498:4;80572:3;80554;80559:6;:4;:6::i;:::-;80537:29;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80527:40;;;;;;80521:48;;:54;;;;:::i;:::-;80514:61;;80441:142;;;:::o;46936:287::-;47047:12;:10;:12::i;:::-;47035:24;;:8;:24;;;47031:54;;;47068:17;;;;;;;;;;;;;;47031:54;47143:8;47098:18;:32;47117:12;:10;:12::i;:::-;47098:32;;;;;;;;;;;;;;;:42;47131:8;47098:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;47196:8;47167:48;;47182:12;:10;:12::i;:::-;47167:48;;;47206:8;47167:48;;;;;;:::i;:::-;;;;;;;;46936:287;;:::o;78545:132::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78650:19:::1;78629:18;:40;;;;78545:132:::0;:::o;48022:370::-;48189:28;48199:4;48205:2;48209:7;48189:9;:28::i;:::-;48232:15;:2;:13;;;:15::i;:::-;48228:157;;;48253:56;48284:4;48290:2;48294:7;48303:5;48253:30;:56::i;:::-;48249:136;;48333:40;;;;;;;;;;;;;;48249:136;48228:157;48022:370;;;;:::o;78145:116::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78238:15:::1;78221:14;:32;;;;78145:116:::0;:::o;69142:35::-;;;;:::o;72253:128::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72333:5:::1;72309:21;;:29;;;;;;;;;;;;;;;;;;72372:1;72349:20;:24;;;;72253:128::o:0;75020:1645::-;67536:1;68134:7;;:19;;68126:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;67536:1;68267:7;:18;;;;75107:12:::1;;;;;;;;;;;75099:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;75180:14;;75162;:32;;75154:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;75259:1;75242:14;:18;75234:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;75340:10;;75322:14;75306:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;75298:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;75385:21;75424;;;;;;;;;;;:39;;;;;75462:1;75449:9;:14;;75424:39;75421:1082;;;75510:1;75487:20;;:24;75479:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;75626:19;;75608:14;75565:28;:40;75594:10;75565:40;;;;;;;;;;;;;;;;:57;;;;:::i;:::-;:80;;75557:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;75742:1;75724:14;75701:20;;:37;;;;:::i;:::-;:42;75698:118;;75780:20;;75763:37;;75698:118;75830:37;75840:10;75852:14;75830:9;:37::i;:::-;75968:14;75925:28;:40;75954:10;75925:40;;;;;;;;;;;;;;;;:57;;;;:::i;:::-;75882:28;:40;75911:10;75882:40;;;;;;;;;;;;;;;:100;;;;76043:14;76020:20;;:37;;;;:::i;:::-;75997:20;:60;;;;76099:1;76075:20;;:25;76072:93;;76144:5;76120:21;;:29;;;;;;;;;;;;;;;;;;76072:93;76198:14;76179:33;;75421:1082;;;76244:13;76260:36;76269:14;76285:10;76260:8;:36::i;:::-;76244:52;;76330:47;76350:14;76366:10;76330:19;:47::i;:::-;76311:66;;76413:5;76400:9;:18;;76392:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;76454:37;76464:10;76476:14;76454:9;:37::i;:::-;76229:274;75421:1082;76537:1;76518:16;:20;76515:143;;;76630:16;76592:23;:35;76616:10;76592:35;;;;;;;;;;;;;;;;:54;;;;:::i;:::-;76554:23;:35;76578:10;76554:35;;;;;;;;;;;;;;;:92;;;;76515:143;75088:1577;67492:1:::0;68446:7;:22;;;;75020:1645;:::o;76788:634::-;76854:13;76894:17;76902:8;76894:7;:17::i;:::-;76886:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;76968:21;76952:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;76948:467;;;77035:1;77017:7;77011:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;77093:7;77117:26;77134:8;77117:16;:26::i;:::-;77060:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77011:165;77004:172;;;;76948:467;77238:1;77220:7;77214:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;77296:7;77320:26;77337:8;77320:16;:26::i;:::-;77263:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77214:189;77207:196;;76788:634;;;;:::o;69053:37::-;;;;:::o;69008:36::-;;;;:::o;77780:113::-;77838:7;77865:20;77879:5;77865:13;:20::i;:::-;77858:27;;77780:113;;;:::o;77902:127::-;77964:7;77991:23;:30;78015:5;77991:30;;;;;;;;;;;;;;;;77984:37;;77902:127;;;:::o;47294:164::-;47391:4;47415:18;:25;47434:5;47415:25;;;;;;;;;;;;;;;:35;47441:8;47415:35;;;;;;;;;;;;;;;;;;;;;;;;;47408:42;;47294:164;;;;:::o;68831:31::-;;;;;;;;;;;;;:::o;12872:201::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12981:1:::1;12961:22;;:8;:22;;;;12953:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13037:28;13056:8;13037:18;:28::i;:::-;12872:201:::0;:::o;78685:556::-;12194:12;:10;:12::i;:::-;12183:23;;:7;:5;:7::i;:::-;:23;;;12175:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78843:1:::1;78830:9;:14;78827:226;;;78871:15;78860:8;;:26;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;78827:226;;;78920:1;78907:9;:14;78904:149;;;78948:14;78937:8;;:25;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;78904:149;;;78995:1;78982:9;:14;78979:74;;;79023:18;79012:8;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;78979:74;78904:149;78827:226;79087:22;79063:21;:46;;;;79141:19;79120:18;:40;;;;79188:15;79171:14;:32;;;;79229:4;79214:12;;:19;;;;;;;;;;;;;;;;;;78685:556:::0;;;;:::o;68790:32::-;;;;:::o;14581:326::-;14641:4;14898:1;14876:7;:19;;;:23;14869:30;;14581:326;;;:::o;62955:215::-;63057:4;63096:26;63081:41;;;:11;:41;;;;:81;;;;63126:36;63150:11;63126:23;:36::i;:::-;63081:81;63074:88;;62955:215;;;:::o;797:98::-;850:7;877:10;870:17;;797:98;:::o;64369:332::-;64488:17;:15;:17::i;:::-;64472:33;;:12;:33;;;;64464:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;64591:1;64571:22;;:8;:22;;;;64563:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;64658:35;;;;;;;;64670:8;64658:35;;;;;;64680:12;64658:35;;;;;64636:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64369:332;;:::o;48647:174::-;48704:4;48747:7;48728:15;:13;:15::i;:::-;:26;;:53;;;;;48768:13;;48758:7;:23;48728:53;:85;;;;;48786:11;:20;48798:7;48786:20;;;;;;;;;;;:27;;;;;;;;;;;;48785:28;48728:85;48721:92;;48647:174;;;:::o;57869:196::-;58011:2;57984:15;:24;58000:7;57984:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58049:7;58045:2;58029:28;;58038:5;58029:28;;;;;;;;;;;;57869:196;;;:::o;41055:92::-;41111:7;41055:92;:::o;52817:2130::-;52932:35;52970:21;52983:7;52970:12;:21::i;:::-;52932:59;;53030:4;53008:26;;:13;:18;;;:26;;;53004:67;;53043:28;;;;;;;;;;;;;;53004:67;53084:22;53126:4;53110:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;53147:36;53164:4;53170:12;:10;:12::i;:::-;53147:16;:36::i;:::-;53110:73;:126;;;;53224:12;:10;:12::i;:::-;53200:36;;:20;53212:7;53200:11;:20::i;:::-;:36;;;53110:126;53084:153;;53255:17;53250:66;;53281:35;;;;;;;;;;;;;;53250:66;53345:1;53331:16;;:2;:16;;;53327:52;;;53356:23;;;;;;;;;;;;;;53327:52;53392:43;53414:4;53420:2;53424:7;53433:1;53392:21;:43::i;:::-;53500:35;53517:1;53521:7;53530:4;53500:8;:35::i;:::-;53861:1;53831:12;:18;53844:4;53831:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53905:1;53877:12;:16;53890:2;53877:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53923:31;53957:11;:20;53969:7;53957:20;;;;;;;;;;;53923:54;;54008:2;53992:8;:13;;;:18;;;;;;;;;;;;;;;;;;54058:15;54025:8;:23;;;:49;;;;;;;;;;;;;;;;;;54326:19;54358:1;54348:7;:11;54326:33;;54374:31;54408:11;:24;54420:11;54408:24;;;;;;;;;;;54374:58;;54476:1;54451:27;;:8;:13;;;;;;;;;;;;:27;;;54447:384;;;54661:13;;54646:11;:28;54642:174;;54715:4;54699:8;:13;;;:20;;;;;;;;;;;;;;;;;;54768:13;:28;;;54742:8;:23;;;:54;;;;;;;;;;;;;;;;;;54642:174;54447:384;53806:1036;;;54878:7;54874:2;54859:27;;54868:4;54859:27;;;;;;;;;;;;54897:42;54918:4;54924:2;54928:7;54937:1;54897:20;:42::i;:::-;52921:2026;;52817:2130;;;:::o;64001:97::-;64059:6;64085:5;64078:12;;64001:97;:::o;42698:137::-;42759:7;42794:12;:19;42807:5;42794:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;42786:41;;42779:48;;42698:137;;;:::o;43791:1111::-;43853:21;;:::i;:::-;43887:12;43902:7;43887:22;;43970:4;43951:15;:13;:15::i;:::-;:23;43947:888;;43987:13;;43980:4;:20;43976:859;;;44021:31;44055:11;:17;44067:4;44055:17;;;;;;;;;;;44021:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44096:9;:16;;;44091:729;;44167:1;44141:28;;:9;:14;;;:28;;;44137:101;;44205:9;44198:16;;;;;;44137:101;44540:261;44547:4;44540:261;;;44580:6;;;;;;;;44625:11;:17;44637:4;44625:17;;;;;;;;;;;44613:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44699:1;44673:28;;:9;:14;;;:28;;;44669:109;;44741:9;44734:16;;;;;;44669:109;44540:261;;;44091:729;44002:833;43976:859;43947:888;44863:31;;;;;;;;;;;;;;43791:1111;;;;:::o;13233:191::-;13307:16;13326:6;;;;;;;;;;;13307:25;;13352:8;13343:6;;:17;;;;;;;;;;;;;;;;;;13407:8;13376:40;;13397:8;13376:40;;;;;;;;;;;;13296:128;13233:191;:::o;48905:104::-;48974:27;48984:2;48988:8;48974:27;;;;;;;;;;;;:9;:27::i;:::-;48905:104;;:::o;58557:667::-;58720:4;58757:2;58741:36;;;58778:12;:10;:12::i;:::-;58792:4;58798:7;58807:5;58741:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58737:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58992:1;58975:6;:13;:18;58971:235;;;59021:40;;;;;;;;;;;;;;58971:235;59164:6;59158:13;59149:6;59145:2;59141:15;59134:38;58737:480;58870:45;;;58860:55;;;:6;:55;;;;58853:62;;;58557:667;;;;;;:::o;22135:723::-;22191:13;22421:1;22412:5;:10;22408:53;;;22439:10;;;;;;;;;;;;;;;;;;;;;22408:53;22471:12;22486:5;22471:20;;22502:14;22527:78;22542:1;22534:4;:9;22527:78;;22560:8;;;;;:::i;:::-;;;;22591:2;22583:10;;;;;:::i;:::-;;;22527:78;;;22615:19;22647:6;22637:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22615:39;;22665:154;22681:1;22672:5;:10;22665:154;;22709:1;22699:11;;;;;:::i;:::-;;;22776:2;22768:5;:10;;;;:::i;:::-;22755:2;:24;;;;:::i;:::-;22742:39;;22725:6;22732;22725:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;22805:2;22796:11;;;;;:::i;:::-;;;22665:154;;;22843:6;22829:21;;;;;22135:723;;;;:::o;42041:305::-;42143:4;42195:25;42180:40;;;:11;:40;;;;:105;;;;42252:33;42237:48;;;:11;:48;;;;42180:105;:158;;;;42302:36;42326:11;42302:23;:36::i;:::-;42180:158;42160:178;;42041:305;;;:::o;59872:159::-;;;;;:::o;60690:158::-;;;;;:::o;49382:1749::-;49505:20;49528:13;;49505:36;;49570:1;49556:16;;:2;:16;;;49552:48;;;49581:19;;;;;;;;;;;;;;49552:48;49627:1;49615:8;:13;49611:44;;;49637:18;;;;;;;;;;;;;;49611:44;49668:61;49698:1;49702:2;49706:12;49720:8;49668:21;:61::i;:::-;50041:8;50006:12;:16;50019:2;50006:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50105:8;50065:12;:16;50078:2;50065:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50164:2;50131:11;:25;50143:12;50131:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50231:15;50181:11;:25;50193:12;50181:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;50264:20;50287:12;50264:35;;50314:11;50343:8;50328:12;:23;50314:37;;50372:15;:2;:13;;;:15::i;:::-;50368:631;;;50408:313;50464:12;50460:2;50439:38;;50456:1;50439:38;;;;;;;;;;;;50505:69;50544:1;50548:2;50552:14;;;;;;50568:5;50505:30;:69::i;:::-;50500:174;;50610:40;;;;;;;;;;;;;;50500:174;50716:3;50701:12;:18;50408:313;;50802:12;50785:13;;:29;50781:43;;50816:8;;;50781:43;50368:631;;;50865:119;50921:14;;;;;;50917:2;50896:40;;50913:1;50896:40;;;;;;;;;;;;50979:3;50964:12;:18;50865:119;;50368:631;51029:12;51013:13;:28;;;;49981:1072;;51063:60;51092:1;51096:2;51100:12;51114:8;51063:20;:60::i;:::-;49494:1637;49382:1749;;;:::o;10821:157::-;10906:4;10945:25;10930:40;;;:11;:40;;;;10923:47;;10821:157;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:118::-;5887:24;5905:5;5887:24;:::i;:::-;5882:3;5875:37;5800:118;;:::o;5924:222::-;6017:4;6055:2;6044:9;6040:18;6032:26;;6068:71;6136:1;6125:9;6121:17;6112:6;6068:71;:::i;:::-;5924:222;;;;:::o;6152:619::-;6229:6;6237;6245;6294:2;6282:9;6273:7;6269:23;6265:32;6262:119;;;6300:79;;:::i;:::-;6262:119;6420:1;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6391:117;6547:2;6573:53;6618:7;6609:6;6598:9;6594:22;6573:53;:::i;:::-;6563:63;;6518:118;6675:2;6701:53;6746:7;6737:6;6726:9;6722:22;6701:53;:::i;:::-;6691:63;;6646:118;6152:619;;;;;:::o;6777:474::-;6845:6;6853;6902:2;6890:9;6881:7;6877:23;6873:32;6870:119;;;6908:79;;:::i;:::-;6870:119;7028:1;7053:53;7098:7;7089:6;7078:9;7074:22;7053:53;:::i;:::-;7043:63;;6999:117;7155:2;7181:53;7226:7;7217:6;7206:9;7202:22;7181:53;:::i;:::-;7171:63;;7126:118;6777:474;;;;;:::o;7257:332::-;7378:4;7416:2;7405:9;7401:18;7393:26;;7429:71;7497:1;7486:9;7482:17;7473:6;7429:71;:::i;:::-;7510:72;7578:2;7567:9;7563:18;7554:6;7510:72;:::i;:::-;7257:332;;;;;:::o;7595:474::-;7663:6;7671;7720:2;7708:9;7699:7;7695:23;7691:32;7688:119;;;7726:79;;:::i;:::-;7688:119;7846:1;7871:53;7916:7;7907:6;7896:9;7892:22;7871:53;:::i;:::-;7861:63;;7817:117;7973:2;7999:53;8044:7;8035:6;8024:9;8020:22;7999:53;:::i;:::-;7989:63;;7944:118;7595:474;;;;;:::o;8075:329::-;8134:6;8183:2;8171:9;8162:7;8158:23;8154:32;8151:119;;;8189:79;;:::i;:::-;8151:119;8309:1;8334:53;8379:7;8370:6;8359:9;8355:22;8334:53;:::i;:::-;8324:63;;8280:117;8075:329;;;;:::o;8410:108::-;8487:24;8505:5;8487:24;:::i;:::-;8482:3;8475:37;8410:108;;:::o;8524:99::-;8595:21;8610:5;8595:21;:::i;:::-;8590:3;8583:34;8524:99;;:::o;8699:2752::-;8854:6;8849:3;8845:16;8949:4;8942:5;8938:16;8932:23;8968:63;9025:4;9020:3;9016:14;9002:12;8968:63;:::i;:::-;8871:170;9133:4;9126:5;9122:16;9116:23;9152:63;9209:4;9204:3;9200:14;9186:12;9152:63;:::i;:::-;9051:174;9313:4;9306:5;9302:16;9296:23;9332:63;9389:4;9384:3;9380:14;9366:12;9332:63;:::i;:::-;9235:170;9495:4;9488:5;9484:16;9478:23;9514:57;9565:4;9560:3;9556:14;9542:12;9514:57;:::i;:::-;9415:166;9670:4;9663:5;9659:16;9653:23;9689:63;9746:4;9741:3;9737:14;9723:12;9689:63;:::i;:::-;9591:171;9854:4;9847:5;9843:16;9837:23;9873:63;9930:4;9925:3;9921:14;9907:12;9873:63;:::i;:::-;9772:174;10045:4;10038:5;10034:16;10028:23;10064:63;10121:4;10116:3;10112:14;10098:12;10064:63;:::i;:::-;9956:181;10233:4;10226:5;10222:16;10216:23;10252:63;10309:4;10304:3;10300:14;10286:12;10252:63;:::i;:::-;10147:178;10421:6;10414:5;10410:18;10404:25;10442:65;10499:6;10494:3;10490:16;10476:12;10442:65;:::i;:::-;10335:182;10605:6;10598:5;10594:18;10588:25;10626:65;10683:6;10678:3;10674:16;10660:12;10626:65;:::i;:::-;10527:174;10793:6;10786:5;10782:18;10776:25;10814:65;10871:6;10866:3;10862:16;10848:12;10814:65;:::i;:::-;10711:178;10974:6;10967:5;10963:18;10957:25;10995:65;11052:6;11047:3;11043:16;11029:12;10995:65;:::i;:::-;10899:171;11156:6;11149:5;11145:18;11139:25;11177:65;11234:6;11229:3;11225:16;11211:12;11177:65;:::i;:::-;11080:172;11348:6;11341:5;11337:18;11331:25;11369:65;11426:6;11421:3;11417:16;11403:12;11369:65;:::i;:::-;11262:182;8823:2628;8699:2752;;:::o;11457:339::-;11608:4;11646:3;11635:9;11631:19;11623:27;;11660:129;11786:1;11775:9;11771:17;11762:6;11660:129;:::i;:::-;11457:339;;;;:::o;11802:117::-;11911:1;11908;11901:12;11925:117;12034:1;12031;12024:12;12048:180;12096:77;12093:1;12086:88;12193:4;12190:1;12183:15;12217:4;12214:1;12207:15;12234:281;12317:27;12339:4;12317:27;:::i;:::-;12309:6;12305:40;12447:6;12435:10;12432:22;12411:18;12399:10;12396:34;12393:62;12390:88;;;12458:18;;:::i;:::-;12390:88;12498:10;12494:2;12487:22;12277:238;12234:281;;:::o;12521:129::-;12555:6;12582:20;;:::i;:::-;12572:30;;12611:33;12639:4;12631:6;12611:33;:::i;:::-;12521:129;;;:::o;12656:308::-;12718:4;12808:18;12800:6;12797:30;12794:56;;;12830:18;;:::i;:::-;12794:56;12868:29;12890:6;12868:29;:::i;:::-;12860:37;;12952:4;12946;12942:15;12934:23;;12656:308;;;:::o;12970:154::-;13054:6;13049:3;13044;13031:30;13116:1;13107:6;13102:3;13098:16;13091:27;12970:154;;;:::o;13130:412::-;13208:5;13233:66;13249:49;13291:6;13249:49;:::i;:::-;13233:66;:::i;:::-;13224:75;;13322:6;13315:5;13308:21;13360:4;13353:5;13349:16;13398:3;13389:6;13384:3;13380:16;13377:25;13374:112;;;13405:79;;:::i;:::-;13374:112;13495:41;13529:6;13524:3;13519;13495:41;:::i;:::-;13214:328;13130:412;;;;;:::o;13562:340::-;13618:5;13667:3;13660:4;13652:6;13648:17;13644:27;13634:122;;13675:79;;:::i;:::-;13634:122;13792:6;13779:20;13817:79;13892:3;13884:6;13877:4;13869:6;13865:17;13817:79;:::i;:::-;13808:88;;13624:278;13562:340;;;;:::o;13908:509::-;13977:6;14026:2;14014:9;14005:7;14001:23;13997:32;13994:119;;;14032:79;;:::i;:::-;13994:119;14180:1;14169:9;14165:17;14152:31;14210:18;14202:6;14199:30;14196:117;;;14232:79;;:::i;:::-;14196:117;14337:63;14392:7;14383:6;14372:9;14368:22;14337:63;:::i;:::-;14327:73;;14123:287;13908:509;;;;:::o;14423:116::-;14493:21;14508:5;14493:21;:::i;:::-;14486:5;14483:32;14473:60;;14529:1;14526;14519:12;14473:60;14423:116;:::o;14545:133::-;14588:5;14626:6;14613:20;14604:29;;14642:30;14666:5;14642:30;:::i;:::-;14545:133;;;;:::o;14684:468::-;14749:6;14757;14806:2;14794:9;14785:7;14781:23;14777:32;14774:119;;;14812:79;;:::i;:::-;14774:119;14932:1;14957:53;15002:7;14993:6;14982:9;14978:22;14957:53;:::i;:::-;14947:63;;14903:117;15059:2;15085:50;15127:7;15118:6;15107:9;15103:22;15085:50;:::i;:::-;15075:60;;15030:115;14684:468;;;;;:::o;15158:307::-;15219:4;15309:18;15301:6;15298:30;15295:56;;;15331:18;;:::i;:::-;15295:56;15369:29;15391:6;15369:29;:::i;:::-;15361:37;;15453:4;15447;15443:15;15435:23;;15158:307;;;:::o;15471:410::-;15548:5;15573:65;15589:48;15630:6;15589:48;:::i;:::-;15573:65;:::i;:::-;15564:74;;15661:6;15654:5;15647:21;15699:4;15692:5;15688:16;15737:3;15728:6;15723:3;15719:16;15716:25;15713:112;;;15744:79;;:::i;:::-;15713:112;15834:41;15868:6;15863:3;15858;15834:41;:::i;:::-;15554:327;15471:410;;;;;:::o;15900:338::-;15955:5;16004:3;15997:4;15989:6;15985:17;15981:27;15971:122;;16012:79;;:::i;:::-;15971:122;16129:6;16116:20;16154:78;16228:3;16220:6;16213:4;16205:6;16201:17;16154:78;:::i;:::-;16145:87;;15961:277;15900:338;;;;:::o;16244:943::-;16339:6;16347;16355;16363;16412:3;16400:9;16391:7;16387:23;16383:33;16380:120;;;16419:79;;:::i;:::-;16380:120;16539:1;16564:53;16609:7;16600:6;16589:9;16585:22;16564:53;:::i;:::-;16554:63;;16510:117;16666:2;16692:53;16737:7;16728:6;16717:9;16713:22;16692:53;:::i;:::-;16682:63;;16637:118;16794:2;16820:53;16865:7;16856:6;16845:9;16841:22;16820:53;:::i;:::-;16810:63;;16765:118;16950:2;16939:9;16935:18;16922:32;16981:18;16973:6;16970:30;16967:117;;;17003:79;;:::i;:::-;16967:117;17108:62;17162:7;17153:6;17142:9;17138:22;17108:62;:::i;:::-;17098:72;;16893:287;16244:943;;;;;;;:::o;17193:474::-;17261:6;17269;17318:2;17306:9;17297:7;17293:23;17289:32;17286:119;;;17324:79;;:::i;:::-;17286:119;17444:1;17469:53;17514:7;17505:6;17494:9;17490:22;17469:53;:::i;:::-;17459:63;;17415:117;17571:2;17597:53;17642:7;17633:6;17622:9;17618:22;17597:53;:::i;:::-;17587:63;;17542:118;17193:474;;;;;:::o;17673:765::-;17759:6;17767;17775;17783;17832:3;17820:9;17811:7;17807:23;17803:33;17800:120;;;17839:79;;:::i;:::-;17800:120;17959:1;17984:53;18029:7;18020:6;18009:9;18005:22;17984:53;:::i;:::-;17974:63;;17930:117;18086:2;18112:53;18157:7;18148:6;18137:9;18133:22;18112:53;:::i;:::-;18102:63;;18057:118;18214:2;18240:53;18285:7;18276:6;18265:9;18261:22;18240:53;:::i;:::-;18230:63;;18185:118;18342:2;18368:53;18413:7;18404:6;18393:9;18389:22;18368:53;:::i;:::-;18358:63;;18313:118;17673:765;;;;;;;:::o;18444:182::-;18584:34;18580:1;18572:6;18568:14;18561:58;18444:182;:::o;18632:366::-;18774:3;18795:67;18859:2;18854:3;18795:67;:::i;:::-;18788:74;;18871:93;18960:3;18871:93;:::i;:::-;18989:2;18984:3;18980:12;18973:19;;18632:366;;;:::o;19004:419::-;19170:4;19208:2;19197:9;19193:18;19185:26;;19257:9;19251:4;19247:20;19243:1;19232:9;19228:17;19221:47;19285:131;19411:4;19285:131;:::i;:::-;19277:139;;19004:419;;;:::o;19429:180::-;19477:77;19474:1;19467:88;19574:4;19571:1;19564:15;19598:4;19595:1;19588:15;19615:320;19659:6;19696:1;19690:4;19686:12;19676:22;;19743:1;19737:4;19733:12;19764:18;19754:81;;19820:4;19812:6;19808:17;19798:27;;19754:81;19882:2;19874:6;19871:14;19851:18;19848:38;19845:84;;;19901:18;;:::i;:::-;19845:84;19666:269;19615:320;;;:::o;19941:180::-;19989:77;19986:1;19979:88;20086:4;20083:1;20076:15;20110:4;20107:1;20100:15;20127:232;20267:34;20263:1;20255:6;20251:14;20244:58;20336:15;20331:2;20323:6;20319:15;20312:40;20127:232;:::o;20365:366::-;20507:3;20528:67;20592:2;20587:3;20528:67;:::i;:::-;20521:74;;20604:93;20693:3;20604:93;:::i;:::-;20722:2;20717:3;20713:12;20706:19;;20365:366;;;:::o;20737:419::-;20903:4;20941:2;20930:9;20926:18;20918:26;;20990:9;20984:4;20980:20;20976:1;20965:9;20961:17;20954:47;21018:131;21144:4;21018:131;:::i;:::-;21010:139;;20737:419;;;:::o;21162:180::-;21210:77;21207:1;21200:88;21307:4;21304:1;21297:15;21331:4;21328:1;21321:15;21348:348;21388:7;21411:20;21429:1;21411:20;:::i;:::-;21406:25;;21445:20;21463:1;21445:20;:::i;:::-;21440:25;;21633:1;21565:66;21561:74;21558:1;21555:81;21550:1;21543:9;21536:17;21532:105;21529:131;;;21640:18;;:::i;:::-;21529:131;21688:1;21685;21681:9;21670:20;;21348:348;;;;:::o;21702:180::-;21750:77;21747:1;21740:88;21847:4;21844:1;21837:15;21871:4;21868:1;21861:15;21888:185;21928:1;21945:20;21963:1;21945:20;:::i;:::-;21940:25;;21979:20;21997:1;21979:20;:::i;:::-;21974:25;;22018:1;22008:35;;22023:18;;:::i;:::-;22008:35;22065:1;22062;22058:9;22053:14;;21888:185;;;;:::o;22079:191::-;22119:4;22139:20;22157:1;22139:20;:::i;:::-;22134:25;;22173:20;22191:1;22173:20;:::i;:::-;22168:25;;22212:1;22209;22206:8;22203:34;;;22217:18;;:::i;:::-;22203:34;22262:1;22259;22255:9;22247:17;;22079:191;;;;:::o;22276:305::-;22316:3;22335:20;22353:1;22335:20;:::i;:::-;22330:25;;22369:20;22387:1;22369:20;:::i;:::-;22364:25;;22523:1;22455:66;22451:74;22448:1;22445:81;22442:107;;;22529:18;;:::i;:::-;22442:107;22573:1;22570;22566:9;22559:16;;22276:305;;;;:::o;22587:228::-;22727:34;22723:1;22715:6;22711:14;22704:58;22796:11;22791:2;22783:6;22779:15;22772:36;22587:228;:::o;22821:366::-;22963:3;22984:67;23048:2;23043:3;22984:67;:::i;:::-;22977:74;;23060:93;23149:3;23060:93;:::i;:::-;23178:2;23173:3;23169:12;23162:19;;22821:366;;;:::o;23193:419::-;23359:4;23397:2;23386:9;23382:18;23374:26;;23446:9;23440:4;23436:20;23432:1;23421:9;23417:17;23410:47;23474:131;23600:4;23474:131;:::i;:::-;23466:139;;23193:419;;;:::o;23618:94::-;23651:8;23699:5;23695:2;23691:14;23670:35;;23618:94;;;:::o;23718:::-;23757:7;23786:20;23800:5;23786:20;:::i;:::-;23775:31;;23718:94;;;:::o;23818:100::-;23857:7;23886:26;23906:5;23886:26;:::i;:::-;23875:37;;23818:100;;;:::o;23924:157::-;24029:45;24049:24;24067:5;24049:24;:::i;:::-;24029:45;:::i;:::-;24024:3;24017:58;23924:157;;:::o;24087:148::-;24189:11;24226:3;24211:18;;24087:148;;;;:::o;24241:377::-;24347:3;24375:39;24408:5;24375:39;:::i;:::-;24430:89;24512:6;24507:3;24430:89;:::i;:::-;24423:96;;24528:52;24573:6;24568:3;24561:4;24554:5;24550:16;24528:52;:::i;:::-;24605:6;24600:3;24596:16;24589:23;;24351:267;24241:377;;;;:::o;24624:416::-;24784:3;24799:75;24870:3;24861:6;24799:75;:::i;:::-;24899:2;24894:3;24890:12;24883:19;;24919:95;25010:3;25001:6;24919:95;:::i;:::-;24912:102;;25031:3;25024:10;;24624:416;;;;;:::o;25046:176::-;25078:1;25095:20;25113:1;25095:20;:::i;:::-;25090:25;;25129:20;25147:1;25129:20;:::i;:::-;25124:25;;25168:1;25158:35;;25173:18;;:::i;:::-;25158:35;25214:1;25211;25207:9;25202:14;;25046:176;;;;:::o;25228:181::-;25368:33;25364:1;25356:6;25352:14;25345:57;25228:181;:::o;25415:366::-;25557:3;25578:67;25642:2;25637:3;25578:67;:::i;:::-;25571:74;;25654:93;25743:3;25654:93;:::i;:::-;25772:2;25767:3;25763:12;25756:19;;25415:366;;;:::o;25787:419::-;25953:4;25991:2;25980:9;25976:18;25968:26;;26040:9;26034:4;26030:20;26026:1;26015:9;26011:17;26004:47;26068:131;26194:4;26068:131;:::i;:::-;26060:139;;25787:419;;;:::o;26212:169::-;26352:21;26348:1;26340:6;26336:14;26329:45;26212:169;:::o;26387:366::-;26529:3;26550:67;26614:2;26609:3;26550:67;:::i;:::-;26543:74;;26626:93;26715:3;26626:93;:::i;:::-;26744:2;26739:3;26735:12;26728:19;;26387:366;;;:::o;26759:419::-;26925:4;26963:2;26952:9;26948:18;26940:26;;27012:9;27006:4;27002:20;26998:1;26987:9;26983:17;26976:47;27040:131;27166:4;27040:131;:::i;:::-;27032:139;;26759:419;;;:::o;27184:174::-;27324:26;27320:1;27312:6;27308:14;27301:50;27184:174;:::o;27364:366::-;27506:3;27527:67;27591:2;27586:3;27527:67;:::i;:::-;27520:74;;27603:93;27692:3;27603:93;:::i;:::-;27721:2;27716:3;27712:12;27705:19;;27364:366;;;:::o;27736:419::-;27902:4;27940:2;27929:9;27925:18;27917:26;;27989:9;27983:4;27979:20;27975:1;27964:9;27960:17;27953:47;28017:131;28143:4;28017:131;:::i;:::-;28009:139;;27736:419;;;:::o;28161:172::-;28301:24;28297:1;28289:6;28285:14;28278:48;28161:172;:::o;28339:366::-;28481:3;28502:67;28566:2;28561:3;28502:67;:::i;:::-;28495:74;;28578:93;28667:3;28578:93;:::i;:::-;28696:2;28691:3;28687:12;28680:19;;28339:366;;;:::o;28711:419::-;28877:4;28915:2;28904:9;28900:18;28892:26;;28964:9;28958:4;28954:20;28950:1;28939:9;28935:17;28928:47;28992:131;29118:4;28992:131;:::i;:::-;28984:139;;28711:419;;;:::o;29136:167::-;29276:19;29272:1;29264:6;29260:14;29253:43;29136:167;:::o;29309:366::-;29451:3;29472:67;29536:2;29531:3;29472:67;:::i;:::-;29465:74;;29548:93;29637:3;29548:93;:::i;:::-;29666:2;29661:3;29657:12;29650:19;;29309:366;;;:::o;29681:419::-;29847:4;29885:2;29874:9;29870:18;29862:26;;29934:9;29928:4;29924:20;29920:1;29909:9;29905:17;29898:47;29962:131;30088:4;29962:131;:::i;:::-;29954:139;;29681:419;;;:::o;30106:176::-;30246:28;30242:1;30234:6;30230:14;30223:52;30106:176;:::o;30288:366::-;30430:3;30451:67;30515:2;30510:3;30451:67;:::i;:::-;30444:74;;30527:93;30616:3;30527:93;:::i;:::-;30645:2;30640:3;30636:12;30629:19;;30288:366;;;:::o;30660:419::-;30826:4;30864:2;30853:9;30849:18;30841:26;;30913:9;30907:4;30903:20;30899:1;30888:9;30884:17;30877:47;30941:131;31067:4;30941:131;:::i;:::-;30933:139;;30660:419;;;:::o;31085:220::-;31225:34;31221:1;31213:6;31209:14;31202:58;31294:3;31289:2;31281:6;31277:15;31270:28;31085:220;:::o;31311:366::-;31453:3;31474:67;31538:2;31533:3;31474:67;:::i;:::-;31467:74;;31550:93;31639:3;31550:93;:::i;:::-;31668:2;31663:3;31659:12;31652:19;;31311:366;;;:::o;31683:419::-;31849:4;31887:2;31876:9;31872:18;31864:26;;31936:9;31930:4;31926:20;31922:1;31911:9;31907:17;31900:47;31964:131;32090:4;31964:131;:::i;:::-;31956:139;;31683:419;;;:::o;32108:166::-;32248:18;32244:1;32236:6;32232:14;32225:42;32108:166;:::o;32280:366::-;32422:3;32443:67;32507:2;32502:3;32443:67;:::i;:::-;32436:74;;32519:93;32608:3;32519:93;:::i;:::-;32637:2;32632:3;32628:12;32621:19;;32280:366;;;:::o;32652:419::-;32818:4;32856:2;32845:9;32841:18;32833:26;;32905:9;32899:4;32895:20;32891:1;32880:9;32876:17;32869:47;32933:131;33059:4;32933:131;:::i;:::-;32925:139;;32652:419;;;:::o;33077:171::-;33217:23;33213:1;33205:6;33201:14;33194:47;33077:171;:::o;33254:366::-;33396:3;33417:67;33481:2;33476:3;33417:67;:::i;:::-;33410:74;;33493:93;33582:3;33493:93;:::i;:::-;33611:2;33606:3;33602:12;33595:19;;33254:366;;;:::o;33626:419::-;33792:4;33830:2;33819:9;33815:18;33807:26;;33879:9;33873:4;33869:20;33865:1;33854:9;33850:17;33843:47;33907:131;34033:4;33907:131;:::i;:::-;33899:139;;33626:419;;;:::o;34051:141::-;34100:4;34123:3;34115:11;;34146:3;34143:1;34136:14;34180:4;34177:1;34167:18;34159:26;;34051:141;;;:::o;34222:845::-;34325:3;34362:5;34356:12;34391:36;34417:9;34391:36;:::i;:::-;34443:89;34525:6;34520:3;34443:89;:::i;:::-;34436:96;;34563:1;34552:9;34548:17;34579:1;34574:137;;;;34725:1;34720:341;;;;34541:520;;34574:137;34658:4;34654:9;34643;34639:25;34634:3;34627:38;34694:6;34689:3;34685:16;34678:23;;34574:137;;34720:341;34787:38;34819:5;34787:38;:::i;:::-;34847:1;34861:154;34875:6;34872:1;34869:13;34861:154;;;34949:7;34943:14;34939:1;34934:3;34930:11;34923:35;34999:1;34990:7;34986:15;34975:26;;34897:4;34894:1;34890:12;34885:17;;34861:154;;;35044:6;35039:3;35035:16;35028:23;;34727:334;;34541:520;;34329:738;;34222:845;;;;:::o;35073:429::-;35250:3;35272:92;35360:3;35351:6;35272:92;:::i;:::-;35265:99;;35381:95;35472:3;35463:6;35381:95;:::i;:::-;35374:102;;35493:3;35486:10;;35073:429;;;;;:::o;35508:155::-;35648:7;35644:1;35636:6;35632:14;35625:31;35508:155;:::o;35669:400::-;35829:3;35850:84;35932:1;35927:3;35850:84;:::i;:::-;35843:91;;35943:93;36032:3;35943:93;:::i;:::-;36061:1;36056:3;36052:11;36045:18;;35669:400;;;:::o;36075:695::-;36353:3;36375:92;36463:3;36454:6;36375:92;:::i;:::-;36368:99;;36484:95;36575:3;36566:6;36484:95;:::i;:::-;36477:102;;36596:148;36740:3;36596:148;:::i;:::-;36589:155;;36761:3;36754:10;;36075:695;;;;;:::o;36776:225::-;36916:34;36912:1;36904:6;36900:14;36893:58;36985:8;36980:2;36972:6;36968:15;36961:33;36776:225;:::o;37007:366::-;37149:3;37170:67;37234:2;37229:3;37170:67;:::i;:::-;37163:74;;37246:93;37335:3;37246:93;:::i;:::-;37364:2;37359:3;37355:12;37348:19;;37007:366;;;:::o;37379:419::-;37545:4;37583:2;37572:9;37568:18;37560:26;;37632:9;37626:4;37622:20;37618:1;37607:9;37603:17;37596:47;37660:131;37786:4;37660:131;:::i;:::-;37652:139;;37379:419;;;:::o;37804:229::-;37944:34;37940:1;37932:6;37928:14;37921:58;38013:12;38008:2;38000:6;37996:15;37989:37;37804:229;:::o;38039:366::-;38181:3;38202:67;38266:2;38261:3;38202:67;:::i;:::-;38195:74;;38278:93;38367:3;38278:93;:::i;:::-;38396:2;38391:3;38387:12;38380:19;;38039:366;;;:::o;38411:419::-;38577:4;38615:2;38604:9;38600:18;38592:26;;38664:9;38658:4;38654:20;38650:1;38639:9;38635:17;38628:47;38692:131;38818:4;38692:131;:::i;:::-;38684:139;;38411:419;;;:::o;38836:175::-;38976:27;38972:1;38964:6;38960:14;38953:51;38836:175;:::o;39017:366::-;39159:3;39180:67;39244:2;39239:3;39180:67;:::i;:::-;39173:74;;39256:93;39345:3;39256:93;:::i;:::-;39374:2;39369:3;39365:12;39358:19;;39017:366;;;:::o;39389:419::-;39555:4;39593:2;39582:9;39578:18;39570:26;;39642:9;39636:4;39632:20;39628:1;39617:9;39613:17;39606:47;39670:131;39796:4;39670:131;:::i;:::-;39662:139;;39389:419;;;:::o;39814:98::-;39865:6;39899:5;39893:12;39883:22;;39814:98;;;:::o;39918:168::-;40001:11;40035:6;40030:3;40023:19;40075:4;40070:3;40066:14;40051:29;;39918:168;;;;:::o;40092:360::-;40178:3;40206:38;40238:5;40206:38;:::i;:::-;40260:70;40323:6;40318:3;40260:70;:::i;:::-;40253:77;;40339:52;40384:6;40379:3;40372:4;40365:5;40361:16;40339:52;:::i;:::-;40416:29;40438:6;40416:29;:::i;:::-;40411:3;40407:39;40400:46;;40182:270;40092:360;;;;:::o;40458:640::-;40653:4;40691:3;40680:9;40676:19;40668:27;;40705:71;40773:1;40762:9;40758:17;40749:6;40705:71;:::i;:::-;40786:72;40854:2;40843:9;40839:18;40830:6;40786:72;:::i;:::-;40868;40936:2;40925:9;40921:18;40912:6;40868:72;:::i;:::-;40987:9;40981:4;40977:20;40972:2;40961:9;40957:18;40950:48;41015:76;41086:4;41077:6;41015:76;:::i;:::-;41007:84;;40458:640;;;;;;;:::o;41104:141::-;41160:5;41191:6;41185:13;41176:22;;41207:32;41233:5;41207:32;:::i;:::-;41104:141;;;;:::o;41251:349::-;41320:6;41369:2;41357:9;41348:7;41344:23;41340:32;41337:119;;;41375:79;;:::i;:::-;41337:119;41495:1;41520:63;41575:7;41566:6;41555:9;41551:22;41520:63;:::i;:::-;41510:73;;41466:127;41251:349;;;;:::o;41606:233::-;41645:3;41668:24;41686:5;41668:24;:::i;:::-;41659:33;;41714:66;41707:5;41704:77;41701:103;;;41784:18;;:::i;:::-;41701:103;41831:1;41824:5;41820:13;41813:20;;41606:233;;;:::o;41845:180::-;41893:77;41890:1;41883:88;41990:4;41987:1;41980:15;42014:4;42011:1;42004:15

Swarm Source

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