ETH Price: $3,506.80 (+4.03%)
Gas: 4 Gwei

Token

TroscotGoblin (TRCBG)
 

Overview

Max Total Supply

3,574 TRCBG

Holders

672

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 TRCBG
0xdFA3880c3643c72805413f24557E2Ff1f2226Faa
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:
testerc721a

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT
//File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/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/testerc721a.sol


pragma solidity ^0.8.4;










contract testerc721a is ERC721A, Ownable {
    uint256 public MAX_MINTS = 5;
    uint256 public MAX_SUPPLY = 12221;
    uint256 public freeMints = 1111;
    

    bool public paused = true; 
    bool public revealed = true;

    string public baseURI = "ipfs://QmVThBHWgpULwBBdPp1ZKNJJDrLxeMQoxEwiSyeT77hhgH/";
    string public notRevealedBaseUri = "";
    string public baseExtension = ".json";

    address[] public whitelistedAddresses;

    constructor() ERC721A("TroscotGoblin", "TRCBG") {}

    function mint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        // _safeMint's second argument now takes in a quantity, not a tokenId.

        if(msg.sender != owner()){
            require(!paused, "Contract is PAUSED");
            require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the minting limit");
            require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
            require(msg.value >= needToUpdateCost(supply)*quantity,"Not enough Ether sent");

            
        }
        _safeMint(msg.sender, quantity);

    }



    function _baseURI() internal view override returns (string memory) {
        if(revealed == true){
            return baseURI; 
        } else{
            return notRevealedBaseUri; 
        }
        
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory currentBaseUri;
        string memory currentExtension;
        if (revealed == true){
            currentBaseUri = baseURI;
            currentExtension = Strings.toString(tokenId + 1);
        }else{
            currentBaseUri = notRevealedBaseUri;
            currentExtension = "hiddden";
        }
        return bytes(currentBaseUri).length != 0 ? string(abi.encodePacked(currentBaseUri,currentExtension,baseExtension)) : '';
    }
    //Minting costs

    function needToUpdateCost(uint256 _supply) internal view returns (uint256 _cost) {
        if(_supply < freeMints + 1){
            return 0 ether;
        }
        if(_supply <= 2222){
            return 0.001 ether;
        }
        if(_supply <= 3333){
            return 0.002 ether;
        }
        if(_supply <= 4444){
            return 0.003 ether;
        }
        if(_supply <= 5555){
            return 0.004 ether;
        }
        if(_supply <= 6666){
            return 0.005 ether;
        }
        if(_supply <= 7777){
            return 0.006 ether;
        }
        if(_supply <= 8888){
            return 0.007 ether;
        }
        if(_supply <= 9999){
            return 0.008 ether;
        }
        if(_supply <= 11110){
            return 0.009 ether;
        }
        if(_supply <= 12221){
            return 0.01 ether;
        }
    }
    function setMintAmount(uint256 _mintAmount) public onlyOwner {
        MAX_MINTS = _mintAmount;
    }


    //baseuri changes
    function setBaseUri(string memory _newbaseURI) public onlyOwner {
        baseURI = _newbaseURI;
    }
    function setBaseUriNotReveal(string memory _newbaseURI) public onlyOwner {
        notRevealedBaseUri = _newbaseURI;
    }
    //complex chnages (whitelist,teamwhitelist)

    //bool values
    function pause(bool _state) public onlyOwner {
    paused = _state;
  }

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


    function withdraw() external payable onlyOwner {
        payable(address(owner())).transfer(address(this).balance);
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedBaseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newbaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newbaseURI","type":"string"}],"name":"setBaseUriNotReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"setMintAmount","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":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526005600955612fbd600a55610457600b556001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff02191690831515021790555060405180606001604052806036815260200162003edf60369139600d90805190602001906200007c929190620002b0565b5060405180602001604052806000815250600e9080519060200190620000a4929190620002b0565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f9080519060200190620000f2929190620002b0565b503480156200010057600080fd5b506040518060400160405280600d81526020017f54726f73636f74476f626c696e000000000000000000000000000000000000008152506040518060400160405280600581526020017f5452434247000000000000000000000000000000000000000000000000000000815250816002908051906020019062000185929190620002b0565b5080600390805190602001906200019e929190620002b0565b50620001af620001dd60201b60201c565b6000819055505050620001d7620001cb620001e260201b60201c565b620001ea60201b60201c565b620003c5565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002be9062000360565b90600052602060002090601f016020900481019282620002e257600085556200032e565b82601f10620002fd57805160ff19168380011785556200032e565b828001600101855582156200032e579182015b828111156200032d57825182559160200191906001019062000310565b5b5090506200033d919062000341565b5090565b5b808211156200035c57600081600090555060010162000342565b5090565b600060028204905060018216806200037957607f821691505b6020821081141562000390576200038f62000396565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b0a80620003d56000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd14610699578063cce132d1146106d6578063e753976a14610701578063e985e9c51461072a578063f2fde38b14610767576101ee565b8063b88d4fde146105df578063ba4e5c4914610608578063c668286214610645578063c7cd997f14610670576101ee565b8063a0712d68116100dc578063a0712d681461055a578063a0bcfc7f14610576578063a22cb4651461059f578063a475b5dd146105c8576101ee565b8063715018a6146104c257806380b17335146104d95780638da5cb5b1461050457806395d89b411461052f576101ee565b806332cb6b0c116101855780635c975abb116101545780635c975abb146103f25780636352211e1461041d5780636c0360eb1461045a57806370a0823114610485576101ee565b806332cb6b0c146103695780633ccfd60b1461039457806342842e0e1461039e57806351830227146103c7576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806317058a5b146102ea57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613024565b610790565b60405161022791906133ad565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612ff7565b610872565b005b34801561026557600080fd5b5061026e61090b565b60405161027b91906133c8565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906130c7565b61099d565b6040516102b89190613346565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612fb7565b610a19565b005b3480156102f657600080fd5b506102ff610b24565b60405161030c91906133c8565b60405180910390f35b34801561032157600080fd5b5061032a610bb2565b60405161033791906134aa565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612ea1565b610bc9565b005b34801561037557600080fd5b5061037e610bd9565b60405161038b91906134aa565b60405180910390f35b61039c610bdf565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612ea1565b610cab565b005b3480156103d357600080fd5b506103dc610ccb565b6040516103e991906133ad565b60405180910390f35b3480156103fe57600080fd5b50610407610cde565b60405161041491906133ad565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906130c7565b610cf1565b6040516104519190613346565b60405180910390f35b34801561046657600080fd5b5061046f610d07565b60405161047c91906133c8565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190612e34565b610d95565b6040516104b991906134aa565b60405180910390f35b3480156104ce57600080fd5b506104d7610e65565b005b3480156104e557600080fd5b506104ee610eed565b6040516104fb91906134aa565b60405180910390f35b34801561051057600080fd5b50610519610ef3565b6040516105269190613346565b60405180910390f35b34801561053b57600080fd5b50610544610f1d565b60405161055191906133c8565b60405180910390f35b610574600480360381019061056f91906130c7565b610faf565b005b34801561058257600080fd5b5061059d6004803603810190610598919061307e565b611159565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612f77565b6111ef565b005b3480156105d457600080fd5b506105dd611367565b005b3480156105eb57600080fd5b5061060660048036038101906106019190612ef4565b611400565b005b34801561061457600080fd5b5061062f600480360381019061062a91906130c7565b61147c565b60405161063c9190613346565b60405180910390f35b34801561065157600080fd5b5061065a6114bb565b60405161066791906133c8565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906130c7565b611549565b005b3480156106a557600080fd5b506106c060048036038101906106bb91906130c7565b6115cf565b6040516106cd91906133c8565b60405180910390f35b3480156106e257600080fd5b506106eb6117ec565b6040516106f891906134aa565b60405180910390f35b34801561070d57600080fd5b506107286004803603810190610723919061307e565b6117f2565b005b34801561073657600080fd5b50610751600480360381019061074c9190612e61565b611888565b60405161075e91906133ad565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190612e34565b61191c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086b575061086a82611a14565b5b9050919050565b61087a611a7e565b73ffffffffffffffffffffffffffffffffffffffff16610898610ef3565b73ffffffffffffffffffffffffffffffffffffffff16146108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e59061348a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461091a9061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546109469061376f565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109a882611a86565b6109de576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2482610cf1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aab611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610add5750610adb81610ad6611a7e565b611888565b155b15610b14576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b1f838383611ad4565b505050565b600e8054610b319061376f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d9061376f565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b6000610bbc611b86565b6001546000540303905090565b610bd4838383611b8b565b505050565b600a5481565b610be7611a7e565b73ffffffffffffffffffffffffffffffffffffffff16610c05610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061348a565b60405180910390fd5b610c63610ef3565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ca8573d6000803e3d6000fd5b50565b610cc683838360405180602001604052806000815250611400565b505050565b600c60019054906101000a900460ff1681565b600c60009054906101000a900460ff1681565b6000610cfc82612041565b600001519050919050565b600d8054610d149061376f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d409061376f565b8015610d8d5780601f10610d6257610100808354040283529160200191610d8d565b820191906000526020600020905b815481529060010190602001808311610d7057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e6d611a7e565b73ffffffffffffffffffffffffffffffffffffffff16610e8b610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed89061348a565b60405180910390fd5b610eeb60006122d0565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f2c9061376f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f589061376f565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b5050505050905090565b6000610fb9610bb2565b9050610fc3610ef3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461114b57600c60009054906101000a900460ff1615611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c9061346a565b60405180910390fd5b60095461105133612396565b8361105c91906135a4565b111561109d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110949061344a565b60405180910390fd5b600a54826110a9610bb2565b6110b391906135a4565b11156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9061342a565b60405180910390fd5b816110fe82612400565b611108919061362b565b34101561114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906133ea565b60405180910390fd5b5b6111553383612517565b5050565b611161611a7e565b73ffffffffffffffffffffffffffffffffffffffff1661117f610ef3565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061348a565b60405180910390fd5b80600d90805190602001906111eb929190612c05565b5050565b6111f7611a7e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611269611a7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611316611a7e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135b91906133ad565b60405180910390a35050565b61136f611a7e565b73ffffffffffffffffffffffffffffffffffffffff1661138d610ef3565b73ffffffffffffffffffffffffffffffffffffffff16146113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da9061348a565b60405180910390fd5b6001600c60016101000a81548160ff021916908315150217905550565b61140b848484611b8b565b61142a8373ffffffffffffffffffffffffffffffffffffffff16612535565b801561143f575061143d84848484612558565b155b15611476576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6010818154811061148c57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f80546114c89061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546114f49061376f565b80156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b505050505081565b611551611a7e565b73ffffffffffffffffffffffffffffffffffffffff1661156f610ef3565b73ffffffffffffffffffffffffffffffffffffffff16146115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc9061348a565b60405180910390fd5b8060098190555050565b60606115da82611a86565b611610576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60608060011515600c60019054906101000a900460ff16151514156116d857600d805461163c9061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546116689061376f565b80156116b55780601f1061168a576101008083540402835291602001916116b5565b820191906000526020600020905b81548152906001019060200180831161169857829003601f168201915b505050505091506116d16001856116cc91906135a4565b6126b8565b905061179e565b600e80546116e59061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546117119061376f565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b505050505091506040518060400160405280600781526020017f6869646464656e0000000000000000000000000000000000000000000000000081525090505b6000825114156117bd57604051806020016040528060008152506117e3565b8181600f6040516020016117d393929190613315565b6040516020818303038152906040525b92505050919050565b60095481565b6117fa611a7e565b73ffffffffffffffffffffffffffffffffffffffff16611818610ef3565b73ffffffffffffffffffffffffffffffffffffffff161461186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061348a565b60405180910390fd5b80600e9080519060200190611884929190612c05565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611924611a7e565b73ffffffffffffffffffffffffffffffffffffffff16611942610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061348a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff9061340a565b60405180910390fd5b611a11816122d0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611a91611b86565b11158015611aa0575060005482105b8015611acd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611b9682612041565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c22611a7e565b73ffffffffffffffffffffffffffffffffffffffff161480611c515750611c5085611c4b611a7e565b611888565b5b80611c965750611c5f611a7e565b73ffffffffffffffffffffffffffffffffffffffff16611c7e8461099d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ccf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d36576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d438585856001612819565b611d4f60008487611ad4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fcf576000548214611fce57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461203a858585600161281f565b5050505050565b612049612c8b565b600082905080612057611b86565b11158015612066575060005481105b15612299576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161229757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461217b5780925050506122cb565b5b60011561229657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122915780925050506122cb565b61217c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006001600b5461241191906135a4565b8210156124215760009050612512565b6108ae82116124395766038d7ea4c680009050612512565b610d0582116124515766071afd498d00009050612512565b61115c821161246957660aa87bee5380009050612512565b6115b3821161248157660e35fa931a00009050612512565b611a0a8211612499576611c37937e080009050612512565b611e6182116124b157661550f7dca700009050612512565b6122b882116124c9576618de76816d80009050612512565b61270f82116124e157661c6bf5263400009050612512565b612b6682116124f957661ff973cafa80009050612512565b612fbd821161251157662386f26fc100009050612512565b5b919050565b612531828260405180602001604052806000815250612825565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257e611a7e565b8786866040518563ffffffff1660e01b81526004016125a09493929190613361565b602060405180830381600087803b1580156125ba57600080fd5b505af19250505080156125eb57506040513d601f19601f820116820180604052508101906125e89190613051565b60015b612665573d806000811461261b576040519150601f19603f3d011682016040523d82523d6000602084013e612620565b606091505b5060008151141561265d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612700576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612814565b600082905060005b6000821461273257808061271b906137d2565b915050600a8261272b91906135fa565b9150612708565b60008167ffffffffffffffff81111561274e5761274d613908565b5b6040519080825280601f01601f1916602001820160405280156127805781602001600182028036833780820191505090505b5090505b6000851461280d576001826127999190613685565b9150600a856127a8919061381b565b60306127b491906135a4565b60f81b8183815181106127ca576127c96138d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280691906135fa565b9450612784565b8093505050505b919050565b50505050565b50505050565b6128328383836001612837565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128a4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128df576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128ec6000868387612819565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ab65750612ab58773ffffffffffffffffffffffffffffffffffffffff16612535565b5b15612b7c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2b6000888480600101955088612558565b612b61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612abc578260005414612b7757600080fd5b612be8565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b7d575b816000819055505050612bfe600086838761281f565b5050505050565b828054612c119061376f565b90600052602060002090601f016020900481019282612c335760008555612c7a565b82601f10612c4c57805160ff1916838001178555612c7a565b82800160010185558215612c7a579182015b82811115612c79578251825591602001919060010190612c5e565b5b509050612c879190612cce565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ce7576000816000905550600101612ccf565b5090565b6000612cfe612cf9846134ea565b6134c5565b905082815260208101848484011115612d1a57612d1961393c565b5b612d2584828561372d565b509392505050565b6000612d40612d3b8461351b565b6134c5565b905082815260208101848484011115612d5c57612d5b61393c565b5b612d6784828561372d565b509392505050565b600081359050612d7e81613a78565b92915050565b600081359050612d9381613a8f565b92915050565b600081359050612da881613aa6565b92915050565b600081519050612dbd81613aa6565b92915050565b600082601f830112612dd857612dd7613937565b5b8135612de8848260208601612ceb565b91505092915050565b600082601f830112612e0657612e05613937565b5b8135612e16848260208601612d2d565b91505092915050565b600081359050612e2e81613abd565b92915050565b600060208284031215612e4a57612e49613946565b5b6000612e5884828501612d6f565b91505092915050565b60008060408385031215612e7857612e77613946565b5b6000612e8685828601612d6f565b9250506020612e9785828601612d6f565b9150509250929050565b600080600060608486031215612eba57612eb9613946565b5b6000612ec886828701612d6f565b9350506020612ed986828701612d6f565b9250506040612eea86828701612e1f565b9150509250925092565b60008060008060808587031215612f0e57612f0d613946565b5b6000612f1c87828801612d6f565b9450506020612f2d87828801612d6f565b9350506040612f3e87828801612e1f565b925050606085013567ffffffffffffffff811115612f5f57612f5e613941565b5b612f6b87828801612dc3565b91505092959194509250565b60008060408385031215612f8e57612f8d613946565b5b6000612f9c85828601612d6f565b9250506020612fad85828601612d84565b9150509250929050565b60008060408385031215612fce57612fcd613946565b5b6000612fdc85828601612d6f565b9250506020612fed85828601612e1f565b9150509250929050565b60006020828403121561300d5761300c613946565b5b600061301b84828501612d84565b91505092915050565b60006020828403121561303a57613039613946565b5b600061304884828501612d99565b91505092915050565b60006020828403121561306757613066613946565b5b600061307584828501612dae565b91505092915050565b60006020828403121561309457613093613946565b5b600082013567ffffffffffffffff8111156130b2576130b1613941565b5b6130be84828501612df1565b91505092915050565b6000602082840312156130dd576130dc613946565b5b60006130eb84828501612e1f565b91505092915050565b6130fd816136b9565b82525050565b61310c816136cb565b82525050565b600061311d82613561565b6131278185613577565b935061313781856020860161373c565b6131408161394b565b840191505092915050565b60006131568261356c565b6131608185613588565b935061317081856020860161373c565b6131798161394b565b840191505092915050565b600061318f8261356c565b6131998185613599565b93506131a981856020860161373c565b80840191505092915050565b600081546131c28161376f565b6131cc8186613599565b945060018216600081146131e757600181146131f85761322b565b60ff1983168652818601935061322b565b6132018561354c565b60005b8381101561322357815481890152600182019150602081019050613204565b838801955050505b50505092915050565b6000613241601583613588565b915061324c8261395c565b602082019050919050565b6000613264602683613588565b915061326f82613985565b604082019050919050565b6000613287601683613588565b9150613292826139d4565b602082019050919050565b60006132aa601a83613588565b91506132b5826139fd565b602082019050919050565b60006132cd601283613588565b91506132d882613a26565b602082019050919050565b60006132f0602083613588565b91506132fb82613a4f565b602082019050919050565b61330f81613723565b82525050565b60006133218286613184565b915061332d8285613184565b915061333982846131b5565b9150819050949350505050565b600060208201905061335b60008301846130f4565b92915050565b600060808201905061337660008301876130f4565b61338360208301866130f4565b6133906040830185613306565b81810360608301526133a28184613112565b905095945050505050565b60006020820190506133c26000830184613103565b92915050565b600060208201905081810360008301526133e2818461314b565b905092915050565b6000602082019050818103600083015261340381613234565b9050919050565b6000602082019050818103600083015261342381613257565b9050919050565b600060208201905081810360008301526134438161327a565b9050919050565b600060208201905081810360008301526134638161329d565b9050919050565b60006020820190508181036000830152613483816132c0565b9050919050565b600060208201905081810360008301526134a3816132e3565b9050919050565b60006020820190506134bf6000830184613306565b92915050565b60006134cf6134e0565b90506134db82826137a1565b919050565b6000604051905090565b600067ffffffffffffffff82111561350557613504613908565b5b61350e8261394b565b9050602081019050919050565b600067ffffffffffffffff82111561353657613535613908565b5b61353f8261394b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135af82613723565b91506135ba83613723565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ef576135ee61384c565b5b828201905092915050565b600061360582613723565b915061361083613723565b9250826136205761361f61387b565b5b828204905092915050565b600061363682613723565b915061364183613723565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561367a5761367961384c565b5b828202905092915050565b600061369082613723565b915061369b83613723565b9250828210156136ae576136ad61384c565b5b828203905092915050565b60006136c482613703565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561375a57808201518184015260208101905061373f565b83811115613769576000848401525b50505050565b6000600282049050600182168061378757607f821691505b6020821081141561379b5761379a6138aa565b5b50919050565b6137aa8261394b565b810181811067ffffffffffffffff821117156137c9576137c8613908565b5b80604052505050565b60006137dd82613723565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138105761380f61384c565b5b600182019050919050565b600061382682613723565b915061383183613723565b9250826138415761384061387b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f457863656564656420746865206d696e74696e67206c696d6974000000000000600082015250565b7f436f6e7472616374206973205041555345440000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613a81816136b9565b8114613a8c57600080fd5b50565b613a98816136cb565b8114613aa357600080fd5b50565b613aaf816136d7565b8114613aba57600080fd5b50565b613ac681613723565b8114613ad157600080fd5b5056fea26469706673582212204d0b1fc24f0163c64cfe26293fb5715c2bc449f03654b09e034972065ae1945764736f6c63430008070033697066733a2f2f516d5654684248576770554c774242645070315a4b4e4a4a44724c78654d516f78457769537965543737686867482f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd14610699578063cce132d1146106d6578063e753976a14610701578063e985e9c51461072a578063f2fde38b14610767576101ee565b8063b88d4fde146105df578063ba4e5c4914610608578063c668286214610645578063c7cd997f14610670576101ee565b8063a0712d68116100dc578063a0712d681461055a578063a0bcfc7f14610576578063a22cb4651461059f578063a475b5dd146105c8576101ee565b8063715018a6146104c257806380b17335146104d95780638da5cb5b1461050457806395d89b411461052f576101ee565b806332cb6b0c116101855780635c975abb116101545780635c975abb146103f25780636352211e1461041d5780636c0360eb1461045a57806370a0823114610485576101ee565b806332cb6b0c146103695780633ccfd60b1461039457806342842e0e1461039e57806351830227146103c7576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806317058a5b146102ea57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613024565b610790565b60405161022791906133ad565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612ff7565b610872565b005b34801561026557600080fd5b5061026e61090b565b60405161027b91906133c8565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906130c7565b61099d565b6040516102b89190613346565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612fb7565b610a19565b005b3480156102f657600080fd5b506102ff610b24565b60405161030c91906133c8565b60405180910390f35b34801561032157600080fd5b5061032a610bb2565b60405161033791906134aa565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612ea1565b610bc9565b005b34801561037557600080fd5b5061037e610bd9565b60405161038b91906134aa565b60405180910390f35b61039c610bdf565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612ea1565b610cab565b005b3480156103d357600080fd5b506103dc610ccb565b6040516103e991906133ad565b60405180910390f35b3480156103fe57600080fd5b50610407610cde565b60405161041491906133ad565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906130c7565b610cf1565b6040516104519190613346565b60405180910390f35b34801561046657600080fd5b5061046f610d07565b60405161047c91906133c8565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190612e34565b610d95565b6040516104b991906134aa565b60405180910390f35b3480156104ce57600080fd5b506104d7610e65565b005b3480156104e557600080fd5b506104ee610eed565b6040516104fb91906134aa565b60405180910390f35b34801561051057600080fd5b50610519610ef3565b6040516105269190613346565b60405180910390f35b34801561053b57600080fd5b50610544610f1d565b60405161055191906133c8565b60405180910390f35b610574600480360381019061056f91906130c7565b610faf565b005b34801561058257600080fd5b5061059d6004803603810190610598919061307e565b611159565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612f77565b6111ef565b005b3480156105d457600080fd5b506105dd611367565b005b3480156105eb57600080fd5b5061060660048036038101906106019190612ef4565b611400565b005b34801561061457600080fd5b5061062f600480360381019061062a91906130c7565b61147c565b60405161063c9190613346565b60405180910390f35b34801561065157600080fd5b5061065a6114bb565b60405161066791906133c8565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906130c7565b611549565b005b3480156106a557600080fd5b506106c060048036038101906106bb91906130c7565b6115cf565b6040516106cd91906133c8565b60405180910390f35b3480156106e257600080fd5b506106eb6117ec565b6040516106f891906134aa565b60405180910390f35b34801561070d57600080fd5b506107286004803603810190610723919061307e565b6117f2565b005b34801561073657600080fd5b50610751600480360381019061074c9190612e61565b611888565b60405161075e91906133ad565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190612e34565b61191c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086b575061086a82611a14565b5b9050919050565b61087a611a7e565b73ffffffffffffffffffffffffffffffffffffffff16610898610ef3565b73ffffffffffffffffffffffffffffffffffffffff16146108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e59061348a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461091a9061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546109469061376f565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109a882611a86565b6109de576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2482610cf1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aab611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610add5750610adb81610ad6611a7e565b611888565b155b15610b14576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b1f838383611ad4565b505050565b600e8054610b319061376f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d9061376f565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b6000610bbc611b86565b6001546000540303905090565b610bd4838383611b8b565b505050565b600a5481565b610be7611a7e565b73ffffffffffffffffffffffffffffffffffffffff16610c05610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061348a565b60405180910390fd5b610c63610ef3565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ca8573d6000803e3d6000fd5b50565b610cc683838360405180602001604052806000815250611400565b505050565b600c60019054906101000a900460ff1681565b600c60009054906101000a900460ff1681565b6000610cfc82612041565b600001519050919050565b600d8054610d149061376f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d409061376f565b8015610d8d5780601f10610d6257610100808354040283529160200191610d8d565b820191906000526020600020905b815481529060010190602001808311610d7057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e6d611a7e565b73ffffffffffffffffffffffffffffffffffffffff16610e8b610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed89061348a565b60405180910390fd5b610eeb60006122d0565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f2c9061376f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f589061376f565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b5050505050905090565b6000610fb9610bb2565b9050610fc3610ef3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461114b57600c60009054906101000a900460ff1615611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c9061346a565b60405180910390fd5b60095461105133612396565b8361105c91906135a4565b111561109d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110949061344a565b60405180910390fd5b600a54826110a9610bb2565b6110b391906135a4565b11156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9061342a565b60405180910390fd5b816110fe82612400565b611108919061362b565b34101561114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906133ea565b60405180910390fd5b5b6111553383612517565b5050565b611161611a7e565b73ffffffffffffffffffffffffffffffffffffffff1661117f610ef3565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061348a565b60405180910390fd5b80600d90805190602001906111eb929190612c05565b5050565b6111f7611a7e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611269611a7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611316611a7e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135b91906133ad565b60405180910390a35050565b61136f611a7e565b73ffffffffffffffffffffffffffffffffffffffff1661138d610ef3565b73ffffffffffffffffffffffffffffffffffffffff16146113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da9061348a565b60405180910390fd5b6001600c60016101000a81548160ff021916908315150217905550565b61140b848484611b8b565b61142a8373ffffffffffffffffffffffffffffffffffffffff16612535565b801561143f575061143d84848484612558565b155b15611476576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6010818154811061148c57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f80546114c89061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546114f49061376f565b80156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b505050505081565b611551611a7e565b73ffffffffffffffffffffffffffffffffffffffff1661156f610ef3565b73ffffffffffffffffffffffffffffffffffffffff16146115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc9061348a565b60405180910390fd5b8060098190555050565b60606115da82611a86565b611610576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60608060011515600c60019054906101000a900460ff16151514156116d857600d805461163c9061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546116689061376f565b80156116b55780601f1061168a576101008083540402835291602001916116b5565b820191906000526020600020905b81548152906001019060200180831161169857829003601f168201915b505050505091506116d16001856116cc91906135a4565b6126b8565b905061179e565b600e80546116e59061376f565b80601f01602080910402602001604051908101604052809291908181526020018280546117119061376f565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b505050505091506040518060400160405280600781526020017f6869646464656e0000000000000000000000000000000000000000000000000081525090505b6000825114156117bd57604051806020016040528060008152506117e3565b8181600f6040516020016117d393929190613315565b6040516020818303038152906040525b92505050919050565b60095481565b6117fa611a7e565b73ffffffffffffffffffffffffffffffffffffffff16611818610ef3565b73ffffffffffffffffffffffffffffffffffffffff161461186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061348a565b60405180910390fd5b80600e9080519060200190611884929190612c05565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611924611a7e565b73ffffffffffffffffffffffffffffffffffffffff16611942610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061348a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff9061340a565b60405180910390fd5b611a11816122d0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611a91611b86565b11158015611aa0575060005482105b8015611acd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611b9682612041565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c22611a7e565b73ffffffffffffffffffffffffffffffffffffffff161480611c515750611c5085611c4b611a7e565b611888565b5b80611c965750611c5f611a7e565b73ffffffffffffffffffffffffffffffffffffffff16611c7e8461099d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ccf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d36576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d438585856001612819565b611d4f60008487611ad4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fcf576000548214611fce57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461203a858585600161281f565b5050505050565b612049612c8b565b600082905080612057611b86565b11158015612066575060005481105b15612299576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161229757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461217b5780925050506122cb565b5b60011561229657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122915780925050506122cb565b61217c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006001600b5461241191906135a4565b8210156124215760009050612512565b6108ae82116124395766038d7ea4c680009050612512565b610d0582116124515766071afd498d00009050612512565b61115c821161246957660aa87bee5380009050612512565b6115b3821161248157660e35fa931a00009050612512565b611a0a8211612499576611c37937e080009050612512565b611e6182116124b157661550f7dca700009050612512565b6122b882116124c9576618de76816d80009050612512565b61270f82116124e157661c6bf5263400009050612512565b612b6682116124f957661ff973cafa80009050612512565b612fbd821161251157662386f26fc100009050612512565b5b919050565b612531828260405180602001604052806000815250612825565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257e611a7e565b8786866040518563ffffffff1660e01b81526004016125a09493929190613361565b602060405180830381600087803b1580156125ba57600080fd5b505af19250505080156125eb57506040513d601f19601f820116820180604052508101906125e89190613051565b60015b612665573d806000811461261b576040519150601f19603f3d011682016040523d82523d6000602084013e612620565b606091505b5060008151141561265d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612700576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612814565b600082905060005b6000821461273257808061271b906137d2565b915050600a8261272b91906135fa565b9150612708565b60008167ffffffffffffffff81111561274e5761274d613908565b5b6040519080825280601f01601f1916602001820160405280156127805781602001600182028036833780820191505090505b5090505b6000851461280d576001826127999190613685565b9150600a856127a8919061381b565b60306127b491906135a4565b60f81b8183815181106127ca576127c96138d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280691906135fa565b9450612784565b8093505050505b919050565b50505050565b50505050565b6128328383836001612837565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128a4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128df576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128ec6000868387612819565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ab65750612ab58773ffffffffffffffffffffffffffffffffffffffff16612535565b5b15612b7c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2b6000888480600101955088612558565b612b61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612abc578260005414612b7757600080fd5b612be8565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b7d575b816000819055505050612bfe600086838761281f565b5050505050565b828054612c119061376f565b90600052602060002090601f016020900481019282612c335760008555612c7a565b82601f10612c4c57805160ff1916838001178555612c7a565b82800160010185558215612c7a579182015b82811115612c79578251825591602001919060010190612c5e565b5b509050612c879190612cce565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ce7576000816000905550600101612ccf565b5090565b6000612cfe612cf9846134ea565b6134c5565b905082815260208101848484011115612d1a57612d1961393c565b5b612d2584828561372d565b509392505050565b6000612d40612d3b8461351b565b6134c5565b905082815260208101848484011115612d5c57612d5b61393c565b5b612d6784828561372d565b509392505050565b600081359050612d7e81613a78565b92915050565b600081359050612d9381613a8f565b92915050565b600081359050612da881613aa6565b92915050565b600081519050612dbd81613aa6565b92915050565b600082601f830112612dd857612dd7613937565b5b8135612de8848260208601612ceb565b91505092915050565b600082601f830112612e0657612e05613937565b5b8135612e16848260208601612d2d565b91505092915050565b600081359050612e2e81613abd565b92915050565b600060208284031215612e4a57612e49613946565b5b6000612e5884828501612d6f565b91505092915050565b60008060408385031215612e7857612e77613946565b5b6000612e8685828601612d6f565b9250506020612e9785828601612d6f565b9150509250929050565b600080600060608486031215612eba57612eb9613946565b5b6000612ec886828701612d6f565b9350506020612ed986828701612d6f565b9250506040612eea86828701612e1f565b9150509250925092565b60008060008060808587031215612f0e57612f0d613946565b5b6000612f1c87828801612d6f565b9450506020612f2d87828801612d6f565b9350506040612f3e87828801612e1f565b925050606085013567ffffffffffffffff811115612f5f57612f5e613941565b5b612f6b87828801612dc3565b91505092959194509250565b60008060408385031215612f8e57612f8d613946565b5b6000612f9c85828601612d6f565b9250506020612fad85828601612d84565b9150509250929050565b60008060408385031215612fce57612fcd613946565b5b6000612fdc85828601612d6f565b9250506020612fed85828601612e1f565b9150509250929050565b60006020828403121561300d5761300c613946565b5b600061301b84828501612d84565b91505092915050565b60006020828403121561303a57613039613946565b5b600061304884828501612d99565b91505092915050565b60006020828403121561306757613066613946565b5b600061307584828501612dae565b91505092915050565b60006020828403121561309457613093613946565b5b600082013567ffffffffffffffff8111156130b2576130b1613941565b5b6130be84828501612df1565b91505092915050565b6000602082840312156130dd576130dc613946565b5b60006130eb84828501612e1f565b91505092915050565b6130fd816136b9565b82525050565b61310c816136cb565b82525050565b600061311d82613561565b6131278185613577565b935061313781856020860161373c565b6131408161394b565b840191505092915050565b60006131568261356c565b6131608185613588565b935061317081856020860161373c565b6131798161394b565b840191505092915050565b600061318f8261356c565b6131998185613599565b93506131a981856020860161373c565b80840191505092915050565b600081546131c28161376f565b6131cc8186613599565b945060018216600081146131e757600181146131f85761322b565b60ff1983168652818601935061322b565b6132018561354c565b60005b8381101561322357815481890152600182019150602081019050613204565b838801955050505b50505092915050565b6000613241601583613588565b915061324c8261395c565b602082019050919050565b6000613264602683613588565b915061326f82613985565b604082019050919050565b6000613287601683613588565b9150613292826139d4565b602082019050919050565b60006132aa601a83613588565b91506132b5826139fd565b602082019050919050565b60006132cd601283613588565b91506132d882613a26565b602082019050919050565b60006132f0602083613588565b91506132fb82613a4f565b602082019050919050565b61330f81613723565b82525050565b60006133218286613184565b915061332d8285613184565b915061333982846131b5565b9150819050949350505050565b600060208201905061335b60008301846130f4565b92915050565b600060808201905061337660008301876130f4565b61338360208301866130f4565b6133906040830185613306565b81810360608301526133a28184613112565b905095945050505050565b60006020820190506133c26000830184613103565b92915050565b600060208201905081810360008301526133e2818461314b565b905092915050565b6000602082019050818103600083015261340381613234565b9050919050565b6000602082019050818103600083015261342381613257565b9050919050565b600060208201905081810360008301526134438161327a565b9050919050565b600060208201905081810360008301526134638161329d565b9050919050565b60006020820190508181036000830152613483816132c0565b9050919050565b600060208201905081810360008301526134a3816132e3565b9050919050565b60006020820190506134bf6000830184613306565b92915050565b60006134cf6134e0565b90506134db82826137a1565b919050565b6000604051905090565b600067ffffffffffffffff82111561350557613504613908565b5b61350e8261394b565b9050602081019050919050565b600067ffffffffffffffff82111561353657613535613908565b5b61353f8261394b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135af82613723565b91506135ba83613723565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ef576135ee61384c565b5b828201905092915050565b600061360582613723565b915061361083613723565b9250826136205761361f61387b565b5b828204905092915050565b600061363682613723565b915061364183613723565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561367a5761367961384c565b5b828202905092915050565b600061369082613723565b915061369b83613723565b9250828210156136ae576136ad61384c565b5b828203905092915050565b60006136c482613703565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561375a57808201518184015260208101905061373f565b83811115613769576000848401525b50505050565b6000600282049050600182168061378757607f821691505b6020821081141561379b5761379a6138aa565b5b50919050565b6137aa8261394b565b810181811067ffffffffffffffff821117156137c9576137c8613908565b5b80604052505050565b60006137dd82613723565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138105761380f61384c565b5b600182019050919050565b600061382682613723565b915061383183613723565b9250826138415761384061387b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f457863656564656420746865206d696e74696e67206c696d6974000000000000600082015250565b7f436f6e7472616374206973205041555345440000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613a81816136b9565b8114613a8c57600080fd5b50565b613a98816136cb565b8114613aa357600080fd5b50565b613aaf816136d7565b8114613aba57600080fd5b50565b613ac681613723565b8114613ad157600080fd5b5056fea26469706673582212204d0b1fc24f0163c64cfe26293fb5715c2bc449f03654b09e034972065ae1945764736f6c63430008070033

Deployed Bytecode Sourcemap

44846:3705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27003:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48246:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30116:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31619:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31182:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45171:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26252:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32484:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44929:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48415:133;;;:::i;:::-;;32725:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45048:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45015:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29924:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45084:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27372:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4761:103;;;;;;;;;;;;;:::i;:::-;;44969:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4110:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30285:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45365:625;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47936:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31895:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48327:63;;;;;;;;;;;;;:::i;:::-;;32981:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45261:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45215;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47800:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46225:632;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44894:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48046:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32253:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5019:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27003:305;27105:4;27157:25;27142:40;;;:11;:40;;;;:105;;;;27214:33;27199:48;;;:11;:48;;;;27142:105;:158;;;;27264:36;27288:11;27264:23;:36::i;:::-;27142:158;27122:178;;27003:305;;;:::o;48246:73::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48307:6:::1;48298;;:15;;;;;;;;;;;;;;;;;;48246:73:::0;:::o;30116:100::-;30170:13;30203:5;30196:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30116:100;:::o;31619:204::-;31687:7;31712:16;31720:7;31712;:16::i;:::-;31707:64;;31737:34;;;;;;;;;;;;;;31707:64;31791:15;:24;31807:7;31791:24;;;;;;;;;;;;;;;;;;;;;31784:31;;31619:204;;;:::o;31182:371::-;31255:13;31271:24;31287:7;31271:15;:24::i;:::-;31255:40;;31316:5;31310:11;;:2;:11;;;31306:48;;;31330:24;;;;;;;;;;;;;;31306:48;31387:5;31371:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31397:37;31414:5;31421:12;:10;:12::i;:::-;31397:16;:37::i;:::-;31396:38;31371:63;31367:138;;;31458:35;;;;;;;;;;;;;;31367:138;31517:28;31526:2;31530:7;31539:5;31517:8;:28::i;:::-;31244:309;31182:371;;:::o;45171:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26252:303::-;26296:7;26521:15;:13;:15::i;:::-;26506:12;;26490:13;;:28;:46;26483:53;;26252:303;:::o;32484:170::-;32618:28;32628:4;32634:2;32638:7;32618:9;:28::i;:::-;32484:170;;;:::o;44929:33::-;;;;:::o;48415:133::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48489:7:::1;:5;:7::i;:::-;48473:34;;:57;48508:21;48473:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48415:133::o:0;32725:185::-;32863:39;32880:4;32886:2;32890:7;32863:39;;;;;;;;;;;;:16;:39::i;:::-;32725:185;;;:::o;45048:27::-;;;;;;;;;;;;;:::o;45015:25::-;;;;;;;;;;;;;:::o;29924:125::-;29988:7;30015:21;30028:7;30015:12;:21::i;:::-;:26;;;30008:33;;29924:125;;;:::o;45084:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27372:206::-;27436:7;27477:1;27460:19;;:5;:19;;;27456:60;;;27488:28;;;;;;;;;;;;;;27456:60;27542:12;:19;27555:5;27542:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27534:36;;27527:43;;27372:206;;;:::o;4761:103::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4826:30:::1;4853:1;4826:18;:30::i;:::-;4761:103::o:0;44969:31::-;;;;:::o;4110:87::-;4156:7;4183:6;;;;;;;;;;;4176:13;;4110:87;:::o;30285:104::-;30341:13;30374:7;30367:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30285:104;:::o;45365:625::-;45425:14;45442:13;:11;:13::i;:::-;45425:30;;45565:7;:5;:7::i;:::-;45551:21;;:10;:21;;;45548:391;;45597:6;;;;;;;;;;;45596:7;45588:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;45689:9;;45660:25;45674:10;45660:13;:25::i;:::-;45649:8;:36;;;;:::i;:::-;:49;;45641:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;45780:10;;45768:8;45752:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;45744:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45878:8;45853:24;45870:6;45853:16;:24::i;:::-;:33;;;;:::i;:::-;45840:9;:46;;45832:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;45548:391;45949:31;45959:10;45971:8;45949:9;:31::i;:::-;45414:576;45365:625;:::o;47936:104::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48021:11:::1;48011:7;:21;;;;;;;;;;;;:::i;:::-;;47936:104:::0;:::o;31895:287::-;32006:12;:10;:12::i;:::-;31994:24;;:8;:24;;;31990:54;;;32027:17;;;;;;;;;;;;;;31990:54;32102:8;32057:18;:32;32076:12;:10;:12::i;:::-;32057:32;;;;;;;;;;;;;;;:42;32090:8;32057:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32155:8;32126:48;;32141:12;:10;:12::i;:::-;32126:48;;;32165:8;32126:48;;;;;;:::i;:::-;;;;;;;;31895:287;;:::o;48327:63::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48380:4:::1;48369:8;;:15;;;;;;;;;;;;;;;;;;48327:63::o:0;32981:369::-;33148:28;33158:4;33164:2;33168:7;33148:9;:28::i;:::-;33191:15;:2;:13;;;:15::i;:::-;:76;;;;;33211:56;33242:4;33248:2;33252:7;33261:5;33211:30;:56::i;:::-;33210:57;33191:76;33187:156;;;33291:40;;;;;;;;;;;;;;33187:156;32981:369;;;;:::o;45261:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45215:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47800:103::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47884:11:::1;47872:9;:23;;;;47800:103:::0;:::o;46225:632::-;46298:13;46329:16;46337:7;46329;:16::i;:::-;46324:59;;46354:29;;;;;;;;;;;;;;46324:59;46396:28;46435:30;46492:4;46480:16;;:8;;;;;;;;;;;:16;;;46476:244;;;46529:7;46512:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46570:29;46597:1;46587:7;:11;;;;:::i;:::-;46570:16;:29::i;:::-;46551:48;;46476:244;;;46647:18;46630:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46680:28;;;;;;;;;;;;;;;;;;;46476:244;46769:1;46743:14;46737:28;:33;;:112;;;;;;;;;;;;;;;;;46797:14;46812:16;46829:13;46780:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46737:112;46730:119;;;;46225:632;;;:::o;44894:28::-;;;;:::o;48046:124::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48151:11:::1;48130:18;:32;;;;;;;;;;;;:::i;:::-;;48046:124:::0;:::o;32253:164::-;32350:4;32374:18;:25;32393:5;32374:25;;;;;;;;;;;;;;;:35;32400:8;32374:35;;;;;;;;;;;;;;;;;;;;;;;;;32367:42;;32253:164;;;;:::o;5019:201::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5128:1:::1;5108:22;;:8;:22;;;;5100:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5184:28;5203:8;5184:18;:28::i;:::-;5019:201:::0;:::o;16894:157::-;16979:4;17018:25;17003:40;;;:11;:40;;;;16996:47;;16894:157;;;:::o;2834:98::-;2887:7;2914:10;2907:17;;2834:98;:::o;33605:187::-;33662:4;33705:7;33686:15;:13;:15::i;:::-;:26;;:53;;;;;33726:13;;33716:7;:23;33686:53;:98;;;;;33757:11;:20;33769:7;33757:20;;;;;;;;;;;:27;;;;;;;;;;;;33756:28;33686:98;33679:105;;33605:187;;;:::o;41775:196::-;41917:2;41890:15;:24;41906:7;41890:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41955:7;41951:2;41935:28;;41944:5;41935:28;;;;;;;;;;;;41775:196;;;:::o;26026:92::-;26082:7;26026:92;:::o;36718:2130::-;36833:35;36871:21;36884:7;36871:12;:21::i;:::-;36833:59;;36931:4;36909:26;;:13;:18;;;:26;;;36905:67;;36944:28;;;;;;;;;;;;;;36905:67;36985:22;37027:4;37011:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37048:36;37065:4;37071:12;:10;:12::i;:::-;37048:16;:36::i;:::-;37011:73;:126;;;;37125:12;:10;:12::i;:::-;37101:36;;:20;37113:7;37101:11;:20::i;:::-;:36;;;37011:126;36985:153;;37156:17;37151:66;;37182:35;;;;;;;;;;;;;;37151:66;37246:1;37232:16;;:2;:16;;;37228:52;;;37257:23;;;;;;;;;;;;;;37228:52;37293:43;37315:4;37321:2;37325:7;37334:1;37293:21;:43::i;:::-;37401:35;37418:1;37422:7;37431:4;37401:8;:35::i;:::-;37762:1;37732:12;:18;37745:4;37732:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37806:1;37778:12;:16;37791:2;37778:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37824:31;37858:11;:20;37870:7;37858:20;;;;;;;;;;;37824:54;;37909:2;37893:8;:13;;;:18;;;;;;;;;;;;;;;;;;37959:15;37926:8;:23;;;:49;;;;;;;;;;;;;;;;;;38227:19;38259:1;38249:7;:11;38227:33;;38275:31;38309:11;:24;38321:11;38309:24;;;;;;;;;;;38275:58;;38377:1;38352:27;;:8;:13;;;;;;;;;;;;:27;;;38348:384;;;38562:13;;38547:11;:28;38543:174;;38616:4;38600:8;:13;;;:20;;;;;;;;;;;;;;;;;;38669:13;:28;;;38643:8;:23;;;:54;;;;;;;;;;;;;;;;;;38543:174;38348:384;37707:1036;;;38779:7;38775:2;38760:27;;38769:4;38760:27;;;;;;;;;;;;38798:42;38819:4;38825:2;38829:7;38838:1;38798:20;:42::i;:::-;36822:2026;;36718:2130;;;:::o;28753:1109::-;28815:21;;:::i;:::-;28849:12;28864:7;28849:22;;28932:4;28913:15;:13;:15::i;:::-;:23;;:47;;;;;28947:13;;28940:4;:20;28913:47;28909:886;;;28981:31;29015:11;:17;29027:4;29015:17;;;;;;;;;;;28981:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29056:9;:16;;;29051:729;;29127:1;29101:28;;:9;:14;;;:28;;;29097:101;;29165:9;29158:16;;;;;;29097:101;29500:261;29507:4;29500:261;;;29540:6;;;;;;;;29585:11;:17;29597:4;29585:17;;;;;;;;;;;29573:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29659:1;29633:28;;:9;:14;;;:28;;;29629:109;;29701:9;29694:16;;;;;;29629:109;29500:261;;;29051:729;28962:833;28909:886;29823:31;;;;;;;;;;;;;;28753:1109;;;;:::o;5380:191::-;5454:16;5473:6;;;;;;;;;;;5454:25;;5499:8;5490:6;;:17;;;;;;;;;;;;;;;;;;5554:8;5523:40;;5544:8;5523:40;;;;;;;;;;;;5443:128;5380:191;:::o;27660:137::-;27721:7;27756:12;:19;27769:5;27756:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;27748:41;;27741:48;;27660:137;;;:::o;46886:908::-;46952:13;47003:1;46991:9;;:13;;;;:::i;:::-;46981:7;:23;46978:68;;;47027:7;47020:14;;;;46978:68;47070:4;47059:7;:15;47056:64;;47097:11;47090:18;;;;47056:64;47144:4;47133:7;:15;47130:64;;47171:11;47164:18;;;;47130:64;47218:4;47207:7;:15;47204:64;;47245:11;47238:18;;;;47204:64;47292:4;47281:7;:15;47278:64;;47319:11;47312:18;;;;47278:64;47366:4;47355:7;:15;47352:64;;47393:11;47386:18;;;;47352:64;47440:4;47429:7;:15;47426:64;;47467:11;47460:18;;;;47426:64;47514:4;47503:7;:15;47500:64;;47541:11;47534:18;;;;47500:64;47588:4;47577:7;:15;47574:64;;47615:11;47608:18;;;;47574:64;47662:5;47651:7;:16;47648:65;;47690:11;47683:18;;;;47648:65;47737:5;47726:7;:16;47723:64;;47765:10;47758:17;;;;47723:64;46886:908;;;;:::o;33800:104::-;33869:27;33879:2;33883:8;33869:27;;;;;;;;;;;;:9;:27::i;:::-;33800:104;;:::o;6811:326::-;6871:4;7128:1;7106:7;:19;;;:23;7099:30;;6811:326;;;:::o;42463:667::-;42626:4;42663:2;42647:36;;;42684:12;:10;:12::i;:::-;42698:4;42704:7;42713:5;42647:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42643:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42898:1;42881:6;:13;:18;42877:235;;;42927:40;;;;;;;;;;;;;;42877:235;43070:6;43064:13;43055:6;43051:2;43047:15;43040:38;42643:480;42776:45;;;42766:55;;;:6;:55;;;;42759:62;;;42463:667;;;;;;:::o;396:723::-;452:13;682:1;673:5;:10;669:53;;;700:10;;;;;;;;;;;;;;;;;;;;;669:53;732:12;747:5;732:20;;763:14;788:78;803:1;795:4;:9;788:78;;821:8;;;;;:::i;:::-;;;;852:2;844:10;;;;;:::i;:::-;;;788:78;;;876:19;908:6;898:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:39;;926:154;942:1;933:5;:10;926:154;;970:1;960:11;;;;;:::i;:::-;;;1037:2;1029:5;:10;;;;:::i;:::-;1016:2;:24;;;;:::i;:::-;1003:39;;986:6;993;986:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1066:2;1057:11;;;;;:::i;:::-;;;926:154;;;1104:6;1090:21;;;;;396:723;;;;:::o;43778:159::-;;;;;:::o;44596:158::-;;;;;:::o;34267:163::-;34390:32;34396:2;34400:8;34410:5;34417:4;34390:5;:32::i;:::-;34267:163;;;:::o;34689:1775::-;34828:20;34851:13;;34828:36;;34893:1;34879:16;;:2;:16;;;34875:48;;;34904:19;;;;;;;;;;;;;;34875:48;34950:1;34938:8;:13;34934:44;;;34960:18;;;;;;;;;;;;;;34934:44;34991:61;35021:1;35025:2;35029:12;35043:8;34991:21;:61::i;:::-;35364:8;35329:12;:16;35342:2;35329:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35428:8;35388:12;:16;35401:2;35388:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35487:2;35454:11;:25;35466:12;35454:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35554:15;35504:11;:25;35516:12;35504:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35587:20;35610:12;35587:35;;35637:11;35666:8;35651:12;:23;35637:37;;35695:4;:23;;;;;35703:15;:2;:13;;;:15::i;:::-;35695:23;35691:641;;;35739:314;35795:12;35791:2;35770:38;;35787:1;35770:38;;;;;;;;;;;;35836:69;35875:1;35879:2;35883:14;;;;;;35899:5;35836:30;:69::i;:::-;35831:174;;35941:40;;;;;;;;;;;;;;35831:174;36048:3;36032:12;:19;;35739:314;;36134:12;36117:13;;:29;36113:43;;36148:8;;;36113:43;35691:641;;;36197:120;36253:14;;;;;;36249:2;36228:40;;36245:1;36228:40;;;;;;;;;;;;36312:3;36296:12;:19;;36197:120;;35691:641;36362:12;36346:13;:28;;;;35304:1082;;36396:60;36425:1;36429:2;36433:12;36447:8;36396:20;:60::i;:::-;34817:1647;34689: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;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:118::-;12039:24;12057:5;12039:24;:::i;:::-;12034:3;12027:37;11952:118;;:::o;12076:589::-;12301:3;12323:95;12414:3;12405:6;12323:95;:::i;:::-;12316:102;;12435:95;12526:3;12517:6;12435:95;:::i;:::-;12428:102;;12547:92;12635:3;12626:6;12547:92;:::i;:::-;12540:99;;12656:3;12649:10;;12076:589;;;;;;:::o;12671:222::-;12764:4;12802:2;12791:9;12787:18;12779:26;;12815:71;12883:1;12872:9;12868:17;12859:6;12815:71;:::i;:::-;12671:222;;;;:::o;12899:640::-;13094:4;13132:3;13121:9;13117:19;13109:27;;13146:71;13214:1;13203:9;13199:17;13190:6;13146:71;:::i;:::-;13227:72;13295:2;13284:9;13280:18;13271:6;13227:72;:::i;:::-;13309;13377:2;13366:9;13362:18;13353:6;13309:72;:::i;:::-;13428:9;13422:4;13418:20;13413:2;13402:9;13398:18;13391:48;13456:76;13527:4;13518:6;13456:76;:::i;:::-;13448:84;;12899:640;;;;;;;:::o;13545:210::-;13632:4;13670:2;13659:9;13655:18;13647:26;;13683:65;13745:1;13734:9;13730:17;13721:6;13683:65;:::i;:::-;13545:210;;;;:::o;13761:313::-;13874:4;13912:2;13901:9;13897:18;13889:26;;13961:9;13955:4;13951:20;13947:1;13936:9;13932:17;13925:47;13989:78;14062:4;14053:6;13989:78;:::i;:::-;13981:86;;13761:313;;;;:::o;14080:419::-;14246:4;14284:2;14273:9;14269:18;14261:26;;14333:9;14327:4;14323:20;14319:1;14308:9;14304:17;14297:47;14361:131;14487:4;14361:131;:::i;:::-;14353:139;;14080:419;;;:::o;14505:::-;14671:4;14709:2;14698:9;14694:18;14686:26;;14758:9;14752:4;14748:20;14744:1;14733:9;14729:17;14722:47;14786:131;14912:4;14786:131;:::i;:::-;14778:139;;14505:419;;;:::o;14930:::-;15096:4;15134:2;15123:9;15119:18;15111:26;;15183:9;15177:4;15173:20;15169:1;15158:9;15154:17;15147:47;15211:131;15337:4;15211:131;:::i;:::-;15203:139;;14930:419;;;:::o;15355:::-;15521:4;15559:2;15548:9;15544:18;15536:26;;15608:9;15602:4;15598:20;15594:1;15583:9;15579:17;15572:47;15636:131;15762:4;15636:131;:::i;:::-;15628:139;;15355:419;;;:::o;15780:::-;15946:4;15984:2;15973:9;15969:18;15961:26;;16033:9;16027:4;16023:20;16019:1;16008:9;16004:17;15997:47;16061:131;16187:4;16061:131;:::i;:::-;16053:139;;15780:419;;;:::o;16205:::-;16371:4;16409:2;16398:9;16394:18;16386:26;;16458:9;16452:4;16448:20;16444:1;16433:9;16429:17;16422:47;16486:131;16612:4;16486:131;:::i;:::-;16478:139;;16205:419;;;:::o;16630:222::-;16723:4;16761:2;16750:9;16746:18;16738:26;;16774:71;16842:1;16831:9;16827:17;16818:6;16774:71;:::i;:::-;16630:222;;;;:::o;16858:129::-;16892:6;16919:20;;:::i;:::-;16909:30;;16948:33;16976:4;16968:6;16948:33;:::i;:::-;16858:129;;;:::o;16993:75::-;17026:6;17059:2;17053:9;17043:19;;16993:75;:::o;17074:307::-;17135:4;17225:18;17217:6;17214:30;17211:56;;;17247:18;;:::i;:::-;17211:56;17285:29;17307:6;17285:29;:::i;:::-;17277:37;;17369:4;17363;17359:15;17351:23;;17074:307;;;:::o;17387:308::-;17449:4;17539:18;17531:6;17528:30;17525:56;;;17561:18;;:::i;:::-;17525:56;17599:29;17621:6;17599:29;:::i;:::-;17591:37;;17683:4;17677;17673:15;17665:23;;17387:308;;;:::o;17701:141::-;17750:4;17773:3;17765:11;;17796:3;17793:1;17786:14;17830:4;17827:1;17817:18;17809:26;;17701:141;;;:::o;17848:98::-;17899:6;17933:5;17927:12;17917:22;;17848:98;;;:::o;17952:99::-;18004:6;18038:5;18032:12;18022:22;;17952:99;;;:::o;18057:168::-;18140:11;18174:6;18169:3;18162:19;18214:4;18209:3;18205:14;18190:29;;18057:168;;;;:::o;18231:169::-;18315:11;18349:6;18344:3;18337:19;18389:4;18384:3;18380:14;18365:29;;18231:169;;;;:::o;18406:148::-;18508:11;18545:3;18530:18;;18406:148;;;;:::o;18560:305::-;18600:3;18619:20;18637:1;18619:20;:::i;:::-;18614:25;;18653:20;18671:1;18653:20;:::i;:::-;18648:25;;18807:1;18739:66;18735:74;18732:1;18729:81;18726:107;;;18813:18;;:::i;:::-;18726:107;18857:1;18854;18850:9;18843:16;;18560:305;;;;:::o;18871:185::-;18911:1;18928:20;18946:1;18928:20;:::i;:::-;18923:25;;18962:20;18980:1;18962:20;:::i;:::-;18957:25;;19001:1;18991:35;;19006:18;;:::i;:::-;18991:35;19048:1;19045;19041:9;19036:14;;18871:185;;;;:::o;19062:348::-;19102:7;19125:20;19143:1;19125:20;:::i;:::-;19120:25;;19159:20;19177:1;19159:20;:::i;:::-;19154:25;;19347:1;19279:66;19275:74;19272:1;19269:81;19264:1;19257:9;19250:17;19246:105;19243:131;;;19354:18;;:::i;:::-;19243:131;19402:1;19399;19395:9;19384:20;;19062:348;;;;:::o;19416:191::-;19456:4;19476:20;19494:1;19476:20;:::i;:::-;19471:25;;19510:20;19528:1;19510:20;:::i;:::-;19505:25;;19549:1;19546;19543:8;19540:34;;;19554:18;;:::i;:::-;19540:34;19599:1;19596;19592:9;19584:17;;19416:191;;;;:::o;19613:96::-;19650:7;19679:24;19697:5;19679:24;:::i;:::-;19668:35;;19613:96;;;:::o;19715:90::-;19749:7;19792:5;19785:13;19778:21;19767:32;;19715:90;;;:::o;19811:149::-;19847:7;19887:66;19880:5;19876:78;19865:89;;19811:149;;;:::o;19966:126::-;20003:7;20043:42;20036:5;20032:54;20021:65;;19966:126;;;:::o;20098:77::-;20135:7;20164:5;20153:16;;20098:77;;;:::o;20181:154::-;20265:6;20260:3;20255;20242:30;20327:1;20318:6;20313:3;20309:16;20302:27;20181:154;;;:::o;20341:307::-;20409:1;20419:113;20433:6;20430:1;20427:13;20419:113;;;20518:1;20513:3;20509:11;20503:18;20499:1;20494:3;20490:11;20483:39;20455:2;20452:1;20448:10;20443:15;;20419:113;;;20550:6;20547:1;20544:13;20541:101;;;20630:1;20621:6;20616:3;20612:16;20605:27;20541:101;20390:258;20341:307;;;:::o;20654:320::-;20698:6;20735:1;20729:4;20725:12;20715:22;;20782:1;20776:4;20772:12;20803:18;20793:81;;20859:4;20851:6;20847:17;20837:27;;20793:81;20921:2;20913:6;20910:14;20890:18;20887:38;20884:84;;;20940:18;;:::i;:::-;20884:84;20705:269;20654:320;;;:::o;20980:281::-;21063:27;21085:4;21063:27;:::i;:::-;21055:6;21051:40;21193:6;21181:10;21178:22;21157:18;21145:10;21142:34;21139:62;21136:88;;;21204:18;;:::i;:::-;21136:88;21244:10;21240:2;21233:22;21023:238;20980:281;;:::o;21267:233::-;21306:3;21329:24;21347:5;21329:24;:::i;:::-;21320:33;;21375:66;21368:5;21365:77;21362:103;;;21445:18;;:::i;:::-;21362:103;21492:1;21485:5;21481:13;21474:20;;21267:233;;;:::o;21506:176::-;21538:1;21555:20;21573:1;21555:20;:::i;:::-;21550:25;;21589:20;21607:1;21589:20;:::i;:::-;21584:25;;21628:1;21618:35;;21633:18;;:::i;:::-;21618:35;21674:1;21671;21667:9;21662:14;;21506:176;;;;:::o;21688:180::-;21736:77;21733:1;21726:88;21833:4;21830:1;21823:15;21857:4;21854:1;21847:15;21874:180;21922:77;21919:1;21912:88;22019:4;22016:1;22009:15;22043:4;22040:1;22033:15;22060:180;22108:77;22105:1;22098:88;22205:4;22202:1;22195:15;22229:4;22226:1;22219:15;22246:180;22294:77;22291:1;22284:88;22391:4;22388:1;22381:15;22415:4;22412:1;22405:15;22432:180;22480:77;22477:1;22470:88;22577:4;22574:1;22567:15;22601:4;22598:1;22591:15;22618:117;22727:1;22724;22717:12;22741:117;22850:1;22847;22840:12;22864:117;22973:1;22970;22963:12;22987:117;23096:1;23093;23086:12;23110:102;23151:6;23202:2;23198:7;23193:2;23186:5;23182:14;23178:28;23168:38;;23110:102;;;:::o;23218:171::-;23358:23;23354:1;23346:6;23342:14;23335:47;23218:171;:::o;23395:225::-;23535:34;23531:1;23523:6;23519:14;23512:58;23604:8;23599:2;23591:6;23587:15;23580:33;23395:225;:::o;23626:172::-;23766:24;23762:1;23754:6;23750:14;23743:48;23626:172;:::o;23804:176::-;23944:28;23940:1;23932:6;23928:14;23921:52;23804:176;:::o;23986:168::-;24126:20;24122:1;24114:6;24110:14;24103:44;23986:168;:::o;24160:182::-;24300:34;24296:1;24288:6;24284:14;24277:58;24160:182;:::o;24348:122::-;24421:24;24439:5;24421:24;:::i;:::-;24414:5;24411:35;24401:63;;24460:1;24457;24450:12;24401:63;24348:122;:::o;24476:116::-;24546:21;24561:5;24546:21;:::i;:::-;24539:5;24536:32;24526:60;;24582:1;24579;24572:12;24526:60;24476:116;:::o;24598:120::-;24670:23;24687:5;24670:23;:::i;:::-;24663:5;24660:34;24650:62;;24708:1;24705;24698:12;24650:62;24598:120;:::o;24724:122::-;24797:24;24815:5;24797:24;:::i;:::-;24790:5;24787:35;24777:63;;24836:1;24833;24826:12;24777:63;24724:122;:::o

Swarm Source

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