ETH Price: $2,540.53 (+3.15%)

Token

GoblinVerse (GOBLINVERSE)
 

Overview

Max Total Supply

500 GOBLINVERSE

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 GOBLINVERSE
0xb54cbbb3a27f55feec7abdaa1d096f89684a4f5b
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:
GoblinVerse

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-10
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/SampleERC721.sol


pragma solidity ^0.8.4;





contract GoblinVerse is Ownable, ERC721A, ReentrancyGuard {
  constructor() ERC721A("GoblinVerse", "GOBLINVERSE") {}

  bool public PUBLIC_MINT_STARTED = false;
  uint256 public PUBLIC_MINT_PRICE = 1 ether;
  uint256 public MAX_MINT_PER_ADDRESS_DURING_WL = 10;
  uint256 public immutable COLLECTION_SIZE = 10000;


  // WL tools
  address[] public WHITELIST;

  function find(address value) private view returns(uint) {
      uint i = 0;
      while (WHITELIST[i] != value) {
          i++;
      }
      return i;
  }

  function removeByIndex(uint i) private {
    while (i<WHITELIST.length-1) {
        WHITELIST[i] = WHITELIST[i+1];
        i++;
    }
    WHITELIST.pop();
  }

  function removeWl(address[] memory addresses) external onlyOwner {
      for (uint256 i = 0; i < addresses.length; i++) {        
        uint arrIndex = find(addresses[i]);
        removeByIndex(arrIndex);
      }
  }

  function getWl() public view returns(address[] memory) {
      return WHITELIST;
  }

  function addWl(address[] memory addresses) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      WHITELIST.push(addresses[i]);
    }
  }

  // WL mint
  function wlMint(uint256 quantity) external {
    require(isUserOnWl(), "Address not found on the whitelist. For public mint (if started), call publicMint()");
    require(
      numberMinted(msg.sender) + quantity <= MAX_MINT_PER_ADDRESS_DURING_WL,
      "can not mint this many"
    );
    _mint(msg.sender, quantity);
  }

  function isUserOnWl() public view returns (bool) {
    for (uint256 i = 0; i < WHITELIST.length; i++) {
      if (msg.sender == WHITELIST[i]) {
        return true;
      }
    }
    return false;
  }
  
  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }
  
  
  function setMaxMintPerAddressDuringWl(uint256 quantity) external onlyOwner {
    MAX_MINT_PER_ADDRESS_DURING_WL = quantity;
  }

  // Public mint
  function setPublicMint(bool isOpen) external onlyOwner {
    PUBLIC_MINT_STARTED = isOpen;
  }
  
  function setPublicMintPriceWei(uint256 price) external onlyOwner {
    PUBLIC_MINT_PRICE = price;
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function publicMint(uint256 quantity) external payable {
    require(PUBLIC_MINT_STARTED, "Public mint did not start yet");
    require(
      totalSupply() + quantity <= COLLECTION_SIZE,
      "not enough remaining NFTs to support desired mint amount"
    );
    uint256 totalCost = PUBLIC_MINT_PRICE * quantity;
    _mint(msg.sender, quantity);
    refundIfOver(totalCost);
  }

  // Tools
  
  // // metadata URI
  string private _baseTokenURI;

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"COLLECTION_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_ADDRESS_DURING_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_STARTED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"WHITELIST","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWl","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":[],"name":"isUserOnWl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMaxMintPerAddressDuringWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOpen","type":"bool"}],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicMintPriceWei","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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"wlMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000600a60006101000a81548160ff021916908315150217905550670de0b6b3a7640000600b55600a600c556127106080908152503480156200004657600080fd5b506040518060400160405280600b81526020017f476f626c696e56657273650000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f474f424c494e5645525345000000000000000000000000000000000000000000815250620000d3620000c76200011d60201b60201c565b6200012560201b60201c565b8160039081620000e4919062000468565b508060049081620000f6919062000468565b5062000107620001e960201b60201c565b600181905550505060016009819055506200054f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027057607f821691505b60208210810362000286576200028562000228565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b1565b620002fc8683620002b1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000349620003436200033d8462000314565b6200031e565b62000314565b9050919050565b6000819050919050565b620003658362000328565b6200037d620003748262000350565b848454620002be565b825550505050565b600090565b6200039462000385565b620003a18184846200035a565b505050565b5b81811015620003c957620003bd6000826200038a565b600181019050620003a7565b5050565b601f8211156200041857620003e2816200028c565b620003ed84620002a1565b81016020851015620003fd578190505b620004156200040c85620002a1565b830182620003a6565b50505b505050565b600082821c905092915050565b60006200043d600019846008026200041d565b1980831691505092915050565b60006200045883836200042a565b9150826002028217905092915050565b6200047382620001ee565b67ffffffffffffffff8111156200048f576200048e620001f9565b5b6200049b825462000257565b620004a8828285620003cd565b600060209050601f831160018114620004e05760008415620004cb578287015190505b620004d785826200044a565b86555062000547565b601f198416620004f0866200028c565b60005b828110156200051a57848901518255600182019150602085019450602081019050620004f3565b868310156200053a578489015162000536601f8916826200042a565b8355505b6001600288020188555050505b505050505050565b6080516138a46200057260003960008181611025015261184b01526138a46000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063d8258d951161006f578063d8258d9514610742578063dc33e6811461076d578063e985e9c5146107aa578063e9a941dc146107e7578063f2fde38b1461081257610204565b8063a22cb4651461069c578063ac446002146106c5578063b88d4fde146106dc578063c87b56dd1461070557610204565b8063921d11da116100e7578063921d11da146105a35780639231ab2a146105e057806395d89b411461061d578063972909f114610648578063a0c14bdf1461067157610204565b8063715018a61461050f5780638847fa8e146105265780638c2846ca1461054f5780638da5cb5b1461057857610204565b8063250a20971161019b57806355f804b31161016a57806355f804b3146104185780636352211e146104415780636aabb9471461047e5780636bde2627146104a757806370a08231146104d257610204565b8063250a20971461037d5780632db11544146103a857806342842e0e146103c45780634794b5ed146103ed57610204565b80630e2d56cf116101d75780630e2d56cf146102d757806317f5904c1461030057806318160ddd1461032957806323b872dd1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061252f565b61083b565b60405161023d9190612577565b60405180910390f35b34801561025257600080fd5b5061025b6108cd565b6040516102689190612622565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061267a565b61095f565b6040516102a591906126e8565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061272f565b6109de565b005b3480156102e357600080fd5b506102fe60048036038101906102f9919061279b565b610b22565b005b34801561030c57600080fd5b5061032760048036038101906103229190612910565b610b47565b005b34801561033557600080fd5b5061033e610bef565b60405161034b9190612968565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612983565b610c06565b005b34801561038957600080fd5b50610392610f28565b60405161039f9190612577565b60405180910390f35b6103c260048036038101906103bd919061267a565b610fd4565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190612983565b6110c1565b005b3480156103f957600080fd5b506104026110e1565b60405161040f9190612968565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190612a31565b6110e7565b005b34801561044d57600080fd5b506104686004803603810190610463919061267a565b611105565b60405161047591906126e8565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061267a565b611117565b005b3480156104b357600080fd5b506104bc6111c3565b6040516104c99190612968565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612a7e565b6111c9565b6040516105069190612968565b60405180910390f35b34801561051b57600080fd5b50610524611281565b005b34801561053257600080fd5b5061054d60048036038101906105489190612910565b611295565b005b34801561055b57600080fd5b506105766004803603810190610571919061267a565b6112f1565b005b34801561058457600080fd5b5061058d611303565b60405161059a91906126e8565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c5919061267a565b61132c565b6040516105d791906126e8565b60405180910390f35b3480156105ec57600080fd5b506106076004803603810190610602919061267a565b61136b565b6040516106149190612b5f565b60405180910390f35b34801561062957600080fd5b50610632611383565b60405161063f9190612622565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a919061267a565b611415565b005b34801561067d57600080fd5b50610686611427565b6040516106939190612c29565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612c4b565b6114b5565b005b3480156106d157600080fd5b506106da61162c565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190612d40565b611738565b005b34801561071157600080fd5b5061072c6004803603810190610727919061267a565b6117ab565b6040516107399190612622565b60405180910390f35b34801561074e57600080fd5b50610757611849565b6040516107649190612968565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612a7e565b61186d565b6040516107a19190612968565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612dc3565b61187f565b6040516107de9190612577565b60405180910390f35b3480156107f357600080fd5b506107fc611913565b6040516108099190612577565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190612a7e565b611926565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108dc90612e32565b80601f016020809104026020016040519081016040528092919081815260200182805461090890612e32565b80156109555780601f1061092a57610100808354040283529160200191610955565b820191906000526020600020905b81548152906001019060200180831161093857829003601f168201915b5050505050905090565b600061096a826119a9565b6109a0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611105565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0a611a08565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d57610a3681610a31611a08565b61187f565b610a6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b2a611a10565b80600a60006101000a81548160ff02191690831515021790555050565b610b4f611a10565b60005b8151811015610beb57600d828281518110610b7057610b6f612e63565b5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610be390612ec1565b915050610b52565b5050565b6000610bf9611a8e565b6002546001540303905090565b6000610c1182611a93565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c78576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c8484611b5f565b91509150610c9a8187610c95611a08565b611b86565b610ce657610caf86610caa611a08565b61187f565b610ce5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d4c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d598686866001611bca565b8015610d6457600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e3285610e0e888887611bd0565b7c020000000000000000000000000000000000000000000000000000000017611bf8565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610eb85760006001850190506000600560008381526020019081526020016000205403610eb6576001548114610eb5578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f208686866001611c23565b505050505050565b600080600090505b600d80549050811015610fcb57600d8181548110610f5157610f50612e63565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610fb8576001915050610fd1565b8080610fc390612ec1565b915050610f30565b50600090505b90565b600a60009054906101000a900460ff16611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90612f55565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161104d610bef565b6110579190612f75565b1115611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f9061301b565b60405180910390fd5b600081600b546110a8919061303b565b90506110b43383611c29565b6110bd81611de5565b5050565b6110dc83838360405180602001604052806000815250611738565b505050565b600c5481565b6110ef611a10565b8181600e918261110092919061324c565b505050565b600061111082611a93565b9050919050565b61111f610f28565b61115e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611155906133b4565b60405180910390fd5b600c548161116b3361186d565b6111759190612f75565b11156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613420565b60405180910390fd5b6111c03382611c29565b50565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611230576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611289611a10565b6112936000611e86565b565b61129d611a10565b60005b81518110156112ed5760006112ce8383815181106112c1576112c0612e63565b5b6020026020010151611f4a565b90506112d981611fdf565b5080806112e590612ec1565b9150506112a0565b5050565b6112f9611a10565b80600c8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d818154811061133c57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611373612474565b61137c826120fd565b9050919050565b60606004805461139290612e32565b80601f01602080910402602001604051908101604052809291908181526020018280546113be90612e32565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b5050505050905090565b61141d611a10565b80600b8190555050565b6060600d8054806020026020016040519081016040528092919081815260200182805480156114ab57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611461575b5050505050905090565b6114bd611a08565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611521576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061152e611a08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115db611a08565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116209190612577565b60405180910390a35050565b611634611a10565b600260095403611679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116709061348c565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516116a7906134dd565b60006040518083038185875af1925050503d80600081146116e4576040519150601f19603f3d011682016040523d82523d6000602084013e6116e9565b606091505b505090508061172d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117249061353e565b60405180910390fd5b506001600981905550565b611743848484610c06565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117a55761176e8484848461211d565b6117a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117b6826119a9565b6117ec576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117f661226d565b905060008151036118165760405180602001604052806000815250611841565b80611820846122ff565b60405160200161183192919061359a565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061187882612346565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b61192e611a10565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490613630565b60405180910390fd5b6119a681611e86565b50565b6000816119b4611a8e565b111580156119c3575060015482105b8015611a01575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a1861239d565b73ffffffffffffffffffffffffffffffffffffffff16611a36611303565b73ffffffffffffffffffffffffffffffffffffffff1614611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a839061369c565b60405180910390fd5b565b600090565b60008082905080611aa2611a8e565b11611b2857600154811015611b275760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b25575b60008103611b1b576005600083600190039350838152602001908152602001600020549050611af1565b8092505050611b5a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611be78686846123a5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600154905060008203611c6a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c776000848385611bca565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cee83611cdf6000866000611bd0565b611ce8856123ae565b17611bf8565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d8f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d54565b5060008203611dca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611de06000848385611c23565b505050565b80341015611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90613708565b60405180910390fd5b80341115611e83573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611e569190613728565b9081150290604051600060405180830381858888f19350505050158015611e81573d6000803e3d6000fd5b505b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090505b8273ffffffffffffffffffffffffffffffffffffffff16600d8281548110611f7d57611f7c612e63565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fd6578080611fce90612ec1565b915050611f52565b80915050919050565b5b6001600d80549050611ff29190613728565b8110156120b357600d6001826120089190612f75565b8154811061201957612018612e63565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d828154811061205857612057612e63565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080806120ab90612ec1565b915050611fe0565b600d8054806120c5576120c461375c565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b612105612474565b61211661211183611a93565b6123be565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612143611a08565b8786866040518563ffffffff1660e01b815260040161216594939291906137e0565b6020604051808303816000875af19250505080156121a157506040513d601f19601f8201168201806040525081019061219e9190613841565b60015b61221a573d80600081146121d1576040519150601f19603f3d011682016040523d82523d6000602084013e6121d6565b606091505b506000815103612212576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461227c90612e32565b80601f01602080910402602001604051908101604052809291908181526020018280546122a890612e32565b80156122f55780601f106122ca576101008083540402835291602001916122f5565b820191906000526020600020905b8154815290600101906020018083116122d857829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561233257600183039250600a81066030018353600a8104905080612310575b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6123c6612474565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61250c816124d7565b811461251757600080fd5b50565b60008135905061252981612503565b92915050565b600060208284031215612545576125446124cd565b5b60006125538482850161251a565b91505092915050565b60008115159050919050565b6125718161255c565b82525050565b600060208201905061258c6000830184612568565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125cc5780820151818401526020810190506125b1565b60008484015250505050565b6000601f19601f8301169050919050565b60006125f482612592565b6125fe818561259d565b935061260e8185602086016125ae565b612617816125d8565b840191505092915050565b6000602082019050818103600083015261263c81846125e9565b905092915050565b6000819050919050565b61265781612644565b811461266257600080fd5b50565b6000813590506126748161264e565b92915050565b6000602082840312156126905761268f6124cd565b5b600061269e84828501612665565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126d2826126a7565b9050919050565b6126e2816126c7565b82525050565b60006020820190506126fd60008301846126d9565b92915050565b61270c816126c7565b811461271757600080fd5b50565b60008135905061272981612703565b92915050565b60008060408385031215612746576127456124cd565b5b60006127548582860161271a565b925050602061276585828601612665565b9150509250929050565b6127788161255c565b811461278357600080fd5b50565b6000813590506127958161276f565b92915050565b6000602082840312156127b1576127b06124cd565b5b60006127bf84828501612786565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612805826125d8565b810181811067ffffffffffffffff82111715612824576128236127cd565b5b80604052505050565b60006128376124c3565b905061284382826127fc565b919050565b600067ffffffffffffffff821115612863576128626127cd565b5b602082029050602081019050919050565b600080fd5b600061288c61288784612848565b61282d565b905080838252602082019050602084028301858111156128af576128ae612874565b5b835b818110156128d857806128c4888261271a565b8452602084019350506020810190506128b1565b5050509392505050565b600082601f8301126128f7576128f66127c8565b5b8135612907848260208601612879565b91505092915050565b600060208284031215612926576129256124cd565b5b600082013567ffffffffffffffff811115612944576129436124d2565b5b612950848285016128e2565b91505092915050565b61296281612644565b82525050565b600060208201905061297d6000830184612959565b92915050565b60008060006060848603121561299c5761299b6124cd565b5b60006129aa8682870161271a565b93505060206129bb8682870161271a565b92505060406129cc86828701612665565b9150509250925092565b600080fd5b60008083601f8401126129f1576129f06127c8565b5b8235905067ffffffffffffffff811115612a0e57612a0d6129d6565b5b602083019150836001820283011115612a2a57612a29612874565b5b9250929050565b60008060208385031215612a4857612a476124cd565b5b600083013567ffffffffffffffff811115612a6657612a656124d2565b5b612a72858286016129db565b92509250509250929050565b600060208284031215612a9457612a936124cd565b5b6000612aa28482850161271a565b91505092915050565b612ab4816126c7565b82525050565b600067ffffffffffffffff82169050919050565b612ad781612aba565b82525050565b612ae68161255c565b82525050565b600062ffffff82169050919050565b612b0481612aec565b82525050565b608082016000820151612b206000850182612aab565b506020820151612b336020850182612ace565b506040820151612b466040850182612add565b506060820151612b596060850182612afb565b50505050565b6000608082019050612b746000830184612b0a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6000612bb28383612aab565b60208301905092915050565b6000602082019050919050565b6000612bd682612b7a565b612be08185612b85565b9350612beb83612b96565b8060005b83811015612c1c578151612c038882612ba6565b9750612c0e83612bbe565b925050600181019050612bef565b5085935050505092915050565b60006020820190508181036000830152612c438184612bcb565b905092915050565b60008060408385031215612c6257612c616124cd565b5b6000612c708582860161271a565b9250506020612c8185828601612786565b9150509250929050565b600080fd5b600067ffffffffffffffff821115612cab57612caa6127cd565b5b612cb4826125d8565b9050602081019050919050565b82818337600083830152505050565b6000612ce3612cde84612c90565b61282d565b905082815260208101848484011115612cff57612cfe612c8b565b5b612d0a848285612cc1565b509392505050565b600082601f830112612d2757612d266127c8565b5b8135612d37848260208601612cd0565b91505092915050565b60008060008060808587031215612d5a57612d596124cd565b5b6000612d688782880161271a565b9450506020612d798782880161271a565b9350506040612d8a87828801612665565b925050606085013567ffffffffffffffff811115612dab57612daa6124d2565b5b612db787828801612d12565b91505092959194509250565b60008060408385031215612dda57612dd96124cd565b5b6000612de88582860161271a565b9250506020612df98582860161271a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4a57607f821691505b602082108103612e5d57612e5c612e03565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ecc82612644565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612efe57612efd612e92565b5b600182019050919050565b7f5075626c6963206d696e7420646964206e6f7420737461727420796574000000600082015250565b6000612f3f601d8361259d565b9150612f4a82612f09565b602082019050919050565b60006020820190508181036000830152612f6e81612f32565b9050919050565b6000612f8082612644565b9150612f8b83612644565b9250828201905080821115612fa357612fa2612e92565b5b92915050565b7f6e6f7420656e6f7567682072656d61696e696e67204e46547320746f2073757060008201527f706f72742064657369726564206d696e7420616d6f756e740000000000000000602082015250565b600061300560388361259d565b915061301082612fa9565b604082019050919050565b6000602082019050818103600083015261303481612ff8565b9050919050565b600061304682612644565b915061305183612644565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561308a57613089612e92565b5b828202905092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130c5565b61310c86836130c5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061314961314461313f84612644565b613124565b612644565b9050919050565b6000819050919050565b6131638361312e565b61317761316f82613150565b8484546130d2565b825550505050565b600090565b61318c61317f565b61319781848461315a565b505050565b5b818110156131bb576131b0600082613184565b60018101905061319d565b5050565b601f821115613200576131d1816130a0565b6131da846130b5565b810160208510156131e9578190505b6131fd6131f5856130b5565b83018261319c565b50505b505050565b600082821c905092915050565b600061322360001984600802613205565b1980831691505092915050565b600061323c8383613212565b9150826002028217905092915050565b6132568383613095565b67ffffffffffffffff81111561326f5761326e6127cd565b5b6132798254612e32565b6132848282856131bf565b6000601f8311600181146132b357600084156132a1578287013590505b6132ab8582613230565b865550613313565b601f1984166132c1866130a0565b60005b828110156132e9578489013582556001820191506020850194506020810190506132c4565b868310156133065784890135613302601f891682613212565b8355505b6001600288020188555050505b50505050505050565b7f41646472657373206e6f7420666f756e64206f6e207468652077686974656c6960008201527f73742e20466f72207075626c6963206d696e742028696620737461727465642960208201527f2c2063616c6c207075626c69634d696e74282900000000000000000000000000604082015250565b600061339e60538361259d565b91506133a98261331c565b606082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b600061340a60168361259d565b9150613415826133d4565b602082019050919050565b60006020820190508181036000830152613439816133fd565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613476601f8361259d565b915061348182613440565b602082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b600081905092915050565b50565b60006134c76000836134ac565b91506134d2826134b7565b600082019050919050565b60006134e8826134ba565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061352860108361259d565b9150613533826134f2565b602082019050919050565b600060208201905081810360008301526135578161351b565b9050919050565b600081905092915050565b600061357482612592565b61357e818561355e565b935061358e8185602086016125ae565b80840191505092915050565b60006135a68285613569565b91506135b28284613569565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061361a60268361259d565b9150613625826135be565b604082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061368660208361259d565b915061369182613650565b602082019050919050565b600060208201905081810360008301526136b581613679565b9050919050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b60006136f260168361259d565b91506136fd826136bc565b602082019050919050565b60006020820190508181036000830152613721816136e5565b9050919050565b600061373382612644565b915061373e83612644565b925082820390508181111561375657613755612e92565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006137b28261378b565b6137bc8185613796565b93506137cc8185602086016125ae565b6137d5816125d8565b840191505092915050565b60006080820190506137f560008301876126d9565b61380260208301866126d9565b61380f6040830185612959565b818103606083015261382181846137a7565b905095945050505050565b60008151905061383b81612503565b92915050565b600060208284031215613857576138566124cd565b5b60006138658482850161382c565b9150509291505056fea2646970667358221220d9485da246f38754ea582641c5a4b6d5af4ccacd8c9c544a3129820d17ef76c864736f6c63430008100033

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a22cb465116100a0578063d8258d951161006f578063d8258d9514610742578063dc33e6811461076d578063e985e9c5146107aa578063e9a941dc146107e7578063f2fde38b1461081257610204565b8063a22cb4651461069c578063ac446002146106c5578063b88d4fde146106dc578063c87b56dd1461070557610204565b8063921d11da116100e7578063921d11da146105a35780639231ab2a146105e057806395d89b411461061d578063972909f114610648578063a0c14bdf1461067157610204565b8063715018a61461050f5780638847fa8e146105265780638c2846ca1461054f5780638da5cb5b1461057857610204565b8063250a20971161019b57806355f804b31161016a57806355f804b3146104185780636352211e146104415780636aabb9471461047e5780636bde2627146104a757806370a08231146104d257610204565b8063250a20971461037d5780632db11544146103a857806342842e0e146103c45780634794b5ed146103ed57610204565b80630e2d56cf116101d75780630e2d56cf146102d757806317f5904c1461030057806318160ddd1461032957806323b872dd1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061252f565b61083b565b60405161023d9190612577565b60405180910390f35b34801561025257600080fd5b5061025b6108cd565b6040516102689190612622565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061267a565b61095f565b6040516102a591906126e8565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061272f565b6109de565b005b3480156102e357600080fd5b506102fe60048036038101906102f9919061279b565b610b22565b005b34801561030c57600080fd5b5061032760048036038101906103229190612910565b610b47565b005b34801561033557600080fd5b5061033e610bef565b60405161034b9190612968565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612983565b610c06565b005b34801561038957600080fd5b50610392610f28565b60405161039f9190612577565b60405180910390f35b6103c260048036038101906103bd919061267a565b610fd4565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190612983565b6110c1565b005b3480156103f957600080fd5b506104026110e1565b60405161040f9190612968565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190612a31565b6110e7565b005b34801561044d57600080fd5b506104686004803603810190610463919061267a565b611105565b60405161047591906126e8565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061267a565b611117565b005b3480156104b357600080fd5b506104bc6111c3565b6040516104c99190612968565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612a7e565b6111c9565b6040516105069190612968565b60405180910390f35b34801561051b57600080fd5b50610524611281565b005b34801561053257600080fd5b5061054d60048036038101906105489190612910565b611295565b005b34801561055b57600080fd5b506105766004803603810190610571919061267a565b6112f1565b005b34801561058457600080fd5b5061058d611303565b60405161059a91906126e8565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c5919061267a565b61132c565b6040516105d791906126e8565b60405180910390f35b3480156105ec57600080fd5b506106076004803603810190610602919061267a565b61136b565b6040516106149190612b5f565b60405180910390f35b34801561062957600080fd5b50610632611383565b60405161063f9190612622565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a919061267a565b611415565b005b34801561067d57600080fd5b50610686611427565b6040516106939190612c29565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612c4b565b6114b5565b005b3480156106d157600080fd5b506106da61162c565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190612d40565b611738565b005b34801561071157600080fd5b5061072c6004803603810190610727919061267a565b6117ab565b6040516107399190612622565b60405180910390f35b34801561074e57600080fd5b50610757611849565b6040516107649190612968565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612a7e565b61186d565b6040516107a19190612968565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612dc3565b61187f565b6040516107de9190612577565b60405180910390f35b3480156107f357600080fd5b506107fc611913565b6040516108099190612577565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190612a7e565b611926565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108dc90612e32565b80601f016020809104026020016040519081016040528092919081815260200182805461090890612e32565b80156109555780601f1061092a57610100808354040283529160200191610955565b820191906000526020600020905b81548152906001019060200180831161093857829003601f168201915b5050505050905090565b600061096a826119a9565b6109a0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611105565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0a611a08565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d57610a3681610a31611a08565b61187f565b610a6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b2a611a10565b80600a60006101000a81548160ff02191690831515021790555050565b610b4f611a10565b60005b8151811015610beb57600d828281518110610b7057610b6f612e63565b5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610be390612ec1565b915050610b52565b5050565b6000610bf9611a8e565b6002546001540303905090565b6000610c1182611a93565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c78576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c8484611b5f565b91509150610c9a8187610c95611a08565b611b86565b610ce657610caf86610caa611a08565b61187f565b610ce5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d4c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d598686866001611bca565b8015610d6457600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e3285610e0e888887611bd0565b7c020000000000000000000000000000000000000000000000000000000017611bf8565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610eb85760006001850190506000600560008381526020019081526020016000205403610eb6576001548114610eb5578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f208686866001611c23565b505050505050565b600080600090505b600d80549050811015610fcb57600d8181548110610f5157610f50612e63565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610fb8576001915050610fd1565b8080610fc390612ec1565b915050610f30565b50600090505b90565b600a60009054906101000a900460ff16611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90612f55565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000027108161104d610bef565b6110579190612f75565b1115611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f9061301b565b60405180910390fd5b600081600b546110a8919061303b565b90506110b43383611c29565b6110bd81611de5565b5050565b6110dc83838360405180602001604052806000815250611738565b505050565b600c5481565b6110ef611a10565b8181600e918261110092919061324c565b505050565b600061111082611a93565b9050919050565b61111f610f28565b61115e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611155906133b4565b60405180910390fd5b600c548161116b3361186d565b6111759190612f75565b11156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613420565b60405180910390fd5b6111c03382611c29565b50565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611230576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611289611a10565b6112936000611e86565b565b61129d611a10565b60005b81518110156112ed5760006112ce8383815181106112c1576112c0612e63565b5b6020026020010151611f4a565b90506112d981611fdf565b5080806112e590612ec1565b9150506112a0565b5050565b6112f9611a10565b80600c8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d818154811061133c57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611373612474565b61137c826120fd565b9050919050565b60606004805461139290612e32565b80601f01602080910402602001604051908101604052809291908181526020018280546113be90612e32565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b5050505050905090565b61141d611a10565b80600b8190555050565b6060600d8054806020026020016040519081016040528092919081815260200182805480156114ab57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611461575b5050505050905090565b6114bd611a08565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611521576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061152e611a08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115db611a08565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116209190612577565b60405180910390a35050565b611634611a10565b600260095403611679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116709061348c565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516116a7906134dd565b60006040518083038185875af1925050503d80600081146116e4576040519150601f19603f3d011682016040523d82523d6000602084013e6116e9565b606091505b505090508061172d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117249061353e565b60405180910390fd5b506001600981905550565b611743848484610c06565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117a55761176e8484848461211d565b6117a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117b6826119a9565b6117ec576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117f661226d565b905060008151036118165760405180602001604052806000815250611841565b80611820846122ff565b60405160200161183192919061359a565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000271081565b600061187882612346565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b61192e611a10565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490613630565b60405180910390fd5b6119a681611e86565b50565b6000816119b4611a8e565b111580156119c3575060015482105b8015611a01575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a1861239d565b73ffffffffffffffffffffffffffffffffffffffff16611a36611303565b73ffffffffffffffffffffffffffffffffffffffff1614611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a839061369c565b60405180910390fd5b565b600090565b60008082905080611aa2611a8e565b11611b2857600154811015611b275760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b25575b60008103611b1b576005600083600190039350838152602001908152602001600020549050611af1565b8092505050611b5a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611be78686846123a5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600154905060008203611c6a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c776000848385611bca565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cee83611cdf6000866000611bd0565b611ce8856123ae565b17611bf8565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d8f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d54565b5060008203611dca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611de06000848385611c23565b505050565b80341015611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90613708565b60405180910390fd5b80341115611e83573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611e569190613728565b9081150290604051600060405180830381858888f19350505050158015611e81573d6000803e3d6000fd5b505b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090505b8273ffffffffffffffffffffffffffffffffffffffff16600d8281548110611f7d57611f7c612e63565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fd6578080611fce90612ec1565b915050611f52565b80915050919050565b5b6001600d80549050611ff29190613728565b8110156120b357600d6001826120089190612f75565b8154811061201957612018612e63565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d828154811061205857612057612e63565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080806120ab90612ec1565b915050611fe0565b600d8054806120c5576120c461375c565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b612105612474565b61211661211183611a93565b6123be565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612143611a08565b8786866040518563ffffffff1660e01b815260040161216594939291906137e0565b6020604051808303816000875af19250505080156121a157506040513d601f19601f8201168201806040525081019061219e9190613841565b60015b61221a573d80600081146121d1576040519150601f19603f3d011682016040523d82523d6000602084013e6121d6565b606091505b506000815103612212576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461227c90612e32565b80601f01602080910402602001604051908101604052809291908181526020018280546122a890612e32565b80156122f55780601f106122ca576101008083540402835291602001916122f5565b820191906000526020600020905b8154815290600101906020018083116122d857829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561233257600183039250600a81066030018353600a8104905080612310575b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b6123c6612474565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61250c816124d7565b811461251757600080fd5b50565b60008135905061252981612503565b92915050565b600060208284031215612545576125446124cd565b5b60006125538482850161251a565b91505092915050565b60008115159050919050565b6125718161255c565b82525050565b600060208201905061258c6000830184612568565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125cc5780820151818401526020810190506125b1565b60008484015250505050565b6000601f19601f8301169050919050565b60006125f482612592565b6125fe818561259d565b935061260e8185602086016125ae565b612617816125d8565b840191505092915050565b6000602082019050818103600083015261263c81846125e9565b905092915050565b6000819050919050565b61265781612644565b811461266257600080fd5b50565b6000813590506126748161264e565b92915050565b6000602082840312156126905761268f6124cd565b5b600061269e84828501612665565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126d2826126a7565b9050919050565b6126e2816126c7565b82525050565b60006020820190506126fd60008301846126d9565b92915050565b61270c816126c7565b811461271757600080fd5b50565b60008135905061272981612703565b92915050565b60008060408385031215612746576127456124cd565b5b60006127548582860161271a565b925050602061276585828601612665565b9150509250929050565b6127788161255c565b811461278357600080fd5b50565b6000813590506127958161276f565b92915050565b6000602082840312156127b1576127b06124cd565b5b60006127bf84828501612786565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612805826125d8565b810181811067ffffffffffffffff82111715612824576128236127cd565b5b80604052505050565b60006128376124c3565b905061284382826127fc565b919050565b600067ffffffffffffffff821115612863576128626127cd565b5b602082029050602081019050919050565b600080fd5b600061288c61288784612848565b61282d565b905080838252602082019050602084028301858111156128af576128ae612874565b5b835b818110156128d857806128c4888261271a565b8452602084019350506020810190506128b1565b5050509392505050565b600082601f8301126128f7576128f66127c8565b5b8135612907848260208601612879565b91505092915050565b600060208284031215612926576129256124cd565b5b600082013567ffffffffffffffff811115612944576129436124d2565b5b612950848285016128e2565b91505092915050565b61296281612644565b82525050565b600060208201905061297d6000830184612959565b92915050565b60008060006060848603121561299c5761299b6124cd565b5b60006129aa8682870161271a565b93505060206129bb8682870161271a565b92505060406129cc86828701612665565b9150509250925092565b600080fd5b60008083601f8401126129f1576129f06127c8565b5b8235905067ffffffffffffffff811115612a0e57612a0d6129d6565b5b602083019150836001820283011115612a2a57612a29612874565b5b9250929050565b60008060208385031215612a4857612a476124cd565b5b600083013567ffffffffffffffff811115612a6657612a656124d2565b5b612a72858286016129db565b92509250509250929050565b600060208284031215612a9457612a936124cd565b5b6000612aa28482850161271a565b91505092915050565b612ab4816126c7565b82525050565b600067ffffffffffffffff82169050919050565b612ad781612aba565b82525050565b612ae68161255c565b82525050565b600062ffffff82169050919050565b612b0481612aec565b82525050565b608082016000820151612b206000850182612aab565b506020820151612b336020850182612ace565b506040820151612b466040850182612add565b506060820151612b596060850182612afb565b50505050565b6000608082019050612b746000830184612b0a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6000612bb28383612aab565b60208301905092915050565b6000602082019050919050565b6000612bd682612b7a565b612be08185612b85565b9350612beb83612b96565b8060005b83811015612c1c578151612c038882612ba6565b9750612c0e83612bbe565b925050600181019050612bef565b5085935050505092915050565b60006020820190508181036000830152612c438184612bcb565b905092915050565b60008060408385031215612c6257612c616124cd565b5b6000612c708582860161271a565b9250506020612c8185828601612786565b9150509250929050565b600080fd5b600067ffffffffffffffff821115612cab57612caa6127cd565b5b612cb4826125d8565b9050602081019050919050565b82818337600083830152505050565b6000612ce3612cde84612c90565b61282d565b905082815260208101848484011115612cff57612cfe612c8b565b5b612d0a848285612cc1565b509392505050565b600082601f830112612d2757612d266127c8565b5b8135612d37848260208601612cd0565b91505092915050565b60008060008060808587031215612d5a57612d596124cd565b5b6000612d688782880161271a565b9450506020612d798782880161271a565b9350506040612d8a87828801612665565b925050606085013567ffffffffffffffff811115612dab57612daa6124d2565b5b612db787828801612d12565b91505092959194509250565b60008060408385031215612dda57612dd96124cd565b5b6000612de88582860161271a565b9250506020612df98582860161271a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4a57607f821691505b602082108103612e5d57612e5c612e03565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ecc82612644565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612efe57612efd612e92565b5b600182019050919050565b7f5075626c6963206d696e7420646964206e6f7420737461727420796574000000600082015250565b6000612f3f601d8361259d565b9150612f4a82612f09565b602082019050919050565b60006020820190508181036000830152612f6e81612f32565b9050919050565b6000612f8082612644565b9150612f8b83612644565b9250828201905080821115612fa357612fa2612e92565b5b92915050565b7f6e6f7420656e6f7567682072656d61696e696e67204e46547320746f2073757060008201527f706f72742064657369726564206d696e7420616d6f756e740000000000000000602082015250565b600061300560388361259d565b915061301082612fa9565b604082019050919050565b6000602082019050818103600083015261303481612ff8565b9050919050565b600061304682612644565b915061305183612644565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561308a57613089612e92565b5b828202905092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130c5565b61310c86836130c5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061314961314461313f84612644565b613124565b612644565b9050919050565b6000819050919050565b6131638361312e565b61317761316f82613150565b8484546130d2565b825550505050565b600090565b61318c61317f565b61319781848461315a565b505050565b5b818110156131bb576131b0600082613184565b60018101905061319d565b5050565b601f821115613200576131d1816130a0565b6131da846130b5565b810160208510156131e9578190505b6131fd6131f5856130b5565b83018261319c565b50505b505050565b600082821c905092915050565b600061322360001984600802613205565b1980831691505092915050565b600061323c8383613212565b9150826002028217905092915050565b6132568383613095565b67ffffffffffffffff81111561326f5761326e6127cd565b5b6132798254612e32565b6132848282856131bf565b6000601f8311600181146132b357600084156132a1578287013590505b6132ab8582613230565b865550613313565b601f1984166132c1866130a0565b60005b828110156132e9578489013582556001820191506020850194506020810190506132c4565b868310156133065784890135613302601f891682613212565b8355505b6001600288020188555050505b50505050505050565b7f41646472657373206e6f7420666f756e64206f6e207468652077686974656c6960008201527f73742e20466f72207075626c6963206d696e742028696620737461727465642960208201527f2c2063616c6c207075626c69634d696e74282900000000000000000000000000604082015250565b600061339e60538361259d565b91506133a98261331c565b606082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b600061340a60168361259d565b9150613415826133d4565b602082019050919050565b60006020820190508181036000830152613439816133fd565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613476601f8361259d565b915061348182613440565b602082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b600081905092915050565b50565b60006134c76000836134ac565b91506134d2826134b7565b600082019050919050565b60006134e8826134ba565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061352860108361259d565b9150613533826134f2565b602082019050919050565b600060208201905081810360008301526135578161351b565b9050919050565b600081905092915050565b600061357482612592565b61357e818561355e565b935061358e8185602086016125ae565b80840191505092915050565b60006135a68285613569565b91506135b28284613569565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061361a60268361259d565b9150613625826135be565b604082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061368660208361259d565b915061369182613650565b602082019050919050565b600060208201905081810360008301526136b581613679565b9050919050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b60006136f260168361259d565b91506136fd826136bc565b602082019050919050565b60006020820190508181036000830152613721816136e5565b9050919050565b600061373382612644565b915061373e83612644565b925082820390508181111561375657613755612e92565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006137b28261378b565b6137bc8185613796565b93506137cc8185602086016125ae565b6137d5816125d8565b840191505092915050565b60006080820190506137f560008301876126d9565b61380260208301866126d9565b61380f6040830185612959565b818103606083015261382181846137a7565b905095945050505050565b60008151905061383b81612503565b92915050565b600060208284031215613857576138566124cd565b5b60006138658482850161382c565b9150509291505056fea2646970667358221220d9485da246f38754ea582641c5a4b6d5af4ccacd8c9c544a3129820d17ef76c864736f6c63430008100033

Deployed Bytecode Sourcemap

59751:3490:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27284:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28186:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34669:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34110:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61793:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60784:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23937:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38376:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61306:207;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62216:388;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41289:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59965:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62797:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29579:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60970:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59918:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25121:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;60463:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61640:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60092:26;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63090:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28362:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61897:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60692:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35227:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62903:181;;;;;;;;;;;;;:::i;:::-;;42072:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28572:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60020:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61521:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35692:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59874:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27284:639;27369:4;27708:10;27693:25;;:11;:25;;;;:102;;;;27785:10;27770:25;;:11;:25;;;;27693:102;:179;;;;27862:10;27847:25;;:11;:25;;;;27693:179;27673:199;;27284:639;;;:::o;28186:100::-;28240:13;28273:5;28266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28186:100;:::o;34669:218::-;34745:7;34770:16;34778:7;34770;:16::i;:::-;34765:64;;34795:34;;;;;;;;;;;;;;34765:64;34849:15;:24;34865:7;34849:24;;;;;;;;;;;:30;;;;;;;;;;;;34842:37;;34669:218;;;:::o;34110:400::-;34191:13;34207:16;34215:7;34207;:16::i;:::-;34191:32;;34263:5;34240:28;;:19;:17;:19::i;:::-;:28;;;34236:175;;34288:44;34305:5;34312:19;:17;:19::i;:::-;34288:16;:44::i;:::-;34283:128;;34360:35;;;;;;;;;;;;;;34283:128;34236:175;34456:2;34423:15;:24;34439:7;34423:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34494:7;34490:2;34474:28;;34483:5;34474:28;;;;;;;;;;;;34180:330;34110:400;;:::o;61793:96::-;7270:13;:11;:13::i;:::-;61877:6:::1;61855:19;;:28;;;;;;;;;;;;;;;;;;61793:96:::0;:::o;60784:166::-;7270:13;:11;:13::i;:::-;60858:9:::1;60853:92;60877:9;:16;60873:1;:20;60853:92;;;60909:9;60924;60934:1;60924:12;;;;;;;;:::i;:::-;;;;;;;;60909:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60895:3;;;;;:::i;:::-;;;;60853:92;;;;60784:166:::0;:::o;23937:323::-;23998:7;24226:15;:13;:15::i;:::-;24211:12;;24195:13;;:28;:46;24188:53;;23937:323;:::o;38376:2817::-;38510:27;38540;38559:7;38540:18;:27::i;:::-;38510:57;;38625:4;38584:45;;38600:19;38584:45;;;38580:86;;38638:28;;;;;;;;;;;;;;38580:86;38680:27;38709:23;38736:35;38763:7;38736:26;:35::i;:::-;38679:92;;;;38871:68;38896:15;38913:4;38919:19;:17;:19::i;:::-;38871:24;:68::i;:::-;38866:180;;38959:43;38976:4;38982:19;:17;:19::i;:::-;38959:16;:43::i;:::-;38954:92;;39011:35;;;;;;;;;;;;;;38954:92;38866:180;39077:1;39063:16;;:2;:16;;;39059:52;;39088:23;;;;;;;;;;;;;;39059:52;39124:43;39146:4;39152:2;39156:7;39165:1;39124:21;:43::i;:::-;39260:15;39257:160;;;39400:1;39379:19;39372:30;39257:160;39797:18;:24;39816:4;39797:24;;;;;;;;;;;;;;;;39795:26;;;;;;;;;;;;39866:18;:22;39885:2;39866:22;;;;;;;;;;;;;;;;39864:24;;;;;;;;;;;40188:146;40225:2;40274:45;40289:4;40295:2;40299:19;40274:14;:45::i;:::-;20336:8;40246:73;40188:18;:146::i;:::-;40159:17;:26;40177:7;40159:26;;;;;;;;;;;:175;;;;40505:1;20336:8;40454:19;:47;:52;40450:627;;40527:19;40559:1;40549:7;:11;40527:33;;40716:1;40682:17;:30;40700:11;40682:30;;;;;;;;;;;;:35;40678:384;;40820:13;;40805:11;:28;40801:242;;41000:19;40967:17;:30;40985:11;40967:30;;;;;;;;;;;:52;;;;40801:242;40678:384;40508:569;40450:627;41124:7;41120:2;41105:27;;41114:4;41105:27;;;;;;;;;;;;41143:42;41164:4;41170:2;41174:7;41183:1;41143:20;:42::i;:::-;38499:2694;;;38376:2817;;;:::o;61306:207::-;61349:4;61367:9;61379:1;61367:13;;61362:127;61386:9;:16;;;;61382:1;:20;61362:127;;;61436:9;61446:1;61436:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61422:26;;:10;:26;;;61418:64;;61468:4;61461:11;;;;;61418:64;61404:3;;;;;:::i;:::-;;;;61362:127;;;;61502:5;61495:12;;61306:207;;:::o;62216:388::-;62286:19;;;;;;;;;;;62278:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;62390:15;62378:8;62362:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:43;;62346:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;62486:17;62526:8;62506:17;;:28;;;;:::i;:::-;62486:48;;62541:27;62547:10;62559:8;62541:5;:27::i;:::-;62575:23;62588:9;62575:12;:23::i;:::-;62271:333;62216:388;:::o;41289:185::-;41427:39;41444:4;41450:2;41454:7;41427:39;;;;;;;;;;;;:16;:39::i;:::-;41289:185;;;:::o;59965:50::-;;;;:::o;62797:100::-;7270:13;:11;:13::i;:::-;62884:7:::1;;62868:13;:23;;;;;;;:::i;:::-;;62797:100:::0;;:::o;29579:152::-;29651:7;29694:27;29713:7;29694:18;:27::i;:::-;29671:52;;29579:152;;;:::o;60970:330::-;61028:12;:10;:12::i;:::-;61020:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;61190:30;;61178:8;61151:24;61164:10;61151:12;:24::i;:::-;:35;;;;:::i;:::-;:69;;61135:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;61267:27;61273:10;61285:8;61267:5;:27::i;:::-;60970:330;:::o;59918:42::-;;;;:::o;25121:233::-;25193:7;25234:1;25217:19;;:5;:19;;;25213:60;;25245:28;;;;;;;;;;;;;;25213:60;19280:13;25291:18;:25;25310:5;25291:25;;;;;;;;;;;;;;;;:55;25284:62;;25121:233;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;60463:223::-;7270:13;:11;:13::i;:::-;60542:9:::1;60537:144;60561:9;:16;60557:1;:20;60537:144;;;60603:13;60619:18;60624:9;60634:1;60624:12;;;;;;;;:::i;:::-;;;;;;;;60619:4;:18::i;:::-;60603:34;;60648:23;60662:8;60648:13;:23::i;:::-;60584:97;60579:3;;;;;:::i;:::-;;;;60537:144;;;;60463:223:::0;:::o;61640:129::-;7270:13;:11;:13::i;:::-;61755:8:::1;61722:30;:41;;;;61640:129:::0;:::o;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;60092:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63090:148::-;63171:21;;:::i;:::-;63211;63224:7;63211:12;:21::i;:::-;63204:28;;63090:148;;;:::o;28362:104::-;28418:13;28451:7;28444:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28362:104;:::o;61897:103::-;7270:13;:11;:13::i;:::-;61989:5:::1;61969:17;:25;;;;61897:103:::0;:::o;60692:86::-;60729:16;60763:9;60756:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60692:86;:::o;35227:308::-;35338:19;:17;:19::i;:::-;35326:31;;:8;:31;;;35322:61;;35366:17;;;;;;;;;;;;;;35322:61;35448:8;35396:18;:39;35415:19;:17;:19::i;:::-;35396:39;;;;;;;;;;;;;;;:49;35436:8;35396:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35508:8;35472:55;;35487:19;:17;:19::i;:::-;35472:55;;;35518:8;35472:55;;;;;;:::i;:::-;;;;;;;;35227:308;;:::o;62903:181::-;7270:13;:11;:13::i;:::-;4309:1:::1;4907:7;;:19:::0;4899:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:1;5040:7;:18;;;;62968:12:::2;62986:10;:15;;63009:21;62986:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62967:68;;;63050:7;63042:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;62960:124;4265:1:::1;5219:7;:22;;;;62903:181::o:0;42072:399::-;42239:31;42252:4;42258:2;42262:7;42239:12;:31::i;:::-;42303:1;42285:2;:14;;;:19;42281:183;;42324:56;42355:4;42361:2;42365:7;42374:5;42324:30;:56::i;:::-;42319:145;;42408:40;;;;;;;;;;;;;;42319:145;42281:183;42072:399;;;;:::o;28572:318::-;28645:13;28676:16;28684:7;28676;:16::i;:::-;28671:59;;28701:29;;;;;;;;;;;;;;28671:59;28743:21;28767:10;:8;:10::i;:::-;28743:34;;28820:1;28801:7;28795:21;:26;:87;;;;;;;;;;;;;;;;;28848:7;28857:18;28867:7;28857:9;:18::i;:::-;28831:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28795:87;28788:94;;;28572:318;;;:::o;60020:48::-;;;:::o;61521:107::-;61579:7;61602:20;61616:5;61602:13;:20::i;:::-;61595:27;;61521:107;;;:::o;35692:164::-;35789:4;35813:18;:25;35832:5;35813:25;;;;;;;;;;;;;;;:35;35839:8;35813:35;;;;;;;;;;;;;;;;;;;;;;;;;35806:42;;35692:164;;;;:::o;59874:39::-;;;;;;;;;;;;;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;::::0;8371:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;36114:282::-;36179:4;36235:7;36216:15;:13;:15::i;:::-;:26;;:66;;;;;36269:13;;36259:7;:23;36216:66;:153;;;;;36368:1;20056:8;36320:17;:26;36338:7;36320:26;;;;;;;;;;;;:44;:49;36216:153;36196:173;;36114:282;;;:::o;57880:105::-;57940:7;57967:10;57960:17;;57880:105;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;23453:92::-;23509:7;23453:92;:::o;30734:1275::-;30801:7;30821:12;30836:7;30821:22;;30904:4;30885:15;:13;:15::i;:::-;:23;30881:1061;;30938:13;;30931:4;:20;30927:1015;;;30976:14;30993:17;:23;31011:4;30993:23;;;;;;;;;;;;30976:40;;31110:1;20056:8;31082:6;:24;:29;31078:845;;31747:113;31764:1;31754:6;:11;31747:113;;31807:17;:25;31825:6;;;;;;;31807:25;;;;;;;;;;;;31798:34;;31747:113;;;31893:6;31886:13;;;;;;31078:845;30953:989;30927:1015;30881:1061;31970:31;;;;;;;;;;;;;;30734:1275;;;;:::o;37277:479::-;37379:27;37408:23;37449:38;37490:15;:24;37506:7;37490:24;;;;;;;;;;;37449:65;;37661:18;37638:41;;37718:19;37712:26;37693:45;;37623:126;37277:479;;;:::o;36505:659::-;36654:11;36819:16;36812:5;36808:28;36799:37;;36979:16;36968:9;36964:32;36951:45;;37129:15;37118:9;37115:30;37107:5;37096:9;37093:20;37090:56;37080:66;;36505:659;;;;;:::o;43133:159::-;;;;;:::o;57189:311::-;57324:7;57344:16;20460:3;57370:19;:41;;57344:68;;20460:3;57438:31;57449:4;57455:2;57459:9;57438:10;:31::i;:::-;57430:40;;:62;;57423:69;;;57189:311;;;;;:::o;32557:450::-;32637:14;32805:16;32798:5;32794:28;32785:37;;32982:5;32968:11;32943:23;32939:41;32936:52;32929:5;32926:63;32916:73;;32557:450;;;;:::o;43957:158::-;;;;;:::o;45733:2454::-;45806:20;45829:13;;45806:36;;45869:1;45857:8;:13;45853:44;;45879:18;;;;;;;;;;;;;;45853:44;45910:61;45940:1;45944:2;45948:12;45962:8;45910:21;:61::i;:::-;46454:1;19418:2;46424:1;:26;;46423:32;46411:8;:45;46385:18;:22;46404:2;46385:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46733:139;46770:2;46824:33;46847:1;46851:2;46855:1;46824:14;:33::i;:::-;46791:30;46812:8;46791:20;:30::i;:::-;:66;46733:18;:139::i;:::-;46699:17;:31;46717:12;46699:31;;;;;;;;;;;:173;;;;46889:16;46920:11;46949:8;46934:12;:23;46920:37;;47204:16;47200:2;47196:25;47184:37;;47576:12;47536:8;47495:1;47433:25;47374:1;47313;47286:335;47701:1;47687:12;47683:20;47641:346;47742:3;47733:7;47730:16;47641:346;;47960:7;47950:8;47947:1;47920:25;47917:1;47914;47909:59;47795:1;47786:7;47782:15;47771:26;;47641:346;;;47645:77;48032:1;48020:8;:13;48016:45;;48042:19;;;;;;;;;;;;;;48016:45;48094:3;48078:13;:19;;;;46159:1950;;48119:60;48148:1;48152:2;48156:12;48170:8;48119:20;:60::i;:::-;45795:2392;45733:2454;;:::o;62006:204::-;62079:5;62066:9;:18;;62058:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;62134:5;62122:9;:17;62118:87;;;62158:10;62150:28;;:47;62191:5;62179:9;:17;;;;:::i;:::-;62150:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62118:87;62006:204;:::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;60125:162::-;60175:4;60190:6;60199:1;60190:10;;60209:56;60232:5;60216:21;;:9;60226:1;60216:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:21;;;60209:56;;60252:3;;;;;:::i;:::-;;;;60209:56;;;60280:1;60273:8;;;60125:162;;;:::o;60293:164::-;60339:91;60365:1;60348:9;:16;;;;:18;;;;:::i;:::-;60346:1;:20;60339:91;;;60394:9;60406:1;60404;:3;;;;:::i;:::-;60394:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60379:9;60389:1;60379:12;;;;;;;;:::i;:::-;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;60419:3;;;;;:::i;:::-;;;;60339:91;;;60436:9;:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;60293:164;:::o;29920:166::-;29990:21;;:::i;:::-;30031:47;30050:27;30069:7;30050:18;:27::i;:::-;30031:18;:47::i;:::-;30024:54;;29920:166;;;:::o;44555:716::-;44718:4;44764:2;44739:45;;;44785:19;:17;:19::i;:::-;44806:4;44812:7;44821:5;44739:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44735:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45039:1;45022:6;:13;:18;45018:235;;45068:40;;;;;;;;;;;;;;45018:235;45211:6;45205:13;45196:6;45192:2;45188:15;45181:38;44735:529;44908:54;;;44898:64;;;:6;:64;;;;44891:71;;;44555:716;;;;;;:::o;62683:108::-;62743:13;62772;62765:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62683:108;:::o;58087:1581::-;58152:17;58577:4;58570;58564:11;58560:22;58553:29;;58669:3;58663:4;58656:17;58775:3;59014:5;58996:428;59022:1;58996:428;;;59062:1;59057:3;59053:11;59046:18;;59233:2;59227:4;59223:13;59219:2;59215:22;59210:3;59202:36;59327:2;59321:4;59317:13;59309:21;;59394:4;58996:428;59384:25;58996:428;59000:21;59463:3;59458;59454:13;59578:4;59573:3;59569:14;59562:21;;59643:6;59638:3;59631:19;58191:1470;;58087:1581;;;:::o;25436:178::-;25497:7;19280:13;19418:2;25525:18;:25;25544:5;25525:25;;;;;;;;;;;;;;;;:50;;25524:82;25517:89;;25436:178;;;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;56890:147::-;57027:6;56890:147;;;;;:::o;33109:324::-;33179:14;33412:1;33402:8;33399:15;33373:24;33369:46;33359:56;;33109:324;;;:::o;32108:366::-;32174:31;;:::i;:::-;32251:6;32218:9;:14;;:41;;;;;;;;;;;19939:3;32304:6;:33;;32270:9;:24;;:68;;;;;;;;;;;32396:1;20056:8;32368:6;:24;:29;;32349:9;:16;;:48;;;;;;;;;;;20460:3;32437:6;:28;;32408:9;:19;;:58;;;;;;;;;;;32108:366;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:116::-;4960:21;4975:5;4960:21;:::i;:::-;4953:5;4950:32;4940:60;;4996:1;4993;4986:12;4940:60;4890:116;:::o;5012:133::-;5055:5;5093:6;5080:20;5071:29;;5109:30;5133:5;5109:30;:::i;:::-;5012:133;;;;:::o;5151:323::-;5207:6;5256:2;5244:9;5235:7;5231:23;5227:32;5224:119;;;5262:79;;:::i;:::-;5224:119;5382:1;5407:50;5449:7;5440:6;5429:9;5425:22;5407:50;:::i;:::-;5397:60;;5353:114;5151:323;;;;:::o;5480:117::-;5589:1;5586;5579:12;5603:180;5651:77;5648:1;5641:88;5748:4;5745:1;5738:15;5772:4;5769:1;5762:15;5789:281;5872:27;5894:4;5872:27;:::i;:::-;5864:6;5860:40;6002:6;5990:10;5987:22;5966:18;5954:10;5951:34;5948:62;5945:88;;;6013:18;;:::i;:::-;5945:88;6053:10;6049:2;6042:22;5832:238;5789:281;;:::o;6076:129::-;6110:6;6137:20;;:::i;:::-;6127:30;;6166:33;6194:4;6186:6;6166:33;:::i;:::-;6076:129;;;:::o;6211:311::-;6288:4;6378:18;6370:6;6367:30;6364:56;;;6400:18;;:::i;:::-;6364:56;6450:4;6442:6;6438:17;6430:25;;6510:4;6504;6500:15;6492:23;;6211:311;;;:::o;6528:117::-;6637:1;6634;6627:12;6668:710;6764:5;6789:81;6805:64;6862:6;6805:64;:::i;:::-;6789:81;:::i;:::-;6780:90;;6890:5;6919:6;6912:5;6905:21;6953:4;6946:5;6942:16;6935:23;;7006:4;6998:6;6994:17;6986:6;6982:30;7035:3;7027:6;7024:15;7021:122;;;7054:79;;:::i;:::-;7021:122;7169:6;7152:220;7186:6;7181:3;7178:15;7152:220;;;7261:3;7290:37;7323:3;7311:10;7290:37;:::i;:::-;7285:3;7278:50;7357:4;7352:3;7348:14;7341:21;;7228:144;7212:4;7207:3;7203:14;7196:21;;7152:220;;;7156:21;6770:608;;6668:710;;;;;:::o;7401:370::-;7472:5;7521:3;7514:4;7506:6;7502:17;7498:27;7488:122;;7529:79;;:::i;:::-;7488:122;7646:6;7633:20;7671:94;7761:3;7753:6;7746:4;7738:6;7734:17;7671:94;:::i;:::-;7662:103;;7478:293;7401:370;;;;:::o;7777:539::-;7861:6;7910:2;7898:9;7889:7;7885:23;7881:32;7878:119;;;7916:79;;:::i;:::-;7878:119;8064:1;8053:9;8049:17;8036:31;8094:18;8086:6;8083:30;8080:117;;;8116:79;;:::i;:::-;8080:117;8221:78;8291:7;8282:6;8271:9;8267:22;8221:78;:::i;:::-;8211:88;;8007:302;7777:539;;;;:::o;8322:118::-;8409:24;8427:5;8409:24;:::i;:::-;8404:3;8397:37;8322:118;;:::o;8446:222::-;8539:4;8577:2;8566:9;8562:18;8554:26;;8590:71;8658:1;8647:9;8643:17;8634:6;8590:71;:::i;:::-;8446:222;;;;:::o;8674:619::-;8751:6;8759;8767;8816:2;8804:9;8795:7;8791:23;8787:32;8784:119;;;8822:79;;:::i;:::-;8784:119;8942:1;8967:53;9012:7;9003:6;8992:9;8988:22;8967:53;:::i;:::-;8957:63;;8913:117;9069:2;9095:53;9140:7;9131:6;9120:9;9116:22;9095:53;:::i;:::-;9085:63;;9040:118;9197:2;9223:53;9268:7;9259:6;9248:9;9244:22;9223:53;:::i;:::-;9213:63;;9168:118;8674:619;;;;;:::o;9299:117::-;9408:1;9405;9398:12;9436:553;9494:8;9504:6;9554:3;9547:4;9539:6;9535:17;9531:27;9521:122;;9562:79;;:::i;:::-;9521:122;9675:6;9662:20;9652:30;;9705:18;9697:6;9694:30;9691:117;;;9727:79;;:::i;:::-;9691:117;9841:4;9833:6;9829:17;9817:29;;9895:3;9887:4;9879:6;9875:17;9865:8;9861:32;9858:41;9855:128;;;9902:79;;:::i;:::-;9855:128;9436:553;;;;;:::o;9995:529::-;10066:6;10074;10123:2;10111:9;10102:7;10098:23;10094:32;10091:119;;;10129:79;;:::i;:::-;10091:119;10277:1;10266:9;10262:17;10249:31;10307:18;10299:6;10296:30;10293:117;;;10329:79;;:::i;:::-;10293:117;10442:65;10499:7;10490:6;10479:9;10475:22;10442:65;:::i;:::-;10424:83;;;;10220:297;9995:529;;;;;:::o;10530:329::-;10589:6;10638:2;10626:9;10617:7;10613:23;10609:32;10606:119;;;10644:79;;:::i;:::-;10606:119;10764:1;10789:53;10834:7;10825:6;10814:9;10810:22;10789:53;:::i;:::-;10779:63;;10735:117;10530:329;;;;:::o;10865:108::-;10942:24;10960:5;10942:24;:::i;:::-;10937:3;10930:37;10865:108;;:::o;10979:101::-;11015:7;11055:18;11048:5;11044:30;11033:41;;10979:101;;;:::o;11086:105::-;11161:23;11178:5;11161:23;:::i;:::-;11156:3;11149:36;11086:105;;:::o;11197:99::-;11268:21;11283:5;11268:21;:::i;:::-;11263:3;11256:34;11197:99;;:::o;11302:91::-;11338:7;11378:8;11371:5;11367:20;11356:31;;11302:91;;;:::o;11399:105::-;11474:23;11491:5;11474:23;:::i;:::-;11469:3;11462:36;11399:105;;:::o;11582:874::-;11741:4;11736:3;11732:14;11828:4;11821:5;11817:16;11811:23;11847:63;11904:4;11899:3;11895:14;11881:12;11847:63;:::i;:::-;11756:164;12012:4;12005:5;12001:16;11995:23;12031:61;12086:4;12081:3;12077:14;12063:12;12031:61;:::i;:::-;11930:172;12186:4;12179:5;12175:16;12169:23;12205:57;12256:4;12251:3;12247:14;12233:12;12205:57;:::i;:::-;12112:160;12359:4;12352:5;12348:16;12342:23;12378:61;12433:4;12428:3;12424:14;12410:12;12378:61;:::i;:::-;12282:167;11710:746;11582:874;;:::o;12462:347::-;12617:4;12655:3;12644:9;12640:19;12632:27;;12669:133;12799:1;12788:9;12784:17;12775:6;12669:133;:::i;:::-;12462:347;;;;:::o;12815:114::-;12882:6;12916:5;12910:12;12900:22;;12815:114;;;:::o;12935:184::-;13034:11;13068:6;13063:3;13056:19;13108:4;13103:3;13099:14;13084:29;;12935:184;;;;:::o;13125:132::-;13192:4;13215:3;13207:11;;13245:4;13240:3;13236:14;13228:22;;13125:132;;;:::o;13263:179::-;13332:10;13353:46;13395:3;13387:6;13353:46;:::i;:::-;13431:4;13426:3;13422:14;13408:28;;13263:179;;;;:::o;13448:113::-;13518:4;13550;13545:3;13541:14;13533:22;;13448:113;;;:::o;13597:732::-;13716:3;13745:54;13793:5;13745:54;:::i;:::-;13815:86;13894:6;13889:3;13815:86;:::i;:::-;13808:93;;13925:56;13975:5;13925:56;:::i;:::-;14004:7;14035:1;14020:284;14045:6;14042:1;14039:13;14020:284;;;14121:6;14115:13;14148:63;14207:3;14192:13;14148:63;:::i;:::-;14141:70;;14234:60;14287:6;14234:60;:::i;:::-;14224:70;;14080:224;14067:1;14064;14060:9;14055:14;;14020:284;;;14024:14;14320:3;14313:10;;13721:608;;;13597:732;;;;:::o;14335:373::-;14478:4;14516:2;14505:9;14501:18;14493:26;;14565:9;14559:4;14555:20;14551:1;14540:9;14536:17;14529:47;14593:108;14696:4;14687:6;14593:108;:::i;:::-;14585:116;;14335:373;;;;:::o;14714:468::-;14779:6;14787;14836:2;14824:9;14815:7;14811:23;14807:32;14804:119;;;14842:79;;:::i;:::-;14804:119;14962:1;14987:53;15032:7;15023:6;15012:9;15008:22;14987:53;:::i;:::-;14977:63;;14933:117;15089:2;15115:50;15157:7;15148:6;15137:9;15133:22;15115:50;:::i;:::-;15105:60;;15060:115;14714:468;;;;;:::o;15188:117::-;15297:1;15294;15287:12;15311:307;15372:4;15462:18;15454:6;15451:30;15448:56;;;15484:18;;:::i;:::-;15448:56;15522:29;15544:6;15522:29;:::i;:::-;15514:37;;15606:4;15600;15596:15;15588:23;;15311:307;;;:::o;15624:146::-;15721:6;15716:3;15711;15698:30;15762:1;15753:6;15748:3;15744:16;15737:27;15624:146;;;:::o;15776:423::-;15853:5;15878:65;15894:48;15935:6;15894:48;:::i;:::-;15878:65;:::i;:::-;15869:74;;15966:6;15959:5;15952:21;16004:4;15997:5;15993:16;16042:3;16033:6;16028:3;16024:16;16021:25;16018:112;;;16049:79;;:::i;:::-;16018:112;16139:54;16186:6;16181:3;16176;16139:54;:::i;:::-;15859:340;15776:423;;;;;:::o;16218:338::-;16273:5;16322:3;16315:4;16307:6;16303:17;16299:27;16289:122;;16330:79;;:::i;:::-;16289:122;16447:6;16434:20;16472:78;16546:3;16538:6;16531:4;16523:6;16519:17;16472:78;:::i;:::-;16463:87;;16279:277;16218:338;;;;:::o;16562:943::-;16657:6;16665;16673;16681;16730:3;16718:9;16709:7;16705:23;16701:33;16698:120;;;16737:79;;:::i;:::-;16698:120;16857:1;16882:53;16927:7;16918:6;16907:9;16903:22;16882:53;:::i;:::-;16872:63;;16828:117;16984:2;17010:53;17055:7;17046:6;17035:9;17031:22;17010:53;:::i;:::-;17000:63;;16955:118;17112:2;17138:53;17183:7;17174:6;17163:9;17159:22;17138:53;:::i;:::-;17128:63;;17083:118;17268:2;17257:9;17253:18;17240:32;17299:18;17291:6;17288:30;17285:117;;;17321:79;;:::i;:::-;17285:117;17426:62;17480:7;17471:6;17460:9;17456:22;17426:62;:::i;:::-;17416:72;;17211:287;16562:943;;;;;;;:::o;17511:474::-;17579:6;17587;17636:2;17624:9;17615:7;17611:23;17607:32;17604:119;;;17642:79;;:::i;:::-;17604:119;17762:1;17787:53;17832:7;17823:6;17812:9;17808:22;17787:53;:::i;:::-;17777:63;;17733:117;17889:2;17915:53;17960:7;17951:6;17940:9;17936:22;17915:53;:::i;:::-;17905:63;;17860:118;17511:474;;;;;:::o;17991:180::-;18039:77;18036:1;18029:88;18136:4;18133:1;18126:15;18160:4;18157:1;18150:15;18177:320;18221:6;18258:1;18252:4;18248:12;18238:22;;18305:1;18299:4;18295:12;18326:18;18316:81;;18382:4;18374:6;18370:17;18360:27;;18316:81;18444:2;18436:6;18433:14;18413:18;18410:38;18407:84;;18463:18;;:::i;:::-;18407:84;18228:269;18177:320;;;:::o;18503:180::-;18551:77;18548:1;18541:88;18648:4;18645:1;18638:15;18672:4;18669:1;18662:15;18689:180;18737:77;18734:1;18727:88;18834:4;18831:1;18824:15;18858:4;18855:1;18848:15;18875:233;18914:3;18937:24;18955:5;18937:24;:::i;:::-;18928:33;;18983:66;18976:5;18973:77;18970:103;;19053:18;;:::i;:::-;18970:103;19100:1;19093:5;19089:13;19082:20;;18875:233;;;:::o;19114:179::-;19254:31;19250:1;19242:6;19238:14;19231:55;19114:179;:::o;19299:366::-;19441:3;19462:67;19526:2;19521:3;19462:67;:::i;:::-;19455:74;;19538:93;19627:3;19538:93;:::i;:::-;19656:2;19651:3;19647:12;19640:19;;19299:366;;;:::o;19671:419::-;19837:4;19875:2;19864:9;19860:18;19852:26;;19924:9;19918:4;19914:20;19910:1;19899:9;19895:17;19888:47;19952:131;20078:4;19952:131;:::i;:::-;19944:139;;19671:419;;;:::o;20096:191::-;20136:3;20155:20;20173:1;20155:20;:::i;:::-;20150:25;;20189:20;20207:1;20189:20;:::i;:::-;20184:25;;20232:1;20229;20225:9;20218:16;;20253:3;20250:1;20247:10;20244:36;;;20260:18;;:::i;:::-;20244:36;20096:191;;;;:::o;20293:243::-;20433:34;20429:1;20421:6;20417:14;20410:58;20502:26;20497:2;20489:6;20485:15;20478:51;20293:243;:::o;20542:366::-;20684:3;20705:67;20769:2;20764:3;20705:67;:::i;:::-;20698:74;;20781:93;20870:3;20781:93;:::i;:::-;20899:2;20894:3;20890:12;20883:19;;20542:366;;;:::o;20914:419::-;21080:4;21118:2;21107:9;21103:18;21095:26;;21167:9;21161:4;21157:20;21153:1;21142:9;21138:17;21131:47;21195:131;21321:4;21195:131;:::i;:::-;21187:139;;20914:419;;;:::o;21339:348::-;21379:7;21402:20;21420:1;21402:20;:::i;:::-;21397:25;;21436:20;21454:1;21436:20;:::i;:::-;21431:25;;21624:1;21556:66;21552:74;21549:1;21546:81;21541:1;21534:9;21527:17;21523:105;21520:131;;;21631:18;;:::i;:::-;21520:131;21679:1;21676;21672:9;21661:20;;21339:348;;;;:::o;21693:97::-;21752:6;21780:3;21770:13;;21693:97;;;;:::o;21796:141::-;21845:4;21868:3;21860:11;;21891:3;21888:1;21881:14;21925:4;21922:1;21912:18;21904:26;;21796:141;;;:::o;21943:93::-;21980:6;22027:2;22022;22015:5;22011:14;22007:23;21997:33;;21943:93;;;:::o;22042:107::-;22086:8;22136:5;22130:4;22126:16;22105:37;;22042:107;;;;:::o;22155:393::-;22224:6;22274:1;22262:10;22258:18;22297:97;22327:66;22316:9;22297:97;:::i;:::-;22415:39;22445:8;22434:9;22415:39;:::i;:::-;22403:51;;22487:4;22483:9;22476:5;22472:21;22463:30;;22536:4;22526:8;22522:19;22515:5;22512:30;22502:40;;22231:317;;22155:393;;;;;:::o;22554:60::-;22582:3;22603:5;22596:12;;22554:60;;;:::o;22620:142::-;22670:9;22703:53;22721:34;22730:24;22748:5;22730:24;:::i;:::-;22721:34;:::i;:::-;22703:53;:::i;:::-;22690:66;;22620:142;;;:::o;22768:75::-;22811:3;22832:5;22825:12;;22768:75;;;:::o;22849:269::-;22959:39;22990:7;22959:39;:::i;:::-;23020:91;23069:41;23093:16;23069:41;:::i;:::-;23061:6;23054:4;23048:11;23020:91;:::i;:::-;23014:4;23007:105;22925:193;22849:269;;;:::o;23124:73::-;23169:3;23124:73;:::o;23203:189::-;23280:32;;:::i;:::-;23321:65;23379:6;23371;23365:4;23321:65;:::i;:::-;23256:136;23203:189;;:::o;23398:186::-;23458:120;23475:3;23468:5;23465:14;23458:120;;;23529:39;23566:1;23559:5;23529:39;:::i;:::-;23502:1;23495:5;23491:13;23482:22;;23458:120;;;23398:186;;:::o;23590:543::-;23691:2;23686:3;23683:11;23680:446;;;23725:38;23757:5;23725:38;:::i;:::-;23809:29;23827:10;23809:29;:::i;:::-;23799:8;23795:44;23992:2;23980:10;23977:18;23974:49;;;24013:8;23998:23;;23974:49;24036:80;24092:22;24110:3;24092:22;:::i;:::-;24082:8;24078:37;24065:11;24036:80;:::i;:::-;23695:431;;23680:446;23590:543;;;:::o;24139:117::-;24193:8;24243:5;24237:4;24233:16;24212:37;;24139:117;;;;:::o;24262:169::-;24306:6;24339:51;24387:1;24383:6;24375:5;24372:1;24368:13;24339:51;:::i;:::-;24335:56;24420:4;24414;24410:15;24400:25;;24313:118;24262:169;;;;:::o;24436:295::-;24512:4;24658:29;24683:3;24677:4;24658:29;:::i;:::-;24650:37;;24720:3;24717:1;24713:11;24707:4;24704:21;24696:29;;24436:295;;;;:::o;24736:1403::-;24860:44;24900:3;24895;24860:44;:::i;:::-;24969:18;24961:6;24958:30;24955:56;;;24991:18;;:::i;:::-;24955:56;25035:38;25067:4;25061:11;25035:38;:::i;:::-;25120:67;25180:6;25172;25166:4;25120:67;:::i;:::-;25214:1;25243:2;25235:6;25232:14;25260:1;25255:632;;;;25931:1;25948:6;25945:84;;;26004:9;25999:3;25995:19;25982:33;25973:42;;25945:84;26055:67;26115:6;26108:5;26055:67;:::i;:::-;26049:4;26042:81;25904:229;25225:908;;25255:632;25307:4;25303:9;25295:6;25291:22;25341:37;25373:4;25341:37;:::i;:::-;25400:1;25414:215;25428:7;25425:1;25422:14;25414:215;;;25514:9;25509:3;25505:19;25492:33;25484:6;25477:49;25565:1;25557:6;25553:14;25543:24;;25612:2;25601:9;25597:18;25584:31;;25451:4;25448:1;25444:12;25439:17;;25414:215;;;25657:6;25648:7;25645:19;25642:186;;;25722:9;25717:3;25713:19;25700:33;25765:48;25807:4;25799:6;25795:17;25784:9;25765:48;:::i;:::-;25757:6;25750:64;25665:163;25642:186;25874:1;25870;25862:6;25858:14;25854:22;25848:4;25841:36;25262:625;;;25225:908;;24835:1304;;;24736:1403;;;:::o;26145:307::-;26285:34;26281:1;26273:6;26269:14;26262:58;26354:34;26349:2;26341:6;26337:15;26330:59;26423:21;26418:2;26410:6;26406:15;26399:46;26145:307;:::o;26458:366::-;26600:3;26621:67;26685:2;26680:3;26621:67;:::i;:::-;26614:74;;26697:93;26786:3;26697:93;:::i;:::-;26815:2;26810:3;26806:12;26799:19;;26458:366;;;:::o;26830:419::-;26996:4;27034:2;27023:9;27019:18;27011:26;;27083:9;27077:4;27073:20;27069:1;27058:9;27054:17;27047:47;27111:131;27237:4;27111:131;:::i;:::-;27103:139;;26830:419;;;:::o;27255:172::-;27395:24;27391:1;27383:6;27379:14;27372:48;27255:172;:::o;27433:366::-;27575:3;27596:67;27660:2;27655:3;27596:67;:::i;:::-;27589:74;;27672:93;27761:3;27672:93;:::i;:::-;27790:2;27785:3;27781:12;27774:19;;27433:366;;;:::o;27805:419::-;27971:4;28009:2;27998:9;27994:18;27986:26;;28058:9;28052:4;28048:20;28044:1;28033:9;28029:17;28022:47;28086:131;28212:4;28086:131;:::i;:::-;28078:139;;27805:419;;;:::o;28230:181::-;28370:33;28366:1;28358:6;28354:14;28347:57;28230:181;:::o;28417:366::-;28559:3;28580:67;28644:2;28639:3;28580:67;:::i;:::-;28573:74;;28656:93;28745:3;28656:93;:::i;:::-;28774:2;28769:3;28765:12;28758:19;;28417:366;;;:::o;28789:419::-;28955:4;28993:2;28982:9;28978:18;28970:26;;29042:9;29036:4;29032:20;29028:1;29017:9;29013:17;29006:47;29070:131;29196:4;29070:131;:::i;:::-;29062:139;;28789:419;;;:::o;29214:147::-;29315:11;29352:3;29337:18;;29214:147;;;;:::o;29367:114::-;;:::o;29487:398::-;29646:3;29667:83;29748:1;29743:3;29667:83;:::i;:::-;29660:90;;29759:93;29848:3;29759:93;:::i;:::-;29877:1;29872:3;29868:11;29861:18;;29487:398;;;:::o;29891:379::-;30075:3;30097:147;30240:3;30097:147;:::i;:::-;30090:154;;30261:3;30254:10;;29891:379;;;:::o;30276:166::-;30416:18;30412:1;30404:6;30400:14;30393:42;30276:166;:::o;30448:366::-;30590:3;30611:67;30675:2;30670:3;30611:67;:::i;:::-;30604:74;;30687:93;30776:3;30687:93;:::i;:::-;30805:2;30800:3;30796:12;30789:19;;30448:366;;;:::o;30820:419::-;30986:4;31024:2;31013:9;31009:18;31001:26;;31073:9;31067:4;31063:20;31059:1;31048:9;31044:17;31037:47;31101:131;31227:4;31101:131;:::i;:::-;31093:139;;30820:419;;;:::o;31245:148::-;31347:11;31384:3;31369:18;;31245:148;;;;:::o;31399:390::-;31505:3;31533:39;31566:5;31533:39;:::i;:::-;31588:89;31670:6;31665:3;31588:89;:::i;:::-;31581:96;;31686:65;31744:6;31739:3;31732:4;31725:5;31721:16;31686:65;:::i;:::-;31776:6;31771:3;31767:16;31760:23;;31509:280;31399:390;;;;:::o;31795:435::-;31975:3;31997:95;32088:3;32079:6;31997:95;:::i;:::-;31990:102;;32109:95;32200:3;32191:6;32109:95;:::i;:::-;32102:102;;32221:3;32214:10;;31795:435;;;;;:::o;32236:225::-;32376:34;32372:1;32364:6;32360:14;32353:58;32445:8;32440:2;32432:6;32428:15;32421:33;32236:225;:::o;32467:366::-;32609:3;32630:67;32694:2;32689:3;32630:67;:::i;:::-;32623:74;;32706:93;32795:3;32706:93;:::i;:::-;32824:2;32819:3;32815:12;32808:19;;32467:366;;;:::o;32839:419::-;33005:4;33043:2;33032:9;33028:18;33020:26;;33092:9;33086:4;33082:20;33078:1;33067:9;33063:17;33056:47;33120:131;33246:4;33120:131;:::i;:::-;33112:139;;32839:419;;;:::o;33264:182::-;33404:34;33400:1;33392:6;33388:14;33381:58;33264:182;:::o;33452:366::-;33594:3;33615:67;33679:2;33674:3;33615:67;:::i;:::-;33608:74;;33691:93;33780:3;33691:93;:::i;:::-;33809:2;33804:3;33800:12;33793:19;;33452:366;;;:::o;33824:419::-;33990:4;34028:2;34017:9;34013:18;34005:26;;34077:9;34071:4;34067:20;34063:1;34052:9;34048:17;34041:47;34105:131;34231:4;34105:131;:::i;:::-;34097:139;;33824:419;;;:::o;34249:172::-;34389:24;34385:1;34377:6;34373:14;34366:48;34249:172;:::o;34427:366::-;34569:3;34590:67;34654:2;34649:3;34590:67;:::i;:::-;34583:74;;34666:93;34755:3;34666:93;:::i;:::-;34784:2;34779:3;34775:12;34768:19;;34427:366;;;:::o;34799:419::-;34965:4;35003:2;34992:9;34988:18;34980:26;;35052:9;35046:4;35042:20;35038:1;35027:9;35023:17;35016:47;35080:131;35206:4;35080:131;:::i;:::-;35072:139;;34799:419;;;:::o;35224:194::-;35264:4;35284:20;35302:1;35284:20;:::i;:::-;35279:25;;35318:20;35336:1;35318:20;:::i;:::-;35313:25;;35362:1;35359;35355:9;35347:17;;35386:1;35380:4;35377:11;35374:37;;;35391:18;;:::i;:::-;35374:37;35224:194;;;;:::o;35424:180::-;35472:77;35469:1;35462:88;35569:4;35566:1;35559:15;35593:4;35590:1;35583:15;35610:98;35661:6;35695:5;35689:12;35679:22;;35610:98;;;:::o;35714:168::-;35797:11;35831:6;35826:3;35819:19;35871:4;35866:3;35862:14;35847:29;;35714:168;;;;:::o;35888:373::-;35974:3;36002:38;36034:5;36002:38;:::i;:::-;36056:70;36119:6;36114:3;36056:70;:::i;:::-;36049:77;;36135:65;36193:6;36188:3;36181:4;36174:5;36170:16;36135:65;:::i;:::-;36225:29;36247:6;36225:29;:::i;:::-;36220:3;36216:39;36209:46;;35978:283;35888:373;;;;:::o;36267:640::-;36462:4;36500:3;36489:9;36485:19;36477:27;;36514:71;36582:1;36571:9;36567:17;36558:6;36514:71;:::i;:::-;36595:72;36663:2;36652:9;36648:18;36639:6;36595:72;:::i;:::-;36677;36745:2;36734:9;36730:18;36721:6;36677:72;:::i;:::-;36796:9;36790:4;36786:20;36781:2;36770:9;36766:18;36759:48;36824:76;36895:4;36886:6;36824:76;:::i;:::-;36816:84;;36267:640;;;;;;;:::o;36913:141::-;36969:5;37000:6;36994:13;36985:22;;37016:32;37042:5;37016:32;:::i;:::-;36913:141;;;;:::o;37060:349::-;37129:6;37178:2;37166:9;37157:7;37153:23;37149:32;37146:119;;;37184:79;;:::i;:::-;37146:119;37304:1;37329:63;37384:7;37375:6;37364:9;37360:22;37329:63;:::i;:::-;37319:73;;37275:127;37060:349;;;;:::o

Swarm Source

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