ETH Price: $2,647.62 (+0.81%)

Token

Aceminers (ACE)
 

Overview

Max Total Supply

500 ACE

Holders

216

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ACE
0x9beeb0c873b3096d1a689fd9af3b2762dd5cdce8
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:
AceMiners

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: contracts/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}
// 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/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 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) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr && 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 virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/AceMiners.sol



pragma solidity >=0.7.0 <0.9.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);
    }
}

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

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public costWL = 0.26 ether;
    uint256 public costEarlyAccess = 0.32 ether;
    uint256 public cost = 0.36 ether;
    uint256 public maxSupply = 500;
    uint256 public maxMintAmountWL = 2;
    uint256 public maxMintAmountEarlyAccess = 2;
    uint256 public maxMintAmountPublic = 10;
    uint256 public nftPerAddressLimitWL = 7;

    bool public revealed = false;
    mapping(address => uint256) public addressMintedBalanceWL;
    mapping(address => uint256) public addressMintedBalanceEarlyAccess;
    mapping(address => uint256) public addressMintedBalance;

    uint256 public currentState = 0;

    mapping(address => bool) public whitelistedAddresses;

    bytes32 public merkleRootWhitelist =
        0xc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df;

    bytes32 public merkleRootEarlyAccess =
        0xc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df;

    constructor() ERC721A("Aceminers", "ACE") {}

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

    function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        if (msg.sender != owner()) {
            require(currentState > 0, "the contract is paused");
            if (currentState == 1) {
                uint256 ownerMintedCount = addressMintedBalanceWL[msg.sender];
                require(
                    isWhitelisted(msg.sender, _merkleProof),
                    "user is not whitelisted"
                );
                require(
                    _mintAmount <= maxMintAmountWL,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountWL,
                    "max NFT per address exceeded"
                );
                require(
                    msg.value >= costWL * _mintAmount,
                    "insufficient funds"
                );
            } else if (currentState == 2) {
                uint256 ownerMintedCount = addressMintedBalanceEarlyAccess[msg.sender];
                require(
                    isEarlyAccess(msg.sender, _merkleProof),
                    "user is not whitelisted"
                );
                require(
                    _mintAmount <= maxMintAmountEarlyAccess,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountEarlyAccess,
                    "max NFT per address exceeded"
                );
                require(
                    msg.value >= costEarlyAccess * _mintAmount,
                    "insufficient funds"
                );
            } else if (currentState == 3) {
                uint256 ownerMintedCount = addressMintedBalance[msg.sender];
                require(
                    _mintAmount <= maxMintAmountPublic,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountPublic,
                    "max NFT per address exceeded"
                );
                require(msg.value >= cost * _mintAmount, "insufficient funds");
            }
        }

        _safeMint(msg.sender, _mintAmount);
        if (currentState == 1) {
            addressMintedBalanceWL[msg.sender] += _mintAmount;
        } else if (currentState == 2) {
            addressMintedBalanceEarlyAccess[msg.sender] += _mintAmount;
        } else if (currentState == 3) {
            addressMintedBalance[msg.sender] += _mintAmount;
        }
    }

    function isWhitelisted(address _user, bytes32[] calldata _merkleProof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(_merkleProof, merkleRootWhitelist, leaf);
    }

    function isEarlyAccess(address _user, bytes32[] calldata _merkleProof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(_merkleProof, merkleRootEarlyAccess, leaf);
    }

    function mintableAmountForUser(address _user) public view returns (uint256) {
        if (currentState == 1) {
            return maxMintAmountWL - addressMintedBalanceWL[_user];
        } else if (currentState == 2) {
            return maxMintAmountEarlyAccess - addressMintedBalanceEarlyAccess[_user];
        } else if (currentState == 3) {
            return maxMintAmountPublic - addressMintedBalance[_user];
        }
        return 0;
    }

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

        if (revealed == false) {
            return notRevealedUri;
        }

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

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNftPerAddressLimitWL(uint256 _limit) public onlyOwner {
        nftPerAddressLimitWL = _limit;
    }

    function setmaxMintAmountPublic(uint256 _newmaxMintAmount)
        public
        onlyOwner
    {
        maxMintAmountPublic = _newmaxMintAmount;
    }

    function setmaxMintAmountWL(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountWL = _newmaxMintAmount;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function pause() public onlyOwner {
        currentState = 0;
    }

    function setOnlyWhitelisted() public onlyOwner {
        currentState = 1;
    }

    function setOnlyEarlyAccess() public onlyOwner {
        currentState = 2;
    }

    function setPublic() public onlyOwner {
        currentState = 3;
    }

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRootWhitelist = _merkleRoot;
    }

    function setEarlyAccessMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRootEarlyAccess = _merkleRoot;
    }

    function setPublicCost(uint256 _price) public onlyOwner {
        cost = _price;
    }

    function setWLCost(uint256 _price) public onlyOwner {
        costWL = _price;
    }

    function setEarlyAccessCost(uint256 _price) public onlyOwner {
        costEarlyAccess = _price;
    }

    function withdraw() public payable onlyOwner {
        // This will payout the owner the contract balance.
        // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
        // =============================================================================
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceEarlyAccess","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costEarlyAccess","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isEarlyAccess","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountEarlyAccess","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootEarlyAccess","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWhitelist","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"mintableAmountForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setEarlyAccessCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setEarlyAccessMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyEarlyAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000051929190620002bb565b5067039bb49f599a0000600c55670470de4df8200000600d556704fefa17b7240000600e556101f4600f5560026010556002601155600a60125560076013556000601460006101000a81548160ff02191690831515021790555060006018557fc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df60001b601a557fc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df60001b601b553480156200010b57600080fd5b506040518060400160405280600981526020017f4163656d696e65727300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4143450000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000190929190620002bb565b508060039080519060200190620001a9929190620002bb565b50620001ba620001e860201b60201c565b6000819055505050620001e2620001d6620001ed60201b60201c565b620001f560201b60201c565b620003d0565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c9906200036b565b90600052602060002090601f016020900481019282620002ed576000855562000339565b82601f106200030857805160ff191683800117855562000339565b8280016001018555821562000339579182015b82811115620003385782518255916020019190600101906200031b565b5b5090506200034891906200034c565b5090565b5b80821115620003675760008160009055506001016200034d565b5090565b600060028204905060018216806200038457607f821691505b602082108114156200039b576200039a620003a1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61518b80620003e06000396000f3fe6080604052600436106103755760003560e01c80635d823b8d116101d1578063a475b5dd11610102578063c87b56dd116100a0578063da3ef23f1161006f578063da3ef23f14610c75578063e985e9c514610c9e578063f2c4ce1e14610cdb578063f2fde38b14610d0457610375565b8063c87b56dd14610bbb578063d1d1921314610bf8578063d3d704cf14610c21578063d5abeb0114610c4a57610375565b8063ba41b0c6116100dc578063ba41b0c614610b20578063bd32fb6614610b3c578063c3ceedbd14610b65578063c668286214610b9057610375565b8063a475b5dd14610ac9578063b6d0e3a914610ae0578063b88d4fde14610af757610375565b8063811d24371161016f5780638da5cb5b116101495780638da5cb5b14610a1f5780638e1f9cfe14610a4a57806395d89b4114610a75578063a22cb46514610aa057610375565b8063811d2437146109b45780638456cb59146109dd578063872d10ea146109f457610375565b80636eddb9e3116101ab5780636eddb9e31461092057806370a0823114610949578063715018a61461098657806377e563571461099d57610375565b80635d823b8d1461088d5780636352211e146108b85780636c0360eb146108f557610375565b806318cae269116102ab5780633c59b86a11610249578063518302271161022357806351830227146107d357806355f804b3146107fe5780635a23dd99146108275780635abeb2a31461086457610375565b80633c59b86a146107775780633ccfd60b146107a057806342842e0e146107aa57610375565b8063231878d111610285578063231878d1146106d157806323b872dd146106fa578063295e4c331461072357806337546c671461073a57610375565b806318cae2691461062c5780631c8086c7146106695780631da479821461069457610375565b8063081c8c441161031857806313093b1d116102f257806313093b1d1461058057806313faede6146105ab57806317f7bece146105d657806318160ddd1461060157610375565b8063081c8c4414610501578063095ea7b31461052c5780630c3f6acf1461055557610375565b806306c933d81161035457806306c933d81461041f57806306fdde031461045c57806307656e3314610487578063081812fc146104c457610375565b8062d3cee91461037a57806301ffc9a7146103b757806306afd592146103f4575b600080fd5b34801561038657600080fd5b506103a1600480360381019061039c91906140ae565b610d2d565b6040516103ae91906149c7565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d991906142fe565b610d45565b6040516103eb919061482f565b60405180910390f35b34801561040057600080fd5b50610409610e27565b60405161041691906149c7565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906140ae565b610e2d565b604051610453919061482f565b60405180910390f35b34801561046857600080fd5b50610471610e4d565b60405161047e9190614865565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906140ae565b610edf565b6040516104bb91906149c7565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906143a1565b611008565b6040516104f891906147c8565b60405180910390f35b34801561050d57600080fd5b50610516611084565b6040516105239190614865565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190614291565b611112565b005b34801561056157600080fd5b5061056a61121d565b60405161057791906149c7565b60405180910390f35b34801561058c57600080fd5b50610595611223565b6040516105a291906149c7565b60405180910390f35b3480156105b757600080fd5b506105c0611229565b6040516105cd91906149c7565b60405180910390f35b3480156105e257600080fd5b506105eb61122f565b6040516105f891906149c7565b60405180910390f35b34801561060d57600080fd5b50610616611235565b60405161062391906149c7565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e91906140ae565b61124c565b60405161066091906149c7565b60405180910390f35b34801561067557600080fd5b5061067e611264565b60405161068b919061484a565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b691906141f1565b61126a565b6040516106c8919061482f565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906143a1565b6112ee565b005b34801561070657600080fd5b50610721600480360381019061071c919061411b565b611374565b005b34801561072f57600080fd5b50610738611384565b005b34801561074657600080fd5b50610761600480360381019061075c91906140ae565b61140a565b60405161076e91906149c7565b60405180910390f35b34801561078357600080fd5b5061079e600480360381019061079991906143a1565b611422565b005b6107a86114a8565b005b3480156107b657600080fd5b506107d160048036038101906107cc919061411b565b6115a4565b005b3480156107df57600080fd5b506107e86115c4565b6040516107f5919061482f565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190614358565b6115d7565b005b34801561083357600080fd5b5061084e600480360381019061084991906141f1565b61166d565b60405161085b919061482f565b60405180910390f35b34801561087057600080fd5b5061088b600480360381019061088691906143a1565b6116f1565b005b34801561089957600080fd5b506108a2611777565b6040516108af91906149c7565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da91906143a1565b61177d565b6040516108ec91906147c8565b60405180910390f35b34801561090157600080fd5b5061090a611793565b6040516109179190614865565b60405180910390f35b34801561092c57600080fd5b50610947600480360381019061094291906143a1565b611821565b005b34801561095557600080fd5b50610970600480360381019061096b91906140ae565b6118a7565b60405161097d91906149c7565b60405180910390f35b34801561099257600080fd5b5061099b611977565b005b3480156109a957600080fd5b506109b26119ff565b005b3480156109c057600080fd5b506109db60048036038101906109d691906143a1565b611a85565b005b3480156109e957600080fd5b506109f2611b0b565b005b348015610a0057600080fd5b50610a09611b91565b604051610a1691906149c7565b60405180910390f35b348015610a2b57600080fd5b50610a34611b97565b604051610a4191906147c8565b60405180910390f35b348015610a5657600080fd5b50610a5f611bc1565b604051610a6c919061484a565b60405180910390f35b348015610a8157600080fd5b50610a8a611bc7565b604051610a979190614865565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac29190614251565b611c59565b005b348015610ad557600080fd5b50610ade611dd1565b005b348015610aec57600080fd5b50610af5611e6a565b005b348015610b0357600080fd5b50610b1e6004803603810190610b19919061416e565b611ef0565b005b610b3a6004803603810190610b3591906143ce565b611f6c565b005b348015610b4857600080fd5b50610b636004803603810190610b5e91906142d1565b61260b565b005b348015610b7157600080fd5b50610b7a612691565b604051610b8791906149c7565b60405180910390f35b348015610b9c57600080fd5b50610ba5612697565b604051610bb29190614865565b60405180910390f35b348015610bc757600080fd5b50610be26004803603810190610bdd91906143a1565b612725565b604051610bef9190614865565b60405180910390f35b348015610c0457600080fd5b50610c1f6004803603810190610c1a91906143a1565b61287e565b005b348015610c2d57600080fd5b50610c486004803603810190610c4391906142d1565b612904565b005b348015610c5657600080fd5b50610c5f61298a565b604051610c6c91906149c7565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c979190614358565b612990565b005b348015610caa57600080fd5b50610cc56004803603810190610cc091906140db565b612a26565b604051610cd2919061482f565b60405180910390f35b348015610ce757600080fd5b50610d026004803603810190610cfd9190614358565b612aba565b005b348015610d1057600080fd5b50610d2b6004803603810190610d2691906140ae565b612b50565b005b60166020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e205750610e1f82612c48565b5b9050919050565b600c5481565b60196020528060005260406000206000915054906101000a900460ff1681565b606060028054610e5c90614ca1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8890614ca1565b8015610ed55780601f10610eaa57610100808354040283529160200191610ed5565b820191906000526020600020905b815481529060010190602001808311610eb857829003601f168201915b5050505050905090565b600060016018541415610f4057601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601054610f399190614bad565b9050611003565b60026018541415610f9f57601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154610f989190614bad565b9050611003565b60036018541415610ffe57601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601254610ff79190614bad565b9050611003565b600090505b919050565b600061101382612cb2565b611049576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b805461109190614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546110bd90614ca1565b801561110a5780601f106110df5761010080835404028352916020019161110a565b820191906000526020600020905b8154815290600101906020018083116110ed57829003601f168201915b505050505081565b600061111d8261177d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611185576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111a4612d00565b73ffffffffffffffffffffffffffffffffffffffff16141580156111d657506111d4816111cf612d00565b612a26565b155b1561120d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611218838383612d08565b505050565b60185481565b60105481565b600e5481565b60125481565b600061123f612dba565b6001546000540303905090565b60176020528060005260406000206000915090505481565b601b5481565b6000808460405160200161127e919061473b565b6040516020818303038152906040528051906020012090506112e4848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601b5483612dbf565b9150509392505050565b6112f6612d00565b73ffffffffffffffffffffffffffffffffffffffff16611314611b97565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614907565b60405180910390fd5b8060128190555050565b61137f838383612dd6565b505050565b61138c612d00565b73ffffffffffffffffffffffffffffffffffffffff166113aa611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614907565b60405180910390fd5b6001601881905550565b60156020528060005260406000206000915090505481565b61142a612d00565b73ffffffffffffffffffffffffffffffffffffffff16611448611b97565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590614907565b60405180910390fd5b8060138190555050565b6114b0612d00565b73ffffffffffffffffffffffffffffffffffffffff166114ce611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90614907565b60405180910390fd5b600061152e611b97565b73ffffffffffffffffffffffffffffffffffffffff1647604051611551906147b3565b60006040518083038185875af1925050503d806000811461158e576040519150601f19603f3d011682016040523d82523d6000602084013e611593565b606091505b50509050806115a157600080fd5b50565b6115bf83838360405180602001604052806000815250611ef0565b505050565b601460009054906101000a900460ff1681565b6115df612d00565b73ffffffffffffffffffffffffffffffffffffffff166115fd611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90614907565b60405180910390fd5b8060099080519060200190611669929190613e14565b5050565b60008084604051602001611681919061473b565b6040516020818303038152906040528051906020012090506116e7848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601a5483612dbf565b9150509392505050565b6116f9612d00565b73ffffffffffffffffffffffffffffffffffffffff16611717611b97565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490614907565b60405180910390fd5b80600d8190555050565b600d5481565b60006117888261328c565b600001519050919050565b600980546117a090614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546117cc90614ca1565b80156118195780601f106117ee57610100808354040283529160200191611819565b820191906000526020600020905b8154815290600101906020018083116117fc57829003601f168201915b505050505081565b611829612d00565b73ffffffffffffffffffffffffffffffffffffffff16611847611b97565b73ffffffffffffffffffffffffffffffffffffffff161461189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490614907565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61197f612d00565b73ffffffffffffffffffffffffffffffffffffffff1661199d611b97565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614907565b60405180910390fd5b6119fd600061351b565b565b611a07612d00565b73ffffffffffffffffffffffffffffffffffffffff16611a25611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614907565b60405180910390fd5b6003601881905550565b611a8d612d00565b73ffffffffffffffffffffffffffffffffffffffff16611aab611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890614907565b60405180910390fd5b80600e8190555050565b611b13612d00565b73ffffffffffffffffffffffffffffffffffffffff16611b31611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90614907565b60405180910390fd5b6000601881905550565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601a5481565b606060038054611bd690614ca1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0290614ca1565b8015611c4f5780601f10611c2457610100808354040283529160200191611c4f565b820191906000526020600020905b815481529060010190602001808311611c3257829003601f168201915b5050505050905090565b611c61612d00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611cd3612d00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d80612d00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dc5919061482f565b60405180910390a35050565b611dd9612d00565b73ffffffffffffffffffffffffffffffffffffffff16611df7611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490614907565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b611e72612d00565b73ffffffffffffffffffffffffffffffffffffffff16611e90611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90614907565b60405180910390fd5b6002601881905550565b611efb848484612dd6565b611f1a8373ffffffffffffffffffffffffffffffffffffffff166135e1565b8015611f2f5750611f2d84848484613604565b155b15611f66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611f76611235565b905060008411611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb2906149a7565b60405180910390fd5b600f548482611fca9190614acc565b111561200b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612002906148c7565b60405180910390fd5b612013611b97565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124cb5760006018541161208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190614927565b60405180910390fd5b6001601854141561220e576000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506120e433858561166d565b612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90614987565b60405180910390fd5b601054851115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f906148e7565b60405180910390fd5b60105485826121779190614acc565b11156121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af906148a7565b60405180910390fd5b84600c546121c69190614b53565b341015612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90614967565b60405180910390fd5b506124ca565b60026018541415612392576000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061226833858561126a565b6122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90614987565b60405180910390fd5b6011548511156122ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e3906148e7565b60405180910390fd5b60115485826122fb9190614acc565b111561233c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612333906148a7565b60405180910390fd5b84600d5461234a9190614b53565b34101561238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390614967565b60405180910390fd5b506124c9565b600360185414156124c8576000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601254851115612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d906148e7565b60405180910390fd5b60125485826124359190614acc565b1115612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d906148a7565b60405180910390fd5b84600e546124849190614b53565b3410156124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90614967565b60405180910390fd5b505b5b5b5b6124d53385613764565b6001601854141561253b5783601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252f9190614acc565b92505081905550612605565b600260185414156125a15783601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125959190614acc565b92505081905550612604565b600360185414156126035783601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125fb9190614acc565b925050819055505b5b5b50505050565b612613612d00565b73ffffffffffffffffffffffffffffffffffffffff16612631611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90614907565b60405180910390fd5b80601a8190555050565b60115481565b600a80546126a490614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546126d090614ca1565b801561271d5780601f106126f25761010080835404028352916020019161271d565b820191906000526020600020905b81548152906001019060200180831161270057829003601f168201915b505050505081565b606061273082612cb2565b61276f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276690614947565b60405180910390fd5b60001515601460009054906101000a900460ff161515141561281d57600b805461279890614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546127c490614ca1565b80156128115780601f106127e657610100808354040283529160200191612811565b820191906000526020600020905b8154815290600101906020018083116127f457829003601f168201915b50505050509050612879565b6000612827613782565b905060008151116128475760405180602001604052806000815250612875565b8061285184613814565b600a60405160200161286593929190614782565b6040516020818303038152906040525b9150505b919050565b612886612d00565b73ffffffffffffffffffffffffffffffffffffffff166128a4611b97565b73ffffffffffffffffffffffffffffffffffffffff16146128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f190614907565b60405180910390fd5b80600c8190555050565b61290c612d00565b73ffffffffffffffffffffffffffffffffffffffff1661292a611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297790614907565b60405180910390fd5b80601b8190555050565b600f5481565b612998612d00565b73ffffffffffffffffffffffffffffffffffffffff166129b6611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0390614907565b60405180910390fd5b80600a9080519060200190612a22929190613e14565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ac2612d00565b73ffffffffffffffffffffffffffffffffffffffff16612ae0611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d90614907565b60405180910390fd5b80600b9080519060200190612b4c929190613e14565b5050565b612b58612d00565b73ffffffffffffffffffffffffffffffffffffffff16612b76611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc390614907565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3390614887565b60405180910390fd5b612c458161351b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612cbd612dba565b11158015612ccc575060005482105b8015612cf9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600082612dcc8584613975565b1490509392505050565b6000612de18261328c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e4c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612e6d612d00565b73ffffffffffffffffffffffffffffffffffffffff161480612e9c5750612e9b85612e96612d00565b612a26565b5b80612ee15750612eaa612d00565b73ffffffffffffffffffffffffffffffffffffffff16612ec984611008565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612f1a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f81576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f8e8585856001613a28565b612f9a60008487612d08565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561321a57600054821461321957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132858585856001613a2e565b5050505050565b613294613e9a565b6000829050806132a2612dba565b111580156132b1575060005481105b156134e4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516134e257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133c6578092505050613516565b5b6001156134e157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134dc578092505050613516565b6133c7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261362a612d00565b8786866040518563ffffffff1660e01b815260040161364c94939291906147e3565b602060405180830381600087803b15801561366657600080fd5b505af192505050801561369757506040513d601f19601f82011682018060405250810190613694919061432b565b60015b613711573d80600081146136c7576040519150601f19603f3d011682016040523d82523d6000602084013e6136cc565b606091505b50600081511415613709576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61377e828260405180602001604052806000815250613a34565b5050565b60606009805461379190614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546137bd90614ca1565b801561380a5780601f106137df5761010080835404028352916020019161380a565b820191906000526020600020905b8154815290600101906020018083116137ed57829003601f168201915b5050505050905090565b6060600082141561385c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613970565b600082905060005b6000821461388e57808061387790614d04565b915050600a826138879190614b22565b9150613864565b60008167ffffffffffffffff8111156138aa576138a9614e68565b5b6040519080825280601f01601f1916602001820160405280156138dc5781602001600182028036833780820191505090505b5090505b60008514613969576001826138f59190614bad565b9150600a856139049190614d7b565b60306139109190614acc565b60f81b81838151811061392657613925614e39565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856139629190614b22565b94506138e0565b8093505050505b919050565b60008082905060005b8451811015613a1d57600085828151811061399c5761399b614e39565b5b602002602001015190508083116139dd5782816040516020016139c0929190614756565b604051602081830303815290604052805190602001209250613a09565b80836040516020016139f0929190614756565b6040516020818303038152906040528051906020012092505b508080613a1590614d04565b91505061397e565b508091505092915050565b50505050565b50505050565b613a418383836001613a46565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613ab3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613aee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613afb6000868387613a28565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613cc55750613cc48773ffffffffffffffffffffffffffffffffffffffff166135e1565b5b15613d8b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d3a6000888480600101955088613604565b613d70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613ccb578260005414613d8657600080fd5b613df7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613d8c575b816000819055505050613e0d6000868387613a2e565b5050505050565b828054613e2090614ca1565b90600052602060002090601f016020900481019282613e425760008555613e89565b82601f10613e5b57805160ff1916838001178555613e89565b82800160010185558215613e89579182015b82811115613e88578251825591602001919060010190613e6d565b5b509050613e969190613edd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613ef6576000816000905550600101613ede565b5090565b6000613f0d613f0884614a07565b6149e2565b905082815260208101848484011115613f2957613f28614ea6565b5b613f34848285614c5f565b509392505050565b6000613f4f613f4a84614a38565b6149e2565b905082815260208101848484011115613f6b57613f6a614ea6565b5b613f76848285614c5f565b509392505050565b600081359050613f8d816150e2565b92915050565b60008083601f840112613fa957613fa8614e9c565b5b8235905067ffffffffffffffff811115613fc657613fc5614e97565b5b602083019150836020820283011115613fe257613fe1614ea1565b5b9250929050565b600081359050613ff8816150f9565b92915050565b60008135905061400d81615110565b92915050565b60008135905061402281615127565b92915050565b60008151905061403781615127565b92915050565b600082601f83011261405257614051614e9c565b5b8135614062848260208601613efa565b91505092915050565b600082601f8301126140805761407f614e9c565b5b8135614090848260208601613f3c565b91505092915050565b6000813590506140a88161513e565b92915050565b6000602082840312156140c4576140c3614eb0565b5b60006140d284828501613f7e565b91505092915050565b600080604083850312156140f2576140f1614eb0565b5b600061410085828601613f7e565b925050602061411185828601613f7e565b9150509250929050565b60008060006060848603121561413457614133614eb0565b5b600061414286828701613f7e565b935050602061415386828701613f7e565b925050604061416486828701614099565b9150509250925092565b6000806000806080858703121561418857614187614eb0565b5b600061419687828801613f7e565b94505060206141a787828801613f7e565b93505060406141b887828801614099565b925050606085013567ffffffffffffffff8111156141d9576141d8614eab565b5b6141e58782880161403d565b91505092959194509250565b60008060006040848603121561420a57614209614eb0565b5b600061421886828701613f7e565b935050602084013567ffffffffffffffff81111561423957614238614eab565b5b61424586828701613f93565b92509250509250925092565b6000806040838503121561426857614267614eb0565b5b600061427685828601613f7e565b925050602061428785828601613fe9565b9150509250929050565b600080604083850312156142a8576142a7614eb0565b5b60006142b685828601613f7e565b92505060206142c785828601614099565b9150509250929050565b6000602082840312156142e7576142e6614eb0565b5b60006142f584828501613ffe565b91505092915050565b60006020828403121561431457614313614eb0565b5b600061432284828501614013565b91505092915050565b60006020828403121561434157614340614eb0565b5b600061434f84828501614028565b91505092915050565b60006020828403121561436e5761436d614eb0565b5b600082013567ffffffffffffffff81111561438c5761438b614eab565b5b6143988482850161406b565b91505092915050565b6000602082840312156143b7576143b6614eb0565b5b60006143c584828501614099565b91505092915050565b6000806000604084860312156143e7576143e6614eb0565b5b60006143f586828701614099565b935050602084013567ffffffffffffffff81111561441657614415614eab565b5b61442286828701613f93565b92509250509250925092565b61443781614be1565b82525050565b61444e61444982614be1565b614d4d565b82525050565b61445d81614bf3565b82525050565b61446c81614bff565b82525050565b61448361447e82614bff565b614d5f565b82525050565b600061449482614a7e565b61449e8185614a94565b93506144ae818560208601614c6e565b6144b781614eb5565b840191505092915050565b60006144cd82614a89565b6144d78185614ab0565b93506144e7818560208601614c6e565b6144f081614eb5565b840191505092915050565b600061450682614a89565b6145108185614ac1565b9350614520818560208601614c6e565b80840191505092915050565b6000815461453981614ca1565b6145438186614ac1565b9450600182166000811461455e576001811461456f576145a2565b60ff198316865281860193506145a2565b61457885614a69565b60005b8381101561459a5781548189015260018201915060208101905061457b565b838801955050505b50505092915050565b60006145b8602683614ab0565b91506145c382614ed3565b604082019050919050565b60006145db601c83614ab0565b91506145e682614f22565b602082019050919050565b60006145fe601683614ab0565b915061460982614f4b565b602082019050919050565b6000614621602483614ab0565b915061462c82614f74565b604082019050919050565b6000614644602083614ab0565b915061464f82614fc3565b602082019050919050565b6000614667601683614ab0565b915061467282614fec565b602082019050919050565b600061468a602f83614ab0565b915061469582615015565b604082019050919050565b60006146ad600083614aa5565b91506146b882615064565b600082019050919050565b60006146d0601283614ab0565b91506146db82615067565b602082019050919050565b60006146f3601783614ab0565b91506146fe82615090565b602082019050919050565b6000614716601b83614ab0565b9150614721826150b9565b602082019050919050565b61473581614c55565b82525050565b6000614747828461443d565b60148201915081905092915050565b60006147628285614472565b6020820191506147728284614472565b6020820191508190509392505050565b600061478e82866144fb565b915061479a82856144fb565b91506147a6828461452c565b9150819050949350505050565b60006147be826146a0565b9150819050919050565b60006020820190506147dd600083018461442e565b92915050565b60006080820190506147f8600083018761442e565b614805602083018661442e565b614812604083018561472c565b81810360608301526148248184614489565b905095945050505050565b60006020820190506148446000830184614454565b92915050565b600060208201905061485f6000830184614463565b92915050565b6000602082019050818103600083015261487f81846144c2565b905092915050565b600060208201905081810360008301526148a0816145ab565b9050919050565b600060208201905081810360008301526148c0816145ce565b9050919050565b600060208201905081810360008301526148e0816145f1565b9050919050565b6000602082019050818103600083015261490081614614565b9050919050565b6000602082019050818103600083015261492081614637565b9050919050565b600060208201905081810360008301526149408161465a565b9050919050565b600060208201905081810360008301526149608161467d565b9050919050565b60006020820190508181036000830152614980816146c3565b9050919050565b600060208201905081810360008301526149a0816146e6565b9050919050565b600060208201905081810360008301526149c081614709565b9050919050565b60006020820190506149dc600083018461472c565b92915050565b60006149ec6149fd565b90506149f88282614cd3565b919050565b6000604051905090565b600067ffffffffffffffff821115614a2257614a21614e68565b5b614a2b82614eb5565b9050602081019050919050565b600067ffffffffffffffff821115614a5357614a52614e68565b5b614a5c82614eb5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ad782614c55565b9150614ae283614c55565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b1757614b16614dac565b5b828201905092915050565b6000614b2d82614c55565b9150614b3883614c55565b925082614b4857614b47614ddb565b5b828204905092915050565b6000614b5e82614c55565b9150614b6983614c55565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ba257614ba1614dac565b5b828202905092915050565b6000614bb882614c55565b9150614bc383614c55565b925082821015614bd657614bd5614dac565b5b828203905092915050565b6000614bec82614c35565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c8c578082015181840152602081019050614c71565b83811115614c9b576000848401525b50505050565b60006002820490506001821680614cb957607f821691505b60208210811415614ccd57614ccc614e0a565b5b50919050565b614cdc82614eb5565b810181811067ffffffffffffffff82111715614cfb57614cfa614e68565b5b80604052505050565b6000614d0f82614c55565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d4257614d41614dac565b5b600182019050919050565b6000614d5882614d69565b9050919050565b6000819050919050565b6000614d7482614ec6565b9050919050565b6000614d8682614c55565b9150614d9183614c55565b925082614da157614da0614ddb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6150eb81614be1565b81146150f657600080fd5b50565b61510281614bf3565b811461510d57600080fd5b50565b61511981614bff565b811461512457600080fd5b50565b61513081614c09565b811461513b57600080fd5b50565b61514781614c55565b811461515257600080fd5b5056fea264697066735822122015767df2472643b2d88b9d2fd9b69f73cf4ee9f44d71392031fe39269358eaf164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106103755760003560e01c80635d823b8d116101d1578063a475b5dd11610102578063c87b56dd116100a0578063da3ef23f1161006f578063da3ef23f14610c75578063e985e9c514610c9e578063f2c4ce1e14610cdb578063f2fde38b14610d0457610375565b8063c87b56dd14610bbb578063d1d1921314610bf8578063d3d704cf14610c21578063d5abeb0114610c4a57610375565b8063ba41b0c6116100dc578063ba41b0c614610b20578063bd32fb6614610b3c578063c3ceedbd14610b65578063c668286214610b9057610375565b8063a475b5dd14610ac9578063b6d0e3a914610ae0578063b88d4fde14610af757610375565b8063811d24371161016f5780638da5cb5b116101495780638da5cb5b14610a1f5780638e1f9cfe14610a4a57806395d89b4114610a75578063a22cb46514610aa057610375565b8063811d2437146109b45780638456cb59146109dd578063872d10ea146109f457610375565b80636eddb9e3116101ab5780636eddb9e31461092057806370a0823114610949578063715018a61461098657806377e563571461099d57610375565b80635d823b8d1461088d5780636352211e146108b85780636c0360eb146108f557610375565b806318cae269116102ab5780633c59b86a11610249578063518302271161022357806351830227146107d357806355f804b3146107fe5780635a23dd99146108275780635abeb2a31461086457610375565b80633c59b86a146107775780633ccfd60b146107a057806342842e0e146107aa57610375565b8063231878d111610285578063231878d1146106d157806323b872dd146106fa578063295e4c331461072357806337546c671461073a57610375565b806318cae2691461062c5780631c8086c7146106695780631da479821461069457610375565b8063081c8c441161031857806313093b1d116102f257806313093b1d1461058057806313faede6146105ab57806317f7bece146105d657806318160ddd1461060157610375565b8063081c8c4414610501578063095ea7b31461052c5780630c3f6acf1461055557610375565b806306c933d81161035457806306c933d81461041f57806306fdde031461045c57806307656e3314610487578063081812fc146104c457610375565b8062d3cee91461037a57806301ffc9a7146103b757806306afd592146103f4575b600080fd5b34801561038657600080fd5b506103a1600480360381019061039c91906140ae565b610d2d565b6040516103ae91906149c7565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d991906142fe565b610d45565b6040516103eb919061482f565b60405180910390f35b34801561040057600080fd5b50610409610e27565b60405161041691906149c7565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906140ae565b610e2d565b604051610453919061482f565b60405180910390f35b34801561046857600080fd5b50610471610e4d565b60405161047e9190614865565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906140ae565b610edf565b6040516104bb91906149c7565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906143a1565b611008565b6040516104f891906147c8565b60405180910390f35b34801561050d57600080fd5b50610516611084565b6040516105239190614865565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190614291565b611112565b005b34801561056157600080fd5b5061056a61121d565b60405161057791906149c7565b60405180910390f35b34801561058c57600080fd5b50610595611223565b6040516105a291906149c7565b60405180910390f35b3480156105b757600080fd5b506105c0611229565b6040516105cd91906149c7565b60405180910390f35b3480156105e257600080fd5b506105eb61122f565b6040516105f891906149c7565b60405180910390f35b34801561060d57600080fd5b50610616611235565b60405161062391906149c7565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e91906140ae565b61124c565b60405161066091906149c7565b60405180910390f35b34801561067557600080fd5b5061067e611264565b60405161068b919061484a565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b691906141f1565b61126a565b6040516106c8919061482f565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f391906143a1565b6112ee565b005b34801561070657600080fd5b50610721600480360381019061071c919061411b565b611374565b005b34801561072f57600080fd5b50610738611384565b005b34801561074657600080fd5b50610761600480360381019061075c91906140ae565b61140a565b60405161076e91906149c7565b60405180910390f35b34801561078357600080fd5b5061079e600480360381019061079991906143a1565b611422565b005b6107a86114a8565b005b3480156107b657600080fd5b506107d160048036038101906107cc919061411b565b6115a4565b005b3480156107df57600080fd5b506107e86115c4565b6040516107f5919061482f565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190614358565b6115d7565b005b34801561083357600080fd5b5061084e600480360381019061084991906141f1565b61166d565b60405161085b919061482f565b60405180910390f35b34801561087057600080fd5b5061088b600480360381019061088691906143a1565b6116f1565b005b34801561089957600080fd5b506108a2611777565b6040516108af91906149c7565b60405180910390f35b3480156108c457600080fd5b506108df60048036038101906108da91906143a1565b61177d565b6040516108ec91906147c8565b60405180910390f35b34801561090157600080fd5b5061090a611793565b6040516109179190614865565b60405180910390f35b34801561092c57600080fd5b50610947600480360381019061094291906143a1565b611821565b005b34801561095557600080fd5b50610970600480360381019061096b91906140ae565b6118a7565b60405161097d91906149c7565b60405180910390f35b34801561099257600080fd5b5061099b611977565b005b3480156109a957600080fd5b506109b26119ff565b005b3480156109c057600080fd5b506109db60048036038101906109d691906143a1565b611a85565b005b3480156109e957600080fd5b506109f2611b0b565b005b348015610a0057600080fd5b50610a09611b91565b604051610a1691906149c7565b60405180910390f35b348015610a2b57600080fd5b50610a34611b97565b604051610a4191906147c8565b60405180910390f35b348015610a5657600080fd5b50610a5f611bc1565b604051610a6c919061484a565b60405180910390f35b348015610a8157600080fd5b50610a8a611bc7565b604051610a979190614865565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac29190614251565b611c59565b005b348015610ad557600080fd5b50610ade611dd1565b005b348015610aec57600080fd5b50610af5611e6a565b005b348015610b0357600080fd5b50610b1e6004803603810190610b19919061416e565b611ef0565b005b610b3a6004803603810190610b3591906143ce565b611f6c565b005b348015610b4857600080fd5b50610b636004803603810190610b5e91906142d1565b61260b565b005b348015610b7157600080fd5b50610b7a612691565b604051610b8791906149c7565b60405180910390f35b348015610b9c57600080fd5b50610ba5612697565b604051610bb29190614865565b60405180910390f35b348015610bc757600080fd5b50610be26004803603810190610bdd91906143a1565b612725565b604051610bef9190614865565b60405180910390f35b348015610c0457600080fd5b50610c1f6004803603810190610c1a91906143a1565b61287e565b005b348015610c2d57600080fd5b50610c486004803603810190610c4391906142d1565b612904565b005b348015610c5657600080fd5b50610c5f61298a565b604051610c6c91906149c7565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c979190614358565b612990565b005b348015610caa57600080fd5b50610cc56004803603810190610cc091906140db565b612a26565b604051610cd2919061482f565b60405180910390f35b348015610ce757600080fd5b50610d026004803603810190610cfd9190614358565b612aba565b005b348015610d1057600080fd5b50610d2b6004803603810190610d2691906140ae565b612b50565b005b60166020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e205750610e1f82612c48565b5b9050919050565b600c5481565b60196020528060005260406000206000915054906101000a900460ff1681565b606060028054610e5c90614ca1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8890614ca1565b8015610ed55780601f10610eaa57610100808354040283529160200191610ed5565b820191906000526020600020905b815481529060010190602001808311610eb857829003601f168201915b5050505050905090565b600060016018541415610f4057601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601054610f399190614bad565b9050611003565b60026018541415610f9f57601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154610f989190614bad565b9050611003565b60036018541415610ffe57601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601254610ff79190614bad565b9050611003565b600090505b919050565b600061101382612cb2565b611049576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b805461109190614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546110bd90614ca1565b801561110a5780601f106110df5761010080835404028352916020019161110a565b820191906000526020600020905b8154815290600101906020018083116110ed57829003601f168201915b505050505081565b600061111d8261177d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611185576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111a4612d00565b73ffffffffffffffffffffffffffffffffffffffff16141580156111d657506111d4816111cf612d00565b612a26565b155b1561120d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611218838383612d08565b505050565b60185481565b60105481565b600e5481565b60125481565b600061123f612dba565b6001546000540303905090565b60176020528060005260406000206000915090505481565b601b5481565b6000808460405160200161127e919061473b565b6040516020818303038152906040528051906020012090506112e4848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601b5483612dbf565b9150509392505050565b6112f6612d00565b73ffffffffffffffffffffffffffffffffffffffff16611314611b97565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614907565b60405180910390fd5b8060128190555050565b61137f838383612dd6565b505050565b61138c612d00565b73ffffffffffffffffffffffffffffffffffffffff166113aa611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614907565b60405180910390fd5b6001601881905550565b60156020528060005260406000206000915090505481565b61142a612d00565b73ffffffffffffffffffffffffffffffffffffffff16611448611b97565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590614907565b60405180910390fd5b8060138190555050565b6114b0612d00565b73ffffffffffffffffffffffffffffffffffffffff166114ce611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90614907565b60405180910390fd5b600061152e611b97565b73ffffffffffffffffffffffffffffffffffffffff1647604051611551906147b3565b60006040518083038185875af1925050503d806000811461158e576040519150601f19603f3d011682016040523d82523d6000602084013e611593565b606091505b50509050806115a157600080fd5b50565b6115bf83838360405180602001604052806000815250611ef0565b505050565b601460009054906101000a900460ff1681565b6115df612d00565b73ffffffffffffffffffffffffffffffffffffffff166115fd611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90614907565b60405180910390fd5b8060099080519060200190611669929190613e14565b5050565b60008084604051602001611681919061473b565b6040516020818303038152906040528051906020012090506116e7848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601a5483612dbf565b9150509392505050565b6116f9612d00565b73ffffffffffffffffffffffffffffffffffffffff16611717611b97565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490614907565b60405180910390fd5b80600d8190555050565b600d5481565b60006117888261328c565b600001519050919050565b600980546117a090614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546117cc90614ca1565b80156118195780601f106117ee57610100808354040283529160200191611819565b820191906000526020600020905b8154815290600101906020018083116117fc57829003601f168201915b505050505081565b611829612d00565b73ffffffffffffffffffffffffffffffffffffffff16611847611b97565b73ffffffffffffffffffffffffffffffffffffffff161461189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490614907565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61197f612d00565b73ffffffffffffffffffffffffffffffffffffffff1661199d611b97565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614907565b60405180910390fd5b6119fd600061351b565b565b611a07612d00565b73ffffffffffffffffffffffffffffffffffffffff16611a25611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614907565b60405180910390fd5b6003601881905550565b611a8d612d00565b73ffffffffffffffffffffffffffffffffffffffff16611aab611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890614907565b60405180910390fd5b80600e8190555050565b611b13612d00565b73ffffffffffffffffffffffffffffffffffffffff16611b31611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90614907565b60405180910390fd5b6000601881905550565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601a5481565b606060038054611bd690614ca1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0290614ca1565b8015611c4f5780601f10611c2457610100808354040283529160200191611c4f565b820191906000526020600020905b815481529060010190602001808311611c3257829003601f168201915b5050505050905090565b611c61612d00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611cd3612d00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d80612d00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dc5919061482f565b60405180910390a35050565b611dd9612d00565b73ffffffffffffffffffffffffffffffffffffffff16611df7611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490614907565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b611e72612d00565b73ffffffffffffffffffffffffffffffffffffffff16611e90611b97565b73ffffffffffffffffffffffffffffffffffffffff1614611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90614907565b60405180910390fd5b6002601881905550565b611efb848484612dd6565b611f1a8373ffffffffffffffffffffffffffffffffffffffff166135e1565b8015611f2f5750611f2d84848484613604565b155b15611f66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611f76611235565b905060008411611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb2906149a7565b60405180910390fd5b600f548482611fca9190614acc565b111561200b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612002906148c7565b60405180910390fd5b612013611b97565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124cb5760006018541161208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190614927565b60405180910390fd5b6001601854141561220e576000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506120e433858561166d565b612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90614987565b60405180910390fd5b601054851115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f906148e7565b60405180910390fd5b60105485826121779190614acc565b11156121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af906148a7565b60405180910390fd5b84600c546121c69190614b53565b341015612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90614967565b60405180910390fd5b506124ca565b60026018541415612392576000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061226833858561126a565b6122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90614987565b60405180910390fd5b6011548511156122ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e3906148e7565b60405180910390fd5b60115485826122fb9190614acc565b111561233c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612333906148a7565b60405180910390fd5b84600d5461234a9190614b53565b34101561238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390614967565b60405180910390fd5b506124c9565b600360185414156124c8576000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601254851115612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d906148e7565b60405180910390fd5b60125485826124359190614acc565b1115612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d906148a7565b60405180910390fd5b84600e546124849190614b53565b3410156124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90614967565b60405180910390fd5b505b5b5b5b6124d53385613764565b6001601854141561253b5783601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252f9190614acc565b92505081905550612605565b600260185414156125a15783601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125959190614acc565b92505081905550612604565b600360185414156126035783601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125fb9190614acc565b925050819055505b5b5b50505050565b612613612d00565b73ffffffffffffffffffffffffffffffffffffffff16612631611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90614907565b60405180910390fd5b80601a8190555050565b60115481565b600a80546126a490614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546126d090614ca1565b801561271d5780601f106126f25761010080835404028352916020019161271d565b820191906000526020600020905b81548152906001019060200180831161270057829003601f168201915b505050505081565b606061273082612cb2565b61276f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276690614947565b60405180910390fd5b60001515601460009054906101000a900460ff161515141561281d57600b805461279890614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546127c490614ca1565b80156128115780601f106127e657610100808354040283529160200191612811565b820191906000526020600020905b8154815290600101906020018083116127f457829003601f168201915b50505050509050612879565b6000612827613782565b905060008151116128475760405180602001604052806000815250612875565b8061285184613814565b600a60405160200161286593929190614782565b6040516020818303038152906040525b9150505b919050565b612886612d00565b73ffffffffffffffffffffffffffffffffffffffff166128a4611b97565b73ffffffffffffffffffffffffffffffffffffffff16146128fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f190614907565b60405180910390fd5b80600c8190555050565b61290c612d00565b73ffffffffffffffffffffffffffffffffffffffff1661292a611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297790614907565b60405180910390fd5b80601b8190555050565b600f5481565b612998612d00565b73ffffffffffffffffffffffffffffffffffffffff166129b6611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0390614907565b60405180910390fd5b80600a9080519060200190612a22929190613e14565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ac2612d00565b73ffffffffffffffffffffffffffffffffffffffff16612ae0611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d90614907565b60405180910390fd5b80600b9080519060200190612b4c929190613e14565b5050565b612b58612d00565b73ffffffffffffffffffffffffffffffffffffffff16612b76611b97565b73ffffffffffffffffffffffffffffffffffffffff1614612bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc390614907565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3390614887565b60405180910390fd5b612c458161351b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612cbd612dba565b11158015612ccc575060005482105b8015612cf9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600082612dcc8584613975565b1490509392505050565b6000612de18261328c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e4c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612e6d612d00565b73ffffffffffffffffffffffffffffffffffffffff161480612e9c5750612e9b85612e96612d00565b612a26565b5b80612ee15750612eaa612d00565b73ffffffffffffffffffffffffffffffffffffffff16612ec984611008565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612f1a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f81576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f8e8585856001613a28565b612f9a60008487612d08565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561321a57600054821461321957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132858585856001613a2e565b5050505050565b613294613e9a565b6000829050806132a2612dba565b111580156132b1575060005481105b156134e4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516134e257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133c6578092505050613516565b5b6001156134e157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134dc578092505050613516565b6133c7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261362a612d00565b8786866040518563ffffffff1660e01b815260040161364c94939291906147e3565b602060405180830381600087803b15801561366657600080fd5b505af192505050801561369757506040513d601f19601f82011682018060405250810190613694919061432b565b60015b613711573d80600081146136c7576040519150601f19603f3d011682016040523d82523d6000602084013e6136cc565b606091505b50600081511415613709576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61377e828260405180602001604052806000815250613a34565b5050565b60606009805461379190614ca1565b80601f01602080910402602001604051908101604052809291908181526020018280546137bd90614ca1565b801561380a5780601f106137df5761010080835404028352916020019161380a565b820191906000526020600020905b8154815290600101906020018083116137ed57829003601f168201915b5050505050905090565b6060600082141561385c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613970565b600082905060005b6000821461388e57808061387790614d04565b915050600a826138879190614b22565b9150613864565b60008167ffffffffffffffff8111156138aa576138a9614e68565b5b6040519080825280601f01601f1916602001820160405280156138dc5781602001600182028036833780820191505090505b5090505b60008514613969576001826138f59190614bad565b9150600a856139049190614d7b565b60306139109190614acc565b60f81b81838151811061392657613925614e39565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856139629190614b22565b94506138e0565b8093505050505b919050565b60008082905060005b8451811015613a1d57600085828151811061399c5761399b614e39565b5b602002602001015190508083116139dd5782816040516020016139c0929190614756565b604051602081830303815290604052805190602001209250613a09565b80836040516020016139f0929190614756565b6040516020818303038152906040528051906020012092505b508080613a1590614d04565b91505061397e565b508091505092915050565b50505050565b50505050565b613a418383836001613a46565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613ab3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613aee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613afb6000868387613a28565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613cc55750613cc48773ffffffffffffffffffffffffffffffffffffffff166135e1565b5b15613d8b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d3a6000888480600101955088613604565b613d70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613ccb578260005414613d8657600080fd5b613df7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613d8c575b816000819055505050613e0d6000868387613a2e565b5050505050565b828054613e2090614ca1565b90600052602060002090601f016020900481019282613e425760008555613e89565b82601f10613e5b57805160ff1916838001178555613e89565b82800160010185558215613e89579182015b82811115613e88578251825591602001919060010190613e6d565b5b509050613e969190613edd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613ef6576000816000905550600101613ede565b5090565b6000613f0d613f0884614a07565b6149e2565b905082815260208101848484011115613f2957613f28614ea6565b5b613f34848285614c5f565b509392505050565b6000613f4f613f4a84614a38565b6149e2565b905082815260208101848484011115613f6b57613f6a614ea6565b5b613f76848285614c5f565b509392505050565b600081359050613f8d816150e2565b92915050565b60008083601f840112613fa957613fa8614e9c565b5b8235905067ffffffffffffffff811115613fc657613fc5614e97565b5b602083019150836020820283011115613fe257613fe1614ea1565b5b9250929050565b600081359050613ff8816150f9565b92915050565b60008135905061400d81615110565b92915050565b60008135905061402281615127565b92915050565b60008151905061403781615127565b92915050565b600082601f83011261405257614051614e9c565b5b8135614062848260208601613efa565b91505092915050565b600082601f8301126140805761407f614e9c565b5b8135614090848260208601613f3c565b91505092915050565b6000813590506140a88161513e565b92915050565b6000602082840312156140c4576140c3614eb0565b5b60006140d284828501613f7e565b91505092915050565b600080604083850312156140f2576140f1614eb0565b5b600061410085828601613f7e565b925050602061411185828601613f7e565b9150509250929050565b60008060006060848603121561413457614133614eb0565b5b600061414286828701613f7e565b935050602061415386828701613f7e565b925050604061416486828701614099565b9150509250925092565b6000806000806080858703121561418857614187614eb0565b5b600061419687828801613f7e565b94505060206141a787828801613f7e565b93505060406141b887828801614099565b925050606085013567ffffffffffffffff8111156141d9576141d8614eab565b5b6141e58782880161403d565b91505092959194509250565b60008060006040848603121561420a57614209614eb0565b5b600061421886828701613f7e565b935050602084013567ffffffffffffffff81111561423957614238614eab565b5b61424586828701613f93565b92509250509250925092565b6000806040838503121561426857614267614eb0565b5b600061427685828601613f7e565b925050602061428785828601613fe9565b9150509250929050565b600080604083850312156142a8576142a7614eb0565b5b60006142b685828601613f7e565b92505060206142c785828601614099565b9150509250929050565b6000602082840312156142e7576142e6614eb0565b5b60006142f584828501613ffe565b91505092915050565b60006020828403121561431457614313614eb0565b5b600061432284828501614013565b91505092915050565b60006020828403121561434157614340614eb0565b5b600061434f84828501614028565b91505092915050565b60006020828403121561436e5761436d614eb0565b5b600082013567ffffffffffffffff81111561438c5761438b614eab565b5b6143988482850161406b565b91505092915050565b6000602082840312156143b7576143b6614eb0565b5b60006143c584828501614099565b91505092915050565b6000806000604084860312156143e7576143e6614eb0565b5b60006143f586828701614099565b935050602084013567ffffffffffffffff81111561441657614415614eab565b5b61442286828701613f93565b92509250509250925092565b61443781614be1565b82525050565b61444e61444982614be1565b614d4d565b82525050565b61445d81614bf3565b82525050565b61446c81614bff565b82525050565b61448361447e82614bff565b614d5f565b82525050565b600061449482614a7e565b61449e8185614a94565b93506144ae818560208601614c6e565b6144b781614eb5565b840191505092915050565b60006144cd82614a89565b6144d78185614ab0565b93506144e7818560208601614c6e565b6144f081614eb5565b840191505092915050565b600061450682614a89565b6145108185614ac1565b9350614520818560208601614c6e565b80840191505092915050565b6000815461453981614ca1565b6145438186614ac1565b9450600182166000811461455e576001811461456f576145a2565b60ff198316865281860193506145a2565b61457885614a69565b60005b8381101561459a5781548189015260018201915060208101905061457b565b838801955050505b50505092915050565b60006145b8602683614ab0565b91506145c382614ed3565b604082019050919050565b60006145db601c83614ab0565b91506145e682614f22565b602082019050919050565b60006145fe601683614ab0565b915061460982614f4b565b602082019050919050565b6000614621602483614ab0565b915061462c82614f74565b604082019050919050565b6000614644602083614ab0565b915061464f82614fc3565b602082019050919050565b6000614667601683614ab0565b915061467282614fec565b602082019050919050565b600061468a602f83614ab0565b915061469582615015565b604082019050919050565b60006146ad600083614aa5565b91506146b882615064565b600082019050919050565b60006146d0601283614ab0565b91506146db82615067565b602082019050919050565b60006146f3601783614ab0565b91506146fe82615090565b602082019050919050565b6000614716601b83614ab0565b9150614721826150b9565b602082019050919050565b61473581614c55565b82525050565b6000614747828461443d565b60148201915081905092915050565b60006147628285614472565b6020820191506147728284614472565b6020820191508190509392505050565b600061478e82866144fb565b915061479a82856144fb565b91506147a6828461452c565b9150819050949350505050565b60006147be826146a0565b9150819050919050565b60006020820190506147dd600083018461442e565b92915050565b60006080820190506147f8600083018761442e565b614805602083018661442e565b614812604083018561472c565b81810360608301526148248184614489565b905095945050505050565b60006020820190506148446000830184614454565b92915050565b600060208201905061485f6000830184614463565b92915050565b6000602082019050818103600083015261487f81846144c2565b905092915050565b600060208201905081810360008301526148a0816145ab565b9050919050565b600060208201905081810360008301526148c0816145ce565b9050919050565b600060208201905081810360008301526148e0816145f1565b9050919050565b6000602082019050818103600083015261490081614614565b9050919050565b6000602082019050818103600083015261492081614637565b9050919050565b600060208201905081810360008301526149408161465a565b9050919050565b600060208201905081810360008301526149608161467d565b9050919050565b60006020820190508181036000830152614980816146c3565b9050919050565b600060208201905081810360008301526149a0816146e6565b9050919050565b600060208201905081810360008301526149c081614709565b9050919050565b60006020820190506149dc600083018461472c565b92915050565b60006149ec6149fd565b90506149f88282614cd3565b919050565b6000604051905090565b600067ffffffffffffffff821115614a2257614a21614e68565b5b614a2b82614eb5565b9050602081019050919050565b600067ffffffffffffffff821115614a5357614a52614e68565b5b614a5c82614eb5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ad782614c55565b9150614ae283614c55565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b1757614b16614dac565b5b828201905092915050565b6000614b2d82614c55565b9150614b3883614c55565b925082614b4857614b47614ddb565b5b828204905092915050565b6000614b5e82614c55565b9150614b6983614c55565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ba257614ba1614dac565b5b828202905092915050565b6000614bb882614c55565b9150614bc383614c55565b925082821015614bd657614bd5614dac565b5b828203905092915050565b6000614bec82614c35565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c8c578082015181840152602081019050614c71565b83811115614c9b576000848401525b50505050565b60006002820490506001821680614cb957607f821691505b60208210811415614ccd57614ccc614e0a565b5b50919050565b614cdc82614eb5565b810181811067ffffffffffffffff82111715614cfb57614cfa614e68565b5b80604052505050565b6000614d0f82614c55565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d4257614d41614dac565b5b600182019050919050565b6000614d5882614d69565b9050919050565b6000819050919050565b6000614d7482614ec6565b9050919050565b6000614d8682614c55565b9150614d9183614c55565b925082614da157614da0614ddb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6150eb81614be1565b81146150f657600080fd5b50565b61510281614bf3565b811461510d57600080fd5b50565b61511981614bff565b811461512457600080fd5b50565b61513081614c09565b811461513b57600080fd5b50565b61514781614c55565b811461515257600080fd5b5056fea264697066735822122015767df2472643b2d88b9d2fd9b69f73cf4ee9f44d71392031fe39269358eaf164736f6c63430008070033

Deployed Bytecode Sourcemap

46928:8267:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47566:66;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26642:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47115:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47743:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29755:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51688:457;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31258:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47080:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30821:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47703:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47282:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47206:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47373:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25891:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47639:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47925:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51403:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53103:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32123:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53884:82;;;;;;;;;;;;;:::i;:::-;;47502:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52981:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54711:481;;;:::i;:::-;;32364:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47467:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53402:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51120:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54599:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47156:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29563:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47008:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53268:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27011:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46074:103;;;;;;;;;;;;;:::i;:::-;;54064:73;;;;;;;;;;;;;:::i;:::-;;54409:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53807:69;;;;;;;;;;;;;:::i;:::-;;47419:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45423:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47804:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29924:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31534:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52904:69;;;;;;;;;;;;;:::i;:::-;;53974:82;;;;;;;;;;;;;:::i;:::-;;32620:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48233:2879;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54145:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47323:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47036:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52153:725;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54505:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54275:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47245:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53514:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31892:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53673:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46332:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47566:66;;;;;;;;;;;;;;;;;:::o;26642:305::-;26744:4;26796:25;26781:40;;;:11;:40;;;;:105;;;;26853:33;26838:48;;;:11;:48;;;;26781:105;:158;;;;26903:36;26927:11;26903:23;:36::i;:::-;26781:158;26761:178;;26642:305;;;:::o;47115:34::-;;;;:::o;47743:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;29755:100::-;29809:13;29842:5;29835:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29755:100;:::o;51688:457::-;51755:7;51795:1;51779:12;;:17;51775:344;;;51838:22;:29;51861:5;51838:29;;;;;;;;;;;;;;;;51820:15;;:47;;;;:::i;:::-;51813:54;;;;51775:344;51905:1;51889:12;;:17;51885:234;;;51957:31;:38;51989:5;51957:38;;;;;;;;;;;;;;;;51930:24;;:65;;;;:::i;:::-;51923:72;;;;51885:234;52033:1;52017:12;;:17;52013:106;;;52080:20;:27;52101:5;52080:27;;;;;;;;;;;;;;;;52058:19;;:49;;;;:::i;:::-;52051:56;;;;52013:106;52136:1;52129:8;;51688:457;;;;:::o;31258:204::-;31326:7;31351:16;31359:7;31351;:16::i;:::-;31346:64;;31376:34;;;;;;;;;;;;;;31346:64;31430:15;:24;31446:7;31430:24;;;;;;;;;;;;;;;;;;;;;31423:31;;31258:204;;;:::o;47080:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30821:371::-;30894:13;30910:24;30926:7;30910:15;:24::i;:::-;30894:40;;30955:5;30949:11;;:2;:11;;;30945:48;;;30969:24;;;;;;;;;;;;;;30945:48;31026:5;31010:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31036:37;31053:5;31060:12;:10;:12::i;:::-;31036:16;:37::i;:::-;31035:38;31010:63;31006:138;;;31097:35;;;;;;;;;;;;;;31006:138;31156:28;31165:2;31169:7;31178:5;31156:8;:28::i;:::-;30883:309;30821:371;;:::o;47703:31::-;;;;:::o;47282:34::-;;;;:::o;47206:32::-;;;;:::o;47373:39::-;;;;:::o;25891:303::-;25935:7;26160:15;:13;:15::i;:::-;26145:12;;26129:13;;:28;:46;26122:53;;25891:303;:::o;47639:55::-;;;;;;;;;;;;;;;;;:::o;47925:114::-;;;;:::o;51403:277::-;51522:4;51544:12;51586:5;51569:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;51559:34;;;;;;51544:49;;51611:61;51630:12;;51611:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51644:21;;51667:4;51611:18;:61::i;:::-;51604:68;;;51403:277;;;;;:::o;53103:157::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53235:17:::1;53213:19;:39;;;;53103:157:::0;:::o;32123:170::-;32257:28;32267:4;32273:2;32277:7;32257:9;:28::i;:::-;32123:170;;;:::o;53884:82::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53957:1:::1;53942:12;:16;;;;53884:82::o:0;47502:57::-;;;;;;;;;;;;;;;;;:::o;52981:114::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53081:6:::1;53058:20;:29;;;;52981:114:::0;:::o;54711:481::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55004:7:::1;55025;:5;:7::i;:::-;55017:21;;55046;55017:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55003:69;;;55091:2;55083:11;;;::::0;::::1;;54756:436;54711:481::o:0;32364:185::-;32502:39;32519:4;32525:2;32529:7;32502:39;;;;;;;;;;;;:16;:39::i;:::-;32364:185;;;:::o;47467:28::-;;;;;;;;;;;;;:::o;53402:104::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53487:11:::1;53477:7;:21;;;;;;;;;;;;:::i;:::-;;53402:104:::0;:::o;51120:275::-;51239:4;51261:12;51303:5;51286:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;51276:34;;;;;;51261:49;;51328:59;51347:12;;51328:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51361:19;;51382:4;51328:18;:59::i;:::-;51321:66;;;51120:275;;;;;:::o;54599:104::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54689:6:::1;54671:15;:24;;;;54599:104:::0;:::o;47156:43::-;;;;:::o;29563:125::-;29627:7;29654:21;29667:7;29654:12;:21::i;:::-;:26;;;29647:33;;29563:125;;;:::o;47008:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53268:126::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53369:17:::1;53351:15;:35;;;;53268:126:::0;:::o;27011:206::-;27075:7;27116:1;27099:19;;:5;:19;;;27095:60;;;27127:28;;;;;;;;;;;;;;27095:60;27181:12;:19;27194:5;27181:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27173:36;;27166:43;;27011:206;;;:::o;46074:103::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46139:30:::1;46166:1;46139:18;:30::i;:::-;46074:103::o:0;54064:73::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54128:1:::1;54113:12;:16;;;;54064:73::o:0;54409:88::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54483:6:::1;54476:4;:13;;;;54409:88:::0;:::o;53807:69::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53867:1:::1;53852:12;:16;;;;53807:69::o:0;47419:39::-;;;;:::o;45423:87::-;45469:7;45496:6;;;;;;;;;;;45489:13;;45423:87;:::o;47804:112::-;;;;:::o;29924:104::-;29980:13;30013:7;30006:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29924:104;:::o;31534:287::-;31645:12;:10;:12::i;:::-;31633:24;;:8;:24;;;31629:54;;;31666:17;;;;;;;;;;;;;;31629:54;31741:8;31696:18;:32;31715:12;:10;:12::i;:::-;31696:32;;;;;;;;;;;;;;;:42;31729:8;31696:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31794:8;31765:48;;31780:12;:10;:12::i;:::-;31765:48;;;31804:8;31765:48;;;;;;:::i;:::-;;;;;;;;31534:287;;:::o;52904:69::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52961:4:::1;52950:8;;:15;;;;;;;;;;;;;;;;;;52904:69::o:0;53974:82::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54047:1:::1;54032:12;:16;;;;53974:82::o:0;32620:369::-;32787:28;32797:4;32803:2;32807:7;32787:9;:28::i;:::-;32830:15;:2;:13;;;:15::i;:::-;:76;;;;;32850:56;32881:4;32887:2;32891:7;32900:5;32850:30;:56::i;:::-;32849:57;32830:76;32826:156;;;32930:40;;;;;;;;;;;;;;32826:156;32620:369;;;;:::o;48233:2879::-;48350:14;48367:13;:11;:13::i;:::-;48350:30;;48413:1;48399:11;:15;48391:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48489:9;;48474:11;48465:6;:20;;;;:::i;:::-;:33;;48457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48554:7;:5;:7::i;:::-;48540:21;;:10;:21;;;48536:2196;;48601:1;48586:12;;:16;48578:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48664:1;48648:12;;:17;48644:2077;;;48686:24;48713:22;:34;48736:10;48713:34;;;;;;;;;;;;;;;;48686:61;;48796:39;48810:10;48822:12;;48796:13;:39::i;:::-;48766:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;48966:15;;48951:11;:30;;48921:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;49144:15;;49129:11;49110:16;:30;;;;:::i;:::-;:49;;49080:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;49302:11;49293:6;;:20;;;;:::i;:::-;49280:9;:33;;49250:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;48667:724;48644:2077;;;49417:1;49401:12;;:17;49397:1324;;;49439:24;49466:31;:43;49498:10;49466:43;;;;;;;;;;;;;;;;49439:70;;49558:39;49572:10;49584:12;;49558:13;:39::i;:::-;49528:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;49728:24;;49713:11;:39;;49683:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;49915:24;;49900:11;49881:16;:30;;;;:::i;:::-;:58;;49851:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;50091:11;50073:15;;:29;;;;:::i;:::-;50060:9;:42;;50030:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;49420:760;49397:1324;;;50206:1;50190:12;;:17;50186:535;;;50228:24;50255:20;:32;50276:10;50255:32;;;;;;;;;;;;;;;;50228:59;;50351:19;;50336:11;:34;;50306:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;50533:19;;50518:11;50499:16;:30;;;;:::i;:::-;:53;;50469:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;50671:11;50664:4;;:18;;;;:::i;:::-;50651:9;:31;;50643:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50209:512;50186:535;49397:1324;48644:2077;48536:2196;50744:34;50754:10;50766:11;50744:9;:34::i;:::-;50809:1;50793:12;;:17;50789:316;;;50865:11;50827:22;:34;50850:10;50827:34;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;50789:316;;;50914:1;50898:12;;:17;50894:211;;;50979:11;50932:31;:43;50964:10;50932:43;;;;;;;;;;;;;;;;:58;;;;;;;:::i;:::-;;;;;;;;50894:211;;;51028:1;51012:12;;:17;51008:97;;;51082:11;51046:20;:32;51067:10;51046:32;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;51008:97;50894:211;50789:316;48339:2773;48233:2879;;;:::o;54145:122::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54248:11:::1;54226:19;:33;;;;54145:122:::0;:::o;47323:43::-;;;;:::o;47036:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52153:725::-;52271:13;52324:16;52332:7;52324;:16::i;:::-;52302:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52444:5;52432:17;;:8;;;;;;;;;;;:17;;;52428:71;;;52473:14;52466:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52428:71;52511:28;52542:10;:8;:10::i;:::-;52511:41;;52614:1;52589:14;52583:28;:32;:287;;;;;;;;;;;;;;;;;52707:14;52748:18;:7;:16;:18::i;:::-;52793:13;52664:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52583:287;52563:307;;;52153:725;;;;:::o;54505:86::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54577:6:::1;54568;:15;;;;54505:86:::0;:::o;54275:126::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54382:11:::1;54358:21;:35;;;;54275:126:::0;:::o;47245:30::-;;;;:::o;53514:151::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53640:17:::1;53624:13;:33;;;;;;;;;;;;:::i;:::-;;53514:151:::0;:::o;31892:164::-;31989:4;32013:18;:25;32032:5;32013:25;;;;;;;;;;;;;;;:35;32039:8;32013:35;;;;;;;;;;;;;;;;;;;;;;;;;32006:42;;31892:164;;;;:::o;53673:126::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53776:15:::1;53759:14;:32;;;;;;;;;;;;:::i;:::-;;53673:126:::0;:::o;46332:238::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46455:1:::1;46435:22;;:8;:22;;;;46413:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46534:28;46553:8;46534:18;:28::i;:::-;46332:238:::0;:::o;16526:157::-;16611:4;16650:25;16635:40;;;:11;:40;;;;16628:47;;16526:157;;;:::o;33244:187::-;33301:4;33344:7;33325:15;:13;:15::i;:::-;:26;;:53;;;;;33365:13;;33355:7;:23;33325:53;:98;;;;;33396:11;:20;33408:7;33396:20;;;;;;;;;;;:27;;;;;;;;;;;;33395:28;33325:98;33318:105;;33244:187;;;:::o;4973:98::-;5026:7;5053:10;5046:17;;4973:98;:::o;41414:196::-;41556:2;41529:15;:24;41545:7;41529:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41594:7;41590:2;41574:28;;41583:5;41574:28;;;;;;;;;;;;41414:196;;;:::o;25665:92::-;25721:7;25665:92;:::o;912:190::-;1037:4;1090;1061:25;1074:5;1081:4;1061:12;:25::i;:::-;:33;1054:40;;912:190;;;;;:::o;36357:2130::-;36472:35;36510:21;36523:7;36510:12;:21::i;:::-;36472:59;;36570:4;36548:26;;:13;:18;;;:26;;;36544:67;;36583:28;;;;;;;;;;;;;;36544:67;36624:22;36666:4;36650:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;36687:36;36704:4;36710:12;:10;:12::i;:::-;36687:16;:36::i;:::-;36650:73;:126;;;;36764:12;:10;:12::i;:::-;36740:36;;:20;36752:7;36740:11;:20::i;:::-;:36;;;36650:126;36624:153;;36795:17;36790:66;;36821:35;;;;;;;;;;;;;;36790:66;36885:1;36871:16;;:2;:16;;;36867:52;;;36896:23;;;;;;;;;;;;;;36867:52;36932:43;36954:4;36960:2;36964:7;36973:1;36932:21;:43::i;:::-;37040:35;37057:1;37061:7;37070:4;37040:8;:35::i;:::-;37401:1;37371:12;:18;37384:4;37371:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37445:1;37417:12;:16;37430:2;37417:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37463:31;37497:11;:20;37509:7;37497:20;;;;;;;;;;;37463:54;;37548:2;37532:8;:13;;;:18;;;;;;;;;;;;;;;;;;37598:15;37565:8;:23;;;:49;;;;;;;;;;;;;;;;;;37866:19;37898:1;37888:7;:11;37866:33;;37914:31;37948:11;:24;37960:11;37948:24;;;;;;;;;;;37914:58;;38016:1;37991:27;;:8;:13;;;;;;;;;;;;:27;;;37987:384;;;38201:13;;38186:11;:28;38182:174;;38255:4;38239:8;:13;;;:20;;;;;;;;;;;;;;;;;;38308:13;:28;;;38282:8;:23;;;:54;;;;;;;;;;;;;;;;;;38182:174;37987:384;37346:1036;;;38418:7;38414:2;38399:27;;38408:4;38399:27;;;;;;;;;;;;38437:42;38458:4;38464:2;38468:7;38477:1;38437:20;:42::i;:::-;36461:2026;;36357:2130;;;:::o;28392:1109::-;28454:21;;:::i;:::-;28488:12;28503:7;28488:22;;28571:4;28552:15;:13;:15::i;:::-;:23;;:47;;;;;28586:13;;28579:4;:20;28552:47;28548:886;;;28620:31;28654:11;:17;28666:4;28654:17;;;;;;;;;;;28620:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28695:9;:16;;;28690:729;;28766:1;28740:28;;:9;:14;;;:28;;;28736:101;;28804:9;28797:16;;;;;;28736:101;29139:261;29146:4;29139:261;;;29179:6;;;;;;;;29224:11;:17;29236:4;29224:17;;;;;;;;;;;29212:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29298:1;29272:28;;:9;:14;;;:28;;;29268:109;;29340:9;29333:16;;;;;;29268:109;29139:261;;;28690:729;28601:833;28548:886;29462:31;;;;;;;;;;;;;;28392:1109;;;;:::o;46730:191::-;46804:16;46823:6;;;;;;;;;;;46804:25;;46849:8;46840:6;;:17;;;;;;;;;;;;;;;;;;46904:8;46873:40;;46894:8;46873:40;;;;;;;;;;;;46793:128;46730:191;:::o;6420:326::-;6480:4;6737:1;6715:7;:19;;;:23;6708:30;;6420:326;;;:::o;42102:667::-;42265:4;42302:2;42286:36;;;42323:12;:10;:12::i;:::-;42337:4;42343:7;42352:5;42286:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42282:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42537:1;42520:6;:13;:18;42516:235;;;42566:40;;;;;;;;;;;;;;42516:235;42709:6;42703:13;42694:6;42690:2;42686:15;42679:38;42282:480;42415:45;;;42405:55;;;:6;:55;;;;42398:62;;;42102:667;;;;;;:::o;33439:104::-;33508:27;33518:2;33522:8;33508:27;;;;;;;;;;;;:9;:27::i;:::-;33439:104;;:::o;48117:108::-;48177:13;48210:7;48203:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48117:108;:::o;2535:723::-;2591:13;2821:1;2812:5;:10;2808:53;;;2839:10;;;;;;;;;;;;;;;;;;;;;2808:53;2871:12;2886:5;2871:20;;2902:14;2927:78;2942:1;2934:4;:9;2927:78;;2960:8;;;;;:::i;:::-;;;;2991:2;2983:10;;;;;:::i;:::-;;;2927:78;;;3015:19;3047:6;3037:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3015:39;;3065:154;3081:1;3072:5;:10;3065:154;;3109:1;3099:11;;;;;:::i;:::-;;;3176:2;3168:5;:10;;;;:::i;:::-;3155:2;:24;;;;:::i;:::-;3142:39;;3125:6;3132;3125:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3205:2;3196:11;;;;;:::i;:::-;;;3065:154;;;3243:6;3229:21;;;;;2535:723;;;;:::o;1464:701::-;1547:7;1567:20;1590:4;1567:27;;1610:9;1605:523;1629:5;:12;1625:1;:16;1605:523;;;1663:20;1686:5;1692:1;1686:8;;;;;;;;:::i;:::-;;;;;;;;1663:31;;1729:12;1713;:28;1709:408;;1883:12;1897;1866:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1856:55;;;;;;1841:70;;1709:408;;;2073:12;2087;2056:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2046:55;;;;;;2031:70;;1709:408;1648:480;1643:3;;;;;:::i;:::-;;;;1605:523;;;;2145:12;2138:19;;;1464:701;;;;:::o;43417:159::-;;;;;:::o;44235:158::-;;;;;:::o;33906:163::-;34029:32;34035:2;34039:8;34049:5;34056:4;34029:5;:32::i;:::-;33906:163;;;:::o;34328:1775::-;34467:20;34490:13;;34467:36;;34532:1;34518:16;;:2;:16;;;34514:48;;;34543:19;;;;;;;;;;;;;;34514:48;34589:1;34577:8;:13;34573:44;;;34599:18;;;;;;;;;;;;;;34573:44;34630:61;34660:1;34664:2;34668:12;34682:8;34630:21;:61::i;:::-;35003:8;34968:12;:16;34981:2;34968:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35067:8;35027:12;:16;35040:2;35027:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35126:2;35093:11;:25;35105:12;35093:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35193:15;35143:11;:25;35155:12;35143:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35226:20;35249:12;35226:35;;35276:11;35305:8;35290:12;:23;35276:37;;35334:4;:23;;;;;35342:15;:2;:13;;;:15::i;:::-;35334:23;35330:641;;;35378:314;35434:12;35430:2;35409:38;;35426:1;35409:38;;;;;;;;;;;;35475:69;35514:1;35518:2;35522:14;;;;;;35538:5;35475:30;:69::i;:::-;35470:174;;35580:40;;;;;;;;;;;;;;35470:174;35687:3;35671:12;:19;;35378:314;;35773:12;35756:13;;:29;35752:43;;35787:8;;;35752:43;35330:641;;;35836:120;35892:14;;;;;;35888:2;35867:40;;35884:1;35867:40;;;;;;;;;;;;35951:3;35935:12;:19;;35836:120;;35330:641;36001:12;35985:13;:28;;;;34943:1082;;36035:60;36064:1;36068:2;36072:12;36086:8;36035:20;:60::i;:::-;34456:1647;34328:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:704::-;5497:6;5505;5513;5562:2;5550:9;5541:7;5537:23;5533:32;5530:119;;;5568:79;;:::i;:::-;5530:119;5688:1;5713:53;5758:7;5749:6;5738:9;5734:22;5713:53;:::i;:::-;5703:63;;5659:117;5843:2;5832:9;5828:18;5815:32;5874:18;5866:6;5863:30;5860:117;;;5896:79;;:::i;:::-;5860:117;6009:80;6081:7;6072:6;6061:9;6057:22;6009:80;:::i;:::-;5991:98;;;;5786:313;5402:704;;;;;:::o;6112:468::-;6177:6;6185;6234:2;6222:9;6213:7;6209:23;6205:32;6202:119;;;6240:79;;:::i;:::-;6202:119;6360:1;6385:53;6430:7;6421:6;6410:9;6406:22;6385:53;:::i;:::-;6375:63;;6331:117;6487:2;6513:50;6555:7;6546:6;6535:9;6531:22;6513:50;:::i;:::-;6503:60;;6458:115;6112:468;;;;;:::o;6586:474::-;6654:6;6662;6711:2;6699:9;6690:7;6686:23;6682:32;6679:119;;;6717:79;;:::i;:::-;6679:119;6837:1;6862:53;6907:7;6898:6;6887:9;6883:22;6862:53;:::i;:::-;6852:63;;6808:117;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;6586:474;;;;;:::o;7066:329::-;7125:6;7174:2;7162:9;7153:7;7149:23;7145:32;7142:119;;;7180:79;;:::i;:::-;7142:119;7300:1;7325:53;7370:7;7361:6;7350:9;7346:22;7325:53;:::i;:::-;7315:63;;7271:117;7066:329;;;;:::o;7401:327::-;7459:6;7508:2;7496:9;7487:7;7483:23;7479:32;7476:119;;;7514:79;;:::i;:::-;7476:119;7634:1;7659:52;7703:7;7694:6;7683:9;7679:22;7659:52;:::i;:::-;7649:62;;7605:116;7401:327;;;;:::o;7734:349::-;7803:6;7852:2;7840:9;7831:7;7827:23;7823:32;7820:119;;;7858:79;;:::i;:::-;7820:119;7978:1;8003:63;8058:7;8049:6;8038:9;8034:22;8003:63;:::i;:::-;7993:73;;7949:127;7734:349;;;;:::o;8089:509::-;8158:6;8207:2;8195:9;8186:7;8182:23;8178:32;8175:119;;;8213:79;;:::i;:::-;8175:119;8361:1;8350:9;8346:17;8333:31;8391:18;8383:6;8380:30;8377:117;;;8413:79;;:::i;:::-;8377:117;8518:63;8573:7;8564:6;8553:9;8549:22;8518:63;:::i;:::-;8508:73;;8304:287;8089:509;;;;:::o;8604:329::-;8663:6;8712:2;8700:9;8691:7;8687:23;8683:32;8680:119;;;8718:79;;:::i;:::-;8680:119;8838:1;8863:53;8908:7;8899:6;8888:9;8884:22;8863:53;:::i;:::-;8853:63;;8809:117;8604:329;;;;:::o;8939:704::-;9034:6;9042;9050;9099:2;9087:9;9078:7;9074:23;9070:32;9067:119;;;9105:79;;:::i;:::-;9067:119;9225:1;9250:53;9295:7;9286:6;9275:9;9271:22;9250:53;:::i;:::-;9240:63;;9196:117;9380:2;9369:9;9365:18;9352:32;9411:18;9403:6;9400:30;9397:117;;;9433:79;;:::i;:::-;9397:117;9546:80;9618:7;9609:6;9598:9;9594:22;9546:80;:::i;:::-;9528:98;;;;9323:313;8939:704;;;;;:::o;9649:118::-;9736:24;9754:5;9736:24;:::i;:::-;9731:3;9724:37;9649:118;;:::o;9773:157::-;9878:45;9898:24;9916:5;9898:24;:::i;:::-;9878:45;:::i;:::-;9873:3;9866:58;9773:157;;:::o;9936:109::-;10017:21;10032:5;10017:21;:::i;:::-;10012:3;10005:34;9936:109;;:::o;10051:118::-;10138:24;10156:5;10138:24;:::i;:::-;10133:3;10126:37;10051:118;;:::o;10175:157::-;10280:45;10300:24;10318:5;10300:24;:::i;:::-;10280:45;:::i;:::-;10275:3;10268:58;10175:157;;:::o;10338:360::-;10424:3;10452:38;10484:5;10452:38;:::i;:::-;10506:70;10569:6;10564:3;10506:70;:::i;:::-;10499:77;;10585:52;10630:6;10625:3;10618:4;10611:5;10607:16;10585:52;:::i;:::-;10662:29;10684:6;10662:29;:::i;:::-;10657:3;10653:39;10646:46;;10428:270;10338:360;;;;:::o;10704:364::-;10792:3;10820:39;10853:5;10820:39;:::i;:::-;10875:71;10939:6;10934:3;10875:71;:::i;:::-;10868:78;;10955:52;11000:6;10995:3;10988:4;10981:5;10977:16;10955:52;:::i;:::-;11032:29;11054:6;11032:29;:::i;:::-;11027:3;11023:39;11016:46;;10796:272;10704:364;;;;:::o;11074:377::-;11180:3;11208:39;11241:5;11208:39;:::i;:::-;11263:89;11345:6;11340:3;11263:89;:::i;:::-;11256:96;;11361:52;11406:6;11401:3;11394:4;11387:5;11383:16;11361:52;:::i;:::-;11438:6;11433:3;11429:16;11422:23;;11184:267;11074:377;;;;:::o;11481:845::-;11584:3;11621:5;11615:12;11650:36;11676:9;11650:36;:::i;:::-;11702:89;11784:6;11779:3;11702:89;:::i;:::-;11695:96;;11822:1;11811:9;11807:17;11838:1;11833:137;;;;11984:1;11979:341;;;;11800:520;;11833:137;11917:4;11913:9;11902;11898:25;11893:3;11886:38;11953:6;11948:3;11944:16;11937:23;;11833:137;;11979:341;12046:38;12078:5;12046:38;:::i;:::-;12106:1;12120:154;12134:6;12131:1;12128:13;12120:154;;;12208:7;12202:14;12198:1;12193:3;12189:11;12182:35;12258:1;12249:7;12245:15;12234:26;;12156:4;12153:1;12149:12;12144:17;;12120:154;;;12303:6;12298:3;12294:16;12287:23;;11986:334;;11800:520;;11588:738;;11481:845;;;;:::o;12332:366::-;12474:3;12495:67;12559:2;12554:3;12495:67;:::i;:::-;12488:74;;12571:93;12660:3;12571:93;:::i;:::-;12689:2;12684:3;12680:12;12673:19;;12332:366;;;:::o;12704:::-;12846:3;12867:67;12931:2;12926:3;12867:67;:::i;:::-;12860:74;;12943:93;13032:3;12943:93;:::i;:::-;13061:2;13056:3;13052:12;13045:19;;12704:366;;;:::o;13076:::-;13218:3;13239:67;13303:2;13298:3;13239:67;:::i;:::-;13232:74;;13315:93;13404:3;13315:93;:::i;:::-;13433:2;13428:3;13424:12;13417:19;;13076:366;;;:::o;13448:::-;13590:3;13611:67;13675:2;13670:3;13611:67;:::i;:::-;13604:74;;13687:93;13776:3;13687:93;:::i;:::-;13805:2;13800:3;13796:12;13789:19;;13448:366;;;:::o;13820:::-;13962:3;13983:67;14047:2;14042:3;13983:67;:::i;:::-;13976:74;;14059:93;14148:3;14059:93;:::i;:::-;14177:2;14172:3;14168:12;14161:19;;13820:366;;;:::o;14192:::-;14334:3;14355:67;14419:2;14414:3;14355:67;:::i;:::-;14348:74;;14431:93;14520:3;14431:93;:::i;:::-;14549:2;14544:3;14540:12;14533:19;;14192:366;;;:::o;14564:::-;14706:3;14727:67;14791:2;14786:3;14727:67;:::i;:::-;14720:74;;14803:93;14892:3;14803:93;:::i;:::-;14921:2;14916:3;14912:12;14905:19;;14564:366;;;:::o;14936:398::-;15095:3;15116:83;15197:1;15192:3;15116:83;:::i;:::-;15109:90;;15208:93;15297:3;15208:93;:::i;:::-;15326:1;15321:3;15317:11;15310:18;;14936:398;;;:::o;15340:366::-;15482:3;15503:67;15567:2;15562:3;15503:67;:::i;:::-;15496:74;;15579:93;15668:3;15579:93;:::i;:::-;15697:2;15692:3;15688:12;15681:19;;15340:366;;;:::o;15712:::-;15854:3;15875:67;15939:2;15934:3;15875:67;:::i;:::-;15868:74;;15951:93;16040:3;15951:93;:::i;:::-;16069:2;16064:3;16060:12;16053:19;;15712:366;;;:::o;16084:::-;16226:3;16247:67;16311:2;16306:3;16247:67;:::i;:::-;16240:74;;16323:93;16412:3;16323:93;:::i;:::-;16441:2;16436:3;16432:12;16425:19;;16084:366;;;:::o;16456:118::-;16543:24;16561:5;16543:24;:::i;:::-;16538:3;16531:37;16456:118;;:::o;16580:256::-;16692:3;16707:75;16778:3;16769:6;16707:75;:::i;:::-;16807:2;16802:3;16798:12;16791:19;;16827:3;16820:10;;16580:256;;;;:::o;16842:397::-;16982:3;16997:75;17068:3;17059:6;16997:75;:::i;:::-;17097:2;17092:3;17088:12;17081:19;;17110:75;17181:3;17172:6;17110:75;:::i;:::-;17210:2;17205:3;17201:12;17194:19;;17230:3;17223:10;;16842:397;;;;;:::o;17245:589::-;17470:3;17492:95;17583:3;17574:6;17492:95;:::i;:::-;17485:102;;17604:95;17695:3;17686:6;17604:95;:::i;:::-;17597:102;;17716:92;17804:3;17795:6;17716:92;:::i;:::-;17709:99;;17825:3;17818:10;;17245:589;;;;;;:::o;17840:379::-;18024:3;18046:147;18189:3;18046:147;:::i;:::-;18039:154;;18210:3;18203:10;;17840:379;;;:::o;18225:222::-;18318:4;18356:2;18345:9;18341:18;18333:26;;18369:71;18437:1;18426:9;18422:17;18413:6;18369:71;:::i;:::-;18225:222;;;;:::o;18453:640::-;18648:4;18686:3;18675:9;18671:19;18663:27;;18700:71;18768:1;18757:9;18753:17;18744:6;18700:71;:::i;:::-;18781:72;18849:2;18838:9;18834:18;18825:6;18781:72;:::i;:::-;18863;18931:2;18920:9;18916:18;18907:6;18863:72;:::i;:::-;18982:9;18976:4;18972:20;18967:2;18956:9;18952:18;18945:48;19010:76;19081:4;19072:6;19010:76;:::i;:::-;19002:84;;18453:640;;;;;;;:::o;19099:210::-;19186:4;19224:2;19213:9;19209:18;19201:26;;19237:65;19299:1;19288:9;19284:17;19275:6;19237:65;:::i;:::-;19099:210;;;;:::o;19315:222::-;19408:4;19446:2;19435:9;19431:18;19423:26;;19459:71;19527:1;19516:9;19512:17;19503:6;19459:71;:::i;:::-;19315:222;;;;:::o;19543:313::-;19656:4;19694:2;19683:9;19679:18;19671:26;;19743:9;19737:4;19733:20;19729:1;19718:9;19714:17;19707:47;19771:78;19844:4;19835:6;19771:78;:::i;:::-;19763:86;;19543:313;;;;:::o;19862:419::-;20028:4;20066:2;20055:9;20051:18;20043:26;;20115:9;20109:4;20105:20;20101:1;20090:9;20086:17;20079:47;20143:131;20269:4;20143:131;:::i;:::-;20135:139;;19862:419;;;:::o;20287:::-;20453:4;20491:2;20480:9;20476:18;20468:26;;20540:9;20534:4;20530:20;20526:1;20515:9;20511:17;20504:47;20568:131;20694:4;20568:131;:::i;:::-;20560:139;;20287:419;;;:::o;20712:::-;20878:4;20916:2;20905:9;20901:18;20893:26;;20965:9;20959:4;20955:20;20951:1;20940:9;20936:17;20929:47;20993:131;21119:4;20993:131;:::i;:::-;20985:139;;20712:419;;;:::o;21137:::-;21303:4;21341:2;21330:9;21326:18;21318:26;;21390:9;21384:4;21380:20;21376:1;21365:9;21361:17;21354:47;21418:131;21544:4;21418:131;:::i;:::-;21410:139;;21137:419;;;:::o;21562:::-;21728:4;21766:2;21755:9;21751:18;21743:26;;21815:9;21809:4;21805:20;21801:1;21790:9;21786:17;21779:47;21843:131;21969:4;21843:131;:::i;:::-;21835:139;;21562:419;;;:::o;21987:::-;22153:4;22191:2;22180:9;22176:18;22168:26;;22240:9;22234:4;22230:20;22226:1;22215:9;22211:17;22204:47;22268:131;22394:4;22268:131;:::i;:::-;22260:139;;21987:419;;;:::o;22412:::-;22578:4;22616:2;22605:9;22601:18;22593:26;;22665:9;22659:4;22655:20;22651:1;22640:9;22636:17;22629:47;22693:131;22819:4;22693:131;:::i;:::-;22685:139;;22412:419;;;:::o;22837:::-;23003:4;23041:2;23030:9;23026:18;23018:26;;23090:9;23084:4;23080:20;23076:1;23065:9;23061:17;23054:47;23118:131;23244:4;23118:131;:::i;:::-;23110:139;;22837:419;;;:::o;23262:::-;23428:4;23466:2;23455:9;23451:18;23443:26;;23515:9;23509:4;23505:20;23501:1;23490:9;23486:17;23479:47;23543:131;23669:4;23543:131;:::i;:::-;23535:139;;23262:419;;;:::o;23687:::-;23853:4;23891:2;23880:9;23876:18;23868:26;;23940:9;23934:4;23930:20;23926:1;23915:9;23911:17;23904:47;23968:131;24094:4;23968:131;:::i;:::-;23960:139;;23687:419;;;:::o;24112:222::-;24205:4;24243:2;24232:9;24228:18;24220:26;;24256:71;24324:1;24313:9;24309:17;24300:6;24256:71;:::i;:::-;24112:222;;;;:::o;24340:129::-;24374:6;24401:20;;:::i;:::-;24391:30;;24430:33;24458:4;24450:6;24430:33;:::i;:::-;24340:129;;;:::o;24475:75::-;24508:6;24541:2;24535:9;24525:19;;24475:75;:::o;24556:307::-;24617:4;24707:18;24699:6;24696:30;24693:56;;;24729:18;;:::i;:::-;24693:56;24767:29;24789:6;24767:29;:::i;:::-;24759:37;;24851:4;24845;24841:15;24833:23;;24556:307;;;:::o;24869:308::-;24931:4;25021:18;25013:6;25010:30;25007:56;;;25043:18;;:::i;:::-;25007:56;25081:29;25103:6;25081:29;:::i;:::-;25073:37;;25165:4;25159;25155:15;25147:23;;24869:308;;;:::o;25183:141::-;25232:4;25255:3;25247:11;;25278:3;25275:1;25268:14;25312:4;25309:1;25299:18;25291:26;;25183:141;;;:::o;25330:98::-;25381:6;25415:5;25409:12;25399:22;;25330:98;;;:::o;25434:99::-;25486:6;25520:5;25514:12;25504:22;;25434:99;;;:::o;25539:168::-;25622:11;25656:6;25651:3;25644:19;25696:4;25691:3;25687:14;25672:29;;25539:168;;;;:::o;25713:147::-;25814:11;25851:3;25836:18;;25713:147;;;;:::o;25866:169::-;25950:11;25984:6;25979:3;25972:19;26024:4;26019:3;26015:14;26000:29;;25866:169;;;;:::o;26041:148::-;26143:11;26180:3;26165:18;;26041:148;;;;:::o;26195:305::-;26235:3;26254:20;26272:1;26254:20;:::i;:::-;26249:25;;26288:20;26306:1;26288:20;:::i;:::-;26283:25;;26442:1;26374:66;26370:74;26367:1;26364:81;26361:107;;;26448:18;;:::i;:::-;26361:107;26492:1;26489;26485:9;26478:16;;26195:305;;;;:::o;26506:185::-;26546:1;26563:20;26581:1;26563:20;:::i;:::-;26558:25;;26597:20;26615:1;26597:20;:::i;:::-;26592:25;;26636:1;26626:35;;26641:18;;:::i;:::-;26626:35;26683:1;26680;26676:9;26671:14;;26506:185;;;;:::o;26697:348::-;26737:7;26760:20;26778:1;26760:20;:::i;:::-;26755:25;;26794:20;26812:1;26794:20;:::i;:::-;26789:25;;26982:1;26914:66;26910:74;26907:1;26904:81;26899:1;26892:9;26885:17;26881:105;26878:131;;;26989:18;;:::i;:::-;26878:131;27037:1;27034;27030:9;27019:20;;26697:348;;;;:::o;27051:191::-;27091:4;27111:20;27129:1;27111:20;:::i;:::-;27106:25;;27145:20;27163:1;27145:20;:::i;:::-;27140:25;;27184:1;27181;27178:8;27175:34;;;27189:18;;:::i;:::-;27175:34;27234:1;27231;27227:9;27219:17;;27051:191;;;;:::o;27248:96::-;27285:7;27314:24;27332:5;27314:24;:::i;:::-;27303:35;;27248:96;;;:::o;27350:90::-;27384:7;27427:5;27420:13;27413:21;27402:32;;27350:90;;;:::o;27446:77::-;27483:7;27512:5;27501:16;;27446:77;;;:::o;27529:149::-;27565:7;27605:66;27598:5;27594:78;27583:89;;27529:149;;;:::o;27684:126::-;27721:7;27761:42;27754:5;27750:54;27739:65;;27684:126;;;:::o;27816:77::-;27853:7;27882:5;27871:16;;27816:77;;;:::o;27899:154::-;27983:6;27978:3;27973;27960:30;28045:1;28036:6;28031:3;28027:16;28020:27;27899:154;;;:::o;28059:307::-;28127:1;28137:113;28151:6;28148:1;28145:13;28137:113;;;28236:1;28231:3;28227:11;28221:18;28217:1;28212:3;28208:11;28201:39;28173:2;28170:1;28166:10;28161:15;;28137:113;;;28268:6;28265:1;28262:13;28259:101;;;28348:1;28339:6;28334:3;28330:16;28323:27;28259:101;28108:258;28059:307;;;:::o;28372:320::-;28416:6;28453:1;28447:4;28443:12;28433:22;;28500:1;28494:4;28490:12;28521:18;28511:81;;28577:4;28569:6;28565:17;28555:27;;28511:81;28639:2;28631:6;28628:14;28608:18;28605:38;28602:84;;;28658:18;;:::i;:::-;28602:84;28423:269;28372:320;;;:::o;28698:281::-;28781:27;28803:4;28781:27;:::i;:::-;28773:6;28769:40;28911:6;28899:10;28896:22;28875:18;28863:10;28860:34;28857:62;28854:88;;;28922:18;;:::i;:::-;28854:88;28962:10;28958:2;28951:22;28741:238;28698:281;;:::o;28985:233::-;29024:3;29047:24;29065:5;29047:24;:::i;:::-;29038:33;;29093:66;29086:5;29083:77;29080:103;;;29163:18;;:::i;:::-;29080:103;29210:1;29203:5;29199:13;29192:20;;28985:233;;;:::o;29224:100::-;29263:7;29292:26;29312:5;29292:26;:::i;:::-;29281:37;;29224:100;;;:::o;29330:79::-;29369:7;29398:5;29387:16;;29330:79;;;:::o;29415:94::-;29454:7;29483:20;29497:5;29483:20;:::i;:::-;29472:31;;29415:94;;;:::o;29515:176::-;29547:1;29564:20;29582:1;29564:20;:::i;:::-;29559:25;;29598:20;29616:1;29598:20;:::i;:::-;29593:25;;29637:1;29627:35;;29642:18;;:::i;:::-;29627:35;29683:1;29680;29676:9;29671:14;;29515:176;;;;:::o;29697:180::-;29745:77;29742:1;29735:88;29842:4;29839:1;29832:15;29866:4;29863:1;29856:15;29883:180;29931:77;29928:1;29921:88;30028:4;30025:1;30018:15;30052:4;30049:1;30042:15;30069:180;30117:77;30114:1;30107:88;30214:4;30211:1;30204:15;30238:4;30235:1;30228:15;30255:180;30303:77;30300:1;30293:88;30400:4;30397:1;30390:15;30424:4;30421:1;30414:15;30441:180;30489:77;30486:1;30479:88;30586:4;30583:1;30576:15;30610:4;30607:1;30600:15;30627:117;30736:1;30733;30726:12;30750:117;30859:1;30856;30849:12;30873:117;30982:1;30979;30972:12;30996:117;31105:1;31102;31095:12;31119:117;31228:1;31225;31218:12;31242:117;31351:1;31348;31341:12;31365:102;31406:6;31457:2;31453:7;31448:2;31441:5;31437:14;31433:28;31423:38;;31365:102;;;:::o;31473:94::-;31506:8;31554:5;31550:2;31546:14;31525:35;;31473:94;;;:::o;31573:225::-;31713:34;31709:1;31701:6;31697:14;31690:58;31782:8;31777:2;31769:6;31765:15;31758:33;31573:225;:::o;31804:178::-;31944:30;31940:1;31932:6;31928:14;31921:54;31804:178;:::o;31988:172::-;32128:24;32124:1;32116:6;32112:14;32105:48;31988:172;:::o;32166:223::-;32306:34;32302:1;32294:6;32290:14;32283:58;32375:6;32370:2;32362:6;32358:15;32351:31;32166:223;:::o;32395:182::-;32535:34;32531:1;32523:6;32519:14;32512:58;32395:182;:::o;32583:172::-;32723:24;32719:1;32711:6;32707:14;32700:48;32583:172;:::o;32761:234::-;32901:34;32897:1;32889:6;32885:14;32878:58;32970:17;32965:2;32957:6;32953:15;32946:42;32761:234;:::o;33001:114::-;;:::o;33121:168::-;33261:20;33257:1;33249:6;33245:14;33238:44;33121:168;:::o;33295:173::-;33435:25;33431:1;33423:6;33419:14;33412:49;33295:173;:::o;33474:177::-;33614:29;33610:1;33602:6;33598:14;33591:53;33474:177;:::o;33657:122::-;33730:24;33748:5;33730:24;:::i;:::-;33723:5;33720:35;33710:63;;33769:1;33766;33759:12;33710:63;33657:122;:::o;33785:116::-;33855:21;33870:5;33855:21;:::i;:::-;33848:5;33845:32;33835:60;;33891:1;33888;33881:12;33835:60;33785:116;:::o;33907:122::-;33980:24;33998:5;33980:24;:::i;:::-;33973:5;33970:35;33960:63;;34019:1;34016;34009:12;33960:63;33907:122;:::o;34035:120::-;34107:23;34124:5;34107:23;:::i;:::-;34100:5;34097:34;34087:62;;34145:1;34142;34135:12;34087:62;34035:120;:::o;34161:122::-;34234:24;34252:5;34234:24;:::i;:::-;34227:5;34224:35;34214:63;;34273:1;34270;34263:12;34214:63;34161:122;:::o

Swarm Source

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