ETH Price: $3,514.51 (+4.69%)
Gas: 4 Gwei

Token

Oni Jr High (OJH)
 

Overview

Max Total Supply

464 OJH

Holders

96

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
forgivable.eth
Balance
5 OJH
0xe88b1bc93f5711b628e81a50d5143c15b1473bd9
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:
Oni

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-05-03
*/

//SPDX-License-Identifier: MIT
/**
 *Submitted for verification at Etherscan.io on 2022-03-05
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

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

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

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

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

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

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

// 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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

        if (_msgSender() != owner && !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 virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

    /**
     * @dev 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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

// File: contracts/Sloodle.sol


pragma solidity ^0.8.7;




contract Oni is ERC721A, Ownable {
    using Strings for uint256;
    address breedingContract;

    string public baseApiURI;
    bytes32 private whitelistRoot;
  

    //General Settings
    uint16 public maxMintAmountPerTransaction = 5;
    uint16 public maxMintAmountPerWallet = 10;

    //whitelisting Settings
    uint16 public maxMintAmountPerWhitelist = 3;
   

    //Inventory
    uint256 public maxSupply = 3333;

    //Prices
    uint256 public cost = 0.06 ether;
    uint256 public whitelistCost = 0.00 ether;

    //Utility
    bool public paused = false;
    bool public whiteListingSale = false;

    //mapping
    mapping(address => uint256) private whitelistedMints;

    constructor(string memory _baseUrl) ERC721A("Oni Jr High", "OJH") {
        baseApiURI = _baseUrl;
    }

    //This function will be used to extend the project with more capabilities 
    function setBreedingContractAddress(address _bAddress) public onlyOwner {
        breedingContract = _bAddress;
    }

    //this function can be called only from the extending contract
    function mintExternal(address _address, uint256 _mintAmount) external {
        require(
            msg.sender == breedingContract,
            "Sorry you dont have permission to mint"
        );
        _safeMint(_address, _mintAmount);
    }

    function setWhitelistingRoot(bytes32 _root) public onlyOwner {
        whitelistRoot = _root;
    }

   

 
    // Verify that a given leaf is in the tree.
    function _verify(
        bytes32 _leafNode,
        bytes32[] memory proof
    ) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistRoot, _leafNode);
    }

    // Generate the leaf node (just the hash of tokenID concatenated with the account address)
    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    //whitelist mint
    function mintWhitelist(
        bytes32[] calldata proof,
        uint256 _mintAmount
    ) public payable {
     

                
                //Normal WL Verifications
                 require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );

                require(
                    _verify(_leaf(msg.sender), proof),
                    "Invalid proof"
                );
                require(
                    (whitelistedMints[msg.sender] + _mintAmount) <=
                        maxMintAmountPerWhitelist,
                    "Exceeds Max Mint amount"
                );

                require(
                    msg.value >= (whitelistCost * _mintAmount),
                    "Insuffient funds"
                );

                //END WL Verifications

                //Mint
                _mintLoop(msg.sender, _mintAmount);
                whitelistedMints[msg.sender] =
                    whitelistedMints[msg.sender] +
                    _mintAmount;
    }

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

    // public
    function mint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()) {
            uint256 ownerTokenCount = balanceOf(msg.sender);

            require(!paused);
            require(!whiteListingSale, "You cant mint on Presale");
            require(_mintAmount > 0, "Mint amount should be greater than 0");
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );
            require(
                (ownerTokenCount + _mintAmount) <= maxMintAmountPerWallet,
                "Sorry you cant mint more"
            );

            require(msg.value >= cost * _mintAmount, "Insuffient funds");
        }

        _mintLoop(msg.sender, _mintAmount);
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, 1);
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI))
                : "";
    }

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

    function setWhitelistingCost(uint256 _newCost) public onlyOwner {
        whitelistCost = _newCost;
    }

    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

    function setMaxMintAmountPerWallet(uint16 _amount) public onlyOwner {
        maxMintAmountPerWallet = _amount;
    }

    function setMaxMintAmountPerWhitelist(uint16 _amount) public onlyOwner {
        maxMintAmountPerWhitelist = _amount;
    }

    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseApiURI = _newBaseURI;
    }

    function togglePause() public onlyOwner {
        paused = !paused;
    }

    function toggleWhiteSale() public onlyOwner {
        whiteListingSale = !whiteListingSale;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function withdraw() public payable onlyOwner {

         uint256 balance = address(this).balance;
         uint256 share1 = (balance * 5) / 100;

          (bool shareholder1, ) = payable(
            0x8958FD1c47948306a63F68582D8789035a2d70c8
        ).call{value: share1}("");
        require(shareholder1);

        (bool hq, ) = payable(owner()).call{value: address(this).balance}("");
        require(hq);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseApiURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWhitelist","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setBreedingContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistingRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","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":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteSale","outputs":[],"stateMutability":"nonpayable","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":"whiteListingSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526005600c60006101000a81548161ffff021916908361ffff160217905550600a600c60026101000a81548161ffff021916908361ffff1602179055506003600c60046101000a81548161ffff021916908361ffff160217905550610d05600d5566d529ae9e860000600e556000600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000b757600080fd5b5060405162005005380380620050058339818101604052810190620000dd9190620003d4565b6040518060400160405280600b81526020017f4f6e69204a7220486967680000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4a480000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000161929190620002a6565b5080600390805190602001906200017a929190620002a6565b506200018b620001d360201b60201c565b6000819055505050620001b3620001a7620001d860201b60201c565b620001e060201b60201c565b80600a9080519060200190620001cb929190620002a6565b5050620005a9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b490620004ba565b90600052602060002090601f016020900481019282620002d8576000855562000324565b82601f10620002f357805160ff191683800117855562000324565b8280016001018555821562000324579182015b828111156200032357825182559160200191906001019062000306565b5b50905062000333919062000337565b5090565b5b808211156200035257600081600090555060010162000338565b5090565b60006200036d62000367846200044e565b62000425565b9050828152602081018484840111156200038c576200038b62000589565b5b6200039984828562000484565b509392505050565b600082601f830112620003b957620003b862000584565b5b8151620003cb84826020860162000356565b91505092915050565b600060208284031215620003ed57620003ec62000593565b5b600082015167ffffffffffffffff8111156200040e576200040d6200058e565b5b6200041c84828501620003a1565b91505092915050565b60006200043162000444565b90506200043f8282620004f0565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046c576200046b62000555565b5b620004778262000598565b9050602081019050919050565b60005b83811015620004a457808201518184015260208101905062000487565b83811115620004b4576000848401525b50505050565b60006002820490506001821680620004d357607f821691505b60208210811415620004ea57620004e962000526565b5b50919050565b620004fb8262000598565b810181811067ffffffffffffffff821117156200051d576200051c62000555565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614a4c80620005b96000396000f3fe6080604052600436106102725760003560e01c806395d89b411161014f578063d5abeb01116100c1578063e985e9c51161007a578063e985e9c5146108ff578063ea4446221461093c578063ed81617914610965578063ee8912121461097c578063f2fde38b146109a5578063f4da1846146109ce57610272565b8063d5abeb01146107ef578063dc33e6811461081a578063dfc33dd114610857578063e5a88cdb14610880578063e7b99ec7146108ab578063e97800cb146108d657610272565b8063bbb8974411610113578063bbb89744146106f3578063bc951b911461071e578063c4ae316814610749578063c87b56dd14610760578063cbce4c971461079d578063cef11729146107c657610272565b806395d89b411461063e578063a0712d6814610669578063a22cb46514610685578063a6d612f9146106ae578063b88d4fde146106ca57610272565b806344a0d68a116101e85780636f8b44b0116101ac5780636f8b44b01461053057806370a0823114610559578063715018a614610596578063729ad39e146105ad5780638da5cb5b146105d65780639231ab2a1461060157610272565b806344a0d68a1461044d57806355f804b3146104765780635c975abb1461049f5780636352211e146104ca57806368570bd61461050757610272565b806318160ddd1161023a57806318160ddd1461037057806323b872dd1461039b5780632cefffa7146103c45780633ccfd60b146103ef57806341827f13146103f957806342842e0e1461042457610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806313faede614610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b3f565b6109f7565b6040516102ab9190614016565b60405180910390f35b3480156102c057600080fd5b506102c9610ad9565b6040516102d69190614031565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c0f565b610b6b565b6040516103139190613faf565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613a29565b610be7565b005b34801561035157600080fd5b5061035a610cf2565b6040516103679190614209565b60405180910390f35b34801561037c57600080fd5b50610385610cf8565b6040516103929190614209565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613913565b610d0f565b005b3480156103d057600080fd5b506103d9610d1f565b6040516103e691906141ee565b60405180910390f35b6103f7610d33565b005b34801561040557600080fd5b5061040e610ede565b60405161041b9190614031565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190613913565b610f6c565b005b34801561045957600080fd5b50610474600480360381019061046f9190613c0f565b610f8c565b005b34801561048257600080fd5b5061049d60048036038101906104989190613b99565b611012565b005b3480156104ab57600080fd5b506104b46110a8565b6040516104c19190614016565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613c0f565b6110bb565b6040516104fe9190613faf565b60405180910390f35b34801561051357600080fd5b5061052e600480360381019061052991906138a6565b6110d1565b005b34801561053c57600080fd5b5061055760048036038101906105529190613c0f565b611191565b005b34801561056557600080fd5b50610580600480360381019061057b91906138a6565b611217565b60405161058d9190614209565b60405180910390f35b3480156105a257600080fd5b506105ab6112e7565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613a69565b61136f565b005b3480156105e257600080fd5b506105eb611439565b6040516105f89190613faf565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613c0f565b611463565b60405161063591906141d3565b60405180910390f35b34801561064a57600080fd5b5061065361147b565b6040516106609190614031565b60405180910390f35b610683600480360381019061067e9190613c0f565b61150d565b005b34801561069157600080fd5b506106ac60048036038101906106a791906139e9565b611770565b005b6106c860048036038101906106c39190613ab2565b6118e8565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613966565b611b5f565b005b3480156106ff57600080fd5b50610708611bdb565b60405161071591906141ee565b60405180910390f35b34801561072a57600080fd5b50610733611bef565b60405161074091906141ee565b60405180910390f35b34801561075557600080fd5b5061075e611c03565b005b34801561076c57600080fd5b5061078760048036038101906107829190613c0f565b611cab565b6040516107949190614031565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613a29565b611d48565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613be2565b611dd2565b005b3480156107fb57600080fd5b50610804611e6e565b6040516108119190614209565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c91906138a6565b611e74565b60405161084e9190614209565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613c0f565b611e86565b005b34801561088c57600080fd5b50610895611f0c565b6040516108a29190614016565b60405180910390f35b3480156108b757600080fd5b506108c0611f1f565b6040516108cd9190614209565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f89190613be2565b611f25565b005b34801561090b57600080fd5b50610926600480360381019061092191906138d3565b611fc1565b6040516109339190614016565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613be2565b612055565b005b34801561097157600080fd5b5061097a6120f1565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613b12565b612199565b005b3480156109b157600080fd5b506109cc60048036038101906109c791906138a6565b61221f565b005b3480156109da57600080fd5b506109f560048036038101906109f09190613a29565b612317565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad25750610ad1826123b5565b5b9050919050565b606060028054610ae8906144e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b14906144e8565b8015610b615780601f10610b3657610100808354040283529160200191610b61565b820191906000526020600020905b815481529060010190602001808311610b4457829003601f168201915b5050505050905090565b6000610b768261241f565b610bac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf2826110bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7961246d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cab5750610ca981610ca461246d565b611fc1565b155b15610ce2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ced838383612475565b505050565b600e5481565b6000610d02612527565b6001546000540303905090565b610d1a83838361252c565b505050565b600c60049054906101000a900461ffff1681565b610d3b61246d565b73ffffffffffffffffffffffffffffffffffffffff16610d59611439565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690614113565b60405180910390fd5b600047905060006064600583610dc591906143ac565b610dcf919061437b565b90506000738958fd1c47948306a63f68582d8789035a2d70c873ffffffffffffffffffffffffffffffffffffffff1682604051610e0b90613f9a565b60006040518083038185875af1925050503d8060008114610e48576040519150601f19603f3d011682016040523d82523d6000602084013e610e4d565b606091505b5050905080610e5b57600080fd5b6000610e65611439565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e8890613f9a565b60006040518083038185875af1925050503d8060008114610ec5576040519150601f19603f3d011682016040523d82523d6000602084013e610eca565b606091505b5050905080610ed857600080fd5b50505050565b600a8054610eeb906144e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f17906144e8565b8015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b505050505081565b610f8783838360405180602001604052806000815250611b5f565b505050565b610f9461246d565b73ffffffffffffffffffffffffffffffffffffffff16610fb2611439565b73ffffffffffffffffffffffffffffffffffffffff1614611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90614113565b60405180910390fd5b80600e8190555050565b61101a61246d565b73ffffffffffffffffffffffffffffffffffffffff16611038611439565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590614113565b60405180910390fd5b80600a90805190602001906110a4929190613559565b5050565b601060009054906101000a900460ff1681565b60006110c682612a1d565b600001519050919050565b6110d961246d565b73ffffffffffffffffffffffffffffffffffffffff166110f7611439565b73ffffffffffffffffffffffffffffffffffffffff161461114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490614113565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61119961246d565b73ffffffffffffffffffffffffffffffffffffffff166111b7611439565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614113565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112ef61246d565b73ffffffffffffffffffffffffffffffffffffffff1661130d611439565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90614113565b60405180910390fd5b61136d6000612cac565b565b61137761246d565b73ffffffffffffffffffffffffffffffffffffffff16611395611439565b73ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290614113565b60405180910390fd5b60005b815181101561143557600082828151811061140c5761140b614645565b5b60200260200101519050611421816001612d72565b50808061142d9061454b565b9150506113ee565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61146b6135df565b61147482612a1d565b9050919050565b60606003805461148a906144e8565b80601f01602080910402602001604051908101604052809291908181526020018280546114b6906144e8565b80156115035780601f106114d857610100808354040283529160200191611503565b820191906000526020600020905b8154815290600101906020018083116114e657829003601f168201915b5050505050905090565b611515611439565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461176357600061155233611217565b9050601060009054906101000a900460ff161561156e57600080fd5b601060019054906101000a900460ff16156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590614093565b60405180910390fd5b60008211611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614153565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff16821115611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906140f3565b60405180910390fd5b600d5482611664610cf8565b61166e9190614325565b11156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690614053565b60405180910390fd5b600c60029054906101000a900461ffff1661ffff1682826116d09190614325565b1115611711576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611708906141b3565b60405180910390fd5b81600e5461171f91906143ac565b341015611761576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611758906140d3565b60405180910390fd5b505b61176d3382612d72565b50565b61177861246d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117dd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117ea61246d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661189761246d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118dc9190614016565b60405180910390a35050565b600d54816118f4610cf8565b6118fe9190614325565b111561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614053565b60405180910390fd5b61199261194b33612d80565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612db0565b6119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890614173565b60405180910390fd5b600c60049054906101000a900461ffff1661ffff1681601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a319190614325565b1115611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990614193565b60405180910390fd5b80600f54611a8091906143ac565b341015611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906140d3565b60405180910390fd5b611acc3382612d72565b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b179190614325565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b611b6a84848461252c565b611b898373ffffffffffffffffffffffffffffffffffffffff16612dc7565b8015611b9e5750611b9c84848484612dea565b155b15611bd5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c60009054906101000a900461ffff1681565b600c60029054906101000a900461ffff1681565b611c0b61246d565b73ffffffffffffffffffffffffffffffffffffffff16611c29611439565b73ffffffffffffffffffffffffffffffffffffffff1614611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690614113565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6060611cb68261241f565b611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90614133565b60405180910390fd5b6000611cff612f4a565b90506000815111611d1f5760405180602001604052806000815250611d40565b80604051602001611d309190613f83565b6040516020818303038152906040525b915050919050565b611d5061246d565b73ffffffffffffffffffffffffffffffffffffffff16611d6e611439565b73ffffffffffffffffffffffffffffffffffffffff1614611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90614113565b60405180910390fd5b611dce8282612d72565b5050565b611dda61246d565b73ffffffffffffffffffffffffffffffffffffffff16611df8611439565b73ffffffffffffffffffffffffffffffffffffffff1614611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590614113565b60405180910390fd5b80600c60026101000a81548161ffff021916908361ffff16021790555050565b600d5481565b6000611e7f82612fdc565b9050919050565b611e8e61246d565b73ffffffffffffffffffffffffffffffffffffffff16611eac611439565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614113565b60405180910390fd5b80600f8190555050565b601060019054906101000a900460ff1681565b600f5481565b611f2d61246d565b73ffffffffffffffffffffffffffffffffffffffff16611f4b611439565b73ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890614113565b60405180910390fd5b80600c60006101000a81548161ffff021916908361ffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61205d61246d565b73ffffffffffffffffffffffffffffffffffffffff1661207b611439565b73ffffffffffffffffffffffffffffffffffffffff16146120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614113565b60405180910390fd5b80600c60046101000a81548161ffff021916908361ffff16021790555050565b6120f961246d565b73ffffffffffffffffffffffffffffffffffffffff16612117611439565b73ffffffffffffffffffffffffffffffffffffffff161461216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490614113565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6121a161246d565b73ffffffffffffffffffffffffffffffffffffffff166121bf611439565b73ffffffffffffffffffffffffffffffffffffffff1614612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90614113565b60405180910390fd5b80600b8190555050565b61222761246d565b73ffffffffffffffffffffffffffffffffffffffff16612245611439565b73ffffffffffffffffffffffffffffffffffffffff161461229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290614113565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561230b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230290614073565b60405180910390fd5b61231481612cac565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e906140b3565b60405180910390fd5b6123b182826130ac565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161242a612527565b11158015612439575060005482105b8015612466575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061253782612a1d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661255e61246d565b73ffffffffffffffffffffffffffffffffffffffff1614806125915750612590826000015161258b61246d565b611fc1565b5b806125d6575061259f61246d565b73ffffffffffffffffffffffffffffffffffffffff166125be84610b6b565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061260f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612678576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126df576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126ec85858560016130ca565b6126fc6000848460000151612475565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129ad576000548110156129ac5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1685858560016130d0565b5050505050565b612a256135df565b600082905080612a33612527565b11158015612a42575060005481105b15612c75576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c7357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b57578092505050612ca7565b5b600115612c7257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c6d578092505050612ca7565b612b58565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d7c82826130ac565b5050565b600081604051602001612d939190613f68565b604051602081830303815290604052805190602001209050919050565b6000612dbf82600b54856130d6565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e1061246d565b8786866040518563ffffffff1660e01b8152600401612e329493929190613fca565b602060405180830381600087803b158015612e4c57600080fd5b505af1925050508015612e7d57506040513d601f19601f82011682018060405250810190612e7a9190613b6c565b60015b612ef7573d8060008114612ead576040519150601f19603f3d011682016040523d82523d6000602084013e612eb2565b606091505b50600081511415612eef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612f59906144e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612f85906144e8565b8015612fd25780601f10612fa757610100808354040283529160200191612fd2565b820191906000526020600020905b815481529060010190602001808311612fb557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613044576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6130c68282604051806020016040528060008152506130ed565b5050565b50505050565b50505050565b6000826130e385846130ff565b1490509392505050565b6130fa8383836001613174565b505050565b60008082905060005b845181101561316957600085828151811061312657613125614645565b5b60200260200101519050808311613148576131418382613542565b9250613155565b6131528184613542565b92505b5080806131619061454b565b915050613108565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156131e1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561321c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61322960008683876130ca565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133f357506133f28773ffffffffffffffffffffffffffffffffffffffff16612dc7565b5b156134b9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134686000888480600101955088612dea565b61349e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133f95782600054146134b457600080fd5b613525565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156134ba575b81600081905550505061353b60008683876130d0565b5050505050565b600082600052816020526040600020905092915050565b828054613565906144e8565b90600052602060002090601f01602090048101928261358757600085556135ce565b82601f106135a057805160ff19168380011785556135ce565b828001600101855582156135ce579182015b828111156135cd5782518255916020019190600101906135b2565b5b5090506135db9190613622565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561363b576000816000905550600101613623565b5090565b600061365261364d84614249565b614224565b90508083825260208201905082856020860282011115613675576136746146ad565b5b60005b858110156136a5578161368b8882613733565b845260208401935060208301925050600181019050613678565b5050509392505050565b60006136c26136bd84614275565b614224565b9050828152602081018484840111156136de576136dd6146b2565b5b6136e98482856144a6565b509392505050565b60006137046136ff846142a6565b614224565b9050828152602081018484840111156137205761371f6146b2565b5b61372b8482856144a6565b509392505050565b6000813590506137428161498c565b92915050565b600082601f83011261375d5761375c6146a8565b5b813561376d84826020860161363f565b91505092915050565b60008083601f84011261378c5761378b6146a8565b5b8235905067ffffffffffffffff8111156137a9576137a86146a3565b5b6020830191508360208202830111156137c5576137c46146ad565b5b9250929050565b6000813590506137db816149a3565b92915050565b6000813590506137f0816149ba565b92915050565b600081359050613805816149d1565b92915050565b60008151905061381a816149d1565b92915050565b600082601f830112613835576138346146a8565b5b81356138458482602086016136af565b91505092915050565b600082601f830112613863576138626146a8565b5b81356138738482602086016136f1565b91505092915050565b60008135905061388b816149e8565b92915050565b6000813590506138a0816149ff565b92915050565b6000602082840312156138bc576138bb6146bc565b5b60006138ca84828501613733565b91505092915050565b600080604083850312156138ea576138e96146bc565b5b60006138f885828601613733565b925050602061390985828601613733565b9150509250929050565b60008060006060848603121561392c5761392b6146bc565b5b600061393a86828701613733565b935050602061394b86828701613733565b925050604061395c86828701613891565b9150509250925092565b600080600080608085870312156139805761397f6146bc565b5b600061398e87828801613733565b945050602061399f87828801613733565b93505060406139b087828801613891565b925050606085013567ffffffffffffffff8111156139d1576139d06146b7565b5b6139dd87828801613820565b91505092959194509250565b60008060408385031215613a00576139ff6146bc565b5b6000613a0e85828601613733565b9250506020613a1f858286016137cc565b9150509250929050565b60008060408385031215613a4057613a3f6146bc565b5b6000613a4e85828601613733565b9250506020613a5f85828601613891565b9150509250929050565b600060208284031215613a7f57613a7e6146bc565b5b600082013567ffffffffffffffff811115613a9d57613a9c6146b7565b5b613aa984828501613748565b91505092915050565b600080600060408486031215613acb57613aca6146bc565b5b600084013567ffffffffffffffff811115613ae957613ae86146b7565b5b613af586828701613776565b93509350506020613b0886828701613891565b9150509250925092565b600060208284031215613b2857613b276146bc565b5b6000613b36848285016137e1565b91505092915050565b600060208284031215613b5557613b546146bc565b5b6000613b63848285016137f6565b91505092915050565b600060208284031215613b8257613b816146bc565b5b6000613b908482850161380b565b91505092915050565b600060208284031215613baf57613bae6146bc565b5b600082013567ffffffffffffffff811115613bcd57613bcc6146b7565b5b613bd98482850161384e565b91505092915050565b600060208284031215613bf857613bf76146bc565b5b6000613c068482850161387c565b91505092915050565b600060208284031215613c2557613c246146bc565b5b6000613c3384828501613891565b91505092915050565b613c4581614406565b82525050565b613c5481614406565b82525050565b613c6b613c6682614406565b614594565b82525050565b613c7a81614418565b82525050565b613c8981614418565b82525050565b6000613c9a826142d7565b613ca481856142ed565b9350613cb48185602086016144b5565b613cbd816146c1565b840191505092915050565b6000613cd3826142e2565b613cdd8185614309565b9350613ced8185602086016144b5565b613cf6816146c1565b840191505092915050565b6000613d0c826142e2565b613d16818561431a565b9350613d268185602086016144b5565b80840191505092915050565b6000613d3f601283614309565b9150613d4a826146df565b602082019050919050565b6000613d62602683614309565b9150613d6d82614708565b604082019050919050565b6000613d85601883614309565b9150613d9082614757565b602082019050919050565b6000613da8602683614309565b9150613db382614780565b604082019050919050565b6000613dcb601083614309565b9150613dd6826147cf565b602082019050919050565b6000613dee602783614309565b9150613df9826147f8565b604082019050919050565b6000613e11602083614309565b9150613e1c82614847565b602082019050919050565b6000613e34602f83614309565b9150613e3f82614870565b604082019050919050565b6000613e576000836142fe565b9150613e62826148bf565b600082019050919050565b6000613e7a602483614309565b9150613e85826148c2565b604082019050919050565b6000613e9d600d83614309565b9150613ea882614911565b602082019050919050565b6000613ec0601783614309565b9150613ecb8261493a565b602082019050919050565b6000613ee3601883614309565b9150613eee82614963565b602082019050919050565b606082016000820151613f0f6000850182613c3c565b506020820151613f226020850182613f59565b506040820151613f356040850182613c71565b50505050565b613f448161445a565b82525050565b613f5381614488565b82525050565b613f6281614492565b82525050565b6000613f748284613c5a565b60148201915081905092915050565b6000613f8f8284613d01565b915081905092915050565b6000613fa582613e4a565b9150819050919050565b6000602082019050613fc46000830184613c4b565b92915050565b6000608082019050613fdf6000830187613c4b565b613fec6020830186613c4b565b613ff96040830185613f4a565b818103606083015261400b8184613c8f565b905095945050505050565b600060208201905061402b6000830184613c80565b92915050565b6000602082019050818103600083015261404b8184613cc8565b905092915050565b6000602082019050818103600083015261406c81613d32565b9050919050565b6000602082019050818103600083015261408c81613d55565b9050919050565b600060208201905081810360008301526140ac81613d78565b9050919050565b600060208201905081810360008301526140cc81613d9b565b9050919050565b600060208201905081810360008301526140ec81613dbe565b9050919050565b6000602082019050818103600083015261410c81613de1565b9050919050565b6000602082019050818103600083015261412c81613e04565b9050919050565b6000602082019050818103600083015261414c81613e27565b9050919050565b6000602082019050818103600083015261416c81613e6d565b9050919050565b6000602082019050818103600083015261418c81613e90565b9050919050565b600060208201905081810360008301526141ac81613eb3565b9050919050565b600060208201905081810360008301526141cc81613ed6565b9050919050565b60006060820190506141e86000830184613ef9565b92915050565b60006020820190506142036000830184613f3b565b92915050565b600060208201905061421e6000830184613f4a565b92915050565b600061422e61423f565b905061423a828261451a565b919050565b6000604051905090565b600067ffffffffffffffff82111561426457614263614674565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156142905761428f614674565b5b614299826146c1565b9050602081019050919050565b600067ffffffffffffffff8211156142c1576142c0614674565b5b6142ca826146c1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061433082614488565b915061433b83614488565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143705761436f6145b8565b5b828201905092915050565b600061438682614488565b915061439183614488565b9250826143a1576143a06145e7565b5b828204905092915050565b60006143b782614488565b91506143c283614488565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143fb576143fa6145b8565b5b828202905092915050565b600061441182614468565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156144d35780820151818401526020810190506144b8565b838111156144e2576000848401525b50505050565b6000600282049050600182168061450057607f821691505b6020821081141561451457614513614616565b5b50919050565b614523826146c1565b810181811067ffffffffffffffff8211171561454257614541614674565b5b80604052505050565b600061455682614488565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614589576145886145b8565b5b600182019050919050565b600061459f826145a6565b9050919050565b60006145b1826146d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e74206d696e74206f6e2050726573616c650000000000000000600082015250565b7f536f72727920796f7520646f6e742068617665207065726d697373696f6e207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656e742066756e647300000000000000000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74207468697320616d6f756e742060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f45786365656473204d6178204d696e7420616d6f756e74000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74206d6f72650000000000000000600082015250565b61499581614406565b81146149a057600080fd5b50565b6149ac81614418565b81146149b757600080fd5b50565b6149c381614424565b81146149ce57600080fd5b50565b6149da8161442e565b81146149e557600080fd5b50565b6149f18161445a565b81146149fc57600080fd5b50565b614a0881614488565b8114614a1357600080fd5b5056fea26469706673582212204ef3c6a5feed6b31080f9dbee977e13281a2f22e0428d6e3967fb183996833b664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d646631357a6f3678737a4139614d4241445939427546794447635a53506d3342346a4c5a614b4d36397270792f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806395d89b411161014f578063d5abeb01116100c1578063e985e9c51161007a578063e985e9c5146108ff578063ea4446221461093c578063ed81617914610965578063ee8912121461097c578063f2fde38b146109a5578063f4da1846146109ce57610272565b8063d5abeb01146107ef578063dc33e6811461081a578063dfc33dd114610857578063e5a88cdb14610880578063e7b99ec7146108ab578063e97800cb146108d657610272565b8063bbb8974411610113578063bbb89744146106f3578063bc951b911461071e578063c4ae316814610749578063c87b56dd14610760578063cbce4c971461079d578063cef11729146107c657610272565b806395d89b411461063e578063a0712d6814610669578063a22cb46514610685578063a6d612f9146106ae578063b88d4fde146106ca57610272565b806344a0d68a116101e85780636f8b44b0116101ac5780636f8b44b01461053057806370a0823114610559578063715018a614610596578063729ad39e146105ad5780638da5cb5b146105d65780639231ab2a1461060157610272565b806344a0d68a1461044d57806355f804b3146104765780635c975abb1461049f5780636352211e146104ca57806368570bd61461050757610272565b806318160ddd1161023a57806318160ddd1461037057806323b872dd1461039b5780632cefffa7146103c45780633ccfd60b146103ef57806341827f13146103f957806342842e0e1461042457610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806313faede614610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b3f565b6109f7565b6040516102ab9190614016565b60405180910390f35b3480156102c057600080fd5b506102c9610ad9565b6040516102d69190614031565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c0f565b610b6b565b6040516103139190613faf565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613a29565b610be7565b005b34801561035157600080fd5b5061035a610cf2565b6040516103679190614209565b60405180910390f35b34801561037c57600080fd5b50610385610cf8565b6040516103929190614209565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613913565b610d0f565b005b3480156103d057600080fd5b506103d9610d1f565b6040516103e691906141ee565b60405180910390f35b6103f7610d33565b005b34801561040557600080fd5b5061040e610ede565b60405161041b9190614031565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190613913565b610f6c565b005b34801561045957600080fd5b50610474600480360381019061046f9190613c0f565b610f8c565b005b34801561048257600080fd5b5061049d60048036038101906104989190613b99565b611012565b005b3480156104ab57600080fd5b506104b46110a8565b6040516104c19190614016565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613c0f565b6110bb565b6040516104fe9190613faf565b60405180910390f35b34801561051357600080fd5b5061052e600480360381019061052991906138a6565b6110d1565b005b34801561053c57600080fd5b5061055760048036038101906105529190613c0f565b611191565b005b34801561056557600080fd5b50610580600480360381019061057b91906138a6565b611217565b60405161058d9190614209565b60405180910390f35b3480156105a257600080fd5b506105ab6112e7565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613a69565b61136f565b005b3480156105e257600080fd5b506105eb611439565b6040516105f89190613faf565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613c0f565b611463565b60405161063591906141d3565b60405180910390f35b34801561064a57600080fd5b5061065361147b565b6040516106609190614031565b60405180910390f35b610683600480360381019061067e9190613c0f565b61150d565b005b34801561069157600080fd5b506106ac60048036038101906106a791906139e9565b611770565b005b6106c860048036038101906106c39190613ab2565b6118e8565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613966565b611b5f565b005b3480156106ff57600080fd5b50610708611bdb565b60405161071591906141ee565b60405180910390f35b34801561072a57600080fd5b50610733611bef565b60405161074091906141ee565b60405180910390f35b34801561075557600080fd5b5061075e611c03565b005b34801561076c57600080fd5b5061078760048036038101906107829190613c0f565b611cab565b6040516107949190614031565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613a29565b611d48565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613be2565b611dd2565b005b3480156107fb57600080fd5b50610804611e6e565b6040516108119190614209565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c91906138a6565b611e74565b60405161084e9190614209565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613c0f565b611e86565b005b34801561088c57600080fd5b50610895611f0c565b6040516108a29190614016565b60405180910390f35b3480156108b757600080fd5b506108c0611f1f565b6040516108cd9190614209565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f89190613be2565b611f25565b005b34801561090b57600080fd5b50610926600480360381019061092191906138d3565b611fc1565b6040516109339190614016565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613be2565b612055565b005b34801561097157600080fd5b5061097a6120f1565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613b12565b612199565b005b3480156109b157600080fd5b506109cc60048036038101906109c791906138a6565b61221f565b005b3480156109da57600080fd5b506109f560048036038101906109f09190613a29565b612317565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad25750610ad1826123b5565b5b9050919050565b606060028054610ae8906144e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b14906144e8565b8015610b615780601f10610b3657610100808354040283529160200191610b61565b820191906000526020600020905b815481529060010190602001808311610b4457829003601f168201915b5050505050905090565b6000610b768261241f565b610bac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf2826110bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7961246d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cab5750610ca981610ca461246d565b611fc1565b155b15610ce2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ced838383612475565b505050565b600e5481565b6000610d02612527565b6001546000540303905090565b610d1a83838361252c565b505050565b600c60049054906101000a900461ffff1681565b610d3b61246d565b73ffffffffffffffffffffffffffffffffffffffff16610d59611439565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690614113565b60405180910390fd5b600047905060006064600583610dc591906143ac565b610dcf919061437b565b90506000738958fd1c47948306a63f68582d8789035a2d70c873ffffffffffffffffffffffffffffffffffffffff1682604051610e0b90613f9a565b60006040518083038185875af1925050503d8060008114610e48576040519150601f19603f3d011682016040523d82523d6000602084013e610e4d565b606091505b5050905080610e5b57600080fd5b6000610e65611439565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e8890613f9a565b60006040518083038185875af1925050503d8060008114610ec5576040519150601f19603f3d011682016040523d82523d6000602084013e610eca565b606091505b5050905080610ed857600080fd5b50505050565b600a8054610eeb906144e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f17906144e8565b8015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b505050505081565b610f8783838360405180602001604052806000815250611b5f565b505050565b610f9461246d565b73ffffffffffffffffffffffffffffffffffffffff16610fb2611439565b73ffffffffffffffffffffffffffffffffffffffff1614611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90614113565b60405180910390fd5b80600e8190555050565b61101a61246d565b73ffffffffffffffffffffffffffffffffffffffff16611038611439565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590614113565b60405180910390fd5b80600a90805190602001906110a4929190613559565b5050565b601060009054906101000a900460ff1681565b60006110c682612a1d565b600001519050919050565b6110d961246d565b73ffffffffffffffffffffffffffffffffffffffff166110f7611439565b73ffffffffffffffffffffffffffffffffffffffff161461114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490614113565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61119961246d565b73ffffffffffffffffffffffffffffffffffffffff166111b7611439565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614113565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112ef61246d565b73ffffffffffffffffffffffffffffffffffffffff1661130d611439565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90614113565b60405180910390fd5b61136d6000612cac565b565b61137761246d565b73ffffffffffffffffffffffffffffffffffffffff16611395611439565b73ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290614113565b60405180910390fd5b60005b815181101561143557600082828151811061140c5761140b614645565b5b60200260200101519050611421816001612d72565b50808061142d9061454b565b9150506113ee565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61146b6135df565b61147482612a1d565b9050919050565b60606003805461148a906144e8565b80601f01602080910402602001604051908101604052809291908181526020018280546114b6906144e8565b80156115035780601f106114d857610100808354040283529160200191611503565b820191906000526020600020905b8154815290600101906020018083116114e657829003601f168201915b5050505050905090565b611515611439565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461176357600061155233611217565b9050601060009054906101000a900460ff161561156e57600080fd5b601060019054906101000a900460ff16156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590614093565b60405180910390fd5b60008211611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614153565b60405180910390fd5b600c60009054906101000a900461ffff1661ffff16821115611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906140f3565b60405180910390fd5b600d5482611664610cf8565b61166e9190614325565b11156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a690614053565b60405180910390fd5b600c60029054906101000a900461ffff1661ffff1682826116d09190614325565b1115611711576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611708906141b3565b60405180910390fd5b81600e5461171f91906143ac565b341015611761576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611758906140d3565b60405180910390fd5b505b61176d3382612d72565b50565b61177861246d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117dd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117ea61246d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661189761246d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118dc9190614016565b60405180910390a35050565b600d54816118f4610cf8565b6118fe9190614325565b111561193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614053565b60405180910390fd5b61199261194b33612d80565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612db0565b6119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890614173565b60405180910390fd5b600c60049054906101000a900461ffff1661ffff1681601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a319190614325565b1115611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990614193565b60405180910390fd5b80600f54611a8091906143ac565b341015611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906140d3565b60405180910390fd5b611acc3382612d72565b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b179190614325565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b611b6a84848461252c565b611b898373ffffffffffffffffffffffffffffffffffffffff16612dc7565b8015611b9e5750611b9c84848484612dea565b155b15611bd5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c60009054906101000a900461ffff1681565b600c60029054906101000a900461ffff1681565b611c0b61246d565b73ffffffffffffffffffffffffffffffffffffffff16611c29611439565b73ffffffffffffffffffffffffffffffffffffffff1614611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690614113565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6060611cb68261241f565b611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90614133565b60405180910390fd5b6000611cff612f4a565b90506000815111611d1f5760405180602001604052806000815250611d40565b80604051602001611d309190613f83565b6040516020818303038152906040525b915050919050565b611d5061246d565b73ffffffffffffffffffffffffffffffffffffffff16611d6e611439565b73ffffffffffffffffffffffffffffffffffffffff1614611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90614113565b60405180910390fd5b611dce8282612d72565b5050565b611dda61246d565b73ffffffffffffffffffffffffffffffffffffffff16611df8611439565b73ffffffffffffffffffffffffffffffffffffffff1614611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590614113565b60405180910390fd5b80600c60026101000a81548161ffff021916908361ffff16021790555050565b600d5481565b6000611e7f82612fdc565b9050919050565b611e8e61246d565b73ffffffffffffffffffffffffffffffffffffffff16611eac611439565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614113565b60405180910390fd5b80600f8190555050565b601060019054906101000a900460ff1681565b600f5481565b611f2d61246d565b73ffffffffffffffffffffffffffffffffffffffff16611f4b611439565b73ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890614113565b60405180910390fd5b80600c60006101000a81548161ffff021916908361ffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61205d61246d565b73ffffffffffffffffffffffffffffffffffffffff1661207b611439565b73ffffffffffffffffffffffffffffffffffffffff16146120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614113565b60405180910390fd5b80600c60046101000a81548161ffff021916908361ffff16021790555050565b6120f961246d565b73ffffffffffffffffffffffffffffffffffffffff16612117611439565b73ffffffffffffffffffffffffffffffffffffffff161461216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490614113565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6121a161246d565b73ffffffffffffffffffffffffffffffffffffffff166121bf611439565b73ffffffffffffffffffffffffffffffffffffffff1614612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90614113565b60405180910390fd5b80600b8190555050565b61222761246d565b73ffffffffffffffffffffffffffffffffffffffff16612245611439565b73ffffffffffffffffffffffffffffffffffffffff161461229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290614113565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561230b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230290614073565b60405180910390fd5b61231481612cac565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e906140b3565b60405180910390fd5b6123b182826130ac565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161242a612527565b11158015612439575060005482105b8015612466575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061253782612a1d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661255e61246d565b73ffffffffffffffffffffffffffffffffffffffff1614806125915750612590826000015161258b61246d565b611fc1565b5b806125d6575061259f61246d565b73ffffffffffffffffffffffffffffffffffffffff166125be84610b6b565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061260f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612678576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126df576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126ec85858560016130ca565b6126fc6000848460000151612475565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129ad576000548110156129ac5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1685858560016130d0565b5050505050565b612a256135df565b600082905080612a33612527565b11158015612a42575060005481105b15612c75576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c7357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b57578092505050612ca7565b5b600115612c7257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c6d578092505050612ca7565b612b58565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d7c82826130ac565b5050565b600081604051602001612d939190613f68565b604051602081830303815290604052805190602001209050919050565b6000612dbf82600b54856130d6565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e1061246d565b8786866040518563ffffffff1660e01b8152600401612e329493929190613fca565b602060405180830381600087803b158015612e4c57600080fd5b505af1925050508015612e7d57506040513d601f19601f82011682018060405250810190612e7a9190613b6c565b60015b612ef7573d8060008114612ead576040519150601f19603f3d011682016040523d82523d6000602084013e612eb2565b606091505b50600081511415612eef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612f59906144e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612f85906144e8565b8015612fd25780601f10612fa757610100808354040283529160200191612fd2565b820191906000526020600020905b815481529060010190602001808311612fb557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613044576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6130c68282604051806020016040528060008152506130ed565b5050565b50505050565b50505050565b6000826130e385846130ff565b1490509392505050565b6130fa8383836001613174565b505050565b60008082905060005b845181101561316957600085828151811061312657613125614645565b5b60200260200101519050808311613148576131418382613542565b9250613155565b6131528184613542565b92505b5080806131619061454b565b915050613108565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156131e1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561321c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61322960008683876130ca565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133f357506133f28773ffffffffffffffffffffffffffffffffffffffff16612dc7565b5b156134b9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134686000888480600101955088612dea565b61349e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133f95782600054146134b457600080fd5b613525565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156134ba575b81600081905550505061353b60008683876130d0565b5050505050565b600082600052816020526040600020905092915050565b828054613565906144e8565b90600052602060002090601f01602090048101928261358757600085556135ce565b82601f106135a057805160ff19168380011785556135ce565b828001600101855582156135ce579182015b828111156135cd5782518255916020019190600101906135b2565b5b5090506135db9190613622565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561363b576000816000905550600101613623565b5090565b600061365261364d84614249565b614224565b90508083825260208201905082856020860282011115613675576136746146ad565b5b60005b858110156136a5578161368b8882613733565b845260208401935060208301925050600181019050613678565b5050509392505050565b60006136c26136bd84614275565b614224565b9050828152602081018484840111156136de576136dd6146b2565b5b6136e98482856144a6565b509392505050565b60006137046136ff846142a6565b614224565b9050828152602081018484840111156137205761371f6146b2565b5b61372b8482856144a6565b509392505050565b6000813590506137428161498c565b92915050565b600082601f83011261375d5761375c6146a8565b5b813561376d84826020860161363f565b91505092915050565b60008083601f84011261378c5761378b6146a8565b5b8235905067ffffffffffffffff8111156137a9576137a86146a3565b5b6020830191508360208202830111156137c5576137c46146ad565b5b9250929050565b6000813590506137db816149a3565b92915050565b6000813590506137f0816149ba565b92915050565b600081359050613805816149d1565b92915050565b60008151905061381a816149d1565b92915050565b600082601f830112613835576138346146a8565b5b81356138458482602086016136af565b91505092915050565b600082601f830112613863576138626146a8565b5b81356138738482602086016136f1565b91505092915050565b60008135905061388b816149e8565b92915050565b6000813590506138a0816149ff565b92915050565b6000602082840312156138bc576138bb6146bc565b5b60006138ca84828501613733565b91505092915050565b600080604083850312156138ea576138e96146bc565b5b60006138f885828601613733565b925050602061390985828601613733565b9150509250929050565b60008060006060848603121561392c5761392b6146bc565b5b600061393a86828701613733565b935050602061394b86828701613733565b925050604061395c86828701613891565b9150509250925092565b600080600080608085870312156139805761397f6146bc565b5b600061398e87828801613733565b945050602061399f87828801613733565b93505060406139b087828801613891565b925050606085013567ffffffffffffffff8111156139d1576139d06146b7565b5b6139dd87828801613820565b91505092959194509250565b60008060408385031215613a00576139ff6146bc565b5b6000613a0e85828601613733565b9250506020613a1f858286016137cc565b9150509250929050565b60008060408385031215613a4057613a3f6146bc565b5b6000613a4e85828601613733565b9250506020613a5f85828601613891565b9150509250929050565b600060208284031215613a7f57613a7e6146bc565b5b600082013567ffffffffffffffff811115613a9d57613a9c6146b7565b5b613aa984828501613748565b91505092915050565b600080600060408486031215613acb57613aca6146bc565b5b600084013567ffffffffffffffff811115613ae957613ae86146b7565b5b613af586828701613776565b93509350506020613b0886828701613891565b9150509250925092565b600060208284031215613b2857613b276146bc565b5b6000613b36848285016137e1565b91505092915050565b600060208284031215613b5557613b546146bc565b5b6000613b63848285016137f6565b91505092915050565b600060208284031215613b8257613b816146bc565b5b6000613b908482850161380b565b91505092915050565b600060208284031215613baf57613bae6146bc565b5b600082013567ffffffffffffffff811115613bcd57613bcc6146b7565b5b613bd98482850161384e565b91505092915050565b600060208284031215613bf857613bf76146bc565b5b6000613c068482850161387c565b91505092915050565b600060208284031215613c2557613c246146bc565b5b6000613c3384828501613891565b91505092915050565b613c4581614406565b82525050565b613c5481614406565b82525050565b613c6b613c6682614406565b614594565b82525050565b613c7a81614418565b82525050565b613c8981614418565b82525050565b6000613c9a826142d7565b613ca481856142ed565b9350613cb48185602086016144b5565b613cbd816146c1565b840191505092915050565b6000613cd3826142e2565b613cdd8185614309565b9350613ced8185602086016144b5565b613cf6816146c1565b840191505092915050565b6000613d0c826142e2565b613d16818561431a565b9350613d268185602086016144b5565b80840191505092915050565b6000613d3f601283614309565b9150613d4a826146df565b602082019050919050565b6000613d62602683614309565b9150613d6d82614708565b604082019050919050565b6000613d85601883614309565b9150613d9082614757565b602082019050919050565b6000613da8602683614309565b9150613db382614780565b604082019050919050565b6000613dcb601083614309565b9150613dd6826147cf565b602082019050919050565b6000613dee602783614309565b9150613df9826147f8565b604082019050919050565b6000613e11602083614309565b9150613e1c82614847565b602082019050919050565b6000613e34602f83614309565b9150613e3f82614870565b604082019050919050565b6000613e576000836142fe565b9150613e62826148bf565b600082019050919050565b6000613e7a602483614309565b9150613e85826148c2565b604082019050919050565b6000613e9d600d83614309565b9150613ea882614911565b602082019050919050565b6000613ec0601783614309565b9150613ecb8261493a565b602082019050919050565b6000613ee3601883614309565b9150613eee82614963565b602082019050919050565b606082016000820151613f0f6000850182613c3c565b506020820151613f226020850182613f59565b506040820151613f356040850182613c71565b50505050565b613f448161445a565b82525050565b613f5381614488565b82525050565b613f6281614492565b82525050565b6000613f748284613c5a565b60148201915081905092915050565b6000613f8f8284613d01565b915081905092915050565b6000613fa582613e4a565b9150819050919050565b6000602082019050613fc46000830184613c4b565b92915050565b6000608082019050613fdf6000830187613c4b565b613fec6020830186613c4b565b613ff96040830185613f4a565b818103606083015261400b8184613c8f565b905095945050505050565b600060208201905061402b6000830184613c80565b92915050565b6000602082019050818103600083015261404b8184613cc8565b905092915050565b6000602082019050818103600083015261406c81613d32565b9050919050565b6000602082019050818103600083015261408c81613d55565b9050919050565b600060208201905081810360008301526140ac81613d78565b9050919050565b600060208201905081810360008301526140cc81613d9b565b9050919050565b600060208201905081810360008301526140ec81613dbe565b9050919050565b6000602082019050818103600083015261410c81613de1565b9050919050565b6000602082019050818103600083015261412c81613e04565b9050919050565b6000602082019050818103600083015261414c81613e27565b9050919050565b6000602082019050818103600083015261416c81613e6d565b9050919050565b6000602082019050818103600083015261418c81613e90565b9050919050565b600060208201905081810360008301526141ac81613eb3565b9050919050565b600060208201905081810360008301526141cc81613ed6565b9050919050565b60006060820190506141e86000830184613ef9565b92915050565b60006020820190506142036000830184613f3b565b92915050565b600060208201905061421e6000830184613f4a565b92915050565b600061422e61423f565b905061423a828261451a565b919050565b6000604051905090565b600067ffffffffffffffff82111561426457614263614674565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156142905761428f614674565b5b614299826146c1565b9050602081019050919050565b600067ffffffffffffffff8211156142c1576142c0614674565b5b6142ca826146c1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061433082614488565b915061433b83614488565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143705761436f6145b8565b5b828201905092915050565b600061438682614488565b915061439183614488565b9250826143a1576143a06145e7565b5b828204905092915050565b60006143b782614488565b91506143c283614488565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143fb576143fa6145b8565b5b828202905092915050565b600061441182614468565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156144d35780820151818401526020810190506144b8565b838111156144e2576000848401525b50505050565b6000600282049050600182168061450057607f821691505b6020821081141561451457614513614616565b5b50919050565b614523826146c1565b810181811067ffffffffffffffff8211171561454257614541614674565b5b80604052505050565b600061455682614488565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614589576145886145b8565b5b600182019050919050565b600061459f826145a6565b9050919050565b60006145b1826146d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473204d617820537570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e74206d696e74206f6e2050726573616c650000000000000000600082015250565b7f536f72727920796f7520646f6e742068617665207065726d697373696f6e207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f496e7375666669656e742066756e647300000000000000000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74207468697320616d6f756e742060008201527f6174206f6e636500000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d696e7420616d6f756e742073686f756c64206265206772656174657220746860008201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f45786365656473204d6178204d696e7420616d6f756e74000000000000000000600082015250565b7f536f72727920796f752063616e74206d696e74206d6f72650000000000000000600082015250565b61499581614406565b81146149a057600080fd5b50565b6149ac81614418565b81146149b757600080fd5b50565b6149c381614424565b81146149ce57600080fd5b50565b6149da8161442e565b81146149e557600080fd5b50565b6149f18161445a565b81146149fc57600080fd5b50565b614a0881614488565b8114614a1357600080fd5b5056fea26469706673582212204ef3c6a5feed6b31080f9dbee977e13281a2f22e0428d6e3967fb183996833b664736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d646631357a6f3678737a4139614d4241445939427546794447635a53506d3342346a4c5a614b4d36397270792f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUrl (string): ipfs://Qmdf15zo6xszA9aMBADY9BuFyDGcZSPm3B4jLZaKM69rpy/hidden.json

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [2] : 697066733a2f2f516d646631357a6f3678737a4139614d424144593942754679
Arg [3] : 4447635a53506d3342346a4c5a614b4d36397270792f68696464656e2e6a736f
Arg [4] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48336:6855:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30804:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34189:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35692:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35255:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48797:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30053:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36549:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48669:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54760:428;;;:::i;:::-;;48441:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36790:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53444:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54152:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48901:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33998:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49249:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54050:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31173:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7222:103;;;;;;;;;;;;;:::i;:::-;;52608:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6571:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54585:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34358:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51556:925;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35968:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50321:1091;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37046:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48538:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48590:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54267:75;;;;;;;;;;;;;:::i;:::-;;52969:467;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52489:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53790:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48743:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51420:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53538:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48934:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48836:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53653:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36318:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53917:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54350:99;;;;;;;;;;;;;:::i;:::-;;49702:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7480:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49444:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30804:305;30906:4;30958:25;30943:40;;;:11;:40;;;;:105;;;;31015:33;31000:48;;;:11;:48;;;;30943:105;:158;;;;31065:36;31089:11;31065:23;:36::i;:::-;30943:158;30923:178;;30804:305;;;:::o;34189:100::-;34243:13;34276:5;34269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34189:100;:::o;35692:204::-;35760:7;35785:16;35793:7;35785;:16::i;:::-;35780:64;;35810:34;;;;;;;;;;;;;;35780:64;35864:15;:24;35880:7;35864:24;;;;;;;;;;;;;;;;;;;;;35857:31;;35692:204;;;:::o;35255:371::-;35328:13;35344:24;35360:7;35344:15;:24::i;:::-;35328:40;;35389:5;35383:11;;:2;:11;;;35379:48;;;35403:24;;;;;;;;;;;;;;35379:48;35460:5;35444:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35470:37;35487:5;35494:12;:10;:12::i;:::-;35470:16;:37::i;:::-;35469:38;35444:63;35440:138;;;35531:35;;;;;;;;;;;;;;35440:138;35590:28;35599:2;35603:7;35612:5;35590:8;:28::i;:::-;35317:309;35255:371;;:::o;48797:32::-;;;;:::o;30053:303::-;30097:7;30322:15;:13;:15::i;:::-;30307:12;;30291:13;;:28;:46;30284:53;;30053:303;:::o;36549:170::-;36683:28;36693:4;36699:2;36703:7;36683:9;:28::i;:::-;36549:170;;;:::o;48669:43::-;;;;;;;;;;;;;:::o;54760:428::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54819:15:::1;54837:21;54819:39;;54870:14;54903:3;54898:1;54888:7;:11;;;;:::i;:::-;54887:19;;;;:::i;:::-;54870:36;;54922:17;54967:42;54945:80;;55033:6;54945:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54921:123;;;55063:12;55055:21;;;::::0;::::1;;55090:7;55111;:5;:7::i;:::-;55103:21;;55132;55103:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55089:69;;;55177:2;55169:11;;;::::0;::::1;;54805:383;;;;54760:428::o:0;48441:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36790:185::-;36928:39;36945:4;36951:2;36955:7;36928:39;;;;;;;;;;;;:16;:39::i;:::-;36790:185;;;:::o;53444:86::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53514:8:::1;53507:4;:15;;;;53444:86:::0;:::o;54152:107::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54240:11:::1;54227:10;:24;;;;;;;;;;;;:::i;:::-;;54152:107:::0;:::o;48901:26::-;;;;;;;;;;;;;:::o;33998:124::-;34062:7;34089:20;34101:7;34089:11;:20::i;:::-;:25;;;34082:32;;33998:124;;;:::o;49249:119::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49351:9:::1;49332:16;;:28;;;;;;;;;;;;;;;;;;49249:119:::0;:::o;54050:94::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54129:7:::1;54117:9;:19;;;;54050:94:::0;:::o;31173:206::-;31237:7;31278:1;31261:19;;:5;:19;;;31257:60;;;31289:28;;;;;;;;;;;;;;31257:60;31343:12;:19;31356:5;31343:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31335:36;;31328:43;;31173:206;;;:::o;7222:103::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7287:30:::1;7314:1;7287:18;:30::i;:::-;7222:103::o:0;52608:234::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52694:9:::1;52689:146;52713:17;:24;52709:1;:28;52689:146;;;52759:10;52772:17;52790:1;52772:20;;;;;;;;:::i;:::-;;;;;;;;52759:33;;52807:16;52817:2;52821:1;52807:9;:16::i;:::-;52744:91;52739:3;;;;;:::i;:::-;;;;52689:146;;;;52608:234:::0;:::o;6571:87::-;6617:7;6644:6;;;;;;;;;;;6637:13;;6571:87;:::o;54585:167::-;54678:21;;:::i;:::-;54724:20;54736:7;54724:11;:20::i;:::-;54717:27;;54585:167;;;:::o;34358:104::-;34414:13;34447:7;34440:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34358:104;:::o;51556:925::-;51635:7;:5;:7::i;:::-;51621:21;;:10;:21;;;51617:810;;51659:23;51685:21;51695:10;51685:9;:21::i;:::-;51659:47;;51732:6;;;;;;;;;;;51731:7;51723:16;;;;;;51763;;;;;;;;;;;51762:17;51754:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;51845:1;51831:11;:15;51823:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51943:27;;;;;;;;;;;51928:42;;:11;:42;;51902:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;52117:9;;52102:11;52086:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;52060:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;52256:22;;;;;;;;;;;52221:57;;52240:11;52222:15;:29;;;;:::i;:::-;52221:57;;52195:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;52383:11;52376:4;;:18;;;;:::i;:::-;52363:9;:31;;52355:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;51644:783;51617:810;52439:34;52449:10;52461:11;52439:9;:34::i;:::-;51556:925;:::o;35968:279::-;36071:12;:10;:12::i;:::-;36059:24;;:8;:24;;;36055:54;;;36092:17;;;;;;;;;;;;;;36055:54;36167:8;36122:18;:32;36141:12;:10;:12::i;:::-;36122:32;;;;;;;;;;;;;;;:42;36155:8;36122:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36220:8;36191:48;;36206:12;:10;:12::i;:::-;36191:48;;;36230:8;36191:48;;;;;;:::i;:::-;;;;;;;;35968:279;;:::o;50321:1091::-;50578:9;;50563:11;50547:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50521:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;50692:33;50700:17;50706:10;50700:5;:17::i;:::-;50719:5;;50692:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:33::i;:::-;50662:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;50904:25;;;;;;;;;;;50831:98;;50863:11;50832:16;:28;50849:10;50832:28;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;50831:98;;50801:195;;;;;;;;;;;;:::i;:::-;;;;;;;;;51077:11;51061:13;;:27;;;;:::i;:::-;51047:9;:42;;51017:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;51236:34;51246:10;51258:11;51236:9;:34::i;:::-;51393:11;51341:16;:28;51358:10;51341:28;;;;;;;;;;;;;;;;:63;;;;:::i;:::-;51289:16;:28;51306:10;51289:28;;;;;;;;;;;;;;;:115;;;;50321:1091;;;:::o;37046:369::-;37213:28;37223:4;37229:2;37233:7;37213:9;:28::i;:::-;37256:15;:2;:13;;;:15::i;:::-;:76;;;;;37276:56;37307:4;37313:2;37317:7;37326:5;37276:30;:56::i;:::-;37275:57;37256:76;37252:156;;;37356:40;;;;;;;;;;;;;;37252:156;37046:369;;;;:::o;48538:45::-;;;;;;;;;;;;;:::o;48590:41::-;;;;;;;;;;;;;:::o;54267:75::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54328:6:::1;;;;;;;;;;;54327:7;54318:6;;:16;;;;;;;;;;;;;;;;;;54267:75::o:0;52969:467::-;53087:13;53140:16;53148:7;53140;:16::i;:::-;53118:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;53242:28;53273:10;:8;:10::i;:::-;53242:41;;53345:1;53320:14;53314:28;:32;:114;;;;;;;;;;;;;;;;;53390:14;53373:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;53314:114;53294:134;;;52969:467;;;:::o;52489:111::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52565:27:::1;52575:3;52580:11;52565:9;:27::i;:::-;52489:111:::0;;:::o;53790:119::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53894:7:::1;53869:22;;:32;;;;;;;;;;;;;;;;;;53790:119:::0;:::o;48743:31::-;;;;:::o;51420:113::-;51478:7;51505:20;51519:5;51505:13;:20::i;:::-;51498:27;;51420:113;;;:::o;53538:107::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53629:8:::1;53613:13;:24;;;;53538:107:::0;:::o;48934:36::-;;;;;;;;;;;;;:::o;48836:41::-;;;;:::o;53653:129::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53767:7:::1;53737:27;;:37;;;;;;;;;;;;;;;;;;53653:129:::0;:::o;36318:164::-;36415:4;36439:18;:25;36458:5;36439:25;;;;;;;;;;;;;;;:35;36465:8;36439:35;;;;;;;;;;;;;;;;;;;;;;;;;36432:42;;36318:164;;;;:::o;53917:125::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54027:7:::1;53999:25;;:35;;;;;;;;;;;;;;;;;;53917:125:::0;:::o;54350:99::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54425:16:::1;;;;;;;;;;;54424:17;54405:16;;:36;;;;;;;;;;;;;;;;;;54350:99::o:0;49702:101::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49790:5:::1;49774:13;:21;;;;49702:101:::0;:::o;7480:201::-;6802:12;:10;:12::i;:::-;6791:23;;:7;:5;:7::i;:::-;:23;;;6783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7589:1:::1;7569:22;;:8;:22;;;;7561:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7645:28;7664:8;7645:18;:28::i;:::-;7480:201:::0;:::o;49444:250::-;49561:16;;;;;;;;;;;49547:30;;:10;:30;;;49525:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49654:32;49664:8;49674:11;49654:9;:32::i;:::-;49444:250;;:::o;19355:157::-;19440:4;19479:25;19464:40;;;:11;:40;;;;19457:47;;19355:157;;;:::o;37670:187::-;37727:4;37770:7;37751:15;:13;:15::i;:::-;:26;;:53;;;;;37791:13;;37781:7;:23;37751:53;:98;;;;;37822:11;:20;37834:7;37822:20;;;;;;;;;;;:27;;;;;;;;;;;;37821:28;37751:98;37744:105;;37670:187;;;:::o;5295:98::-;5348:7;5375:10;5368:17;;5295:98;:::o;45281:196::-;45423:2;45396:15;:24;45412:7;45396:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45461:7;45457:2;45441:28;;45450:5;45441:28;;;;;;;;;;;;45281:196;;;:::o;29777:92::-;29833:7;29777:92;:::o;40783:2112::-;40898:35;40936:20;40948:7;40936:11;:20::i;:::-;40898:58;;40969:22;41011:13;:18;;;40995:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41046:50;41063:13;:18;;;41083:12;:10;:12::i;:::-;41046:16;:50::i;:::-;40995:101;:154;;;;41137:12;:10;:12::i;:::-;41113:36;;:20;41125:7;41113:11;:20::i;:::-;:36;;;40995:154;40969:181;;41168:17;41163:66;;41194:35;;;;;;;;;;;;;;41163:66;41266:4;41244:26;;:13;:18;;;:26;;;41240:67;;41279:28;;;;;;;;;;;;;;41240:67;41336:1;41322:16;;:2;:16;;;41318:52;;;41347:23;;;;;;;;;;;;;;41318:52;41383:43;41405:4;41411:2;41415:7;41424:1;41383:21;:43::i;:::-;41491:49;41508:1;41512:7;41521:13;:18;;;41491:8;:49::i;:::-;41866:1;41836:12;:18;41849:4;41836:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41910:1;41882:12;:16;41895:2;41882:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41956:2;41928:11;:20;41940:7;41928:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42018:15;41973:11;:20;41985:7;41973:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42286:19;42318:1;42308:7;:11;42286:33;;42379:1;42338:43;;:11;:24;42350:11;42338:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42334:445;;;42563:13;;42549:11;:27;42545:219;;;42633:13;:18;;;42601:11;:24;42613:11;42601:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42716:13;:28;;;42674:11;:24;42686:11;42674:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42545:219;42334:445;41811:979;42826:7;42822:2;42807:27;;42816:4;42807:27;;;;;;;;;;;;42845:42;42866:4;42872:2;42876:7;42885:1;42845:20;:42::i;:::-;40887:2008;;40783:2112;;;:::o;32828:1108::-;32889:21;;:::i;:::-;32923:12;32938:7;32923:22;;33006:4;32987:15;:13;:15::i;:::-;:23;;:47;;;;;33021:13;;33014:4;:20;32987:47;32983:886;;;33055:31;33089:11;:17;33101:4;33089:17;;;;;;;;;;;33055:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33130:9;:16;;;33125:729;;33201:1;33175:28;;:9;:14;;;:28;;;33171:101;;33239:9;33232:16;;;;;;33171:101;33574:261;33581:4;33574:261;;;33614:6;;;;;;;;33659:11;:17;33671:4;33659:17;;;;;;;;;;;33647:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33733:1;33707:28;;:9;:14;;;:28;;;33703:109;;33775:9;33768:16;;;;;;33703:109;33574:261;;;33125:729;33036:833;32983:886;33897:31;;;;;;;;;;;;;;32828:1108;;;;:::o;7841:191::-;7915:16;7934:6;;;;;;;;;;;7915:25;;7960:8;7951:6;;:17;;;;;;;;;;;;;;;;;;8015:8;7984:40;;8005:8;7984:40;;;;;;;;;;;;7904:128;7841:191;:::o;54457:120::-;54536:33;54546:9;54557:11;54536:9;:33::i;:::-;54457:120;;:::o;50165:126::-;50220:7;50274;50257:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;50247:36;;;;;;50240:43;;50165:126;;;:::o;49870:191::-;49978:4;50002:51;50021:5;50028:13;;50043:9;50002:18;:51::i;:::-;49995:58;;49870:191;;;;:::o;9272:326::-;9332:4;9589:1;9567:7;:19;;;:23;9560:30;;9272:326;;;:::o;45969:667::-;46132:4;46169:2;46153:36;;;46190:12;:10;:12::i;:::-;46204:4;46210:7;46219:5;46153:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46149:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46404:1;46387:6;:13;:18;46383:235;;;46433:40;;;;;;;;;;;;;;46383:235;46576:6;46570:13;46561:6;46557:2;46553:15;46546:38;46149:480;46282:45;;;46272:55;;;:6;:55;;;;46265:62;;;45969:667;;;;;;:::o;52850:111::-;52910:13;52943:10;52936:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52850:111;:::o;31461:207::-;31522:7;31563:1;31546:19;;:5;:19;;;31542:59;;;31574:27;;;;;;;;;;;;;;31542:59;31627:12;:19;31640:5;31627:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;31619:41;;31612:48;;31461:207;;;:::o;37865:104::-;37934:27;37944:2;37948:8;37934:27;;;;;;;;;;;;:9;:27::i;:::-;37865:104;;:::o;47284:159::-;;;;;:::o;48102:158::-;;;;;:::o;1026:190::-;1151:4;1204;1175:25;1188:5;1195:4;1175:12;:25::i;:::-;:33;1168:40;;1026:190;;;;;:::o;38332:163::-;38455:32;38461:2;38465:8;38475:5;38482:4;38455:5;:32::i;:::-;38332:163;;;:::o;1578:675::-;1661:7;1681:20;1704:4;1681:27;;1724:9;1719:497;1743:5;:12;1739:1;:16;1719:497;;;1777:20;1800:5;1806:1;1800:8;;;;;;;;:::i;:::-;;;;;;;;1777:31;;1843:12;1827;:28;1823:382;;1970:42;1985:12;1999;1970:14;:42::i;:::-;1955:57;;1823:382;;;2147:42;2162:12;2176;2147:14;:42::i;:::-;2132:57;;1823:382;1762:454;1757:3;;;;;:::i;:::-;;;;1719:497;;;;2233:12;2226:19;;;1578:675;;;;:::o;38754:1775::-;38893:20;38916:13;;38893:36;;38958:1;38944:16;;:2;:16;;;38940:48;;;38969:19;;;;;;;;;;;;;;38940:48;39015:1;39003:8;:13;38999:44;;;39025:18;;;;;;;;;;;;;;38999:44;39056:61;39086:1;39090:2;39094:12;39108:8;39056:21;:61::i;:::-;39429:8;39394:12;:16;39407:2;39394:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39493:8;39453:12;:16;39466:2;39453:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39552:2;39519:11;:25;39531:12;39519:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39619:15;39569:11;:25;39581:12;39569:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39652:20;39675:12;39652:35;;39702:11;39731:8;39716:12;:23;39702:37;;39760:4;:23;;;;;39768:15;:2;:13;;;:15::i;:::-;39760:23;39756:641;;;39804:314;39860:12;39856:2;39835:38;;39852:1;39835:38;;;;;;;;;;;;39901:69;39940:1;39944:2;39948:14;;;;;;39964:5;39901:30;:69::i;:::-;39896:174;;40006:40;;;;;;;;;;;;;;39896:174;40113:3;40097:12;:19;;39804:314;;40199:12;40182:13;;:29;40178:43;;40213:8;;;40178:43;39756:641;;;40262:120;40318:14;;;;;;40314:2;40293:40;;40310:1;40293:40;;;;;;;;;;;;40377:3;40361:12;:19;;40262:120;;39756:641;40427:12;40411:13;:28;;;;39369:1082;;40461:60;40490:1;40494:2;40498:12;40512:8;40461:20;:60::i;:::-;38882:1647;38754:1775;;;;:::o;2261:224::-;2329:13;2392:1;2386:4;2379:15;2421:1;2415:4;2408:15;2462:4;2456;2446:21;2437:30;;2261:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2141:568::-;2214:8;2224:6;2274:3;2267:4;2259:6;2255:17;2251:27;2241:122;;2282:79;;:::i;:::-;2241:122;2395:6;2382:20;2372:30;;2425:18;2417:6;2414:30;2411:117;;;2447:79;;:::i;:::-;2411:117;2561:4;2553:6;2549:17;2537:29;;2615:3;2607:4;2599:6;2595:17;2585:8;2581:32;2578:41;2575:128;;;2622:79;;:::i;:::-;2575:128;2141:568;;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:139::-;2900:5;2938:6;2925:20;2916:29;;2954:33;2981:5;2954:33;:::i;:::-;2854:139;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;2999:137;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3142:141;;;;:::o;3302:338::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:122;;3414:79;;:::i;:::-;3373:122;3531:6;3518:20;3556:78;3630:3;3622:6;3615:4;3607:6;3603:17;3556:78;:::i;:::-;3547:87;;3363:277;3302:338;;;;:::o;3660:340::-;3716:5;3765:3;3758:4;3750:6;3746:17;3742:27;3732:122;;3773:79;;:::i;:::-;3732:122;3890:6;3877:20;3915:79;3990:3;3982:6;3975:4;3967:6;3963:17;3915:79;:::i;:::-;3906:88;;3722:278;3660:340;;;;:::o;4006:137::-;4051:5;4089:6;4076:20;4067:29;;4105:32;4131:5;4105:32;:::i;:::-;4006:137;;;;:::o;4149:139::-;4195:5;4233:6;4220:20;4211:29;;4249:33;4276:5;4249:33;:::i;:::-;4149:139;;;;:::o;4294:329::-;4353:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:119;;;4408:79;;:::i;:::-;4370:119;4528:1;4553:53;4598:7;4589:6;4578:9;4574:22;4553:53;:::i;:::-;4543:63;;4499:117;4294:329;;;;:::o;4629:474::-;4697:6;4705;4754:2;4742:9;4733:7;4729:23;4725:32;4722:119;;;4760:79;;:::i;:::-;4722:119;4880:1;4905:53;4950:7;4941:6;4930:9;4926:22;4905:53;:::i;:::-;4895:63;;4851:117;5007:2;5033:53;5078:7;5069:6;5058:9;5054:22;5033:53;:::i;:::-;5023:63;;4978:118;4629:474;;;;;:::o;5109:619::-;5186:6;5194;5202;5251:2;5239:9;5230:7;5226:23;5222:32;5219:119;;;5257:79;;:::i;:::-;5219:119;5377:1;5402:53;5447:7;5438:6;5427:9;5423:22;5402:53;:::i;:::-;5392:63;;5348:117;5504:2;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5475:118;5632:2;5658:53;5703:7;5694:6;5683:9;5679:22;5658:53;:::i;:::-;5648:63;;5603:118;5109:619;;;;;:::o;5734:943::-;5829:6;5837;5845;5853;5902:3;5890:9;5881:7;5877:23;5873:33;5870:120;;;5909:79;;:::i;:::-;5870:120;6029:1;6054:53;6099:7;6090:6;6079:9;6075:22;6054:53;:::i;:::-;6044:63;;6000:117;6156:2;6182:53;6227:7;6218:6;6207:9;6203:22;6182:53;:::i;:::-;6172:63;;6127:118;6284:2;6310:53;6355:7;6346:6;6335:9;6331:22;6310:53;:::i;:::-;6300:63;;6255:118;6440:2;6429:9;6425:18;6412:32;6471:18;6463:6;6460:30;6457:117;;;6493:79;;:::i;:::-;6457:117;6598:62;6652:7;6643:6;6632:9;6628:22;6598:62;:::i;:::-;6588:72;;6383:287;5734:943;;;;;;;:::o;6683:468::-;6748:6;6756;6805:2;6793:9;6784:7;6780:23;6776:32;6773:119;;;6811:79;;:::i;:::-;6773:119;6931:1;6956:53;7001:7;6992:6;6981:9;6977:22;6956:53;:::i;:::-;6946:63;;6902:117;7058:2;7084:50;7126:7;7117:6;7106:9;7102:22;7084:50;:::i;:::-;7074:60;;7029:115;6683:468;;;;;:::o;7157:474::-;7225:6;7233;7282:2;7270:9;7261:7;7257:23;7253:32;7250:119;;;7288:79;;:::i;:::-;7250:119;7408:1;7433:53;7478:7;7469:6;7458:9;7454:22;7433:53;:::i;:::-;7423:63;;7379:117;7535:2;7561:53;7606:7;7597:6;7586:9;7582:22;7561:53;:::i;:::-;7551:63;;7506:118;7157:474;;;;;:::o;7637:539::-;7721:6;7770:2;7758:9;7749:7;7745:23;7741:32;7738:119;;;7776:79;;:::i;:::-;7738:119;7924:1;7913:9;7909:17;7896:31;7954:18;7946:6;7943:30;7940:117;;;7976:79;;:::i;:::-;7940:117;8081:78;8151:7;8142:6;8131:9;8127:22;8081:78;:::i;:::-;8071:88;;7867:302;7637:539;;;;:::o;8182:704::-;8277:6;8285;8293;8342:2;8330:9;8321:7;8317:23;8313:32;8310:119;;;8348:79;;:::i;:::-;8310:119;8496:1;8485:9;8481:17;8468:31;8526:18;8518:6;8515:30;8512:117;;;8548:79;;:::i;:::-;8512:117;8661:80;8733:7;8724:6;8713:9;8709:22;8661:80;:::i;:::-;8643:98;;;;8439:312;8790:2;8816:53;8861:7;8852:6;8841:9;8837:22;8816:53;:::i;:::-;8806:63;;8761:118;8182:704;;;;;:::o;8892:329::-;8951:6;9000:2;8988:9;8979:7;8975:23;8971:32;8968:119;;;9006:79;;:::i;:::-;8968:119;9126:1;9151:53;9196:7;9187:6;9176:9;9172:22;9151:53;:::i;:::-;9141:63;;9097:117;8892:329;;;;:::o;9227:327::-;9285:6;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:52;9529:7;9520:6;9509:9;9505:22;9485:52;:::i;:::-;9475:62;;9431:116;9227:327;;;;:::o;9560:349::-;9629:6;9678:2;9666:9;9657:7;9653:23;9649:32;9646:119;;;9684:79;;:::i;:::-;9646:119;9804:1;9829:63;9884:7;9875:6;9864:9;9860:22;9829:63;:::i;:::-;9819:73;;9775:127;9560:349;;;;:::o;9915:509::-;9984:6;10033:2;10021:9;10012:7;10008:23;10004:32;10001:119;;;10039:79;;:::i;:::-;10001:119;10187:1;10176:9;10172:17;10159:31;10217:18;10209:6;10206:30;10203:117;;;10239:79;;:::i;:::-;10203:117;10344:63;10399:7;10390:6;10379:9;10375:22;10344:63;:::i;:::-;10334:73;;10130:287;9915:509;;;;:::o;10430:327::-;10488:6;10537:2;10525:9;10516:7;10512:23;10508:32;10505:119;;;10543:79;;:::i;:::-;10505:119;10663:1;10688:52;10732:7;10723:6;10712:9;10708:22;10688:52;:::i;:::-;10678:62;;10634:116;10430:327;;;;:::o;10763:329::-;10822:6;10871:2;10859:9;10850:7;10846:23;10842:32;10839:119;;;10877:79;;:::i;:::-;10839:119;10997:1;11022:53;11067:7;11058:6;11047:9;11043:22;11022:53;:::i;:::-;11012:63;;10968:117;10763:329;;;;:::o;11098:108::-;11175:24;11193:5;11175:24;:::i;:::-;11170:3;11163:37;11098:108;;:::o;11212:118::-;11299:24;11317:5;11299:24;:::i;:::-;11294:3;11287:37;11212:118;;:::o;11336:157::-;11441:45;11461:24;11479:5;11461:24;:::i;:::-;11441:45;:::i;:::-;11436:3;11429:58;11336:157;;:::o;11499:99::-;11570:21;11585:5;11570:21;:::i;:::-;11565:3;11558:34;11499:99;;:::o;11604:109::-;11685:21;11700:5;11685:21;:::i;:::-;11680:3;11673:34;11604:109;;:::o;11719:360::-;11805:3;11833:38;11865:5;11833:38;:::i;:::-;11887:70;11950:6;11945:3;11887:70;:::i;:::-;11880:77;;11966:52;12011:6;12006:3;11999:4;11992:5;11988:16;11966:52;:::i;:::-;12043:29;12065:6;12043:29;:::i;:::-;12038:3;12034:39;12027:46;;11809:270;11719:360;;;;:::o;12085:364::-;12173:3;12201:39;12234:5;12201:39;:::i;:::-;12256:71;12320:6;12315:3;12256:71;:::i;:::-;12249:78;;12336:52;12381:6;12376:3;12369:4;12362:5;12358:16;12336:52;:::i;:::-;12413:29;12435:6;12413:29;:::i;:::-;12408:3;12404:39;12397:46;;12177:272;12085:364;;;;:::o;12455:377::-;12561:3;12589:39;12622:5;12589:39;:::i;:::-;12644:89;12726:6;12721:3;12644:89;:::i;:::-;12637:96;;12742:52;12787:6;12782:3;12775:4;12768:5;12764:16;12742:52;:::i;:::-;12819:6;12814:3;12810:16;12803:23;;12565:267;12455:377;;;;:::o;12838:366::-;12980:3;13001:67;13065:2;13060:3;13001:67;:::i;:::-;12994:74;;13077:93;13166:3;13077:93;:::i;:::-;13195:2;13190:3;13186:12;13179:19;;12838:366;;;:::o;13210:::-;13352:3;13373:67;13437:2;13432:3;13373:67;:::i;:::-;13366:74;;13449:93;13538:3;13449:93;:::i;:::-;13567:2;13562:3;13558:12;13551:19;;13210:366;;;:::o;13582:::-;13724:3;13745:67;13809:2;13804:3;13745:67;:::i;:::-;13738:74;;13821:93;13910:3;13821:93;:::i;:::-;13939:2;13934:3;13930:12;13923:19;;13582:366;;;:::o;13954:::-;14096:3;14117:67;14181:2;14176:3;14117:67;:::i;:::-;14110:74;;14193:93;14282:3;14193:93;:::i;:::-;14311:2;14306:3;14302:12;14295:19;;13954:366;;;:::o;14326:::-;14468:3;14489:67;14553:2;14548:3;14489:67;:::i;:::-;14482:74;;14565:93;14654:3;14565:93;:::i;:::-;14683:2;14678:3;14674:12;14667:19;;14326:366;;;:::o;14698:::-;14840:3;14861:67;14925:2;14920:3;14861:67;:::i;:::-;14854:74;;14937:93;15026:3;14937:93;:::i;:::-;15055:2;15050:3;15046:12;15039:19;;14698:366;;;:::o;15070:::-;15212:3;15233:67;15297:2;15292:3;15233:67;:::i;:::-;15226:74;;15309:93;15398:3;15309:93;:::i;:::-;15427:2;15422:3;15418:12;15411:19;;15070:366;;;:::o;15442:::-;15584:3;15605:67;15669:2;15664:3;15605:67;:::i;:::-;15598:74;;15681:93;15770:3;15681:93;:::i;:::-;15799:2;15794:3;15790:12;15783:19;;15442:366;;;:::o;15814:398::-;15973:3;15994:83;16075:1;16070:3;15994:83;:::i;:::-;15987:90;;16086:93;16175:3;16086:93;:::i;:::-;16204:1;16199:3;16195:11;16188:18;;15814:398;;;:::o;16218:366::-;16360:3;16381:67;16445:2;16440:3;16381:67;:::i;:::-;16374:74;;16457:93;16546:3;16457:93;:::i;:::-;16575:2;16570:3;16566:12;16559:19;;16218:366;;;:::o;16590:::-;16732:3;16753:67;16817:2;16812:3;16753:67;:::i;:::-;16746:74;;16829:93;16918:3;16829:93;:::i;:::-;16947:2;16942:3;16938:12;16931:19;;16590:366;;;:::o;16962:::-;17104:3;17125:67;17189:2;17184:3;17125:67;:::i;:::-;17118:74;;17201:93;17290:3;17201:93;:::i;:::-;17319:2;17314:3;17310:12;17303:19;;16962:366;;;:::o;17334:::-;17476:3;17497:67;17561:2;17556:3;17497:67;:::i;:::-;17490:74;;17573:93;17662:3;17573:93;:::i;:::-;17691:2;17686:3;17682:12;17675:19;;17334:366;;;:::o;17776:697::-;17935:4;17930:3;17926:14;18022:4;18015:5;18011:16;18005:23;18041:63;18098:4;18093:3;18089:14;18075:12;18041:63;:::i;:::-;17950:164;18206:4;18199:5;18195:16;18189:23;18225:61;18280:4;18275:3;18271:14;18257:12;18225:61;:::i;:::-;18124:172;18380:4;18373:5;18369:16;18363:23;18399:57;18450:4;18445:3;18441:14;18427:12;18399:57;:::i;:::-;18306:160;17904:569;17776:697;;:::o;18479:115::-;18564:23;18581:5;18564:23;:::i;:::-;18559:3;18552:36;18479:115;;:::o;18600:118::-;18687:24;18705:5;18687:24;:::i;:::-;18682:3;18675:37;18600:118;;:::o;18724:105::-;18799:23;18816:5;18799:23;:::i;:::-;18794:3;18787:36;18724:105;;:::o;18835:256::-;18947:3;18962:75;19033:3;19024:6;18962:75;:::i;:::-;19062:2;19057:3;19053:12;19046:19;;19082:3;19075:10;;18835:256;;;;:::o;19097:275::-;19229:3;19251:95;19342:3;19333:6;19251:95;:::i;:::-;19244:102;;19363:3;19356:10;;19097:275;;;;:::o;19378:379::-;19562:3;19584:147;19727:3;19584:147;:::i;:::-;19577:154;;19748:3;19741:10;;19378:379;;;:::o;19763:222::-;19856:4;19894:2;19883:9;19879:18;19871:26;;19907:71;19975:1;19964:9;19960:17;19951:6;19907:71;:::i;:::-;19763:222;;;;:::o;19991:640::-;20186:4;20224:3;20213:9;20209:19;20201:27;;20238:71;20306:1;20295:9;20291:17;20282:6;20238:71;:::i;:::-;20319:72;20387:2;20376:9;20372:18;20363:6;20319:72;:::i;:::-;20401;20469:2;20458:9;20454:18;20445:6;20401:72;:::i;:::-;20520:9;20514:4;20510:20;20505:2;20494:9;20490:18;20483:48;20548:76;20619:4;20610:6;20548:76;:::i;:::-;20540:84;;19991:640;;;;;;;:::o;20637:210::-;20724:4;20762:2;20751:9;20747:18;20739:26;;20775:65;20837:1;20826:9;20822:17;20813:6;20775:65;:::i;:::-;20637:210;;;;:::o;20853:313::-;20966:4;21004:2;20993:9;20989:18;20981:26;;21053:9;21047:4;21043:20;21039:1;21028:9;21024:17;21017:47;21081:78;21154:4;21145:6;21081:78;:::i;:::-;21073:86;;20853:313;;;;:::o;21172:419::-;21338:4;21376:2;21365:9;21361:18;21353:26;;21425:9;21419:4;21415:20;21411:1;21400:9;21396:17;21389:47;21453:131;21579:4;21453:131;:::i;:::-;21445:139;;21172:419;;;:::o;21597:::-;21763:4;21801:2;21790:9;21786:18;21778:26;;21850:9;21844:4;21840:20;21836:1;21825:9;21821:17;21814:47;21878:131;22004:4;21878:131;:::i;:::-;21870:139;;21597:419;;;:::o;22022:::-;22188:4;22226:2;22215:9;22211:18;22203:26;;22275:9;22269:4;22265:20;22261:1;22250:9;22246:17;22239:47;22303:131;22429:4;22303:131;:::i;:::-;22295:139;;22022:419;;;:::o;22447:::-;22613:4;22651:2;22640:9;22636:18;22628:26;;22700:9;22694:4;22690:20;22686:1;22675:9;22671:17;22664:47;22728:131;22854:4;22728:131;:::i;:::-;22720:139;;22447:419;;;:::o;22872:::-;23038:4;23076:2;23065:9;23061:18;23053:26;;23125:9;23119:4;23115:20;23111:1;23100:9;23096:17;23089:47;23153:131;23279:4;23153:131;:::i;:::-;23145:139;;22872:419;;;:::o;23297:::-;23463:4;23501:2;23490:9;23486:18;23478:26;;23550:9;23544:4;23540:20;23536:1;23525:9;23521:17;23514:47;23578:131;23704:4;23578:131;:::i;:::-;23570:139;;23297:419;;;:::o;23722:::-;23888:4;23926:2;23915:9;23911:18;23903:26;;23975:9;23969:4;23965:20;23961:1;23950:9;23946:17;23939:47;24003:131;24129:4;24003:131;:::i;:::-;23995:139;;23722:419;;;:::o;24147:::-;24313:4;24351:2;24340:9;24336:18;24328:26;;24400:9;24394:4;24390:20;24386:1;24375:9;24371:17;24364:47;24428:131;24554:4;24428:131;:::i;:::-;24420:139;;24147:419;;;:::o;24572:::-;24738:4;24776:2;24765:9;24761:18;24753:26;;24825:9;24819:4;24815:20;24811:1;24800:9;24796:17;24789:47;24853:131;24979:4;24853:131;:::i;:::-;24845:139;;24572:419;;;:::o;24997:::-;25163:4;25201:2;25190:9;25186:18;25178:26;;25250:9;25244:4;25240:20;25236:1;25225:9;25221:17;25214:47;25278:131;25404:4;25278:131;:::i;:::-;25270:139;;24997:419;;;:::o;25422:::-;25588:4;25626:2;25615:9;25611:18;25603:26;;25675:9;25669:4;25665:20;25661:1;25650:9;25646:17;25639:47;25703:131;25829:4;25703:131;:::i;:::-;25695:139;;25422:419;;;:::o;25847:::-;26013:4;26051:2;26040:9;26036:18;26028:26;;26100:9;26094:4;26090:20;26086:1;26075:9;26071:17;26064:47;26128:131;26254:4;26128:131;:::i;:::-;26120:139;;25847:419;;;:::o;26272:346::-;26427:4;26465:2;26454:9;26450:18;26442:26;;26478:133;26608:1;26597:9;26593:17;26584:6;26478:133;:::i;:::-;26272:346;;;;:::o;26624:218::-;26715:4;26753:2;26742:9;26738:18;26730:26;;26766:69;26832:1;26821:9;26817:17;26808:6;26766:69;:::i;:::-;26624:218;;;;:::o;26848:222::-;26941:4;26979:2;26968:9;26964:18;26956:26;;26992:71;27060:1;27049:9;27045:17;27036:6;26992:71;:::i;:::-;26848:222;;;;:::o;27076:129::-;27110:6;27137:20;;:::i;:::-;27127:30;;27166:33;27194:4;27186:6;27166:33;:::i;:::-;27076:129;;;:::o;27211:75::-;27244:6;27277:2;27271:9;27261:19;;27211:75;:::o;27292:311::-;27369:4;27459:18;27451:6;27448:30;27445:56;;;27481:18;;:::i;:::-;27445:56;27531:4;27523:6;27519:17;27511:25;;27591:4;27585;27581:15;27573:23;;27292:311;;;:::o;27609:307::-;27670:4;27760:18;27752:6;27749:30;27746:56;;;27782:18;;:::i;:::-;27746:56;27820:29;27842:6;27820:29;:::i;:::-;27812:37;;27904:4;27898;27894:15;27886:23;;27609:307;;;:::o;27922:308::-;27984:4;28074:18;28066:6;28063:30;28060:56;;;28096:18;;:::i;:::-;28060:56;28134:29;28156:6;28134:29;:::i;:::-;28126:37;;28218:4;28212;28208:15;28200:23;;27922:308;;;:::o;28236:98::-;28287:6;28321:5;28315:12;28305:22;;28236:98;;;:::o;28340:99::-;28392:6;28426:5;28420:12;28410:22;;28340:99;;;:::o;28445:168::-;28528:11;28562:6;28557:3;28550:19;28602:4;28597:3;28593:14;28578:29;;28445:168;;;;:::o;28619:147::-;28720:11;28757:3;28742:18;;28619:147;;;;:::o;28772:169::-;28856:11;28890:6;28885:3;28878:19;28930:4;28925:3;28921:14;28906:29;;28772:169;;;;:::o;28947:148::-;29049:11;29086:3;29071:18;;28947:148;;;;:::o;29101:305::-;29141:3;29160:20;29178:1;29160:20;:::i;:::-;29155:25;;29194:20;29212:1;29194:20;:::i;:::-;29189:25;;29348:1;29280:66;29276:74;29273:1;29270:81;29267:107;;;29354:18;;:::i;:::-;29267:107;29398:1;29395;29391:9;29384:16;;29101:305;;;;:::o;29412:185::-;29452:1;29469:20;29487:1;29469:20;:::i;:::-;29464:25;;29503:20;29521:1;29503:20;:::i;:::-;29498:25;;29542:1;29532:35;;29547:18;;:::i;:::-;29532:35;29589:1;29586;29582:9;29577:14;;29412:185;;;;:::o;29603:348::-;29643:7;29666:20;29684:1;29666:20;:::i;:::-;29661:25;;29700:20;29718:1;29700:20;:::i;:::-;29695:25;;29888:1;29820:66;29816:74;29813:1;29810:81;29805:1;29798:9;29791:17;29787:105;29784:131;;;29895:18;;:::i;:::-;29784:131;29943:1;29940;29936:9;29925:20;;29603:348;;;;:::o;29957:96::-;29994:7;30023:24;30041:5;30023:24;:::i;:::-;30012:35;;29957:96;;;:::o;30059:90::-;30093:7;30136:5;30129:13;30122:21;30111:32;;30059:90;;;:::o;30155:77::-;30192:7;30221:5;30210:16;;30155:77;;;:::o;30238:149::-;30274:7;30314:66;30307:5;30303:78;30292:89;;30238:149;;;:::o;30393:89::-;30429:7;30469:6;30462:5;30458:18;30447:29;;30393:89;;;:::o;30488:126::-;30525:7;30565:42;30558:5;30554:54;30543:65;;30488:126;;;:::o;30620:77::-;30657:7;30686:5;30675:16;;30620:77;;;:::o;30703:101::-;30739:7;30779:18;30772:5;30768:30;30757:41;;30703:101;;;:::o;30810:154::-;30894:6;30889:3;30884;30871:30;30956:1;30947:6;30942:3;30938:16;30931:27;30810:154;;;:::o;30970:307::-;31038:1;31048:113;31062:6;31059:1;31056:13;31048:113;;;31147:1;31142:3;31138:11;31132:18;31128:1;31123:3;31119:11;31112:39;31084:2;31081:1;31077:10;31072:15;;31048:113;;;31179:6;31176:1;31173:13;31170:101;;;31259:1;31250:6;31245:3;31241:16;31234:27;31170:101;31019:258;30970:307;;;:::o;31283:320::-;31327:6;31364:1;31358:4;31354:12;31344:22;;31411:1;31405:4;31401:12;31432:18;31422:81;;31488:4;31480:6;31476:17;31466:27;;31422:81;31550:2;31542:6;31539:14;31519:18;31516:38;31513:84;;;31569:18;;:::i;:::-;31513:84;31334:269;31283:320;;;:::o;31609:281::-;31692:27;31714:4;31692:27;:::i;:::-;31684:6;31680:40;31822:6;31810:10;31807:22;31786:18;31774:10;31771:34;31768:62;31765:88;;;31833:18;;:::i;:::-;31765:88;31873:10;31869:2;31862:22;31652:238;31609:281;;:::o;31896:233::-;31935:3;31958:24;31976:5;31958:24;:::i;:::-;31949:33;;32004:66;31997:5;31994:77;31991:103;;;32074:18;;:::i;:::-;31991:103;32121:1;32114:5;32110:13;32103:20;;31896:233;;;:::o;32135:100::-;32174:7;32203:26;32223:5;32203:26;:::i;:::-;32192:37;;32135:100;;;:::o;32241:94::-;32280:7;32309:20;32323:5;32309:20;:::i;:::-;32298:31;;32241:94;;;:::o;32341:180::-;32389:77;32386:1;32379:88;32486:4;32483:1;32476:15;32510:4;32507:1;32500:15;32527:180;32575:77;32572:1;32565:88;32672:4;32669:1;32662:15;32696:4;32693:1;32686:15;32713:180;32761:77;32758:1;32751:88;32858:4;32855:1;32848:15;32882:4;32879:1;32872:15;32899:180;32947:77;32944:1;32937:88;33044:4;33041:1;33034:15;33068:4;33065:1;33058:15;33085:180;33133:77;33130:1;33123:88;33230:4;33227:1;33220:15;33254:4;33251:1;33244:15;33271:117;33380:1;33377;33370:12;33394:117;33503:1;33500;33493:12;33517:117;33626:1;33623;33616:12;33640:117;33749:1;33746;33739:12;33763:117;33872:1;33869;33862:12;33886:117;33995:1;33992;33985:12;34009:102;34050:6;34101:2;34097:7;34092:2;34085:5;34081:14;34077:28;34067:38;;34009:102;;;:::o;34117:94::-;34150:8;34198:5;34194:2;34190:14;34169:35;;34117:94;;;:::o;34217:168::-;34357:20;34353:1;34345:6;34341:14;34334:44;34217:168;:::o;34391:225::-;34531:34;34527:1;34519:6;34515:14;34508:58;34600:8;34595:2;34587:6;34583:15;34576:33;34391:225;:::o;34622:174::-;34762:26;34758:1;34750:6;34746:14;34739:50;34622:174;:::o;34802:225::-;34942:34;34938:1;34930:6;34926:14;34919:58;35011:8;35006:2;34998:6;34994:15;34987:33;34802:225;:::o;35033:166::-;35173:18;35169:1;35161:6;35157:14;35150:42;35033:166;:::o;35205:226::-;35345:34;35341:1;35333:6;35329:14;35322:58;35414:9;35409:2;35401:6;35397:15;35390:34;35205:226;:::o;35437:182::-;35577:34;35573:1;35565:6;35561:14;35554:58;35437:182;:::o;35625:234::-;35765:34;35761:1;35753:6;35749:14;35742:58;35834:17;35829:2;35821:6;35817:15;35810:42;35625:234;:::o;35865:114::-;;:::o;35985:223::-;36125:34;36121:1;36113:6;36109:14;36102:58;36194:6;36189:2;36181:6;36177:15;36170:31;35985:223;:::o;36214:163::-;36354:15;36350:1;36342:6;36338:14;36331:39;36214:163;:::o;36383:173::-;36523:25;36519:1;36511:6;36507:14;36500:49;36383:173;:::o;36562:174::-;36702:26;36698:1;36690:6;36686:14;36679:50;36562:174;:::o;36742:122::-;36815:24;36833:5;36815:24;:::i;:::-;36808:5;36805:35;36795:63;;36854:1;36851;36844:12;36795:63;36742:122;:::o;36870:116::-;36940:21;36955:5;36940:21;:::i;:::-;36933:5;36930:32;36920:60;;36976:1;36973;36966:12;36920:60;36870:116;:::o;36992:122::-;37065:24;37083:5;37065:24;:::i;:::-;37058:5;37055:35;37045:63;;37104:1;37101;37094:12;37045:63;36992:122;:::o;37120:120::-;37192:23;37209:5;37192:23;:::i;:::-;37185:5;37182:34;37172:62;;37230:1;37227;37220:12;37172:62;37120:120;:::o;37246:::-;37318:23;37335:5;37318:23;:::i;:::-;37311:5;37308:34;37298:62;;37356:1;37353;37346:12;37298:62;37246:120;:::o;37372:122::-;37445:24;37463:5;37445:24;:::i;:::-;37438:5;37435:35;37425:63;;37484:1;37481;37474:12;37425:63;37372:122;:::o

Swarm Source

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