ETH Price: $3,260.99 (+0.41%)
Gas: 2 Gwei

Token

goblintown.more (GTM)
 

Overview

Max Total Supply

983 GTM

Holders

240

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 GTM
0x3dF3d7E2457E010A43EFa5A8fa9907F6aE0D2AdE
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:
goblintownmore

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

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

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

    /**
     * @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 && !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 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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(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 tokenId < _currentIndex;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: goblintownmore.sol


pragma solidity ^0.8.7;



contract goblintownmore is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 4444;
    uint256 public constant PRICE = 0 ether;
    uint256 public constant MAX_QUANTITY = 3;

    mapping(address => uint256) public mintAmounts;

    bool public mintTime = false;

    string private baseTokenUri = "https://pttzki.mypinata.cloud/ipfs/Qme6Sf7PLMcMRHYC33e5tsAggP8983aUkfJgxNFEj6sDAR/";

    constructor() ERC721A("goblintown.more", "GTM") {

        _safeMint(0x07893F853Fb3f33002bba50bd1ce5a1D7942fA5a, 75);
        _safeMint(0x05605C8F329c719749A1BFaedA909B040ed8E3C1, 75);
        _safeMint(0x65aa9d769eDbcc170acEd9dcEEd464f19ED755a7, 75);
        _safeMint(0xAf28876b65f86C0dfAa0Eb5cBe0C5Cb7abf7CC3e, 75);

    }

    function mint(uint256 _quantity) external payable {

        require(_quantity <= MAX_QUANTITY, "Max 3 per tx");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "OOS");
        require(mintTime, "It is not time to mint");
        require(mintAmounts[msg.sender] + _quantity <= MAX_QUANTITY, "Already Minted Max");

            _safeMint(msg.sender, _quantity);
            mintAmounts[msg.sender] += _quantity;


    }


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

        uint256 trueId = tokenId;

        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function toggleSale() public onlyOwner {

        mintTime = !mintTime;
    }


    function withdraw() external onlyOwner {

        uint256 balance = address(this).balance;

        Address.sendValue(payable(owner()), balance);
    }


}

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","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_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff021916908315150217905550604051806080016040528060528152602001620042dc60529139600a90805190602001906200005092919062000832565b503480156200005e57600080fd5b506040518060400160405280600f81526020017f676f626c696e746f776e2e6d6f726500000000000000000000000000000000008152506040518060400160405280600381526020017f47544d00000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000e392919062000832565b508060029080519060200190620000fc92919062000832565b5050506200011f62000113620001c160201b60201c565b620001c960201b60201c565b620001467307893f853fb3f33002bba50bd1ce5a1d7942fa5a604b6200028f60201b60201c565b6200016d7305605c8f329c719749a1bfaeda909b040ed8e3c1604b6200028f60201b60201c565b620001947365aa9d769edbcc170aced9dceed464f19ed755a7604b6200028f60201b60201c565b620001bb73af28876b65f86c0dfaa0eb5cbe0c5cb7abf7cc3e604b6200028f60201b60201c565b62000b33565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b1828260405180602001604052806000815250620002b560201b60201c565b5050565b620002ca8383836001620002cf60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200033d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000379576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200038e60008683876200065460201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200062f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015620005e15750620005df60008884886200065a60201b60201c565b155b1562000619576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506200055c565b5080600081905550506200064d60008683876200080960201b60201c565b5050505050565b50505050565b6000620006888473ffffffffffffffffffffffffffffffffffffffff166200080f60201b620016881760201c565b15620007fc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006ba620001c160201b60201c565b8786866040518563ffffffff1660e01b8152600401620006de94939291906200098e565b602060405180830381600087803b158015620006f957600080fd5b505af19250505080156200072d57506040513d601f19601f820116820180604052508101906200072a9190620008f9565b60015b620007ab573d806000811462000760576040519150601f19603f3d011682016040523d82523d6000602084013e62000765565b606091505b50600081511415620007a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000801565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620008409062000a9e565b90600052602060002090601f016020900481019282620008645760008555620008b0565b82601f106200087f57805160ff1916838001178555620008b0565b82800160010185558215620008b0579182015b82811115620008af57825182559160200191906001019062000892565b5b509050620008bf9190620008c3565b5090565b5b80821115620008de576000816000905550600101620008c4565b5090565b600081519050620008f38162000b19565b92915050565b60006020828403121562000912576200091162000b03565b5b60006200092284828501620008e2565b91505092915050565b6200093681620009fe565b82525050565b60006200094982620009e2565b620009558185620009ed565b93506200096781856020860162000a68565b620009728162000b08565b840191505092915050565b620009888162000a5e565b82525050565b6000608082019050620009a560008301876200092b565b620009b460208301866200092b565b620009c360408301856200097d565b8181036060830152620009d781846200093c565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b600062000a0b8262000a3e565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a8857808201518184015260208101905062000a6b565b8381111562000a98576000848401525b50505050565b6000600282049050600182168062000ab757607f821691505b6020821081141562000ace5762000acd62000ad4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000b248162000a12565b811462000b3057600080fd5b50565b6137998062000b436000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063a11198671161008a578063c87b56dd11610064578063c87b56dd146105eb578063e41ee46a14610628578063e985e9c514610653578063f2fde38b14610690576101b7565b8063a11198671461055c578063a22cb46514610599578063b88d4fde146105c2576101b7565b80638d859f3e116100c65780638d859f3e146104bf5780638da5cb5b146104ea57806395d89b4114610515578063a0712d6814610540576101b7565b8063715018a6146104665780637d8966e41461047d5780638647812214610494576101b7565b80632f745c591161015957806342842e0e1161013357806342842e0e146103865780634f6ccce7146103af5780636352211e146103ec57806370a0823114610429576101b7565b80632f745c591461030757806332cb6b0c146103445780633ccfd60b1461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc5780630675b7c6146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612abe565b6106b9565b6040516101f09190612f09565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612b18565b610803565b005b34801561022e57600080fd5b50610237610899565b6040516102449190612f24565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612b61565b61092b565b6040516102819190612ea2565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612a7e565b6109a7565b005b3480156102bf57600080fd5b506102c8610ab2565b6040516102d59190613066565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612968565b610abb565b005b34801561031357600080fd5b5061032e60048036038101906103299190612a7e565b610acb565b60405161033b9190613066565b60405180910390f35b34801561035057600080fd5b50610359610c8c565b6040516103669190613066565b60405180910390f35b34801561037b57600080fd5b50610384610c92565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612968565b610d27565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190612b61565b610d47565b6040516103e39190613066565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190612b61565b610d91565b6040516104209190612ea2565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906128fb565b610da7565b60405161045d9190613066565b60405180910390f35b34801561047257600080fd5b5061047b610e87565b005b34801561048957600080fd5b50610492610f0f565b005b3480156104a057600080fd5b506104a9610fb7565b6040516104b69190612f09565b60405180910390f35b3480156104cb57600080fd5b506104d4610fca565b6040516104e19190613066565b60405180910390f35b3480156104f657600080fd5b506104ff610fcf565b60405161050c9190612ea2565b60405180910390f35b34801561052157600080fd5b5061052a610ff9565b6040516105379190612f24565b60405180910390f35b61055a60048036038101906105559190612b61565b61108b565b005b34801561056857600080fd5b50610583600480360381019061057e91906128fb565b611266565b6040516105909190613066565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612a3e565b61127e565b005b3480156105ce57600080fd5b506105e960048036038101906105e491906129bb565b6113f6565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612b61565b611449565b60405161061f9190612f24565b60405180910390f35b34801561063457600080fd5b5061063d6114f7565b60405161064a9190613066565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612928565b6114fc565b6040516106879190612f09565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b291906128fb565b611590565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ec57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fc57506107fb826116ab565b5b9050919050565b61080b611715565b73ffffffffffffffffffffffffffffffffffffffff16610829610fcf565b73ffffffffffffffffffffffffffffffffffffffff161461087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612fe6565b60405180910390fd5b80600a90805190602001906108959291906126d5565b5050565b6060600180546108a8906132dc565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906132dc565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b60006109368261171d565b61096c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b282610d91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a39611715565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a6b5750610a6981610a64611715565b6114fc565b155b15610aa2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aad83838361172a565b505050565b60008054905090565b610ac68383836117dc565b505050565b6000610ad683610da7565b8210610b0e576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610b18610ab2565b905060008060005b83811015610c72576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c1257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c645786841415610c5b578195505050505050610c86565b83806001019450505b508080600101915050610b20565b506000610c8257610c816133b9565b5b5050505b92915050565b61115c81565b610c9a611715565b73ffffffffffffffffffffffffffffffffffffffff16610cb8610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590612fe6565b60405180910390fd5b6000479050610d24610d1e610fcf565b82611d01565b50565b610d42838383604051806020016040528060008152506113f6565b505050565b6000610d51610ab2565b8210610d89576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610d9c82611df5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610e8f611715565b73ffffffffffffffffffffffffffffffffffffffff16610ead610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90612fe6565b60405180910390fd5b610f0d6000611f7d565b565b610f17611715565b73ffffffffffffffffffffffffffffffffffffffff16610f35610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290612fe6565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b600960009054906101000a900460ff1681565b600081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611008906132dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611034906132dc565b80156110815780601f1061105657610100808354040283529160200191611081565b820191906000526020600020905b81548152906001019060200180831161106457829003601f168201915b5050505050905090565b60038111156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690612fc6565b60405180910390fd5b61115c816110db610ab2565b6110e5919061316b565b1115611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90613046565b60405180910390fd5b600960009054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90613026565b60405180910390fd5b600381600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c2919061316b565b1115611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90612fa6565b60405180910390fd5b61120d3382612043565b80600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461125c919061316b565b9250508190555050565b60086020528060005260406000206000915090505481565b611286611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112eb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006112f8611715565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a5611715565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ea9190612f09565b60405180910390a35050565b6114018484846117dc565b61140d84848484612061565b611443576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114548261171d565b611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90613006565b60405180910390fd5b60008290506000600a80546114a7906132dc565b9050116114c357604051806020016040528060008152506114ef565b600a6114ce826121ef565b6040516020016114df929190612e5e565b6040516020818303038152906040525b915050919050565b600381565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611598611715565b73ffffffffffffffffffffffffffffffffffffffff166115b6610fcf565b73ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390612fe6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390612f46565b60405180910390fd5b61168581611f7d565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117e782611df5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661180e611715565b73ffffffffffffffffffffffffffffffffffffffff16148061186a5750611833611715565b73ffffffffffffffffffffffffffffffffffffffff166118528461092b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061188657506118858260000151611880611715565b6114fc565b5b9050806118bf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611928576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561198f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61199c8585856001612350565b6119ac600084846000015161172a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c9157611bf08161171d565b15611c905782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cfa8585856001612356565b5050505050565b80471015611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90612f86565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d6a90612e8d565b60006040518083038185875af1925050503d8060008114611da7576040519150601f19603f3d011682016040523d82523d6000602084013e611dac565b606091505b5050905080611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790612f66565b60405180910390fd5b505050565b611dfd61275b565b611e068261171d565b611e3c576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110611f45576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f36578092505050611f78565b50808060019003915050611e42565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61205d82826040518060200160405280600081525061235c565b5050565b60006120828473ffffffffffffffffffffffffffffffffffffffff16611688565b156121e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120ab611715565b8786866040518563ffffffff1660e01b81526004016120cd9493929190612ebd565b602060405180830381600087803b1580156120e757600080fd5b505af192505050801561211857506040513d601f19601f820116820180604052508101906121159190612aeb565b60015b612192573d8060008114612148576040519150601f19603f3d011682016040523d82523d6000602084013e61214d565b606091505b5060008151141561218a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121e7565b600190505b949350505050565b60606000821415612237576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234b565b600082905060005b600082146122695780806122529061333f565b915050600a8261226291906131c1565b915061223f565b60008167ffffffffffffffff811115612285576122846134a4565b5b6040519080825280601f01601f1916602001820160405280156122b75781602001600182028036833780820191505090505b5090505b60008514612344576001826122d091906131f2565b9150600a856122df9190613388565b60306122eb919061316b565b60f81b81838151811061230157612300613475565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561233d91906131c1565b94506122bb565b8093505050505b919050565b50505050565b50505050565b612369838383600161236e565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156123db576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612416576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124236000868387612350565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156126b857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561266c575061266a6000888488612061565b155b156126a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506125f1565b5080600081905550506126ce6000868387612356565b5050505050565b8280546126e1906132dc565b90600052602060002090601f016020900481019282612703576000855561274a565b82601f1061271c57805160ff191683800117855561274a565b8280016001018555821561274a579182015b8281111561274957825182559160200191906001019061272e565b5b5090506127579190612795565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156127ae576000816000905550600101612796565b5090565b60006127c56127c0846130a6565b613081565b9050828152602081018484840111156127e1576127e06134d8565b5b6127ec84828561329a565b509392505050565b6000612807612802846130d7565b613081565b905082815260208101848484011115612823576128226134d8565b5b61282e84828561329a565b509392505050565b60008135905061284581613707565b92915050565b60008135905061285a8161371e565b92915050565b60008135905061286f81613735565b92915050565b60008151905061288481613735565b92915050565b600082601f83011261289f5761289e6134d3565b5b81356128af8482602086016127b2565b91505092915050565b600082601f8301126128cd576128cc6134d3565b5b81356128dd8482602086016127f4565b91505092915050565b6000813590506128f58161374c565b92915050565b600060208284031215612911576129106134e2565b5b600061291f84828501612836565b91505092915050565b6000806040838503121561293f5761293e6134e2565b5b600061294d85828601612836565b925050602061295e85828601612836565b9150509250929050565b600080600060608486031215612981576129806134e2565b5b600061298f86828701612836565b93505060206129a086828701612836565b92505060406129b1868287016128e6565b9150509250925092565b600080600080608085870312156129d5576129d46134e2565b5b60006129e387828801612836565b94505060206129f487828801612836565b9350506040612a05878288016128e6565b925050606085013567ffffffffffffffff811115612a2657612a256134dd565b5b612a328782880161288a565b91505092959194509250565b60008060408385031215612a5557612a546134e2565b5b6000612a6385828601612836565b9250506020612a748582860161284b565b9150509250929050565b60008060408385031215612a9557612a946134e2565b5b6000612aa385828601612836565b9250506020612ab4858286016128e6565b9150509250929050565b600060208284031215612ad457612ad36134e2565b5b6000612ae284828501612860565b91505092915050565b600060208284031215612b0157612b006134e2565b5b6000612b0f84828501612875565b91505092915050565b600060208284031215612b2e57612b2d6134e2565b5b600082013567ffffffffffffffff811115612b4c57612b4b6134dd565b5b612b58848285016128b8565b91505092915050565b600060208284031215612b7757612b766134e2565b5b6000612b85848285016128e6565b91505092915050565b612b9781613226565b82525050565b612ba681613238565b82525050565b6000612bb78261311d565b612bc18185613133565b9350612bd18185602086016132a9565b612bda816134e7565b840191505092915050565b6000612bf082613128565b612bfa818561314f565b9350612c0a8185602086016132a9565b612c13816134e7565b840191505092915050565b6000612c2982613128565b612c338185613160565b9350612c438185602086016132a9565b80840191505092915050565b60008154612c5c816132dc565b612c668186613160565b94506001821660008114612c815760018114612c9257612cc5565b60ff19831686528186019350612cc5565b612c9b85613108565b60005b83811015612cbd57815481890152600182019150602081019050612c9e565b838801955050505b50505092915050565b6000612cdb60268361314f565b9150612ce6826134f8565b604082019050919050565b6000612cfe603a8361314f565b9150612d0982613547565b604082019050919050565b6000612d21601d8361314f565b9150612d2c82613596565b602082019050919050565b6000612d4460128361314f565b9150612d4f826135bf565b602082019050919050565b6000612d67600c8361314f565b9150612d72826135e8565b602082019050919050565b6000612d8a600583613160565b9150612d9582613611565b600582019050919050565b6000612dad60208361314f565b9150612db88261363a565b602082019050919050565b6000612dd0602f8361314f565b9150612ddb82613663565b604082019050919050565b6000612df360168361314f565b9150612dfe826136b2565b602082019050919050565b6000612e16600083613144565b9150612e21826136db565b600082019050919050565b6000612e3960038361314f565b9150612e44826136de565b602082019050919050565b612e5881613290565b82525050565b6000612e6a8285612c4f565b9150612e768284612c1e565b9150612e8182612d7d565b91508190509392505050565b6000612e9882612e09565b9150819050919050565b6000602082019050612eb76000830184612b8e565b92915050565b6000608082019050612ed26000830187612b8e565b612edf6020830186612b8e565b612eec6040830185612e4f565b8181036060830152612efe8184612bac565b905095945050505050565b6000602082019050612f1e6000830184612b9d565b92915050565b60006020820190508181036000830152612f3e8184612be5565b905092915050565b60006020820190508181036000830152612f5f81612cce565b9050919050565b60006020820190508181036000830152612f7f81612cf1565b9050919050565b60006020820190508181036000830152612f9f81612d14565b9050919050565b60006020820190508181036000830152612fbf81612d37565b9050919050565b60006020820190508181036000830152612fdf81612d5a565b9050919050565b60006020820190508181036000830152612fff81612da0565b9050919050565b6000602082019050818103600083015261301f81612dc3565b9050919050565b6000602082019050818103600083015261303f81612de6565b9050919050565b6000602082019050818103600083015261305f81612e2c565b9050919050565b600060208201905061307b6000830184612e4f565b92915050565b600061308b61309c565b9050613097828261330e565b919050565b6000604051905090565b600067ffffffffffffffff8211156130c1576130c06134a4565b5b6130ca826134e7565b9050602081019050919050565b600067ffffffffffffffff8211156130f2576130f16134a4565b5b6130fb826134e7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061317682613290565b915061318183613290565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b6576131b56133e8565b5b828201905092915050565b60006131cc82613290565b91506131d783613290565b9250826131e7576131e6613417565b5b828204905092915050565b60006131fd82613290565b915061320883613290565b92508282101561321b5761321a6133e8565b5b828203905092915050565b600061323182613270565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132c75780820151818401526020810190506132ac565b838111156132d6576000848401525b50505050565b600060028204905060018216806132f457607f821691505b6020821081141561330857613307613446565b5b50919050565b613317826134e7565b810181811067ffffffffffffffff82111715613336576133356134a4565b5b80604052505050565b600061334a82613290565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561337d5761337c6133e8565b5b600182019050919050565b600061339382613290565b915061339e83613290565b9250826133ae576133ad613417565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416c7265616479204d696e746564204d61780000000000000000000000000000600082015250565b7f4d61782033207065722074780000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4f4f530000000000000000000000000000000000000000000000000000000000600082015250565b61371081613226565b811461371b57600080fd5b50565b61372781613238565b811461373257600080fd5b50565b61373e81613244565b811461374957600080fd5b50565b61375581613290565b811461376057600080fd5b5056fea2646970667358221220f6287f9ed3ef7fa10f3d24253981adec3420436f69037be72ccc7c3f939299d764736f6c6343000807003368747470733a2f2f7074747a6b692e6d7970696e6174612e636c6f75642f697066732f516d6536536637504c4d634d52485943333365357473416767503839383361556b664a67784e46456a36734441522f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063a11198671161008a578063c87b56dd11610064578063c87b56dd146105eb578063e41ee46a14610628578063e985e9c514610653578063f2fde38b14610690576101b7565b8063a11198671461055c578063a22cb46514610599578063b88d4fde146105c2576101b7565b80638d859f3e116100c65780638d859f3e146104bf5780638da5cb5b146104ea57806395d89b4114610515578063a0712d6814610540576101b7565b8063715018a6146104665780637d8966e41461047d5780638647812214610494576101b7565b80632f745c591161015957806342842e0e1161013357806342842e0e146103865780634f6ccce7146103af5780636352211e146103ec57806370a0823114610429576101b7565b80632f745c591461030757806332cb6b0c146103445780633ccfd60b1461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc5780630675b7c6146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612abe565b6106b9565b6040516101f09190612f09565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612b18565b610803565b005b34801561022e57600080fd5b50610237610899565b6040516102449190612f24565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612b61565b61092b565b6040516102819190612ea2565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612a7e565b6109a7565b005b3480156102bf57600080fd5b506102c8610ab2565b6040516102d59190613066565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612968565b610abb565b005b34801561031357600080fd5b5061032e60048036038101906103299190612a7e565b610acb565b60405161033b9190613066565b60405180910390f35b34801561035057600080fd5b50610359610c8c565b6040516103669190613066565b60405180910390f35b34801561037b57600080fd5b50610384610c92565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612968565b610d27565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190612b61565b610d47565b6040516103e39190613066565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190612b61565b610d91565b6040516104209190612ea2565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906128fb565b610da7565b60405161045d9190613066565b60405180910390f35b34801561047257600080fd5b5061047b610e87565b005b34801561048957600080fd5b50610492610f0f565b005b3480156104a057600080fd5b506104a9610fb7565b6040516104b69190612f09565b60405180910390f35b3480156104cb57600080fd5b506104d4610fca565b6040516104e19190613066565b60405180910390f35b3480156104f657600080fd5b506104ff610fcf565b60405161050c9190612ea2565b60405180910390f35b34801561052157600080fd5b5061052a610ff9565b6040516105379190612f24565b60405180910390f35b61055a60048036038101906105559190612b61565b61108b565b005b34801561056857600080fd5b50610583600480360381019061057e91906128fb565b611266565b6040516105909190613066565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612a3e565b61127e565b005b3480156105ce57600080fd5b506105e960048036038101906105e491906129bb565b6113f6565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612b61565b611449565b60405161061f9190612f24565b60405180910390f35b34801561063457600080fd5b5061063d6114f7565b60405161064a9190613066565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612928565b6114fc565b6040516106879190612f09565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b291906128fb565b611590565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ec57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fc57506107fb826116ab565b5b9050919050565b61080b611715565b73ffffffffffffffffffffffffffffffffffffffff16610829610fcf565b73ffffffffffffffffffffffffffffffffffffffff161461087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612fe6565b60405180910390fd5b80600a90805190602001906108959291906126d5565b5050565b6060600180546108a8906132dc565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906132dc565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b60006109368261171d565b61096c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b282610d91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a39611715565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a6b5750610a6981610a64611715565b6114fc565b155b15610aa2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aad83838361172a565b505050565b60008054905090565b610ac68383836117dc565b505050565b6000610ad683610da7565b8210610b0e576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610b18610ab2565b905060008060005b83811015610c72576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c1257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c645786841415610c5b578195505050505050610c86565b83806001019450505b508080600101915050610b20565b506000610c8257610c816133b9565b5b5050505b92915050565b61115c81565b610c9a611715565b73ffffffffffffffffffffffffffffffffffffffff16610cb8610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590612fe6565b60405180910390fd5b6000479050610d24610d1e610fcf565b82611d01565b50565b610d42838383604051806020016040528060008152506113f6565b505050565b6000610d51610ab2565b8210610d89576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610d9c82611df5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610e8f611715565b73ffffffffffffffffffffffffffffffffffffffff16610ead610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90612fe6565b60405180910390fd5b610f0d6000611f7d565b565b610f17611715565b73ffffffffffffffffffffffffffffffffffffffff16610f35610fcf565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290612fe6565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b600960009054906101000a900460ff1681565b600081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611008906132dc565b80601f0160208091040260200160405190810160405280929190818152602001828054611034906132dc565b80156110815780601f1061105657610100808354040283529160200191611081565b820191906000526020600020905b81548152906001019060200180831161106457829003601f168201915b5050505050905090565b60038111156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690612fc6565b60405180910390fd5b61115c816110db610ab2565b6110e5919061316b565b1115611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90613046565b60405180910390fd5b600960009054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90613026565b60405180910390fd5b600381600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c2919061316b565b1115611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90612fa6565b60405180910390fd5b61120d3382612043565b80600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461125c919061316b565b9250508190555050565b60086020528060005260406000206000915090505481565b611286611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112eb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006112f8611715565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a5611715565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ea9190612f09565b60405180910390a35050565b6114018484846117dc565b61140d84848484612061565b611443576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114548261171d565b611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90613006565b60405180910390fd5b60008290506000600a80546114a7906132dc565b9050116114c357604051806020016040528060008152506114ef565b600a6114ce826121ef565b6040516020016114df929190612e5e565b6040516020818303038152906040525b915050919050565b600381565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611598611715565b73ffffffffffffffffffffffffffffffffffffffff166115b6610fcf565b73ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390612fe6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390612f46565b60405180910390fd5b61168581611f7d565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006117e782611df5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661180e611715565b73ffffffffffffffffffffffffffffffffffffffff16148061186a5750611833611715565b73ffffffffffffffffffffffffffffffffffffffff166118528461092b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061188657506118858260000151611880611715565b6114fc565b5b9050806118bf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611928576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561198f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61199c8585856001612350565b6119ac600084846000015161172a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c9157611bf08161171d565b15611c905782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cfa8585856001612356565b5050505050565b80471015611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90612f86565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d6a90612e8d565b60006040518083038185875af1925050503d8060008114611da7576040519150601f19603f3d011682016040523d82523d6000602084013e611dac565b606091505b5050905080611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790612f66565b60405180910390fd5b505050565b611dfd61275b565b611e068261171d565b611e3c576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110611f45576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f36578092505050611f78565b50808060019003915050611e42565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61205d82826040518060200160405280600081525061235c565b5050565b60006120828473ffffffffffffffffffffffffffffffffffffffff16611688565b156121e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120ab611715565b8786866040518563ffffffff1660e01b81526004016120cd9493929190612ebd565b602060405180830381600087803b1580156120e757600080fd5b505af192505050801561211857506040513d601f19601f820116820180604052508101906121159190612aeb565b60015b612192573d8060008114612148576040519150601f19603f3d011682016040523d82523d6000602084013e61214d565b606091505b5060008151141561218a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121e7565b600190505b949350505050565b60606000821415612237576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234b565b600082905060005b600082146122695780806122529061333f565b915050600a8261226291906131c1565b915061223f565b60008167ffffffffffffffff811115612285576122846134a4565b5b6040519080825280601f01601f1916602001820160405280156122b75781602001600182028036833780820191505090505b5090505b60008514612344576001826122d091906131f2565b9150600a856122df9190613388565b60306122eb919061316b565b60f81b81838151811061230157612300613475565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561233d91906131c1565b94506122bb565b8093505050505b919050565b50505050565b50505050565b612369838383600161236e565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156123db576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612416576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124236000868387612350565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156126b857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561266c575061266a6000888488612061565b155b156126a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506125f1565b5080600081905550506126ce6000868387612356565b5050505050565b8280546126e1906132dc565b90600052602060002090601f016020900481019282612703576000855561274a565b82601f1061271c57805160ff191683800117855561274a565b8280016001018555821561274a579182015b8281111561274957825182559160200191906001019061272e565b5b5090506127579190612795565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156127ae576000816000905550600101612796565b5090565b60006127c56127c0846130a6565b613081565b9050828152602081018484840111156127e1576127e06134d8565b5b6127ec84828561329a565b509392505050565b6000612807612802846130d7565b613081565b905082815260208101848484011115612823576128226134d8565b5b61282e84828561329a565b509392505050565b60008135905061284581613707565b92915050565b60008135905061285a8161371e565b92915050565b60008135905061286f81613735565b92915050565b60008151905061288481613735565b92915050565b600082601f83011261289f5761289e6134d3565b5b81356128af8482602086016127b2565b91505092915050565b600082601f8301126128cd576128cc6134d3565b5b81356128dd8482602086016127f4565b91505092915050565b6000813590506128f58161374c565b92915050565b600060208284031215612911576129106134e2565b5b600061291f84828501612836565b91505092915050565b6000806040838503121561293f5761293e6134e2565b5b600061294d85828601612836565b925050602061295e85828601612836565b9150509250929050565b600080600060608486031215612981576129806134e2565b5b600061298f86828701612836565b93505060206129a086828701612836565b92505060406129b1868287016128e6565b9150509250925092565b600080600080608085870312156129d5576129d46134e2565b5b60006129e387828801612836565b94505060206129f487828801612836565b9350506040612a05878288016128e6565b925050606085013567ffffffffffffffff811115612a2657612a256134dd565b5b612a328782880161288a565b91505092959194509250565b60008060408385031215612a5557612a546134e2565b5b6000612a6385828601612836565b9250506020612a748582860161284b565b9150509250929050565b60008060408385031215612a9557612a946134e2565b5b6000612aa385828601612836565b9250506020612ab4858286016128e6565b9150509250929050565b600060208284031215612ad457612ad36134e2565b5b6000612ae284828501612860565b91505092915050565b600060208284031215612b0157612b006134e2565b5b6000612b0f84828501612875565b91505092915050565b600060208284031215612b2e57612b2d6134e2565b5b600082013567ffffffffffffffff811115612b4c57612b4b6134dd565b5b612b58848285016128b8565b91505092915050565b600060208284031215612b7757612b766134e2565b5b6000612b85848285016128e6565b91505092915050565b612b9781613226565b82525050565b612ba681613238565b82525050565b6000612bb78261311d565b612bc18185613133565b9350612bd18185602086016132a9565b612bda816134e7565b840191505092915050565b6000612bf082613128565b612bfa818561314f565b9350612c0a8185602086016132a9565b612c13816134e7565b840191505092915050565b6000612c2982613128565b612c338185613160565b9350612c438185602086016132a9565b80840191505092915050565b60008154612c5c816132dc565b612c668186613160565b94506001821660008114612c815760018114612c9257612cc5565b60ff19831686528186019350612cc5565b612c9b85613108565b60005b83811015612cbd57815481890152600182019150602081019050612c9e565b838801955050505b50505092915050565b6000612cdb60268361314f565b9150612ce6826134f8565b604082019050919050565b6000612cfe603a8361314f565b9150612d0982613547565b604082019050919050565b6000612d21601d8361314f565b9150612d2c82613596565b602082019050919050565b6000612d4460128361314f565b9150612d4f826135bf565b602082019050919050565b6000612d67600c8361314f565b9150612d72826135e8565b602082019050919050565b6000612d8a600583613160565b9150612d9582613611565b600582019050919050565b6000612dad60208361314f565b9150612db88261363a565b602082019050919050565b6000612dd0602f8361314f565b9150612ddb82613663565b604082019050919050565b6000612df360168361314f565b9150612dfe826136b2565b602082019050919050565b6000612e16600083613144565b9150612e21826136db565b600082019050919050565b6000612e3960038361314f565b9150612e44826136de565b602082019050919050565b612e5881613290565b82525050565b6000612e6a8285612c4f565b9150612e768284612c1e565b9150612e8182612d7d565b91508190509392505050565b6000612e9882612e09565b9150819050919050565b6000602082019050612eb76000830184612b8e565b92915050565b6000608082019050612ed26000830187612b8e565b612edf6020830186612b8e565b612eec6040830185612e4f565b8181036060830152612efe8184612bac565b905095945050505050565b6000602082019050612f1e6000830184612b9d565b92915050565b60006020820190508181036000830152612f3e8184612be5565b905092915050565b60006020820190508181036000830152612f5f81612cce565b9050919050565b60006020820190508181036000830152612f7f81612cf1565b9050919050565b60006020820190508181036000830152612f9f81612d14565b9050919050565b60006020820190508181036000830152612fbf81612d37565b9050919050565b60006020820190508181036000830152612fdf81612d5a565b9050919050565b60006020820190508181036000830152612fff81612da0565b9050919050565b6000602082019050818103600083015261301f81612dc3565b9050919050565b6000602082019050818103600083015261303f81612de6565b9050919050565b6000602082019050818103600083015261305f81612e2c565b9050919050565b600060208201905061307b6000830184612e4f565b92915050565b600061308b61309c565b9050613097828261330e565b919050565b6000604051905090565b600067ffffffffffffffff8211156130c1576130c06134a4565b5b6130ca826134e7565b9050602081019050919050565b600067ffffffffffffffff8211156130f2576130f16134a4565b5b6130fb826134e7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061317682613290565b915061318183613290565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b6576131b56133e8565b5b828201905092915050565b60006131cc82613290565b91506131d783613290565b9250826131e7576131e6613417565b5b828204905092915050565b60006131fd82613290565b915061320883613290565b92508282101561321b5761321a6133e8565b5b828203905092915050565b600061323182613270565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132c75780820151818401526020810190506132ac565b838111156132d6576000848401525b50505050565b600060028204905060018216806132f457607f821691505b6020821081141561330857613307613446565b5b50919050565b613317826134e7565b810181811067ffffffffffffffff82111715613336576133356134a4565b5b80604052505050565b600061334a82613290565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561337d5761337c6133e8565b5b600182019050919050565b600061339382613290565b915061339e83613290565b9250826133ae576133ad613417565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416c7265616479204d696e746564204d61780000000000000000000000000000600082015250565b7f4d61782033207065722074780000000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4f4f530000000000000000000000000000000000000000000000000000000000600082015250565b61371081613226565b811461371b57600080fd5b50565b61372781613238565b811461373257600080fd5b50565b61373e81613244565b811461374957600080fd5b50565b61375581613290565b811461376057600080fd5b5056fea2646970667358221220f6287f9ed3ef7fa10f3d24253981adec3420436f69037be72ccc7c3f939299d764736f6c63430008070033

Deployed Bytecode Sourcemap

40758:1962:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27973:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42343:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29789:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31266:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30855:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26240:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32123:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26894:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40843:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42557:156;;;;;;;;;;;;;:::i;:::-;;32364:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26418:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29598:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28409:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;42467:80;;;;;;;;;;;;;:::i;:::-;;41041:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40891:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29958:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41541:440;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40986:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31542:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32620:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41991:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40937:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31892:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27973:372;28075:4;28127:25;28112:40;;;:11;:40;;;;:105;;;;28184:33;28169:48;;;:11;:48;;;;28112:105;:172;;;;28249:35;28234:50;;;:11;:50;;;;28112:172;:225;;;;28301:36;28325:11;28301:23;:36::i;:::-;28112:225;28092:245;;27973:372;;;:::o;42343:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42438:13:::1;42423:12;:28;;;;;;;;;;;;:::i;:::-;;42343:116:::0;:::o;29789:100::-;29843:13;29876:5;29869:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29789:100;:::o;31266:204::-;31334:7;31359:16;31367:7;31359;:16::i;:::-;31354:64;;31384:34;;;;;;;;;;;;;;31354:64;31438:15;:24;31454:7;31438:24;;;;;;;;;;;;;;;;;;;;;31431:31;;31266:204;;;:::o;30855:345::-;30928:13;30944:24;30960:7;30944:15;:24::i;:::-;30928:40;;30989:5;30983:11;;:2;:11;;;30979:48;;;31003:24;;;;;;;;;;;;;;30979:48;31060:5;31044:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31070:37;31087:5;31094:12;:10;:12::i;:::-;31070:16;:37::i;:::-;31069:38;31044:63;31040:111;;;31116:35;;;;;;;;;;;;;;31040:111;31164:28;31173:2;31177:7;31186:5;31164:8;:28::i;:::-;30917:283;30855:345;;:::o;26240:101::-;26293:7;26320:13;;26313:20;;26240:101;:::o;32123:170::-;32257:28;32267:4;32273:2;32277:7;32257:9;:28::i;:::-;32123:170;;;:::o;26894:1007::-;26983:7;27016:16;27026:5;27016:9;:16::i;:::-;27007:5;:25;27003:61;;27041:23;;;;;;;;;;;;;;27003:61;27075:22;27100:13;:11;:13::i;:::-;27075:38;;27124:19;27154:25;27343:9;27338:466;27358:14;27354:1;:18;27338:466;;;27398:31;27432:11;:14;27444:1;27432:14;;;;;;;;;;;27398:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27495:1;27469:28;;:9;:14;;;:28;;;27465:111;;27542:9;:14;;;27522:34;;27465:111;27619:5;27598:26;;:17;:26;;;27594:195;;;27668:5;27653:11;:20;27649:85;;;27709:1;27702:8;;;;;;;;;27649:85;27756:13;;;;;;;27594:195;27379:425;27374:3;;;;;;;27338:466;;;;27887:5;27880:13;;;;:::i;:::-;;26992:909;;;26894:1007;;;;;:::o;40843:41::-;40880:4;40843:41;:::o;42557:156::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42609:15:::1;42627:21;42609:39;;42661:44;42687:7;:5;:7::i;:::-;42697;42661:17;:44::i;:::-;42596:117;42557:156::o:0;32364:185::-;32502:39;32519:4;32525:2;32529:7;32502:39;;;;;;;;;;;;:16;:39::i;:::-;32364:185;;;:::o;26418:176::-;26485:7;26518:13;:11;:13::i;:::-;26509:5;:22;26505:58;;26540:23;;;;;;;;;;;;;;26505:58;26581:5;26574:12;;26418:176;;;:::o;29598:124::-;29662:7;29689:20;29701:7;29689:11;:20::i;:::-;:25;;;29682:32;;29598:124;;;:::o;28409:206::-;28473:7;28514:1;28497:19;;:5;:19;;;28493:60;;;28525:28;;;;;;;;;;;;;;28493:60;28579:12;:19;28592:5;28579:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28571:36;;28564:43;;28409:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;42467:80::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42531:8:::1;;;;;;;;;;;42530:9;42519:8;;:20;;;;;;;;;;;;;;;;;;42467:80::o:0;41041:28::-;;;;;;;;;;;;;:::o;40891:39::-;40923:7;40891:39;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;29958:104::-;30014:13;30047:7;30040:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29958:104;:::o;41541:440::-;40976:1;41612:9;:25;;41604:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;40880:4;41690:9;41674:13;:11;:13::i;:::-;:25;;;;:::i;:::-;41673:41;;41665:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41741:8;;;;;;;;;;;41733:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40976:1;41821:9;41795:11;:23;41807:10;41795:23;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:51;;41787:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;41886:32;41896:10;41908:9;41886;:32::i;:::-;41960:9;41933:11;:23;41945:10;41933:23;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;41541:440;:::o;40986:46::-;;;;;;;;;;;;;;;;;:::o;31542:279::-;31645:12;:10;:12::i;:::-;31633:24;;:8;:24;;;31629:54;;;31666:17;;;;;;;;;;;;;;31629:54;31741:8;31696:18;:32;31715:12;:10;:12::i;:::-;31696:32;;;;;;;;;;;;;;;:42;31729:8;31696:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31794:8;31765:48;;31780:12;:10;:12::i;:::-;31765:48;;;31804:8;31765:48;;;;;;:::i;:::-;;;;;;;;31542:279;;:::o;32620:308::-;32779:28;32789:4;32795:2;32799:7;32779:9;:28::i;:::-;32823:48;32846:4;32852:2;32856:7;32865:5;32823:22;:48::i;:::-;32818:102;;32880:40;;;;;;;;;;;;;;32818:102;32620:308;;;;:::o;41991:344::-;42064:13;42098:16;42106:7;42098;:16::i;:::-;42090:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42179:14;42196:7;42179:24;;42252:1;42229:12;42223:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;42280:12;42294:17;:6;:15;:17::i;:::-;42263:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42223:104;42216:111;;;41991:344;;;:::o;40937:40::-;40976:1;40937:40;:::o;31892:164::-;31989:4;32013:18;:25;32032:5;32013:25;;;;;;;;;;;;;;;:35;32039:8;32013:35;;;;;;;;;;;;;;;;;;;;;;;;;32006:42;;31892:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;33183:112::-;33240:4;33274:13;;33264:7;:23;33257:30;;33183:112;;;:::o;37946:196::-;38088:2;38061:15;:24;38077:7;38061:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38126:7;38122:2;38106:28;;38115:5;38106:28;;;;;;;;;;;;37946:196;;;:::o;35866:1962::-;35981:35;36019:20;36031:7;36019:11;:20::i;:::-;35981:58;;36052:22;36094:13;:18;;;36078:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;36153:12;:10;:12::i;:::-;36129:36;;:20;36141:7;36129:11;:20::i;:::-;:36;;;36078:87;:154;;;;36182:50;36199:13;:18;;;36219:12;:10;:12::i;:::-;36182:16;:50::i;:::-;36078:154;36052:181;;36251:17;36246:66;;36277:35;;;;;;;;;;;;;;36246:66;36349:4;36327:26;;:13;:18;;;:26;;;36323:67;;36362:28;;;;;;;;;;;;;;36323:67;36419:1;36405:16;;:2;:16;;;36401:52;;;36430:23;;;;;;;;;;;;;;36401:52;36466:43;36488:4;36494:2;36498:7;36507:1;36466:21;:43::i;:::-;36574:49;36591:1;36595:7;36604:13;:18;;;36574:8;:49::i;:::-;36949:1;36919:12;:18;36932:4;36919:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36993:1;36965:12;:16;36978:2;36965:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37039:2;37011:11;:20;37023:7;37011:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;37101:15;37056:11;:20;37068:7;37056:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;37369:19;37401:1;37391:7;:11;37369:33;;37462:1;37421:43;;:11;:24;37433:11;37421:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;37417:295;;;37489:20;37497:11;37489:7;:20::i;:::-;37485:212;;;37566:13;:18;;;37534:11;:24;37546:11;37534:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37649:13;:28;;;37607:11;:24;37619:11;37607:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37485:212;37417:295;36894:829;37759:7;37755:2;37740:27;;37749:4;37740:27;;;;;;;;;;;;37778:42;37799:4;37805:2;37809:7;37818:1;37778:20;:42::i;:::-;35970:1858;;35866:1962;;;:::o;8041:317::-;8156:6;8131:21;:31;;8123:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8210:12;8228:9;:14;;8250:6;8228:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8209:52;;;8280:7;8272:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;8112:246;8041:317;;:::o;29032:504::-;29093:21;;:::i;:::-;29132:16;29140:7;29132;:16::i;:::-;29127:61;;29157:31;;;;;;;;;;;;;;29127:61;29231:12;29246:7;29231:22;;29226:245;29263:1;29255:4;:9;29226:245;;29293:31;29327:11;:17;29339:4;29327:17;;;;;;;;;;;29293:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29393:1;29367:28;;:9;:14;;;:28;;;29363:93;;29427:9;29420:16;;;;;;29363:93;29274:197;29266:6;;;;;;;;29226:245;;;;29501:27;;;;;;;;;;;;;;29032:504;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;33303:104::-;33372:27;33382:2;33386:8;33372:27;;;;;;;;;;;;:9;:27::i;:::-;33303:104;;:::o;38707:765::-;38862:4;38883:15;:2;:13;;;:15::i;:::-;38879:586;;;38935:2;38919:36;;;38956:12;:10;:12::i;:::-;38970:4;38976:7;38985:5;38919:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38915:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39182:1;39165:6;:13;:18;39161:234;;;39192:40;;;;;;;;;;;;;;39161:234;39345:6;39339:13;39330:6;39326:2;39322:15;39315:38;38915:495;39052:45;;;39042:55;;;:6;:55;;;;39035:62;;;;;38879:586;39449:4;39442:11;;38707:765;;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;39960:159::-;;;;;:::o;40531:158::-;;;;;:::o;33770:163::-;33893:32;33899:2;33903:8;33913:5;33920:4;33893:5;:32::i;:::-;33770:163;;;:::o;34192:1420::-;34331:20;34354:13;;34331:36;;34396:1;34382:16;;:2;:16;;;34378:48;;;34407:19;;;;;;;;;;;;;;34378:48;34453:1;34441:8;:13;34437:44;;;34463:18;;;;;;;;;;;;;;34437:44;34494:61;34524:1;34528:2;34532:12;34546:8;34494:21;:61::i;:::-;34870:8;34834:12;:16;34847:2;34834:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34935:8;34894:12;:16;34907:2;34894:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34994:2;34961:11;:25;34973:12;34961:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35061:15;35011:11;:25;35023:12;35011:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35094:20;35117:12;35094:35;;35151:9;35146:330;35166:8;35162:1;:12;35146:330;;;35230:12;35226:2;35205:38;;35222:1;35205:38;;;;;;;;;;;;35266:4;:68;;;;;35275:59;35306:1;35310:2;35314:12;35328:5;35275:22;:59::i;:::-;35274:60;35266:68;35262:164;;;35366:40;;;;;;;;;;;;;;35262:164;35446:14;;;;;;;35176:3;;;;;;;35146:330;;;;35508:12;35492:13;:28;;;;34809:723;35544:60;35573:1;35577:2;35581:12;35595:8;35544:20;:60::i;:::-;34320:1292;34192:1420;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:400::-;11411:3;11432:84;11514:1;11509:3;11432:84;:::i;:::-;11425:91;;11525:93;11614:3;11525:93;:::i;:::-;11643:1;11638:3;11634:11;11627:18;;11251:400;;;:::o;11657:366::-;11799:3;11820:67;11884:2;11879:3;11820:67;:::i;:::-;11813:74;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11657:366;;;:::o;12029:::-;12171:3;12192:67;12256:2;12251:3;12192:67;:::i;:::-;12185:74;;12268:93;12357:3;12268:93;:::i;:::-;12386:2;12381:3;12377:12;12370:19;;12029:366;;;:::o;12401:::-;12543:3;12564:67;12628:2;12623:3;12564:67;:::i;:::-;12557:74;;12640:93;12729:3;12640:93;:::i;:::-;12758:2;12753:3;12749:12;12742:19;;12401:366;;;:::o;12773:398::-;12932:3;12953:83;13034:1;13029:3;12953:83;:::i;:::-;12946:90;;13045:93;13134:3;13045:93;:::i;:::-;13163:1;13158:3;13154:11;13147:18;;12773:398;;;:::o;13177:365::-;13319:3;13340:66;13404:1;13399:3;13340:66;:::i;:::-;13333:73;;13415:93;13504:3;13415:93;:::i;:::-;13533:2;13528:3;13524:12;13517:19;;13177:365;;;:::o;13548:118::-;13635:24;13653:5;13635:24;:::i;:::-;13630:3;13623:37;13548:118;;:::o;13672:695::-;13950:3;13972:92;14060:3;14051:6;13972:92;:::i;:::-;13965:99;;14081:95;14172:3;14163:6;14081:95;:::i;:::-;14074:102;;14193:148;14337:3;14193:148;:::i;:::-;14186:155;;14358:3;14351:10;;13672:695;;;;;:::o;14373:379::-;14557:3;14579:147;14722:3;14579:147;:::i;:::-;14572:154;;14743:3;14736:10;;14373:379;;;:::o;14758:222::-;14851:4;14889:2;14878:9;14874:18;14866:26;;14902:71;14970:1;14959:9;14955:17;14946:6;14902:71;:::i;:::-;14758:222;;;;:::o;14986:640::-;15181:4;15219:3;15208:9;15204:19;15196:27;;15233:71;15301:1;15290:9;15286:17;15277:6;15233:71;:::i;:::-;15314:72;15382:2;15371:9;15367:18;15358:6;15314:72;:::i;:::-;15396;15464:2;15453:9;15449:18;15440:6;15396:72;:::i;:::-;15515:9;15509:4;15505:20;15500:2;15489:9;15485:18;15478:48;15543:76;15614:4;15605:6;15543:76;:::i;:::-;15535:84;;14986:640;;;;;;;:::o;15632:210::-;15719:4;15757:2;15746:9;15742:18;15734:26;;15770:65;15832:1;15821:9;15817:17;15808:6;15770:65;:::i;:::-;15632:210;;;;:::o;15848:313::-;15961:4;15999:2;15988:9;15984:18;15976:26;;16048:9;16042:4;16038:20;16034:1;16023:9;16019:17;16012:47;16076:78;16149:4;16140:6;16076:78;:::i;:::-;16068:86;;15848:313;;;;:::o;16167:419::-;16333:4;16371:2;16360:9;16356:18;16348:26;;16420:9;16414:4;16410:20;16406:1;16395:9;16391:17;16384:47;16448:131;16574:4;16448:131;:::i;:::-;16440:139;;16167:419;;;:::o;16592:::-;16758:4;16796:2;16785:9;16781:18;16773:26;;16845:9;16839:4;16835:20;16831:1;16820:9;16816:17;16809:47;16873:131;16999:4;16873:131;:::i;:::-;16865:139;;16592:419;;;:::o;17017:::-;17183:4;17221:2;17210:9;17206:18;17198:26;;17270:9;17264:4;17260:20;17256:1;17245:9;17241:17;17234:47;17298:131;17424:4;17298:131;:::i;:::-;17290:139;;17017:419;;;:::o;17442:::-;17608:4;17646:2;17635:9;17631:18;17623:26;;17695:9;17689:4;17685:20;17681:1;17670:9;17666:17;17659:47;17723:131;17849:4;17723:131;:::i;:::-;17715:139;;17442:419;;;:::o;17867:::-;18033:4;18071:2;18060:9;18056:18;18048:26;;18120:9;18114:4;18110:20;18106:1;18095:9;18091:17;18084:47;18148:131;18274:4;18148:131;:::i;:::-;18140:139;;17867:419;;;:::o;18292:::-;18458:4;18496:2;18485:9;18481:18;18473:26;;18545:9;18539:4;18535:20;18531:1;18520:9;18516:17;18509:47;18573:131;18699:4;18573:131;:::i;:::-;18565:139;;18292:419;;;:::o;18717:::-;18883:4;18921:2;18910:9;18906:18;18898:26;;18970:9;18964:4;18960:20;18956:1;18945:9;18941:17;18934:47;18998:131;19124:4;18998:131;:::i;:::-;18990:139;;18717:419;;;:::o;19142:::-;19308:4;19346:2;19335:9;19331:18;19323:26;;19395:9;19389:4;19385:20;19381:1;19370:9;19366:17;19359:47;19423:131;19549:4;19423:131;:::i;:::-;19415:139;;19142:419;;;:::o;19567:::-;19733:4;19771:2;19760:9;19756:18;19748:26;;19820:9;19814:4;19810:20;19806:1;19795:9;19791:17;19784:47;19848:131;19974:4;19848:131;:::i;:::-;19840:139;;19567:419;;;:::o;19992:222::-;20085:4;20123:2;20112:9;20108:18;20100:26;;20136:71;20204:1;20193:9;20189:17;20180:6;20136:71;:::i;:::-;19992:222;;;;:::o;20220:129::-;20254:6;20281:20;;:::i;:::-;20271:30;;20310:33;20338:4;20330:6;20310:33;:::i;:::-;20220:129;;;:::o;20355:75::-;20388:6;20421:2;20415:9;20405:19;;20355:75;:::o;20436:307::-;20497:4;20587:18;20579:6;20576:30;20573:56;;;20609:18;;:::i;:::-;20573:56;20647:29;20669:6;20647:29;:::i;:::-;20639:37;;20731:4;20725;20721:15;20713:23;;20436:307;;;:::o;20749:308::-;20811:4;20901:18;20893:6;20890:30;20887:56;;;20923:18;;:::i;:::-;20887:56;20961:29;20983:6;20961:29;:::i;:::-;20953:37;;21045:4;21039;21035:15;21027:23;;20749:308;;;:::o;21063:141::-;21112:4;21135:3;21127:11;;21158:3;21155:1;21148:14;21192:4;21189:1;21179:18;21171:26;;21063:141;;;:::o;21210:98::-;21261:6;21295:5;21289:12;21279:22;;21210:98;;;:::o;21314:99::-;21366:6;21400:5;21394:12;21384:22;;21314:99;;;:::o;21419:168::-;21502:11;21536:6;21531:3;21524:19;21576:4;21571:3;21567:14;21552:29;;21419:168;;;;:::o;21593:147::-;21694:11;21731:3;21716:18;;21593:147;;;;:::o;21746:169::-;21830:11;21864:6;21859:3;21852:19;21904:4;21899:3;21895:14;21880:29;;21746:169;;;;:::o;21921:148::-;22023:11;22060:3;22045:18;;21921:148;;;;:::o;22075:305::-;22115:3;22134:20;22152:1;22134:20;:::i;:::-;22129:25;;22168:20;22186:1;22168:20;:::i;:::-;22163:25;;22322:1;22254:66;22250:74;22247:1;22244:81;22241:107;;;22328:18;;:::i;:::-;22241:107;22372:1;22369;22365:9;22358:16;;22075:305;;;;:::o;22386:185::-;22426:1;22443:20;22461:1;22443:20;:::i;:::-;22438:25;;22477:20;22495:1;22477:20;:::i;:::-;22472:25;;22516:1;22506:35;;22521:18;;:::i;:::-;22506:35;22563:1;22560;22556:9;22551:14;;22386:185;;;;:::o;22577:191::-;22617:4;22637:20;22655:1;22637:20;:::i;:::-;22632:25;;22671:20;22689:1;22671:20;:::i;:::-;22666:25;;22710:1;22707;22704:8;22701:34;;;22715:18;;:::i;:::-;22701:34;22760:1;22757;22753:9;22745:17;;22577:191;;;;:::o;22774:96::-;22811:7;22840:24;22858:5;22840:24;:::i;:::-;22829:35;;22774:96;;;:::o;22876:90::-;22910:7;22953:5;22946:13;22939:21;22928:32;;22876:90;;;:::o;22972:149::-;23008:7;23048:66;23041:5;23037:78;23026:89;;22972:149;;;:::o;23127:126::-;23164:7;23204:42;23197:5;23193:54;23182:65;;23127:126;;;:::o;23259:77::-;23296:7;23325:5;23314:16;;23259:77;;;:::o;23342:154::-;23426:6;23421:3;23416;23403:30;23488:1;23479:6;23474:3;23470:16;23463:27;23342:154;;;:::o;23502:307::-;23570:1;23580:113;23594:6;23591:1;23588:13;23580:113;;;23679:1;23674:3;23670:11;23664:18;23660:1;23655:3;23651:11;23644:39;23616:2;23613:1;23609:10;23604:15;;23580:113;;;23711:6;23708:1;23705:13;23702:101;;;23791:1;23782:6;23777:3;23773:16;23766:27;23702:101;23551:258;23502:307;;;:::o;23815:320::-;23859:6;23896:1;23890:4;23886:12;23876:22;;23943:1;23937:4;23933:12;23964:18;23954:81;;24020:4;24012:6;24008:17;23998:27;;23954:81;24082:2;24074:6;24071:14;24051:18;24048:38;24045:84;;;24101:18;;:::i;:::-;24045:84;23866:269;23815:320;;;:::o;24141:281::-;24224:27;24246:4;24224:27;:::i;:::-;24216:6;24212:40;24354:6;24342:10;24339:22;24318:18;24306:10;24303:34;24300:62;24297:88;;;24365:18;;:::i;:::-;24297:88;24405:10;24401:2;24394:22;24184:238;24141:281;;:::o;24428:233::-;24467:3;24490:24;24508:5;24490:24;:::i;:::-;24481:33;;24536:66;24529:5;24526:77;24523:103;;;24606:18;;:::i;:::-;24523:103;24653:1;24646:5;24642:13;24635:20;;24428:233;;;:::o;24667:176::-;24699:1;24716:20;24734:1;24716:20;:::i;:::-;24711:25;;24750:20;24768:1;24750:20;:::i;:::-;24745:25;;24789:1;24779:35;;24794:18;;:::i;:::-;24779:35;24835:1;24832;24828:9;24823:14;;24667:176;;;;:::o;24849:180::-;24897:77;24894:1;24887:88;24994:4;24991:1;24984:15;25018:4;25015:1;25008:15;25035:180;25083:77;25080:1;25073:88;25180:4;25177:1;25170:15;25204:4;25201:1;25194:15;25221:180;25269:77;25266:1;25259:88;25366:4;25363:1;25356:15;25390:4;25387:1;25380:15;25407:180;25455:77;25452:1;25445:88;25552:4;25549:1;25542:15;25576:4;25573:1;25566:15;25593:180;25641:77;25638:1;25631:88;25738:4;25735:1;25728:15;25762:4;25759:1;25752:15;25779:180;25827:77;25824:1;25817:88;25924:4;25921:1;25914:15;25948:4;25945:1;25938:15;25965:117;26074:1;26071;26064:12;26088:117;26197:1;26194;26187:12;26211:117;26320:1;26317;26310:12;26334:117;26443:1;26440;26433:12;26457:102;26498:6;26549:2;26545:7;26540:2;26533:5;26529:14;26525:28;26515:38;;26457:102;;;:::o;26565:225::-;26705:34;26701:1;26693:6;26689:14;26682:58;26774:8;26769:2;26761:6;26757:15;26750:33;26565:225;:::o;26796:245::-;26936:34;26932:1;26924:6;26920:14;26913:58;27005:28;27000:2;26992:6;26988:15;26981:53;26796:245;:::o;27047:179::-;27187:31;27183:1;27175:6;27171:14;27164:55;27047:179;:::o;27232:168::-;27372:20;27368:1;27360:6;27356:14;27349:44;27232:168;:::o;27406:162::-;27546:14;27542:1;27534:6;27530:14;27523:38;27406:162;:::o;27574:155::-;27714:7;27710:1;27702:6;27698:14;27691:31;27574:155;:::o;27735:182::-;27875:34;27871:1;27863:6;27859:14;27852:58;27735:182;:::o;27923:234::-;28063:34;28059:1;28051:6;28047:14;28040:58;28132:17;28127:2;28119:6;28115:15;28108:42;27923:234;:::o;28163:172::-;28303:24;28299:1;28291:6;28287:14;28280:48;28163:172;:::o;28341:114::-;;:::o;28461:153::-;28601:5;28597:1;28589:6;28585:14;28578:29;28461:153;:::o;28620:122::-;28693:24;28711:5;28693:24;:::i;:::-;28686:5;28683:35;28673:63;;28732:1;28729;28722:12;28673:63;28620:122;:::o;28748:116::-;28818:21;28833:5;28818:21;:::i;:::-;28811:5;28808:32;28798:60;;28854:1;28851;28844:12;28798:60;28748:116;:::o;28870:120::-;28942:23;28959:5;28942:23;:::i;:::-;28935:5;28932:34;28922:62;;28980:1;28977;28970:12;28922:62;28870:120;:::o;28996:122::-;29069:24;29087:5;29069:24;:::i;:::-;29062:5;29059:35;29049:63;;29108:1;29105;29098:12;29049:63;28996:122;:::o

Swarm Source

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